Skip to content

Commit

Permalink
Fixed DNRGBW
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Dahmen committed Jan 17, 2025
1 parent 48f5099 commit 8ee2c44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wled00/udp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -605,8 +605,8 @@ void handleNotifications()
return;
}

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

0 comments on commit 8ee2c44

Please sign in to comment.