Mqtt received message on subscribed topic

From wiki.netio-products.com
Jump to navigation Jump to search

Triggered when message is published on subscribed topic. Arguments are stored in table event.args

Arguments

  • payload published message
  • topic topic name

Print arguments

-- print all arguments
for i, v in pairs(event.args) do
  logf("%s: %s",tostring(i),tostring(v))
end