Metainformationen zur Seite
Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
Beide Seiten der vorigen RevisionVorhergehende ÜberarbeitungNächste Überarbeitung | Vorhergehende Überarbeitung | ||
digitales:hardware:displays:parallax_serial_lcd [24.04.2025] – gelöscht - Externe Bearbeitung (Unbekanntes Datum) 127.0.0.1 | digitales:hardware:displays:parallax_serial_lcd [25.05.2025] (aktuell) – [Parallax Serial LCD] cs | ||
---|---|---|---|
Zeile 1: | Zeile 1: | ||
+ | {{tag> | ||
+ | |||
+ | ====== Parallax Serial LCD ====== | ||
+ | |||
+ | {{: | ||
+ | |||
+ | |||
+ | ===== Nützliche Links ===== | ||
+ | |||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | |||
+ | === Quellen === | ||
+ | |||
+ | * [[https:// | ||
+ | |||
+ | === Library === | ||
+ | |||
+ | The ESP32 has three hardware UARTs: UART0, UART1 and UART2. They each have default GPIO assigned to them, however depending on your ESP32 variant and board, these pins may conflict with embedded flash, onboard PSRAM or peripherals. | ||
+ | |||
+ | Any GPIO can be used for hardware UARTs using the GPIO matrix, so to avoid conflicts simply provide tx and rx pins when constructing. The default pins listed below. | ||
+ | |||
+ | ^ ^UART0^UART1^UART2| | ||
+ | |tx|1|10|17| | ||
+ | |rx|3|9|16| | ||
+ | |||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | |||