Your new topic does not fit any of the above??? Check first. Then post here. Thanks.

Moderator: igrr

User avatar
By lethe
#43591
xtal wrote:current Ip's 192.168.4.1, 192.168.1.38
Tried--
IPAddress Ip = (192, 168, 5, 1);
IPAddress Gw = (192, 168, 5, 1);
IPAddress Nm = (255, 255, 255, 0);
WiFi.softAPConfig(Ip,Gw,Nm);

THEN - will not connect ....................

That's not correct C++ syntax. What you want is either
Code: Select allIPAddress Ip(192, 168, 5, 1);
or
Code: Select allIPAddress Ip = {192, 168, 5, 1};