firmware/src/commands.h

18 lines
378 B
C
Raw Normal View History

2020-07-07 08:46:49 +00:00
/**
* @brief This class enables on the fly software and hardware setup.
* It will contain all command messages to change internal settings.
*/
enum class Cmd {
2023-01-21 13:34:29 +00:00
INVALID,
SET_ON,
SET_OFF,
ON_PRESS,
START_ALERT_FRAME,
STOP_ALERT_FRAME,
2023-01-21 13:34:29 +00:00
START_FIRMWARE_UPDATE_SCREEN,
STOP_BOOT_SCREEN,
PRINT,
SHOW_PREV_FRAME,
SHOW_NEXT_FRAME
2020-07-07 08:46:49 +00:00
};