forked from xHasKx/luamqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
copas.lua
76 lines (63 loc) · 1.96 KB
/
copas.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
-- load mqtt module
local mqtt = require("mqtt")
local copas = require("copas")
-- create mqtt client
local client = mqtt.client{
-- NOTE: this broker is not working sometimes; comment username = "..." below if you still want to use it
-- uri = "test.mosquitto.org",
uri = "mqtt.flespi.io",
-- NOTE: more about flespi tokens: https://flespi.com/kb/tokens-access-keys-to-flespi-platform
username = "stPwSVV73Eqw5LSv0iMXbc4EguS7JyuZR9lxU5uLxI5tiNM8ToTVqNpu85pFtJv9",
clean = true,
-- NOTE: copas connector
connector = require("mqtt.luasocket-copas"),
}
print("created MQTT client", client)
client:on{
connect = function(connack)
if connack.rc ~= 0 then
print("connection to broker failed:", connack:reason_string(), connack)
return
end
print("connected:", connack) -- successful connection
-- subscribe to test topic and publish message after it
assert(client:subscribe{ topic="luamqtt/#", qos=1, callback=function(suback)
print("subscribed:", suback)
-- publish test message
print('publishing test message "hello" to "luamqtt/simpletest" topic...')
assert(client:publish{
topic = "luamqtt/simpletest",
payload = "hello",
qos = 1
})
end})
end,
message = function(msg)
assert(client:acknowledge(msg))
print("received:", msg)
print("disconnecting...")
assert(client:disconnect())
end,
error = function(err)
print("MQTT client error:", err)
end,
close = function()
print("MQTT conn closed")
end
}
-- run io loop for client until connection close
copas.addthread(function()
print("running client in separated copas thread #1...")
mqtt.run_sync(client)
-- NOTE: in sync mode no automatic reconnect is working, but you may just wrap "mqtt.run_sync(client)" call in a loop like this:
-- while true do
-- mqtt.run_sync(client)
-- end
end)
copas.addthread(function()
print("execution of separated copas thread #2...")
copas.sleep(0.1)
print("thread #2 stopped")
end)
copas.loop()
print("done, copas loop is stopped")