@@ -2,16 +2,17 @@ local module = ...
2
2
3
3
local mqtt = require (' mqtt_ws' )
4
4
local settings = require (' settings' )
5
- local zoneToPin = require (" zone_to_pin" )
6
5
local device_id = wifi .sta .getmac ():lower ():gsub (' :' ,' ' )
7
- local c = mqtt .Client (settings .aws )
8
6
local topics = settings .aws .topics
9
7
10
8
local sendTimer = tmr .create ()
11
9
local timeout = tmr .create ()
12
10
local mqttTimeout = tmr .create ()
13
11
local heartbeat = tmr .create ()
14
12
13
+ -- Global client for method access
14
+ mqttC = mqtt (settings .aws )
15
+
15
16
timeout :register (3000 , tmr .ALARM_SEMI , function ()
16
17
sensorPut [1 ].retry = (sensorPut [1 ].retry or 0 ) + 1
17
18
sensorPut [1 ].message_id = nil
@@ -32,12 +33,12 @@ sendTimer:register(200, tmr.ALARM_AUTO, function(t)
32
33
for k , v in pairs (sensorPut ) do sensorPut [k ] = nil end -- remove all pending sensor updates
33
34
tmr .create ():alarm (30000 , tmr .ALARM_SINGLE , function () node .restart () end ) -- reboot in 30 sec
34
35
else
35
- local message_id = c .msg_id
36
+ local message_id = mqttC .msg_id
36
37
local topic = sensor .topic or topics .sensor
37
38
sensor .device_id = device_id
38
39
print (" Heap:" , node .heap (), " PUBLISH" , " Message ID:" , message_id , " Topic:" , topic , " Payload:" , sjson .encode (sensor ))
39
40
timeout :start ()
40
- c :publish (topic , sensor )
41
+ mqttC :publish (topic , sensor )
41
42
sensor .message_id = message_id
42
43
end
43
44
end
@@ -60,24 +61,24 @@ local function startLoop()
60
61
print (" Heap:" , node .heap (), ' Connecting to AWS IoT Endpoint:' , settings .endpoint )
61
62
62
63
local mqttFails = 0
63
- c :on (' offline' , function ()
64
+ mqttC :on (' offline' , function ()
64
65
mqttFails = mqttFails + 1
65
66
print (" Heap:" , node .heap (), " mqtt: offline" , " failures:" , mqttFails )
66
67
sendTimer :stop ()
67
68
68
69
if mqttFails >= 10 then
69
70
tmr .create ():alarm (3000 , tmr .ALARM_SINGLE , function () node .restart () end ) -- reboot in 3 sec
70
71
else
71
- c :connect (settings .endpoint )
72
+ mqttC :connect (settings .endpoint )
72
73
end
73
74
end )
74
75
75
76
mqttTimeout :start ()
76
77
-- stripping -ats uses the endpoint with a smaller cert chain
77
- c :connect (string.gsub (settings .endpoint , " -ats" , " " ))
78
+ mqttC :connect (string.gsub (settings .endpoint , " -ats" , " " ))
78
79
end
79
80
80
- c :on (' puback' , function (_ , message_id )
81
+ mqttC :on (' puback' , function (_ , message_id )
81
82
print (" Heap:" , node .heap (), ' PUBACK' , ' Message ID:' , message_id )
82
83
local sensor = sensorPut [1 ]
83
84
if sensor and sensor .message_id == message_id then
@@ -88,7 +89,7 @@ c:on('puback', function(_, message_id)
88
89
end
89
90
end )
90
91
91
- c :on (' message' , function (_ , topic , message )
92
+ mqttC :on (' message' , function (_ , topic , message )
92
93
print (" Heap:" , node .heap (), ' topic:' , topic , ' msg:' , message )
93
94
local payload = sjson .decode (message )
94
95
local endState = require (" switch" )(payload )
@@ -112,11 +113,11 @@ c:on('message', function(_, topic, message)
112
113
end
113
114
end )
114
115
115
- c :on (' connect' , function ()
116
+ mqttC :on (' connect' , function ()
116
117
mqttTimeout :stop ()
117
118
print (" Heap:" , node .heap (), " mqtt: connected" )
118
119
print (" Heap:" , node .heap (), " Subscribing to topic:" , topics .switch )
119
- c :subscribe (topics .switch )
120
+ mqttC :subscribe (topics .switch )
120
121
121
122
-- update current state of actuators upon boot
122
123
for i , actuator in pairs (actuatorGet ) do
0 commit comments