Open nur476 opened 8 hours ago
Something strange. I am using this code on ESP32-S2:
`
/* Use the Virtual Display class to re-map co-ordinates such that they draw
// default pins:
// Panel configuration
// ^^^ NOTE: DEFAULT EXAMPLE SETUP IS FOR A CHAIN OF TWO x 1/8 SCAN PANELS // Change this to your needs, for details on VirtualPanel pls read the PDF!
// placeholder for the matrix object MatrixPanel_I2S_DMA *dma_display = nullptr; /**
When I used
PANEL_RES_X 64 PANEL_RES_Y 12
This is when loop completed:
But if I change
PANEL_RES_X 64 PANEL_RES_Y 12 to 16
Less leds up:
How can this be possible? With more drawing, it draws led in fact and with same x,y coordinates, it draws diffrrent places.
it draws led in fact and with same x,y coordinates, it draws diffrrent places.
Because your matrix uses a shift register (595 type) multiplexor - RU5158
Your panel is a difficult case - it requires changing the code in two places at once - one for the quarter-scan panel and the second for a new type of multiplexer not supported in the library.
Hi,
I have a board with specs on title, working on it but some lines never lights up. You can see here:
I tried this code: https://github.com/mrcodetastic/ESP32-HUB75-MatrixPanel-DMA/issues/500#issuecomment-1722257816 with various X Y sizes, but some lines on Y never responded. Btw I double checked A,B,C cabling, it seems as a multiplexing problem but I don't know why.
What is that I am missing?
Thanks in advance.