-
Notifications
You must be signed in to change notification settings - Fork 114
Open
Labels
type: imperfectionPerceived defect in any part of projectPerceived defect in any part of project
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?
ocrdu
Metadata
Metadata
Assignees
Labels
type: imperfectionPerceived defect in any part of projectPerceived defect in any part of project