This commit is contained in:
2024-07-14 21:20:33 -04:00
parent 2ccc170da8
commit 1612450a3b
2 changed files with 4 additions and 4 deletions

View File

@@ -30,8 +30,8 @@
//GxIO_Class io(SPI, SS, 22, 21);
//GxEPD_Class display(io, 16, 4);
GxIO_Class io(SPI, SS, 2, 3);
GxEPD_Class display(io, 3, 4);
GxIO_Class io(SPI, /* CS */ SS, /* DC */ 2, /* RST */ 3);
GxEPD_Class display(io, /* RST */ 3, /* BUSY */ 4);
/*
#elif defined(ESP32) && (CONFIG_IDF_TARGET_ESP32C3)

View File

@@ -195,8 +195,8 @@ Wiring table
| --- | --- |
| `GPIO7` (fSPI D) | `DIN` (Blue) |
| `GPIO10` (fSPI CS) | `CS` (Orange) |
| `RXD` `GPIO` (RxD) | `RST` (White) |
| `TXD` `GPIO` (TxD) | `DC` (Green) |
| `RXD` `GPIO20` (RxD) | `RST` (White) |
| `TXD` `GPIO21` (TxD) | `DC` (Green) |
| `GPIO6` (fSPI CLK) | `CLK` (Yellow) |
| `GPIO4` (fSPI HD) | `BUSY` (Purple) |