I’m setting up a 2 SCAN RGB 32x16 P10 panel with A and B lines plus a Teensy 3.5 and the V4shield.
I’m using this to map it out
const uint8_t kMatrixWidth = 128;
const uint8_t kMatrixHeight = 4;
const uint8_t kPanelType = SMARTMATRIX_HUB75_4ROW_MOD2SCAN;
In reverse engineering map mode I have 2 pixels lighting at the same time in 1 column but 2 different rows, example in column 0, row 1 and 2 light together, then 3 and 4 etc. The pattern on this panel is top to bottom as opposed to the more common left to right.
Is there a way around this issue?