Open
Description
setHostname works fine when connecting to an existing access point, but it's not working when creating one.
Working
WiFi.setHostname(hostname);
...
while (status != WL_CONNECTED) {
status = WiFi.begin(ssid, pass);
delay(10000);
}
Not working
WiFi.setHostname(hostname);
WiFi.config(APIP, APIP, APIP, IPAddress(255, 255, 255, 0));
status = WiFi.beginAP(ssid, pass, apChannel);`
Is this by design, or not possible?