Project opens websocket and reconnects if ping replies from the printer stop

This commit is contained in:
Madeline
2023-02-21 00:35:54 -05:00
parent ab849a721b
commit d084ebb1ac
9 changed files with 416 additions and 193 deletions

View File

@@ -0,0 +1,17 @@
//
// KlipperMonScratchTests.swift
// KlipperMonTests
//
// Created by maddiefuzz on 2/20/23.
//
import XCTest
class ScratchTests: XCTestCase {
func testOneAndOneIsEqual() {
let a = 1
let b = 1
XCTAssertEqual(a, b, "1 did not equal 1.")
}
}