我正在尝试使用物联网概念测试程序。我得到了这个简单的 mqtt lua 客户端。刷新我的 devkit nodemcu v2 后它工作正常,但是当我重新启动它或我再次保存它时,ESPlorer 说:
test.lua:2: attempt to call field 'Client' (a nil value)
代码:来源:https ://www.cloudmqtt.com/docs-nodemcu.html
-- initiate the mqtt client and set keepalive timer to 120sec
mqtt = mqtt.Client("client_id", 120) -- "username", "password")
mqtt:on("connect", function(con) print ("connected") end)
mqtt:on("offline", function(con) print ("offline") end)
-- on receive message
mqtt:on("message", function(conn, topic, data)
print(topic .. ":" )
if data ~= nil then
print(data)
end
end)
mqtt:connect("IP", 1883, 0, function(conn)
print("connected")
-- subscribe topic with qos = 0
mqtt:subscribe("/topic",0, function(conn)
-- publish a message with data = my_message, QoS = 0, retain = 0
mqtt:publish("/topic","hello",0,0, function(conn)
print("sent")
end)
end)
end)
这个客户有可能随时工作吗?我错过了什么?现在我只能在闪存设备上保存脚本后与代理通信。