You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using firmware WLEDMM_14.7.1_esp32S3_16MB_PSRAM_M_HUB75.bin and I can't figure out which pins to use to connect via HUB75.
I tried using such combinations and without success:
I also used the standard pinout for ESP32S3 from the ESP32-VirtualMatrixPanel-I2S-DMA library, and it didn't work either.
But if I load the AuroraDemo example from the ESP32-VirtualMatrixPanel-I2S-DMA library, it works with the standard pinout.
connection from the library for ESP32S3
#define R1_PIN_DEFAULT 4
#define G1_PIN_DEFAULT 5
#define B1_PIN_DEFAULT 6
#define R2_PIN_DEFAULT 7
#define G2_PIN_DEFAULT 15
#define B2_PIN_DEFAULT 16
#define A_PIN_DEFAULT 18
#define B_PIN_DEFAULT 8
#define C_PIN_DEFAULT 3
#define D_PIN_DEFAULT 42
#define E_PIN_DEFAULT -1 // required for 1/32 scan panels, like 64x64. Any available pin would do, i.e. IO32
#define LAT_PIN_DEFAULT 40
#define OE_PIN_DEFAULT 2
#define CLK_PIN_DEFAULT 41
I also tried different variations on firmware WLEDMM_14.7.1_esp32S3_8MB_S and all without success.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone. I have an ESP32-S3-N16R8 48pin.

I'm using firmware WLEDMM_14.7.1_esp32S3_16MB_PSRAM_M_HUB75.bin and I can't figure out which pins to use to connect via HUB75.
I tried using such combinations and without success:
gpio.r1 = 42; gpio.g1 = 41; gpio.b1 = 40; gpio.r2 = 38; gpio.g2 = 39; gpio.b2 = 37;
gpio.lat = 47; gpio.oe = 14; gpio.clk = 2; gpio.a = 45; gpio.b = 36;gpio.c = 48;gpio.d = 35; gpio.e = 21;
and
gpio.r1 = 1; gpio.g1 = 2; gpio.b1 = 42; gpio.r2 = 41; gpio.g2 = 40; gpio.b2 = 39; gpio.e = 38; gpio.a = 45;
gpio.b = 48; gpio.c = 47; gpio.d = 21; gpio.clk = 18; gpio.lat = 8; gpio.oe = 3;
I also used the standard pinout for ESP32S3 from the ESP32-VirtualMatrixPanel-I2S-DMA library, and it didn't work either.
But if I load the AuroraDemo example from the ESP32-VirtualMatrixPanel-I2S-DMA library, it works with the standard pinout.
connection from the library for ESP32S3
#define R1_PIN_DEFAULT 4
#define G1_PIN_DEFAULT 5
#define B1_PIN_DEFAULT 6
#define R2_PIN_DEFAULT 7
#define G2_PIN_DEFAULT 15
#define B2_PIN_DEFAULT 16
#define A_PIN_DEFAULT 18
#define B_PIN_DEFAULT 8
#define C_PIN_DEFAULT 3
#define D_PIN_DEFAULT 42
#define E_PIN_DEFAULT -1 // required for 1/32 scan panels, like 64x64. Any available pin would do, i.e. IO32
#define LAT_PIN_DEFAULT 40
#define OE_PIN_DEFAULT 2
#define CLK_PIN_DEFAULT 41
I also tried different variations on firmware WLEDMM_14.7.1_esp32S3_8MB_S and all without success.
Beta Was this translation helpful? Give feedback.
All reactions