From 3785ae9a20815efd2db5cd3afde8add5b0542ffe Mon Sep 17 00:00:00 2001 From: Damian Schneider Date: Sun, 28 Dec 2025 13:02:02 +0100 Subject: [PATCH] fix FX checkmark sync --- wled00/udp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wled00/udp.cpp b/wled00/udp.cpp index 3fc630e9..6401815c 100644 --- a/wled00/udp.cpp +++ b/wled00/udp.cpp @@ -452,8 +452,8 @@ void handleNotifications() selseg.custom2 = udpIn[30+ofs]; selseg.custom3 = udpIn[31+ofs] & 0x1F; selseg.check1 = (udpIn[31+ofs]>>5) & 0x1; - selseg.check1 = (udpIn[31+ofs]>>6) & 0x1; - selseg.check1 = (udpIn[31+ofs]>>7) & 0x1; + selseg.check2 = (udpIn[31+ofs]>>6) & 0x1; + selseg.check3 = (udpIn[31+ofs]>>7) & 0x1; } startY = (udpIn[32+ofs] << 8 | udpIn[33+ofs]); stopY = (udpIn[34+ofs] << 8 | udpIn[35+ofs]);