From 8ee2c44550677b1f03c71f3bce49d72a206d495b Mon Sep 17 00:00:00 2001 From: Christian Dahmen Date: Sat, 18 Jan 2025 00:24:24 +0100 Subject: [PATCH] Fixed DNRGBW --- wled00/udp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wled00/udp.cpp b/wled00/udp.cpp index 8ba9a1a7ab..2e87d9d059 100644 --- a/wled00/udp.cpp +++ b/wled00/udp.cpp @@ -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);