#398 #355 start of pocket process control app

This commit is contained in:
Mikayla
2024-10-12 04:39:45 +00:00
parent eae2dfef60
commit 75a3b82f31
3 changed files with 163 additions and 7 deletions

View File

@@ -82,18 +82,20 @@ end
---@enum POCKET_APP_ID
local APP_ID = {
-- core UI
ROOT = 1,
LOADER = 2,
-- main app pages
UNITS = 3,
CONTROL = 4,
GUIDE = 5,
ABOUT = 6,
-- diag app page
ALARMS = 7,
PROCESS = 5,
GUIDE = 6,
ABOUT = 7,
-- diagnostic app pages
ALARMS = 8,
-- other
DUMMY = 8,
NUM_APPS = 8
DUMMY = 9,
NUM_APPS = 9
}
pocket.APP_ID = APP_ID