Search found 160 matches

by GeorgeFlorian1
Mon Jul 19, 2021 1:32 pm
Forum: ESP32 Arduino
Topic: Why are GPIOs 34 and 35 always LOW ?
Replies: 8
Views: 17505

Why are GPIOs 34 and 35 always LOW ?

I have a WROVER-B and I am trying to use GPIO32,33,34 and 35 as buttons. So when I press the button, it should put the pin to LOW. The problem is that GPIO 34 and 35 are always LOW. #define RST_BUTTON 33 #define Input_1 32 #define Input_2 34 #define Input_3 35 pinMode(RST_BUTTON, INPUT); pinMode(Inp...
by GeorgeFlorian1
Mon Jul 19, 2021 1:29 pm
Forum: ESP32 Arduino
Topic: identifier "wifi_event_ap_staconnected_t" is undefined
Replies: 0
Views: 1510

identifier "wifi_event_ap_staconnected_t" is undefined

Hello. I am trying to use the following event handler : static void wifi_event_handler(void* arg, esp_event_base_t event_base, int32_t event_id, void* event_data) { wifi_event_ap_staconnected_t *event; wifi_event_ap_stadisconnected_t* evente; switch (event_id) { case SYSTEM_EVENT_AP_START: ESP_LOGV(...
by GeorgeFlorian1
Tue Jul 13, 2021 11:35 am
Forum: Hardware
Topic: Can GPIO affect WiFi ?
Replies: 5
Views: 4664

Re: Can GPIO affect WiFi ?

Hello @GeorgeFlorian1 hmm, not sure what's happening here. Are there any errors in the log? Have you tried another power source, like an USB adapter or power bank? Thanks Felix I don't have other power sources. I can power up the ESP using an USB cable or using a 5V from the Flight Controller. I go...
by GeorgeFlorian1
Mon Jul 12, 2021 11:52 am
Forum: Hardware
Topic: Can GPIO affect WiFi ?
Replies: 5
Views: 4664

Re: Can GPIO affect WiFi ?

Hello @GeorgeFlorian1 the ESP32 Wrover-B module has PSRAM, which requires GPIO 16 and 17 so you cannot use those for anything else. Thanks Felix I've moved to GPIO 18 and 19. These are connected to the drones RX and TX pins respectively. The measured voltages on these pins is 3v3. I am powering the...
by GeorgeFlorian1
Mon Jul 12, 2021 11:16 am
Forum: ESP-IDF
Topic: Can't connect to softAP. Client does not receive IP Address
Replies: 7
Views: 5100

Re: Can't connect to ESP's AP

Have you examined the source to determine under what conditions it might be stopped? What source ? I don't know what else to examine or do. In the latest attempt I've build and flashed the project using the esp-idf python tool and I am powering the ESP via the USB. Maybe it's because I tried using ...
by GeorgeFlorian1
Thu Jul 08, 2021 2:26 pm
Forum: Hardware
Topic: Can GPIO affect WiFi ?
Replies: 5
Views: 4664

Can GPIO affect WiFi ?

Board: ESP32 Wrover-B DevKit v4 I am struggling to connect to an ESP32-Wrover-B's softAP. I have PIN 17 and PIN 19 acting as TX, respectively as RX. They are connected to a CubeOrange flight controller as I am trying to establish a serial communication. And whenever they are connected, the softAP wo...
by GeorgeFlorian1
Thu Jul 08, 2021 9:27 am
Forum: ESP-IDF
Topic: Can't connect to softAP. Client does not receive IP Address
Replies: 7
Views: 5100

Re: Can't connect to ESP's AP

I just compiled the project for my board using the ESP-IDF extension on VSCode, but I still have the same problem. I cannot connect to the AP. I can't connect with the PC nor the mobile phone. Sorry for asking a dumb question, but since you haven't mentioned any details... the posted code they have...
by GeorgeFlorian1
Mon Jul 05, 2021 12:01 pm
Forum: ESP-IDF
Topic: Can't connect to softAP. Client does not receive IP Address
Replies: 7
Views: 5100

Re: Can't connect to ESP's AP

Did you compile it for your platform, or did you just flash the precompiled binary? The binaries were compiled and tested on a DOIT ESP32. I just compiled the project for my board using the ESP-IDF extension on VSCode, but I still have the same problem. I cannot connect to the AP. I can't connect w...
by GeorgeFlorian1
Sat Jul 03, 2021 10:41 am
Forum: ESP-IDF
Topic: Can't connect to softAP. Client does not receive IP Address
Replies: 7
Views: 5100

Re: Can't connect to ESP's AP

mbratch wrote:
Fri Jul 02, 2021 1:15 pm
Did you compile it for your platform, or did you just flash the precompiled binary? The binaries were compiled and tested on a DOIT ESP32.
I have used the precompiled binaries. Huh, so that can cause issues ?
I will try to compile it for the board that I am using.
Thanks.
by GeorgeFlorian1
Fri Jul 02, 2021 11:34 am
Forum: ESP-IDF
Topic: Can't connect to softAP. Client does not receive IP Address
Replies: 7
Views: 5100

Can't connect to softAP. Client does not receive IP Address

I am trying to use https://github.com/DroneBridge/ESP32 on a ESP32-Wrover-B I've flashed it using esp-idf-v4.2.1. I am trying to connect to the ESP's AP with my phone but it doesn't work. I keep getting the same two error messages on my phone: Couldn't authenticate connection Couldn't get IP address...