硬件:ESP8266 开发板、杜邦线、USB 数据线、LED 灯
软件:ESPlorer、socketools、flashtool
NodeMcu 的介绍:https://baike.baidu.com/item/NodeMCU/17106281?fr=aladdin
去 NodeMcu的官网上在线编译一个固件 https://nodemcu-build.com/,编译选项选择默认,填上邮箱一会就把固件的下载地址发送过来了。
使用 ESPFlasher 把固件刷入(integer 和 float 两种版本都行),接着就可以用 ESPlorer 进行 Lua 语言的开发了。
具体的步骤如下:
wifi.setmode(wifi.STATIONAP)
function con_wifi()
cfg = {}
cfg.ssid = "D-Link_DIR-820LW"
cfg.pwd = "szdsys207"
wifi.sta.config(cfg)
wifi.sta.connect()
print("config success!")
end
con_wifi()
pin = 1
gpio.mode(pin,gpio.OUTPUT)
srv = net.createServer(net.TCP,28800)
srv:listen(10116,function(conn)
print "listening..."
conn:on("receive",function(sck,recvStr)
print("The data: "..recvStr)
if (recvStr == "on") then
gpio.write(1,gpio.HIGH)
elseif(recvStr == "off") then
gpio.write(1,gpio.LOW)
else
print("no choice!")
end
end)
end)
但是需要注意的是必须点击 UPLOAD 以后才能使得 init.lua 正常加载,否则会提示 file not found。
这里是在本地开启了一个 10116 的 TCP 端口,可以手写 c 语言或者 python 的 socket 编程来连接上发送数据。
但是我这里直接选择了现成的工具来发包。
如图:
如图:
用 wireshark 查看一下发送控制命令的 TCP 包的情况。
其他两种情况都是类似,就不重新抓包了。
https://nodemcu.readthedocs.io/en/master/en/modules/wifi/#wifistagetap
https://blog.csdn.net/zz531987464/article/details/83449458
https://www.cnblogs.com/webenh/p/9087555.html