updates to options and debug apps allowing them to run side by side.

This commit is contained in:
Lucas
2022-04-27 10:53:44 -04:00
parent 5486f8a9e7
commit 43104ac2d2
4 changed files with 15 additions and 14 deletions
+3 -1
View File
@@ -2,6 +2,7 @@ import displayio
from app import AppRouter, DebugApp
from config import Config
from adafruit_macropad import MacroPad
macropad = MacroPad()
@@ -9,7 +10,8 @@ config = Config("config.json")
ar = AppRouter(macropad, config, [
DebugApp(macropad, config, "debug 1"),
DebugApp(macropad, config, "DEBUG 1"),
DebugApp(macropad, config, "DEBUG 2"),
# DebugApp(macropad, config, "debug 2"),
# DebugApp(macropad, config, "debug 3")
])