arduino 8266 设置 IPAddress
时间: 2023-10-02 08:12:10 浏览: 85
IP地址设置
要设置 Arduino 8266 的 IP 地址,可以使用以下代码:
```
#include <ESP8266WiFi.h>
IPAddress ip(192, 168, 1, 100); // 设置 IP 地址
IPAddress gateway(192, 168, 1, 1); // 设置网关
IPAddress subnet(255, 255, 255, 0); // 设置子网掩码
void setup() {
WiFi.config(ip, gateway, subnet); // 将 IP 地址、网关和子网掩码配置到 WiFi
Serial.begin(9600);
}
void loop() {
// 你的代码
}
```
在 `setup()` 函数中,使用 `WiFi.config()` 方法将 IP 地址、网关和子网掩码配置到 WiFi。你需要将 `ip`、`gateway` 和 `subnet` 变量设置为你想要的值。然后,你可以在 `loop()` 函数中编写你的代码。
注意,如果你想要连接到 WiFi 网络,请在 `setup()` 函数中添加与 `WiFi.begin()` 相关的代码。
阅读全文