diff options
Diffstat (limited to 'src/system.h')
-rw-r--r-- | src/system.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/system.h b/src/system.h index f192389..d72fe8a 100644 --- a/src/system.h +++ b/src/system.h @@ -14,6 +14,12 @@ class System { void receive(void); void loadPattern(uint8_t anim_no); + enum TransmissionControl : uint8_t { + BYTE_END = 0x84, + BYTE_START = 0x99, + BYTE_PATTERN = 0xa9, + }; + enum ButtonMask : uint8_t { BUTTON_NONE = 0, BUTTON_LEFT = 1, |