P5 Outdoor Chain Panel #764
Replies: 1 comment 1 reply
-
#include <Arduino.h> #define PANEL_RES_X 64 // Number of pixels wide of each INDIVIDUAL panel module. #define VDISP_NUM_ROWS 2 // Number of rows of individual LED panels #define PANEL_CHAIN_LEN 2 // Don't change #define PANEL_CHAIN_TYPE CHAIN_TOP_RIGHT_DOWN #define PANEL_SCAN_TYPE FOUR_SCAN_32PX_HIGH MatrixPanel_I2S_DMA* dma_display = nullptr; using MyScanTypeMapping = ScanTypeMapping<PANEL_SCAN_TYPE>; VirtualMatrixPanel_T<PANEL_CHAIN_TYPE, MyScanTypeMapping>* virtualDisp = nullptr; void setup() { HUB75_I2S_CFG mxconfig( mxconfig.i2sspeed = HUB75_I2S_CFG::HZ_20M; dma_display = new MatrixPanel_I2S_DMA(mxconfig); virtualDisp = new VirtualMatrixPanel_T<PANEL_CHAIN_TYPE, MyScanTypeMapping>(
virtualDisp->setDisplay(*dma_display); for (int y = 0; y < virtualDisp->height(); y++) {
} delay(100); void loop() { // Do nothing here. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Has anyone been able to control two P5 Outdoor LED panels arranged vertically?
It only works on LED panel 1, but LED panel 2 doesn't display any data. I'm sure the signal cables are connected correctly.
Beta Was this translation helpful? Give feedback.
All reactions