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.

Linking Multiple LM's
#7
For connection with encryption use this example. Enable MQTT broker with encryption and add a user and password in the Broker app
You may need to reboot LM with broker after changing settings.
Code:
if not broker then   broker = '192.168.0.10'     username = 'user'   password = 'password'     socket = require('socket')   port = 8883   function multiply(mult)     return function(value)       local num = tonumber(value)       if num then         return num * mult       else         return value       end     end   end   -- topic to object map   mqtt_to_object = {     ['in/topic1'] = '1/0/0',     ['in/topic2'] = '1/0/19',   }   -- optional topic value conversion function   mqtt_to_object_conv = {   --  ['in/topic1'] = multiply(100),   --  ['in/topic2'] = multiply(0.01),   }   -- object to topic map   object_to_mqtt = {     ['1/0/0'] = 'out/topic1',     ['1/0/19'] = 'out/topic2',   }   datatypes = {}   grp.sender = 'mq'   require('socket')   for addr, _ in pairs(object_to_mqtt) do     local obj = grp.find(addr)     if obj then       datatypes[ addr ] = obj.datatype     end   end   mclient = require('mosquitto').new()   mclient.ON_CONNECT = function(res, ...)     log('mqtt connect status', res, ...)     if res then       for topic, _ in pairs(mqtt_to_object) do         mclient:subscribe(topic)       end     else       mclient:disconnect()     end   end   mclient.ON_MESSAGE = function(mid, topic, payload)     local addr = mqtt_to_object[ topic ]     if addr then       local fn = mqtt_to_object_conv[ topic ]       if fn then         payload = fn(payload)       end       grp.write(addr, payload)     end   end   mclient.ON_DISCONNECT = function(...)     log('mqtt disconnect', ...)     mclientfd = nil   end   function mconnect()     local status, rc, msg, fd     status, rc, msg = mclient:connect(broker, port)     if not status then       log('mqtt connect failed ' .. tostring(msg))     end     fd = mclient:socket()     if fd then       mclientfd = fd     end   end       mclient:tls_insecure_set(true)   mclient:login_set(username, password or '')     mconnect()   function publishvalue(event)     -- message from us or client is not connected     if event.sender == 'mq' or not mclientfd then       return     end     local addr = event.dst     local dpt = datatypes[ addr ]     local topic = object_to_mqtt[ addr ]     -- unknown object     if not dpt or not topic then       return     end     local value = busdatatype.decode(event.datahex, dpt)     if value ~= nil then       if type(value) == 'boolean' then         value = value and 1 or 0       end       mclient:publish(topic, tostring(value))     end   end   lbclient = require('localbus').new(1)   lbclient:sethandler('groupwrite', publishvalue)   lbclientfd = socket.fdmaskset(lbclient:getfd(), 'r')   -- run timer every 5 seconds   timer = require('timerfd').new(5)   timerfd = socket.fdmaskset(timer:getfd(), 'r') end -- mqtt connected if mclientfd then   mclientfdset = socket.fdmaskset(mclientfd, mclient:want_write() and 'rw' or 'r')   res, lbclientstat, timerstat, mclientstat =       socket.selectfds(10, lbclientfd, timerfd, mclientfdset) -- mqtt not connected else   res, lbclientstat, timerstat =     socket.selectfds(10, lbclientfd, timerfd) end if mclientstat then   if socket.fdmaskread(mclientstat) then     mclient:loop_read()   end   if socket.fdmaskwrite(mclientstat) then     mclient:loop_write()   end end if lbclientstat then   lbclient:step() end if timerstat then   -- clear armed timer   timer:read()   if mclientfd then     mclient:loop_misc()   else     mconnect()   end end
------------------------------
Ctrl+F5
Reply


Messages In This Thread
Linking Multiple LM's - by sjfp - 05.05.2020, 18:30
RE: Linking Multiple LM's - by Daniel - 06.05.2020, 10:49
RE: Linking Multiple LM's - by sjfp - 06.05.2020, 13:43
RE: Linking Multiple LM's - by sjfp - 11.05.2020, 10:15
RE: Linking Multiple LM's - by Daniel - 11.05.2020, 10:23
RE: Linking Multiple LM's - by sjfp - 11.05.2020, 11:01
RE: Linking Multiple LM's - by Daniel - 11.05.2020, 12:41
RE: Linking Multiple LM's - by sjfp - 11.05.2020, 13:44
RE: Linking Multiple LM's - by Daniel - 11.05.2020, 13:50
RE: Linking Multiple LM's - by admin - 11.05.2020, 13:51
RE: Linking Multiple LM's - by sjfp - 11.05.2020, 15:20
RE: Linking Multiple LM's - by sjfp - 13.05.2020, 09:06
RE: Linking Multiple LM's - by Daniel - 13.05.2020, 09:28
RE: Linking Multiple LM's - by Daniel - 13.05.2020, 13:57
RE: Linking Multiple LM's - by Daniel - 16.05.2020, 16:16
RE: Linking Multiple LM's - by admin - 19.05.2020, 09:17
RE: Linking Multiple LM's - by jmir - 13.08.2021, 16:11

Forum Jump: