small formatting changes

This commit is contained in:
Lucas
2022-05-22 16:10:09 -04:00
parent f40b0f95a7
commit 0136c1a1a4
11 changed files with 70 additions and 46 deletions
+7 -2
View File
@@ -1,8 +1,9 @@
from macropad_os import AppRouter, DebugApp
from config import Config
from macropad_os import AppRouter, DebugApp, SerialComms
from macropad_os.config import Config
from adafruit_macropad import MacroPad
macropad = MacroPad()
config = Config("config.json")
@@ -12,4 +13,8 @@ ar = AppRouter(macropad, config, [
DebugApp(macropad, config, "DEBUG 2")
])
sc = SerialComms(config)
# _thread.start_new_thread(sc.run, (sc))
ar.start()