NodeMCU Lua 中 Socket 连接作为代码片段能够工作,却无法从 init.lua 运行

我有如下代码

conn = net.createConnection(net.TCP, 0)
conn:on("sent", function(sck,c)
   print("发送成功")
   sck:close()
   end)

conn:on("connection", function(sck,c)
   print("已连接..")
   sck:send("测试")
   end)

 conn:connect(9090, "192.168.1.89")
 print("发送数据.")

当作为 ESPlorer 中的一个代码片段运行,即实时解释运行时,这个代码可以正常工作。我可以看到输出的 "已连接.." 和 "发送成功",消息也能成功出现在服务器端。但当将其作为 init.lua 或者 mcu-temp.lua 的一部分运行时,我甚至看不到 "已连接.." 的输出消息。

连接到 WIFI 是OK的,而板子在尝试“实时”运行和从文件运行时也没有重置。但我真的无法理解为什么一个方法能够正常工作,而另一种就不能。

点赞
用户131929
用户131929

连接到 WIFI 是 OK 的

我非常怀疑。如果你是从 ESPlorer 运行,那是可以的,但是如果你重启设备就不行了。

连接到 AP 通常需要几秒钟的时间。你需要等到连接成功之后,才能继续启动序列。请记住:NodeMCU的大多数操作都是异步和事件驱动的,“wifi.sta.connect()”不会阻塞。

以下是我从 https://cknodemcu.wordpress.com/ 借来并改编的启动序列。

SSID = <待定>
PASSWORD = <待定>

function startup()
    local conn = net.createConnection(net.TCP, 0)
    conn:on("sent", function(sck, c)
       print("Sent")
       sck:close()
    end)

    conn:on("connection", function(sck, c)
       print("Connected..")
       sck:send("test")
    end)

    conn:connect(9090, "192.168.1.89")
    print("Sent data.")
end

print("setting up WiFi")
wifi.setmode(wifi.STATION)
wifi.sta.config(SSID,PASSWORD)
wifi.sta.connect()
tmr.alarm(1, 1000, 1, function()
    if wifi.sta.getip() == nil then
        print("IP unavaiable, Waiting...")
    else
        tmr.stop(1)
        print("Config done, IP is "..wifi.sta.getip())
        print("You have 5 seconds to abort startup")
        print("Waiting...")
        tmr.alarm(0, 5000, 0, startup)
    end
 end)

就在两天前,我在 SO 上几乎回答了同样的问题。请参见 https://stackoverflow.com/a/37495955/131929 以获取备选解决方案。

2016-05-30 11:53:42