Skip to content

Commit 3785ae9

Browse files
DedeHaisofthack007
authored andcommitted
fix FX checkmark sync
1 parent 45e8c63 commit 3785ae9

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
@@ -452,8 +452,8 @@ void handleNotifications()
452452
selseg.custom2 = udpIn[30+ofs];
453453
selseg.custom3 = udpIn[31+ofs] & 0x1F;
454454
selseg.check1 = (udpIn[31+ofs]>>5) & 0x1;
455-
selseg.check1 = (udpIn[31+ofs]>>6) & 0x1;
456-
selseg.check1 = (udpIn[31+ofs]>>7) & 0x1;
455+
selseg.check2 = (udpIn[31+ofs]>>6) & 0x1;
456+
selseg.check3 = (udpIn[31+ofs]>>7) & 0x1;
457457
}
458458
startY = (udpIn[32+ofs] << 8 | udpIn[33+ofs]);
459459
stopY = (udpIn[34+ofs] << 8 | udpIn[35+ofs]);

0 commit comments

Comments
 (0)