- Which version of the IDE is the best one to use with the ESP8266?
- Which version of sandeepmisry's plug-in should I be using?
I have some very basic code that uses WiFi.begin to connect to my network. With version 1.6.1 it works perfectly. However, when I run this same code with IDE 1.6.3 and sandeepmistry version 0.0.4, I get the following output, and the status never changes o WL_CONNECTED:
Connecting...
sl
scandone
usl
sul 7 0
..reconnect
rm match
pm close 7 0 0/6080468
scandone
add 0
aid 5
pm open phy_2,type:2 0 0
connected with xxxx, channel 1
dhcp client start...
cnt
.........
Here is the code that works with 1.6.1, but not with 1.6.3:
Serial.println("Connecting...");
WiFi.begin(ssid, password);
// Wait for connection
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.print("Connected to ");
Thanks,
-- John