probonopd / ESP8266HueEmulator

Emulate a Philips Hue bridge running on an ESP8266 using the Arduino IDE.
MIT License
411 stars 93 forks source link

Wifi connection issue. #36

Open richms opened 7 years ago

richms commented 7 years ago

I had to replace the part of setup() that connects to WiFi with the more normal

  WiFi.begin(ssid, password);
    while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }

from other sketches, since it would fail 90% of the time and the code it has would just stop there and say WiFi failed. I dont know enough about git to be able to do whatever to update it.

probonopd commented 7 years ago

Thanks for reporting this. Will fix once the code builds again on Travis CI.