Search found 7 matches

by DronePilot
Fri May 05, 2023 1:29 pm
Forum: Hardware
Topic: ESP32 + GPS - > permanently got error" GPS not detected. Check wiring".
Replies: 5
Views: 2080

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.
by DronePilot
Fri May 05, 2023 8:49 am
Forum: Hardware
Topic: ESP32 + GPS - > permanently got error" GPS not detected. Check wiring".
Replies: 5
Views: 2080

Re: ESP32 + GPS - > permanently got error" GPS not detected. Check wiring".

ESP_Sprite wrote:
Fri May 05, 2023 8:31 am
Are you sure you're not using an ESP32 (module) with PSRAM? If so, GPIO 17 is generally unavailable.
Isn't GPIO 17 a UART U2_TXD??
by DronePilot
Fri May 05, 2023 8:36 am
Forum: Hardware
Topic: ESP32 + GPS - > permanently got error" GPS not detected. Check wiring".
Replies: 5
Views: 2080

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.
Image
by DronePilot
Fri May 05, 2023 6:27 am
Forum: Hardware
Topic: ESP32 + GPS - > permanently got error" GPS not detected. Check wiring".
Replies: 5
Views: 2080

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...
by DronePilot
Thu Apr 20, 2023 7:53 pm
Forum: Hardware
Topic: Connecting ESP32-3248S035 board with GPS MatekSys ublox SAM-M8Q.
Replies: 1
Views: 1986

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...
by DronePilot
Tue Apr 11, 2023 9:20 am
Forum: General Discussion
Topic: ESP32 / Arduino IDE problem - ModuleNotFoundError: No module named 'serial'
Replies: 4
Views: 7645

Re: ESP32 / Arduino IDE problem - ModuleNotFoundError: No module named 'serial'

Problem solved - I have installed Arduino IDE from "Ubuntu Software". Now IDE works good!
by DronePilot
Mon Mar 27, 2023 10:49 am
Forum: General Discussion
Topic: ESP32 / Arduino IDE problem - ModuleNotFoundError: No module named 'serial'
Replies: 4
Views: 7645

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...