Unable to initilze Unable to initialise Uart with LILYGO TTGO Meshtastic T-Beam V1.2 #16610
Answered
by
robert-hh
Nico-germ
asked this question in
Using MicroPython
-
I have bought a LILYGO TTGO Meshtastic T-Beam V1.2 module and would like to read out the GPS data with Micropython. With the examples of the Arduino IDE in C this also works. But as soon as I try to open a Uart interface in Micropython, it does not work
Thonny reports
I have been trying to find the solution for 2 days and just can't get any further. |
Beta Was this translation helpful? Give feedback.
Answered by
robert-hh
Jan 19, 2025
Replies: 1 comment 3 replies
-
GPIO34 - GPIO39 are input only. You cannot use it for TX. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The picture shows that you must use tx=12 and rx=34. That connects the GPS module's TX to ESP32 RX, GPS module RX to ESP32 TX. The definition of TX and RX is sometimes confusing between the sender and receiver view.
Edit: tx=34 cannot work with a different software because it is a hardware limitation of the ESP32.