_
Size: a a a
_
AF
i
i
i
char s[16];
sprintf(s, "%d.%d.%d.%d", Ethernet.localIP()[0], Ethernet.localIP()[1], Ethernet.localIP()[2], Ethernet.localIP()[3]);
mqtt.publish("myhome/controller/ip", s);
AF
String ipaddress = WiFi.localIP().toString();
char ipchar[ipaddress.length()+1];
ipaddress.toCharArray(ipchar,ipaddress.length()+1);
client.publish("deviceIP", ipchar);
B
DK
DK
_
_
B
_
i
D
СA
D
D