We created a map for a custom pixel board but while the map is visible in the preview the map does not seem to be actively replacing the previous mapper on the PB. Is there anything specific we have to do?
PB V3.48 Pico Plus V1.1
If the pico is getting restarted for any reason, it loads the last saved config. If you still have a browser window up, it might not match. Change anything in the map (like add a space), and hit save.
We have done that. Saved it. I know it is saved as i can load the mapping up on a different device (tablet). The zig zag pattern remains. I have also tried just modifying the example code. Looks great in the preview but does not show up on the 8x8 matrix attached to the PB. Kinda stumped.
Check that the pattern has a render2D (or 3d). If it doesn’t, you may need to modify it slightly by adding one, and changing the code to use the coordinates instead of the pixel index.
Would you recommend a built in pattern that would match your suggestion?
// Our map: 8x8 LED grid (64 LEDs)
[
[7,7], // index = 0
[6,7],
[5,7],
[4,7], // index = 3
[3,7],
[2,7],
[1,7],
[0,7],
[7,6], // index = 8
[6,6],
[5,6],
[4,6],
[3,6],
[2,6],
[1,6],
[0,6],
[7,5],
[6,5],
[5,5],
[4,5],
[3,5],
[2,5],
[1,5],
[0,5],
[7,4],
[6,4],
[5,4],
[4,4],
[3,4],
[2,4],
[1,4],
[0,4],
[7,3],
[6,3],
[5,3],
[4,3],
[3,3],
[2,3],
[1,3],
[0,3],
[7,2],
[6,2],
[5,2],
[4,2],
[3,2],
[2,2],
[1,2],
[0,2],
[7,1],
[6,1],
[5,1],
[4,1],
[3,1],
[2,1],
[1,1],
[0,1],
[7,0],
[6,0],
[5,0],
[4,0],
[3,0],
[2,0],
[1,0],
[0,0] // index = 63
]
This is our map and we were trying to use the Intro to PB code - which I noticed does not use Render2D but it does look good in the preview - so that seems a bit confusing if it has to use render2D
1st pixel is bottom right corner going right to left and then up