I'm using a board with the next GPIO as the image:
Also im ussing a TTL to RS-485 module at 5V with chipset MAX485.
| ESP32 | MAX485 |
|---|---|
| RX | DI |
| TX | RO |
| 15 | DE & RE |
When I add the line to init uart, the board doesn't reply more.
from machine import UART
print("hello")
uart = UART(1,baudrate=9600, bits=8, parity=None, stop=1, rx=3,tx=1)
print("bye")
As anyone know about what I'm doing bad?
many thanks