Network
setConfig() [Network]
Since 5.3.0:
Set a NetworkInterfaceConfig
for a generic network interface on the Argon, P2, and Photon 2 running Device OS 5.3.0 or later. This can be used with Ethernet and WiFi. This is used to set a static IP address or restore DHCP addressing (the default).
// PROTOTYPE
int setConfig(const particle::NetworkInterfaceConfig& conf);
// EXAMPLE
Network.setConfig(NetworkInterfaceConfig()
.source(NetworkInterfaceConfigSource::STATIC)
.address({192,168,1,20}, {255,255,255,0})
.gateway(SockAddr({192,168,1,1}))
.dns(SockAddr({192,168,1,1})));