FIxed liveview

This commit is contained in:
cschwinne 2022-03-18 14:24:10 +01:00
parent 8601052179
commit b93a9cb8bc

View File

@ -144,7 +144,7 @@ bool sendLiveLedsWs(uint32_t wsClient)
buffer[1] = 1; //version buffer[1] = 1; //version
uint16_t pos = 2; uint16_t pos = 2;
for (uint16_t i= 0; pos < bufSize -3; i += n) for (uint16_t i= 0; pos < bufSize -2; i += n)
{ {
uint32_t c = strip.getPixelColor(i); uint32_t c = strip.getPixelColor(i);
buffer[pos++] = qadd8(W(c), R(c)); //R, add white channel to RGB channels as a simple RGBW -> RGB map buffer[pos++] = qadd8(W(c), R(c)); //R, add white channel to RGB channels as a simple RGBW -> RGB map