ESP32-HUB75-MatrixPanel-DMA 2 black parts on the display #346
-
I have this problem with my p3 led matrix display this is the panel and i used the default connection pin E is to gnd, is i connect it to a defind pin it won't change a thing. this is the code i've used code // HUB75E pinout /* Default library pin configuration for the reference #define R1 25 */ #include <ESP32-HUB75-MatrixPanel-I2S-DMA.h> // Configure for your panel(s) as appropriate! #define PANE_WIDTH PANEL_WIDTH * PANELS_NUMBER // placeholder for the matrix object uint16_t time_counter = 0, cycles = 0, fps = 0; CRGB currentColor; CRGB ColorFromCurrentPalette(uint8_t index = 0, uint8_t brightness = 255, TBlendType blendType = LINEARBLEND) { void setup() { Serial.begin(115200); Serial.println(F("")); /*
*/ /* */ /* */ // OK, now we can create our matrix object // let's adjust default brightness to about 75% // Allocate memory and start DMA display // well, hope we are OK, let's draw some colors first :) Serial.println("Fill screen: GREEN"); Serial.println("Fill screen: BLUE"); Serial.println("Fill screen: Neutral White"); Serial.println("Fill screen: black"); // Set current FastLED palette void loop() {
} |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Check you D PIN - Might not be working. I'm assuming it's not a 1/8 scan panel as well, as per: |
Beta Was this translation helpful? Give feedback.
Check you D PIN - Might not be working.
I'm assuming it's not a 1/8 scan panel as well, as per:
#345