Closed
Description
I am trying to set static IP address, and tried this:
IPAddress ip(192,168,0,124);
(...)
WiFi.config(ip);
WiFi.begin(ssid, password);
Compiler error: It wants three arguments: IP, gateway, subnet.
New attempt:
IPAddress ip(192,168,0,124);
IPAddress gateway(192,168,0,1);
IPAddress subnet(255,255,255,0);
(...)
WiFi.config(ip, gateway, subnet);
WiFi.begin(ssid, password);
This compiles, but the IP address does not change.
Please advise.
Metadata
Metadata
Assignees
Labels
No labels