diff options
Diffstat (limited to 'src/system.h')
-rw-r--r-- | src/system.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/system.h b/src/system.h index 165ce7b..5a2c199 100644 --- a/src/system.h +++ b/src/system.h @@ -14,6 +14,13 @@ class System { void receive(void); void loadPattern(uint8_t anim_no); + enum ButtonMask : uint8_t { + BUTTON_NONE = 0, + BUTTON_LEFT = 1, + BUTTON_RIGHT = 2, + BUTTON_BOTH = 3 + }; + enum RxExpect : uint8_t { START1, START2, @@ -29,9 +36,10 @@ class System { }; RxExpect rxExpect; + ButtonMask btnMask; public: - System() { want_shutdown = 0; rxExpect = START1; current_anim_no = 0;}; + System() { want_shutdown = 0; rxExpect = START1; current_anim_no = 0; btnMask = BUTTON_NONE;}; /** * Initial MCU setup. Turns off unused peripherals to save power |