Skip to content

Commit

Permalink
Fix FSMGlobals comments and their indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ngandrass committed Sep 6, 2024
1 parent cfa7d98 commit 1d852ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/FSMGlobals.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@
* FSM::persistGlobals() and FSM::restoreGlobals() respectively.
*/
typedef struct {
uint8_t resumeStateIdx = 0; //!< Index of the state that should be resumed upon reboot
uint8_t menuMainPointerIdx = 0; //!< MenuMain: Index of the menu cursor
uint8_t resumeStateIdx = 0; //!< Index of the state that should be resumed upon reboot
uint8_t menuMainPointerIdx = 0; //!< MenuMain: Index of the menu cursor
uint8_t ledBrightnessPercent = 40; //!< The current brightness percentage of the LEDs

uint8_t prideFlagModeIdx = 1; //!< DisplayPrideFlag: Mode selector
uint8_t animRainbowIdx = 0; //!< AnimateRainbow: Mode selector
uint8_t animSnakeIdx = 0; //!< AnimateSnake: Mode selector
uint8_t animHeartbeatHue = 0; //!< AnimateHeartbeat: Hue selector
uint8_t animHeartbeatSpeed = 1; //!< AnimateHeartbeat: Speed selector
uint8_t animMatrixIdx = 0; //!< AnimateMatrix: Color selector
uint8_t animMatrixIdx = 0; //!< AnimateMatrix: Color selector

uint8_t ledBrightnessPercent = 40; //!< The global maximum brightness of the LEDs
} FSMGlobals;

#endif /* FSMGLOBALS_H_ */

0 comments on commit 1d852ba

Please sign in to comment.