NodeMCU学习(七)--Net
2022-07-15 来源:csdn
1、net相关API
2、主要API的使用
(1) net.createServer()
(2)net.server:close()
(3)net.server:listen()
(4)net.socket:on()
(5) net.socket:send()
3、试验代码
实现服务器与客户端之间的数据交互,服务器向客户端发送数据。
cfg={}
cfg.ssid = 'OnePlus6'
cfg.pwd = '578209160'
--wifi.setmode(wifi.STATION)
wifi.setmode(wifi.STATIONAP)
wifi.sta.config(cfg)
wifi.sta.connect()
timer1 = tmr.create()
function Reconn()
if wifi.sta.getip()==nil then
print('Connect AP, Waiting...')
else
timer1:stop()
ip = wifi.sta.getip()
print('connected,Ip is '..ip)
print('MAC is '..wifi.sta.getmac())
end
end
timer1:alarm(1000, tmr.ALARM_AUTO, Reconn)
sv = net.createServer(net.TCP, 30)
function receiver(sck, data)
print(data)
sck:close()
end
if sv then
sv:listen(8080, function(conn)
conn:on('receive', receiver)
conn:send('hello world')
end)
end
4、注意事项
(1)NodeMCU模块先需要连接一个WiFi网络,连接成功获取模块的IP,这个IP在试验中就相当于服务器IP;
(2)在连接时候要设定端口,实验中的8080就是端口,需要注意的时有些端口是被禁止访问的,如果不行就换别的端口试试,尽量使用不常用的端口;
(3)在实验中,模块相当于服务器,网络调试助手相当于客户端,所以要选择“TCP client”模式;
(4)本实验中的网络是一个局域网,使用串口助手电脑的网络要与模块连接的网络为同一个局域网;
(5)有些网络这样测试是不成功的,源于一些安全保护(例如我公司的网络就是这样),在初次做实验时最好是使用手机产生一个热点,然后让模块和电脑去连接;