NodeMCU中的套接字连接Lua作为片段而不是来自init.lua

时间:2016-05-30 10:50:25

标签: sockets lua nodemcu

我有以下代码

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("Send data.")

这在ESPlorer中作为片段运行时运行正常,IE运行实时解释器。我看到输出“已连接...”和“已发送”,并且消息显示在服务器上。当它是init.lua或我的mcu-temp.lua的一部分时,我甚至看不到“已连接...”消息。

与WIFI的连接是正常的,并且在尝试“实时”和从文件中重置电路板。我真的很困惑,为什么它的工作方式不错,而不是另一种方式。

1 个答案:

答案 0 :(得分:1)

  

与WIFI的连接正常

我严重怀疑。如果您从ESPlorer运行,那么是,但不是在重启设备时。

正常情况下,连接到AP需要几秒钟。您需要等到它连接,直到您可以继续启动序列。请记住:对于NodeMCU,大多数操作都是异步操作和事件驱动的,wifi.sta.connect()不会阻塞。

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

SSID = <tbd>
PASSWORD = <tbd>

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)

就在两天前,我在这里回答了几乎相同的问题。有关替代解决方案,请参阅https://stackoverflow.com/a/37495955/131929