UDP广播 MAC地址

 enduser_setup.start()
ListenPort =
wifi.setmode(wifi.STATIONAP) wifi.sta.autoconnect() clientid = wifi.sta.getmac()
print(clientid)
UdpSocket = net.createUDPSocket()
UdpSocket:listen(ListenPort)
UdpSocket:on("receive", function(s, data, port, ip)
print(string.format("received '%s' from %s:%d", data, ip, port))
s:send(port, ip, "echo: " .. clientid)
end) printip =
wifi.eventmon.register(wifi.eventmon.STA_DISCONNECTED, function(T)
printip =
end)
wifi.eventmon.register(wifi.eventmon.STA_GOT_IP, function(T)
if printip == then
print("+IP "..T.IP)
RSSI=wifi.sta.getrssi()--信号
print("RSSI is", RSSI)
end
printip =
end)

UDP广播 MAC地址

打开UDP访问192.168.8.197   4000端口

UDP广播 MAC地址

随意发送

收到设备MAC地址

能在此遇见是我们的缘分,我愿意帮助你,相信你一定可以取得成功!


扫码关注微信公众号  “小樊Study”获取更多

UDP广播 MAC地址

QQ群

UDP广播 MAC地址

淘宝店铺

UDP广播 MAC地址

上一篇:[PHP]对Json字符串解码返回NULL的一般解决方案


下一篇:[LeetCode] Decode String 解码字符串