adding initial MacroPad OS commit!

This commit is contained in:
Lucas
2022-04-17 19:43:03 -04:00
parent cb5cb3042d
commit 1be4c5d80e
15 changed files with 420 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
class InvalidStateUpdateError(Exception):
pass
class AppState(object):
STARTING = "starting"
RESUMING = "resuming"
RUNNING = "running"
PAUSING = "pausing"
PAUSED = "paused"
STOPPING = "stopping"
STOPPED = "stopped"