Board-dat/IDD/IDD1013-DAT/IDD1013-DAT.md
... ...
@@ -1,8 +1,9 @@
1 1
2 2
# IDD1013-DAT
3 3
4
+- [[ESP32-S3-dat]] - [[IDD1013-dat]] - [[IDD1027-dat]] - [[led-rgb-panel-dat]]
4 5
5
-- [[ESP32-dat]] - [[HUB75-dat]] - [[RGB-matrix-driver-da]]
6
+- [[ESP32-dat]] - [[HUB75-dat]] - [[RMP-driver-dat]]
6 7
7 8
- [[MPC1073-dat]]
8 9
... ...
@@ -185,6 +186,16 @@ Downgrade your ESP32 board package to version 2.0.17 which is compatible with th
185 186
186 187
![](2026-03-20-21-34-34.png)
187 188
189
+
190
+Specific chips found NOT TO work
191
+
192
+- ANY panel that has S-PWM or PWM based chips (such as the RUL6024, MBI6024, HX6158SP, MBI5051, MBI5052, MBI5053, ICND2055CP etc.). There are LOTS of panels now which are 'self PWM generating'. Essentially these panel aren't just a dumb array of LEDs and a series of shift registers, but have a framebuffer that pixel colour data is sent to, and they generate the relevant PWM output for each LED, independantly. A more advanced LED panel technology, but not what this library supports.
193
+- SM1620B
194
+- RUL5358 / SHIFTREG_ABC_BIN_DE based panels are not supported.
195
+- ICN2053 / FM6353 based panels - Refer to this library, which is a fork of this library ( discussion link).
196
+- Any other panel not listed above.
197
+
198
+
188 199
## ref
189 200
190 201
- [[CCO3546-dat]] - [[RMP-driver-dat]]
Board-dat/IDD/IDD1027-dat/2026-03-24-18-09-29.png
... ...
Binary files /dev/null and b/Board-dat/IDD/IDD1027-dat/2026-03-24-18-09-29.png differ
Board-dat/IDD/IDD1027-dat/IDD1027-dat.md
... ...
@@ -2,7 +2,7 @@
2 2
3 3
# IDD1027-dat
4 4
5
-- [[ESP32-S3-dat]]
5
+- [[ESP32-S3-dat]] - [[IDD1013-dat]] - [[IDD1027-dat]] - [[led-rgb-panel-dat]]
6 6
7 7
suitable boards - [[ESP32-S3-board-VCC-dat]] - [[ESP32-S3-board-WV-dat]] - [[ESP32-S3-board-dat]]
8 8
... ...
@@ -11,7 +11,7 @@ suitable boards - [[ESP32-S3-board-VCC-dat]] - [[ESP32-S3-board-WV-dat]] - [[ESP
11 11
12 12
- [[IDD1013-dat]] - [[HUB75-dat]]
13 13
14
-
14
+- [[led-rgb-panel-dat]]
15 15
16 16
17 17
## board map
... ...
@@ -19,54 +19,40 @@ suitable boards - [[ESP32-S3-board-VCC-dat]] - [[ESP32-S3-board-WV-dat]] - [[ESP
19 19
![](2026-03-12-15-40-24.png)
20 20
21 21
22
-- IO4_LAT
23
-- IO5_OE
24
-- IO6_CLK
25 22
26
-- IO7_A
27
-- IO15_B
28
-- IO16_C
29
-- IO17_D
30
-- IO18_E
23
+## default pin for ESP32-S3
31 24
32
-- IO08_LDR
33
-- IO3_x
34
-- IO46_x
25
+https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-I2S-DMA
26
+
27
+#include <ESP32-HUB75-MatrixPanel-I2S-DMA.h>
35 28
36
-- IO9_G1
37
-- IO10_B1
38
-- IO11_R1
39
-- IO12_G2
40
-- IO13_B2
41
-- IO14_R2
29
+https://github.com/mrcodetastic/ESP32-HUB75-MatrixPanel-DMA/blob/master/src/platforms/esp32s3/esp32s3-default-pins.hpp
42 30
31
+libraries\ESP32_HUB75_LED_MATRIX_PANEL_DMA_Display\esp32s3-default-pins.hpp
43 32
33
+#define R1_PIN_DEFAULT 4
34
+#define G1_PIN_DEFAULT 5
35
+#define B1_PIN_DEFAULT 6
36
+#define R2_PIN_DEFAULT 7
37
+#define G2_PIN_DEFAULT 15
38
+#define B2_PIN_DEFAULT 16
39
+#define A_PIN_DEFAULT 18
40
+#define B_PIN_DEFAULT 8
41
+#define C_PIN_DEFAULT 3
42
+#define D_PIN_DEFAULT 42
43
+#define E_PIN_DEFAULT -1 // required for 1/32 scan panels, like 64x64. Any available pin would do, i.e. IO32
44
+#define LAT_PIN_DEFAULT 40
45
+#define OE_PIN_DEFAULT 2
46
+#define CLK_PIN_DEFAULT 41
44 47
45
-## default pin for ESP32-S3
46 48
47
-https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-I2S-DMA
49
+## 64x64 test
48 50
49
-#include <ESP32-HUB75-MatrixPanel-I2S-DMA.h>
51
+test chip DP5125 / MV245B
50 52
53
+![](2026-03-24-18-09-29.png)
51 54
52
-libraries\ESP32_HUB75_LED_MATRIX_PANEL_DMA_Display\esp32s3-default-pins.hpp
53 55
54
- #define R1_PIN_DEFAULT 11
55
- #define G1_PIN_DEFAULT 9
56
- #define B1_PIN_DEFAULT 10
57
- #define R2_PIN_DEFAULT 14
58
- #define G2_PIN_DEFAULT 12
59
- #define B2_PIN_DEFAULT 13
60
-
61
- #define A_PIN_DEFAULT 7
62
- #define B_PIN_DEFAULT 15
63
- #define C_PIN_DEFAULT 16
64
- #define D_PIN_DEFAULT 17
65
- #define E_PIN_DEFAULT 18
66
-
67
- #define LAT_PIN_DEFAULT 4
68
- #define OE_PIN_DEFAULT 5
69
- #define CLK_PIN_DEFAULT 16
70 56
71 57
72 58
## ref
board-series-dat/led-rgb-panel-dat/2026-03-24-16-40-47.png
... ...
Binary files /dev/null and b/board-series-dat/led-rgb-panel-dat/2026-03-24-16-40-47.png differ
board-series-dat/led-rgb-panel-dat/2026-03-24-16-41-06.png
... ...
Binary files /dev/null and b/board-series-dat/led-rgb-panel-dat/2026-03-24-16-41-06.png differ
board-series-dat/led-rgb-panel-dat/led-rgb-panel-dat.md
... ...
@@ -66,7 +66,14 @@ chip list
66 66
![](2026-03-20-22-14-11.png)
67 67
68 68
69
+## 64 x 64
69 70
71
+- DP5125 / MV245B
72
+https://github.com/mrcodetastic/ESP32-HUB75-MatrixPanel-DMA/issues/645
73
+
74
+![](2026-03-24-16-40-47.png)
75
+
76
+![](2026-03-24-16-41-06.png)
70 77
71 78
## Code Documentation
72 79
... ...
@@ -132,6 +139,16 @@ Gen-3: Advanced grayscale panels using chips like MBI5153 or ICND2153 that suppo
132 139
- [[led-rgb-panel]]
133 140
134 141
142
+
143
+
144
+## driver board
145
+
146
+- [[IDD1027-dat]] - [[IDD1013-dat]]
147
+
148
+
149
+
150
+
151
+
135 152
## ref
136 153
137 154
- [[HUB75-dat]]
... ...
\ No newline at end of file