logi-fix.js aktualisiert

This commit is contained in:
s-mendyka 2024-06-05 19:41:09 +02:00
parent 12b7f08280
commit 07a9ad7b4c

View File

@ -120,7 +120,7 @@ function sendColors(overrideColor) {
while(RGBDataExtra.length > 0) {
const ledsToSend = Math.min(4, RGBDataExtra.length/4);
packet = [0x11, 0xFF, 0x10, 0x1F].concat(RGBDataExtra.splice(0, ledsToSend*4));
packet = [0x11, 0xFF, 0x10, 0x5B].concat(RGBDataExtra.splice(0, ledsToSend*4));
device.set_endpoint(1, 0x0602, 0xff43); // System IF
device.write(packet, 20);