Arduino 基于 ESP8266 配置WIFI模块
Arduino 基于 ESP8266 配置WIFI模块 选择 【文件】->【示例】->【ESP8266WIFI】->【WiFiWebServer】 用Arduino新建一个文件,将刚打开的的WIFIWebServer的内容复制过去 修改 ssid 和 password 为自家路由器的名称以及密码 将程序上传到 ESP8266 开发板中 最后就可以通过网站 [ip]/gpio/1 或 [ip]/gpio/0 控制灯开关 # http://192.168.0.57/gpio/1 # ip 地址在序列库中可以看到 附上代码 /* * This sketch demonstrates how to set up a simple HTTP-like server. * The server will set a GPIO pin depending on the request * http://server_ip/gpio/0 will set the GPIO2 low, * http://server_ip/gpio/1 will set the GPIO2 high * server_ip is the IP address of the ESP8266 module, will be * printed to Serial when the module is connected