Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Nächste Überarbeitung | Vorhergehende Überarbeitung | ||
| esp32-035 [2025/02/14 14:37] – angelegt joerg | esp32-035 [2025/02/15 14:48] (aktuell) – joerg | ||
|---|---|---|---|
| Zeile 1: | Zeile 1: | ||
| ====== Infos zum Board ESP32-035 ====== | ====== Infos zum Board ESP32-035 ====== | ||
| - | [[https://www.amazon.com/gp/aw/d/ | + | Es gibt jetzt ein User_Setup.h, |
| + | [[https://dokuwiki.gelonline.de/lib/exe/fetch.php?media=user_setup.h|User_Setup.h]] | ||
| - | Installing using Arduino IDE | + | < |
| - | 1,Installing using Arduino IDE | + | //#define ILI9488_DRIVER |
| + | #define ILI9488_DRIVER | ||
| - | we first need to install version 1.8.19 of the Arduino IDE (or greater), for example, the Arduino installation was in “C/Programs(x86)/Arduino”. | + | //#define TFT_INVERSION_OFF |
| - | download release link: https: | + | |
| - | This is the way to install Arduino-ESP32 directly from the Arduino IDE. | + | |
| - | Add Boards Manager Entry | + | #define TFT_MISO 12 // (leave TFT SDO disconnected if other SPI devices share MISO) |
| - | Here is what you need to do to install the ESP32 boards into the Arduino IDE: | + | #define TFT_MOSI 13 |
| - | (1) Open the Arduino IDE. | + | #define TFT_SCLK 14 |
| - | (2) Click on the File menu on the top menu bar. | + | #define TFT_CS |
| - | (3) Click on the Preferences menu item. This will open a Preferences dialog box. | + | #define TFT_DC |
| - | (4) You should be on the Settings tab in the Preferences dialog box by default. | + | #define TFT_RST |
| - | (5) Look for the textbox labeled “Additional Boards Manager URLs”. | + | |
| - | + | ||
| - | (6) If there is already text in this box add a coma at the end of it, then follow the next step. | + | |
| - | (7) Paste the following link into the text box : Stable release link: | + | |
| - | + | ||
| - | https: | + | |
| - | + | ||
| - | https: | + | |
| + | //#define TFT_MISO 13 // (leave TFT SDO disconnected if other SPI devices share MISO) | ||
| + | //#define TFT_MOSI 12 | ||
| + | //#define TFT_SCLK 14 | ||
| + | //#define TFT_CS | ||
| + | //#define TFT_DC | ||
| + | //#define TFT_RST | ||
| + | #define TFT_BL 27 // LED back-light control pin | ||
| + | #define TFT_BACKLIGHT_ON HIGH | ||
| + | </ | ||