Search found 3 matches
- Thu Aug 30, 2018 1:41 pm
- Forum: General Discussion
- Topic: esp32 dev board will not connect to AP
- Replies: 0
- Views: 3030
esp32 dev board will not connect to AP
hi my esp32 dev board will not connect to AP is there a solution to this ie a better way to connect than the standard way i see there are alot of people having this issue #include <Adafruit_Sensor.h> //#include "DHT.h" #include <WiFi.h> #include <PubSubClient.h> #include "SparkFunHTU21D.h" //Create ...
- Tue Aug 28, 2018 4:52 pm
- Forum: ESP32 Arduino
- Topic: esp32 dev board not connecting to wifi
- Replies: 7
- Views: 22707
Re: esp32 dev board not connecting to wifi
i managed to fix it by changing while (WiFi.status() != WL_CONNECTED) {
to while (WiFi.status() == WL_CONNECTED) {
was driving me nuts i was looking at loads of code a noticed this was different in one of the sketches
to while (WiFi.status() == WL_CONNECTED) {
was driving me nuts i was looking at loads of code a noticed this was different in one of the sketches
- Mon Aug 27, 2018 1:43 pm
- Forum: ESP32 Arduino
- Topic: esp32 dev board not connecting to wifi
- Replies: 7
- Views: 22707
esp32 dev board not connecting to wifi
i have an issue with my esp32 development board not connecting to wifi it just says connecting on the serial monnitor but never connects all the login details are correct. the code has been hashed together from several sources however but was working #include <Adafruit_Sensor.h> //#include "DHT.h" #...