reformatting the default_app structure and worked on options menu.

This commit is contained in:
Lucas
2022-04-30 23:14:42 -04:00
parent 43104ac2d2
commit d8feab1636
10 changed files with 35 additions and 31 deletions
+2 -6
View File
@@ -1,6 +1,4 @@
import displayio
from app import AppRouter, DebugApp
from macropad_os import AppRouter, DebugApp
from config import Config
from adafruit_macropad import MacroPad
@@ -11,9 +9,7 @@ config = Config("config.json")
ar = AppRouter(macropad, config, [
DebugApp(macropad, config, "DEBUG 1"),
DebugApp(macropad, config, "DEBUG 2"),
# DebugApp(macropad, config, "debug 2"),
# DebugApp(macropad, config, "debug 3")
DebugApp(macropad, config, "DEBUG 2")
])
ar.start()