RGBmatrixPanel_IDE icon indicating copy to clipboard operation
RGBmatrixPanel_IDE copied to clipboard

daisy chained 32x64 x 4

Open harissutanrafiq opened this issue 5 years ago • 2 comments

Hello @pkourany thanks for your awesome library

i have try your library. for 32x64 scan 1/16 its working, but when i try set a width using 256 = 4 panel 32x64 pixel its not showing anyting. if iam use 1 to 3 of 32x64 pixel panel, its working

RGBmatrixPanel matrix(A, B, C, D, CLK, LAT, OE, false, 256); // not working

its possible if i use more than 256 of width .? i need for my project

thank you

harissutanrafiq avatar Oct 12 '20 03:10 harissutanrafiq

@harissutanrafiq, the panel width is a uint8_t parameter so it cannot exceed a value of 255. Try 255 and it should work.

pkourany avatar Oct 12 '20 16:10 pkourany

@harissutanrafiq, the panel width is a uint8_t parameter so it cannot exceed a value of 255. Try 255 and it should work.

hey thanks @pkourany for your reply

width parameter is uint16_t

RGBmatrixPanel(uint8_t a, uint8_t b, uint8_t c, uint8_t sclk, uint8_t latch, uint8_t oe, boolean dbuf, uint16_t width=32);

// Constructor for 32x32 panel (adds 'd' pin): RGBmatrixPanel(uint8_t a, uint8_t b, uint8_t c, uint8_t d, uint8_t sclk, uint8_t latch, uint8_t oe, boolean dbuf, uint16_t width=32);

harissutanrafiq avatar Oct 13 '20 12:10 harissutanrafiq