Search found 7 matches
- Fri May 05, 2023 1:29 pm
- Forum: Hardware
- Topic: ESP32 + GPS - > permanently got error" GPS not detected. Check wiring".
- Replies: 5
- Views: 2314
Re: ESP32 + GPS - > permanently got error" GPS not detected. Check wiring".
Finally, I changed cables (once again) and now GPS has a proper power supply (red LED is switched on). Still don't have the coordinates but I am in the room, interior...I think I should go outdoors.
- Fri May 05, 2023 8:49 am
- Forum: Hardware
- Topic: ESP32 + GPS - > permanently got error" GPS not detected. Check wiring".
- Replies: 5
- Views: 2314
Re: ESP32 + GPS - > permanently got error" GPS not detected. Check wiring".
Isn't GPIO 17 a UART U2_TXD??ESP_Sprite wrote: ↑Fri May 05, 2023 8:31 amAre you sure you're not using an ESP32 (module) with PSRAM? If so, GPIO 17 is generally unavailable.
- Fri May 05, 2023 8:36 am
- Forum: Hardware
- Topic: ESP32 + GPS - > permanently got error" GPS not detected. Check wiring".
- Replies: 5
- Views: 2314
Re: ESP32 + GPS - > permanently got error" GPS not detected. Check wiring".
I am using ESP32S (DEVKIT 1).
From the image below I see thta RX, TX (GPIO16 and GPIO 17) are UART2.
From the image below I see thta RX, TX (GPIO16 and GPIO 17) are UART2.
- Fri May 05, 2023 6:27 am
- Forum: Hardware
- Topic: ESP32 + GPS - > permanently got error" GPS not detected. Check wiring".
- Replies: 5
- Views: 2314
ESP32 + GPS - > permanently got error" GPS not detected. Check wiring".
Using this code I permanently got the error" G PS not detected. Check wiring" . #include <HardwareSerial.h> #include <TinyGPSPlus.h> HardwareSerial GPSSerial (2); TinyGPSPlus gps; void setup() { Serial.begin(9600); GPSSerial.begin ( 9600, SERIAL_8N1, 16, 17 ); // begin GPS hardware serial } void loo...
- Thu Apr 20, 2023 7:53 pm
- Forum: Hardware
- Topic: Connecting ESP32-3248S035 board with GPS MatekSys ublox SAM-M8Q.
- Replies: 1
- Views: 2231
Connecting ESP32-3248S035 board with GPS MatekSys ublox SAM-M8Q.
Hello forum! I have difficulties with connecting ESP32-3248S035 board with GPS MatekSys ublox SAM-M8Q . The ESP32-3248S035 is a rather rare board and the documentation is not so good. I know it is UART, so I need to connect RX with TX and TX with RX, and GND with GND. But I don't know what voltage i...
- Tue Apr 11, 2023 9:20 am
- Forum: General Discussion
- Topic: ESP32 / Arduino IDE problem - ModuleNotFoundError: No module named 'serial'
- Replies: 4
- Views: 8776
Re: ESP32 / Arduino IDE problem - ModuleNotFoundError: No module named 'serial'
Problem solved - I have installed Arduino IDE from "Ubuntu Software". Now IDE works good!
- Mon Mar 27, 2023 10:49 am
- Forum: General Discussion
- Topic: ESP32 / Arduino IDE problem - ModuleNotFoundError: No module named 'serial'
- Replies: 4
- Views: 8776
ESP32 / Arduino IDE problem - ModuleNotFoundError: No module named 'serial'
Hello forum! I am trying to verify sample / example code for ESP32 and I got error every time: Traceback (most recent call last): File "/home/cc/.arduino15/packages/esp32/tools/esptool_py/4.5.1/esptool.py", line 31, in <module> import esptool File "/home/cc/.arduino15/packages/esp32/tools/esptool_py...