带有NodeMCU的ESP8266上的MQTT - 发布问题

时间:2015-12-20 15:40:54

标签: lua mqtt iot esp8266 nodemcu

我正在使用带有NodeMCU的ESP8266构建电池供电的物联网设备。 我使用mqtt定期执行测量并发布结果。 我知道,为了让网络堆栈运行,我应该避免紧密循环并依赖回调函数。因此,在我看来,我的测量代码的正确组织应该是:

interval=60000000

function sleep_till_next_sample()
 node.dsleep(interval)
end

function close_after_sending()
  m:close()
  sleep_till_next_sample()
end

function publish_meas()
   m:publish("/test",result,1,0,close_after_sending)
   print("published:"..result)
end

function measurement()
   -- The omitted part of the function accesses
   -- the hardware and places results
   -- in the "result" variable
   m = mqtt.Client("clientid", 120, "user", "password")
   m:connect("172.19.1.254",1883,0, publish_meas)
end

init.lua确保节点已连接到WiFi AP(如果没有,则重试最多20次,如果没有建立连接,则将节点置于休眠状态直到下一个测量时间)。 完成WiFi连接后,它会调用测量功能。

有趣的是,上面的代码并不起作用。控制台中没有显示错误,但mqtt代理不接收已发布的消息。 为了使它工作,我必须通过在回调函数中添加定时器来增加额外的空闲时间。

最终工作的代码如下所示:

interval=60000000

function sleep_till_next_sample()
 node.dsleep(interval)
end

function close_after_sending()
  m:close()
  tmr.alarm(1,500,0,function() sleep_till_next_sample() end)
end

function publish_meas()
   m:publish("/test",result,1,0,function() tmr.alarm(1,500,0,close_after_sending) end)
   print("published:"..result)
end

function measurement()
   -- The omitted part of the function accesses
   -- the hardware and places results
   -- in the "result" variable
   m = mqtt.Client("clientid", 120, "user", "password")
   m:connect("172.19.1.254",1883,0, function() tmr.alarm(1,500,0, publish_meas) end)
end

上述工作,但我不确定它是否是最佳的。为了节省电池电量,我希望在测量完成并发布结果后,最小化节点进入休眠状态之前的时间。

有没有更好的方法将必要的调用链接到m:connect,m:publish,m:close,最后是node.dsleep,以便在最短的时间内正确发布结果?

1 个答案:

答案 0 :(得分:1)

也许最近的固件可以解决这个问题。我正在解决一个我认为可能在某个问题上有所解释的问题,因此尝试重现上述问题。

我的简化测试代码基本相似;它从mqtt.Client.publish()的PUBACK回调中调用dsleep():

    NodeMCU custom build by frightanic.com
            branch: master
            commit: 81ec3665cb5fe68eb8596612485cc206b65659c9
            SSL: false
            modules: dht,file,gpio,http,mdns,mqtt,net,node,rtctime,sntp,tmr,uart,wifi
     build  built on: 2017-01-01 20:51
     powered by Lua 5.1.4 on SDK 1.5.4.1(39cb9a32)

并且在运行时,成功发布到我的MQTT代理。

我正在使用:

(Get-WmiObject win32_process -ComputerName $computer -Credential $mycreds |  ?{ $_.ProcessName -match "Workbench3.helper" }).Terminate()