My setup:
Wled Version: 0.16.0-alpha
Controller: Quinled Digi-Quad
LEDS: WS2815 (12v)
Led setup: output 1(gpio 16)= 761 px output 2(gpio 3): 363px
Ledmap.json created with 16 width and 119 height. AII 1125 LEDS are mapped and places where LEDS are not are populated with -1
Issue:
So the LED map seems to be working on the pixels, but when go into the 'peek" mode see a rectangle grid with 8 width and 55(ish) height. There seem to be some strips segments on there but when counting up the circles, they do not match any of the led strips I’ve defined in my map (l counted one of the rows with 30px and the closest strip have to that is 44px in length.) although the pattern seems to be mirroring the general pattern.
Is there something that I’m missing? Why arent all the mapped LEDS displaying? had to upgrade to 0.16.0 because think my map was too large for the controller ram allotment on previous versions, is it related to that?
I am hoping I can get a good representation of what the LEDs are doing in SW, because need to finish programming patterns and I no longer have access to the physical LEDS(they were built into scenery and shipped out on a truck yesterday.
So upon further inspection, it seems that the peek is possibly displaying about half of the mapped pixels, and I guess averaging the led quantity in every two columns or something? when I change the color/effect of the segment for only strip 1 for instance the peek for column 1 stays the previous color, but if I change the color/effect of the segments for strip 1 and 2 then column 1 (leftmost) on peek display will update to the new color.
Is this behavior of the peek display controllable somehow? I assume it is some sort of a setting to make sure the peek display fits on the screen without the need to scroll. I don’t really care if it reduces the vertical size, but the way it is averaging the two adjacent pixel strips into one column is a bit annoying.
peek is limited to I think 256 LEDs, you can increase that limit by editing the code. If you have more LEDs, it will skip displaying and only show every 2nd or 3rd LED
I thought it might be something like that. Any tips on where I might look to change that value? I am assuming I would have to rebuild wled and can’t just change it in config. I am also assuming that the 2d array peek behaves differently than the 1d peek, and that is have to find the 2d implementation.
Thank you.