Skip to content

Commit 2c1cf87

Browse files
authored
Merge pull request wled#4499 from Christanoid/main
Fixed UDP Realtime streaming in DNRGBW Mode
2 parents e6716fe + 8ee2c44 commit 2c1cf87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

wled00/udp.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -600,8 +600,8 @@ void handleNotifications()
600600
return;
601601
}
602602

603-
//UDP realtime: 1 warls 2 drgb 3 drgbw
604-
if (udpIn[0] > 0 && udpIn[0] < 5)
603+
//UDP realtime: 1 warls 2 drgb 3 drgbw 4 dnrgb 5 dnrgbw
604+
if (udpIn[0] > 0 && udpIn[0] < 6)
605605
{
606606
realtimeIP = (isSupp) ? notifier2Udp.remoteIP() : notifierUdp.remoteIP();
607607
DEBUG_PRINTLN(realtimeIP);

0 commit comments

Comments
 (0)