You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In earlier versions of the Arduino Core, the following code would result in IP Address: 192.168.42.1 getting printed to Serial. However, with 3.6.2, I get IP Address: (IP unset) instead.
#include <WiFi.h>
void setup() {
// put your setup code here, to run once:
while (!Serial) {}
Serial.begin(115200);
Serial.println("Creating AP");
WiFi.softAP("test-network", "test-password");
delay(1000);
Serial.print("IP Address: ");
Serial.println(WiFi.softAPIP());
}
void loop() {
// put your main code here, to run repeatedly:
}
To work around this, I had to add the following before the WiFi.softAP(...) call:
In earlier versions of the Arduino Core, the following code would result in
IP Address: 192.168.42.1
getting printed to Serial. However, with 3.6.2, I getIP Address: (IP unset)
instead.To work around this, I had to add the following before the
WiFi.softAP(...)
call:Was this an expected change?
The text was updated successfully, but these errors were encountered: