PYBStick ESP32-C3 : Utiliser l'UART1
Posted: Mon 14 Nov 2022 11:51
UART0 semble ne pas pouvoir être utilisé sur les GPIO 20 et 21.
Le code suivant produit une erreur:
Par contre il est possible de monter l'UART1 sur ces même broches et cela fonctionne parfaitement!
Merci Fred
Le code suivant produit une erreur:
Code: Select all
The issue is that i can't use this available UART0 to dialog with for example a sensor. I've got error with that code.
>>> from machine import UART
>>> uart0=UART(0, baudrate=9600, tx=21, rx=20)
>>> uart0.write('toto')
>>> uart0.read(4)
Code: Select all
The issue is that i can't use this available UART0 to dialog with for example a sensor. I've got error with that code.
>>> from machine import UART
>>> uart0=UART(1, baudrate=9600, tx=21, rx=20)
>>> uart0.write('toto')
>>> uart0.read(4)