Skip to content

Commit d176302

Browse files
authored
Merge pull request wled#4845 from Arcitec/0_15_x-fix-sync
(0.15.2 backport) Fix broken Sync button after 0.15 refactor
2 parents b155f80 + dba31cb commit d176302

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

wled00/wled.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -697,10 +697,10 @@ WLED_GLOBAL bool receiveNotificationPalette _INIT(true); // apply palet
697697
WLED_GLOBAL bool receiveSegmentOptions _INIT(false); // apply segment options
698698
WLED_GLOBAL bool receiveSegmentBounds _INIT(false); // apply segment bounds (start, stop, offset)
699699
WLED_GLOBAL bool receiveDirect _INIT(true); // receive UDP/Hyperion realtime
700-
WLED_GLOBAL bool notifyDirect _INIT(false); // send notification if change via UI or HTTP API
701-
WLED_GLOBAL bool notifyButton _INIT(false); // send if updated by button or infrared remote
700+
WLED_GLOBAL bool notifyDirect _INIT(true); // send notification if change via UI or HTTP API
701+
WLED_GLOBAL bool notifyButton _INIT(true); // send if updated by button or infrared remote
702702
WLED_GLOBAL bool notifyAlexa _INIT(false); // send notification if updated via Alexa
703-
WLED_GLOBAL bool notifyHue _INIT(true); // send notification if Hue light changes
703+
WLED_GLOBAL bool notifyHue _INIT(false); // send notification if Hue light changes
704704
#endif
705705

706706
// effects

0 commit comments

Comments
 (0)