|
META TOPICPARENT |
name="WebHome" |
Using a second Serial Port
On the ESP32 UART0 is normally reserved for interactive use with REPL. Sometimes we need a UART to communicate with external devices. Typical examples are:
- fingerprint readers using a serial communication protocol
- GPS modules
|
|
< < | The ESP32 has 3 UARTs of which however UART1 is reserved for use with flash memory. However UART2 is free. |
> > | The ESP32 has 3 UARTs of which however UART1 is reserved for use with flash memory. However, UART2 is free. Normally Rx is connected to GPIO 16 and Tx to GPIO 17 but these are forbidden on the CPU card we use (see The hardware). It is possible however to remap these signals to different GPIO pins, in our case to GPIO 21 and 22. |
|
Connect the USB to Serial adapter to the ESP32 as shown in the table below
USB to Serial Adapter |
ESP32 pins |
|
|
< < |
|
> > |
|
|
|
|
< < | As a first quick test we can try to write "Hello World to UART2 to which we connect a minicom virtual terminal. |
> > | As a first quick test, we can try to write "Hello World to UART2 to which we connect a minicom virtual terminal. |
|
thonny is connected to UART0 on /dev/ttvUSB0 (connect this first). minicom is connected to UART2 on /dev/ttyUSB1. Start minicom with: |
|
Here is the screen dump of the REPL session |
|
< < |  |
> > |  |
|
And this is what we see on minicom: |
|
|
|
< < |
META FILEATTACHMENT |
attachment="uart2.png" attr="" comment="" date="1589054224" name="uart2.png" path="uart2.png" size="24122" user="UliRaich" version="1" |
|
> > |
META FILEATTACHMENT |
attachment="uart2.png" attr="" comment="" date="1602517258" name="uart2.png" path="uart2.png" size="27555" user="UliRaich" version="2" |
|
|
META FILEATTACHMENT |
attachment="uart2-minicom.png" attr="" comment="" date="1589054224" name="uart2-minicom.png" path="uart2-minicom.png" size="24288" user="UliRaich" version="1" |
META FILEATTACHMENT |
attachment="uart.py.txt" attr="" comment="" date="1589054504" name="uart.py.txt" path="uart.py.txt" size="237" user="UliRaich" version="1" |
|
|
> > |
META FILEATTACHMENT |
attachment="uart2-v2.png" attr="" comment="" date="1602517346" name="uart2-v2.png" path="uart2-v2.png" size="27555" user="UliRaich" version="1" |
|