Setup Fixed IP [Solved]
Posted: Mon Apr 27, 2015 6:15 pm
How can i set the IP to be fixed?
Using the AT commands it was AT+CIPSTA=192.168.1.77
Thanks
Using the AT commands it was AT+CIPSTA=192.168.1.77
Thanks
-->
Open Community Forum for ESP8266, Come share Arduino and IoT (Internet of Things)
https://www.esp8266.com/
IPAddress ip(192, 168, 0, 177);
IPAddress gateway(192, 168, 0, 1);
IPAddress subnet(255, 255, 255, 0);
WiFi.config(ip, gateway, subnet);