Metainformationen zur Seite
  •  

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen RevisionVorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
digitales:hardware:displays:parallax_serial_lcd [14.04.2023] – gelöscht - Externe Bearbeitung (Unbekanntes Datum) 127.0.0.1digitales:hardware:displays:parallax_serial_lcd [25.05.2025] (aktuell) – [Parallax Serial LCD] cs
Zeile 1: Zeile 1:
 +{{tag>Code Display Hardware Nuetzliche_Links}}
 +
 +====== Parallax Serial LCD ======
 +
 +{{:digitales:software:parallaxlcd.png?400}}
 +
 +
 +===== Nützliche Links =====
 +
 +  * [[https://github.com/gatonero/parallaxLCD|https://github.com/gatonero/parallaxLCD]]
 +  * [[https://www.python-forum.de/viewtopic.php?f=31&t=54443&p=404187#p404187|Diskusion auf python-forum.de]]
 +
 +=== Quellen ===
 +
 +  * [[https://www.arduino.cc/reference/en/libraries/parallax-lcd/|Arduino Parallax LCD Library]]
 +
 +=== 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://docs.micropython.org/en/latest/library/pyb.UART.html|Micropyton Dokumentation class UART – duplex serial communication bus]]
 +  * [[https://docs.micropython.org/en/latest/esp8266/quickref.html#uart-serial-bus|MicroPyton UART Quick Reference]]
 +