This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

MQTT publish json
#5
(09.04.2019, 07:16)admin Wrote: You can use event script to publish and disconnect after publish, like in this post: https://forum.logicmachine.net/showthread.php?tid=1793
Use json.encode to create your data string instead of creating JSON string manually.

This code will publish once connected and disconnect once publish is done.
Code:
client.ON_CONNECT = function(stat, code, err)
 if stat then
   client:publish('devices/' .. device_id .. '/messages/events/', data)
 else
   log('mqtt connect error', err, code)
 end
end

client.ON_PUBLISH = function()
 client:disconnect()
 running = false
end

Thanks! I will give it a try.
Reply


Messages In This Thread
MQTT publish json - by JohnTH - 05.04.2019, 11:41
RE: MQTT publish json - by admin - 08.04.2019, 09:50
RE: MQTT publish json - by JohnTH - 08.04.2019, 18:18
RE: MQTT publish json - by admin - 09.04.2019, 07:16
RE: MQTT publish json - by JohnTH - 09.04.2019, 08:21

Forum Jump: