Board-dat/MPC/MPCS051-dat/MPCS051-dat.md
... ...
@@ -9,3 +9,4 @@
9 9
- [[MPCS050-dat]]
10 10
11 11
- [[MPCS050]] - [[MPCS051]]
12
+
SDK-dat/ESP-SDK-dat/ESP8266-SDK-dat/ESP8266-SDK-dat.md
... ...
@@ -7,6 +7,8 @@
7 7
8 8
- [[flash-download-tool-dat]] - [[ESP8266-boot-log-dat]]
9 9
10
+- [[display-SDK-dat]]
11
+
10 12
Bootloader / ROM output 74880 Default ESP8266 boot messages (after reset).
11 13
12 14
AT firmware
SDK-dat/ESP-SDK-dat/ESP8266-SDK-dat/ESP8266-boot-log-dat/ESP8266-boot-log-dat.md
... ...
@@ -3,7 +3,7 @@
3 3
4 4
## normal flash boot log
5 5
6
-Baud rate 74880 is what the ESP8266 bootloader uses. The apps on top of the Espressif SDK (e.g. Arduino sketch) talk at 115200 if not specified otherwise.
6
+Baud rate **74880** is what the ESP8266 bootloader uses. The apps on top of the Espressif SDK (e.g. Arduino sketch) talk at 115200 if not specified otherwise.
7 7
8 8
**the normal reset boot ** == CORRECT
9 9
... ...
@@ -73,6 +73,7 @@ or in 74880 baud rate output
73 73
SPI Speed : 40MHz
74 74
SPI Mode : DIO
75 75
SPI Flash Size & Map: 32Mbit(512KB+512KB)
76
+
76 77
jump to run user1 @ 1000
77 78
78 79
rf[112] : 03
SDK-dat/display-sdk-dat/display-sdk-dat.md
... ...
@@ -6,9 +6,13 @@
6 6
7 7
- [[interface-SDK-dat]]
8 8
9
+- [[EDS-1.3-dat]]
10
+
11
+
9 12
## TFT
10 13
11
-TFT_eSPI
14
+### TFT_eSPI
15
+
12 16
13 17
14 18
## OLED
Tech-dat/interactive-dat/LED-dat/led-driver-dat/led-driver-dat.md
... ...
@@ -49,7 +49,7 @@ https://cdn.sparkfun.com/datasheets/Components/General/FQP30N06L.pdf
49 49
50 50
### chip
51 51
52
-- [[silergy-dat]] - [[SY7200-dat]] - [[SY7201-dat]]
52
+- [[silergy-dat]] - [[SY7200-dat]] - [[SY7201-dat]] - [[SY7301-dat]]
53 53
54 54
- [[powtech-dat]] - [[PT4103-dat]] - [[PT4115-dat]]
55 55
board-series-dat/EDS-LCD-dat/EDS-1.3-dat/EDS-1.3-dat.md
... ...
@@ -7,14 +7,43 @@
7 7
![](2025-08-19-13-02-37.png)
8 8
9 9
10
+## pin
10 11
11 12
12
-| Pin | Name | Function | Description |
13
-|-----|------|----------|-------------|
14
-| 1 | GND | Ground of Logic Circuit | This is a ground pin. It acts as a reference for the logic pins. It must be connected to external ground |
15
-| 2 | VCC | Power Supply for Logic | This is a voltage supply pin. It must be connected to external source |
16
-| 3 | SCL | Serial Clock Input | The serial clock input |
17
-| 4 | SDA | Serial Data Input | The serial data input |
18
-| 5 | RES | Power Reset for Controller and Driver | This pin is reset signal input. When the pin is low, initialization of the chip is executed. Keep this pin pull high during normal operation |
19
-| 6 | DC | Data/Command Control | This pin is Data/Command control pin. When the pin is pulled high, the input at SDA is treated as display data. When the pin is pulled low, the input at SDA will be transferred to the command register. |
20
-| 7 | BLK | Backlight Control Pin | When the pin is pulled high turn on backlight, When the pin is pulled low turn off backlight |
... ...
\ No newline at end of file
0
+
1
+| Pin | Name | Function | Description |
2
+| --- | ---- | ------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
3
+| 1 | GND | Ground of Logic Circuit | This is a ground pin. It acts as a reference for the logic pins. It must be connected to external ground |
4
+| 2 | VCC | Power Supply for Logic | This is a voltage supply pin. It must be connected to external source |
5
+| 3 | SCL | Serial Clock Input | SPI CLK The serial clock input |
6
+| 4 | SDA | Serial Data Input | SPI DAT The serial data input |
7
+| 5 | RES | Power Reset for Controller and Driver | This pin is reset signal input. When the pin is low, initialization of the chip is executed. Keep this pin pull high during normal operation |
8
+| 6 | DC | Data/Command Control | This pin is Data/Command control pin. When the pin is pulled high, the input at SDA is treated as display data. When the pin is pulled low, the input at SDA will be transferred to the command register. |
9
+| 7 | BLK | Backlight Control Pin | When the pin is pulled high turn on backlight, When the pin is pulled low turn off backlight |
10
+
11
+## esp8266
12
+
13
+ // pin definition for the Uno
14
+ #define sd_cs 4
15
+ #define lcd_cs 10
16
+ #define dc 12
17
+ #define rst 16
18
+
19
+ #define dc 12
20
+ #define rst 16
21
+
22
+by TFT_eSPI
23
+
24
+//#include <User_Setups/Setup24_ST7789.h> // Setup file for DSTIKE/ESP32/ESP8266 configured for ST7789 240 x 240
25
+
26
+ #define TFT_CS -1 // Define as not used
27
+ #define TFT_DC PIN_D1 // Data Command control pin
28
+ #define TFT_RST PIN_D4 // TFT reset pin (could connect to NodeMCU RST, see next line)
29
+
30
+- [[nodemcu-dat]]
31
+
32
+## ref
33
+
34
+- [[ESP8266-SDK-dat]]
35
+
36
+- [[EDS-LCD-dat]]
... ...
\ No newline at end of file