Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
Fix CONFIG_LED_STANDARD_MODE=OFF
Browse files Browse the repository at this point in the history
  • Loading branch information
SciLor committed May 21, 2021
1 parent 8b3aafd commit 8d2733a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion HyperionRGB/BaseHeader.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
typeof (Y) y_ = (Y); \
(x_ < y_) ? x_ : y_; })*/

enum Mode { OFF, HYPERION_UDP, STATIC_COLOR, RAINBOW, FIRE2012, RAINBOW_V2, RAINBOW_FULL };
enum Mode { OFF, HYPERION_UDP, STATIC_COLOR, RAINBOW, FIRE2012, RAINBOW_V2, RAINBOW_FULL, MODE_NONE };
enum UdpProtocol { UDP_RAW, UDP_FILLER, UDP_FRAGMENT, UDP_TPM2 };

#endif
2 changes: 1 addition & 1 deletion HyperionRGB/HyperionRGB.ino
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ WrapperJsonServer jsonServer;
WrapperWebconfig webServer;
#endif

Mode activeMode;
Mode activeMode = MODE_NONE;
boolean autoswitch;

ThreadController threadController = ThreadController();
Expand Down

0 comments on commit 8d2733a

Please sign in to comment.