gpt4 book ai didi

Arduino 显示 Ethernet.localIP()

转载 作者:行者123 更新时间:2023-12-03 16:07:00 26 4
gpt4 key购买 nike

我正在尝试将设备的 IP 地址分配给一个字符串变量。当我使用 Serial.println(Ethernet.localIP())测试它以八位字节显示 IP 地址。如果我使用 String(Ethernet.localIP());然后将其显示为小数。

有没有办法将八位字节格式分配给变量?

 String MyIpAddress;

void StartNetwork()
{
Print("Initializing Network");
if (Ethernet.begin(mac) == 0) {
while (1) {
Print("Failed to configure Ethernet using DHCP");
delay(10000);
}
}
Serial.println(Ethernet.localIP()); //displays: 192.168.80.134
MyIpAddress = String(Ethernet.localIP());
Serial.println(MyIpAddress); //displays: 2253433024
}

最佳答案

结果证明 IPAddress 属性是一个数组。显示 IP 地址的一种简单方法如下:

String DisplayAddress(IPAddress address)
{
return String(address[0]) + "." +
String(address[1]) + "." +
String(address[2]) + "." +
String(address[3]);
}

关于Arduino 显示 Ethernet.localIP(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28119653/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com