Hi.
I'm trying to make communication between my ESP32-WROOM-32D board and the modem UBLOCX SARA U201
I saw that there is an Arduino library that supports this modem (tinyGSM) and I uploaded an example sketch.
Wiring between two board are these:
ESP32 3GSARA
RX1 --> RX
TX1 --> TX
CTS1 --> CTS
RTS1 --> RTS
GPIO13--> PWR
link of datasheets boards:
looking from serial monitor esp doesn't see the modem!!
We have done a further test:
have connected the modem directly pc with usb cable.
we made a further test: we connected the board via USB cable and through a serial reading program we saw that the modem actually works!!
have anyone connected successfully the modem to a bord? can anyone help please?
The first issue I see with the connection is using the flash programing pins for serial inputs. Unless you got a very good understanding of the ESP32 and coding for it, forget using the first 3 pins to either side of the ESP32 USB connector.
You'll want to use the GPIO_NUM_16 and GPIO_NUM_17.
Get a better pinout diagram.
Please post you well formatted code in code tags so we can see it without having to download it.
Follow a tutorial on using the ESP32 hardware serial ports, use the words "esp32 hardware serial port" to find one.