Search found 3 matches
- Fri May 21, 2021 9:35 pm
- Forum: ESP32 Arduino
- Topic: ESP32 Not connecting to WiFi consistently
- Replies: 14
- Views: 65807
Re: ESP32 Not connecting to WiFi consistently
It's printing a '.' every loop it's not connected in your while loop, but there's nothing in the loop that says to try to connect again. Copy and paste the wifi.begin function to happen in your while not connected loop. Then it will try to connect to the internet repeatedly until successful or until...
- Fri Jan 08, 2021 7:49 am
- Forum: ESP32 Arduino
- Topic: Failed to connect to ESP32: Invalid head of packet (0xE0)
- Replies: 2
- Views: 19430
Re: Failed to connect to ESP32: Invalid head of packet (0xE0)
A few things 1 - check your voltage out of your uno, 2 - it looks like you're using the 3.3v, mine would only program in 5v using the adjacent 5v ground pin 3 - hold reset button and let go when you see the ellipses in red print, mine will only flash while booting. 4 - make sure you connect pin 0 to...
- Fri Jan 08, 2021 7:15 am
- Forum: ESP32 Arduino
- Topic: ESP32 Not connecting to WiFi consistently
- Replies: 14
- Views: 65807
Re: ESP32 Not connecting to WiFi consistently
I just fought an internet connection battle on my first esp32 with a similar issue and just added another Wifi.begin function inside of the while loop: while (WiFi.status() != WL_CONNECTED) { Serial.print("WL not connected, trying again..."); WiFi.begin(ssid, password); delay(1000); Cut and paste th...