Skip to content

Commit ea2f563

Browse files
committedMar 24, 2020
Avoid mode change yoyo after Hubitat mode change
Avoid processing update to same mode Improve log output in different socket disconnection scenarios Fix checking of current attribute values
1 parent 92b1374 commit ea2f563

File tree

2 files changed

+44
-18
lines changed

2 files changed

+44
-18
lines changed
 

‎AbodeAlarm.groovy

+36-18
Original file line numberDiff line numberDiff line change
@@ -197,20 +197,23 @@ private clearLoginState() {
197197
sendEvent(name: 'isLoggedIn', value: false, displayed: true)
198198
}
199199

200+
// Send a request to change mode to Abode
200201
private changeMode(String new_mode) {
201-
current_mode = mode
202-
if(current_mode != new_mode) {
202+
if(new_mode != device.currentValue('gatewayMode')) {
203+
// Only update area 1 since area is not returned in event messages
203204
reply = doHttpRequest('PUT','/api/v1/panel/mode/1/' + new_mode)
204-
if (reply['area'] == 1)
205-
log.info "Successfully sent request to change gateway mode to ${new_mode}"
205+
if (reply['area'] == '1') {
206+
log.info "Sent request to change Abode gateway mode to ${new_mode}"
207+
state.localModeChange = new_mode
208+
}
206209
} else {
207210
if (logDebug) log.debug "Gateway is already in mode ${new_mode}"
208211
}
209212
}
210213

211-
// Only update area 1 since area is not provided in event messages
214+
// Process an update from Abode that the mode has changed
212215
private updateMode(String new_mode) {
213-
if (logDebug) log.info 'Gateway mode has changed to ' + new_mode
216+
log.info 'Abode gateway mode has changed to ' + new_mode
214217
sendEvent(name: "gatewayMode", value: new_mode, descriptionText: 'Gateway mode has changed to ' + new_mode, displayed: true)
215218

216219
// Set isArmed?
@@ -219,10 +222,20 @@ private updateMode(String new_mode) {
219222
isArmed.off()
220223
else {
221224
isArmed.on()
222-
if (targetModeAway && new_mode == 'away')
223-
location.setMode(targetModeAway)
224-
else if (targetModeHome)
225-
location.setMode(targetModeHome)
225+
226+
// Avoid changing the mode if it's a rebound from a local action
227+
if (new_mode == state.localModeChange) {
228+
state.remove('localModeChange')
229+
} else {
230+
if (targetModeAway && new_mode == 'away') {
231+
log.info 'Changing Hubitat mode to ' + new_mode
232+
location.setMode(targetModeAway)
233+
}
234+
else if (targetModeHome) {
235+
log.info 'Changing Hubitat mode to ' + new_mode
236+
location.setMode(targetModeHome)
237+
}
238+
}
226239
}
227240
}
228241

@@ -285,7 +298,7 @@ private parseMode(Map mode, Set areas) {
285298
modeMap[number] = mode["area_${number}"]
286299
}
287300
// Status is based on area 1 only
288-
if (gatewayMode != modeMap['1'])
301+
if (device.currentValue('gatewayMode') != modeMap['1'])
289302
sendEvent(name: "gatewayMode", value: modeMap['1'], descriptionText: "Gateway mode is ${modeMap['1']}", displayed: true)
290303

291304
state.modes = modeMap
@@ -359,7 +372,7 @@ private doHttpRequest(String method, String path, Map body = [:]) {
359372
}
360373

361374
// Abode event websocket handling
362-
private connectEventSocket() {
375+
def connectEventSocket() {
363376
if (!state.webSocketConnectAttempt) state.webSocketConnectAttempt = 0
364377
if (logDebug) log.debug "Attempting WebSocket connection for Abode events (attempt ${state.webSocketConnectAttempt})"
365378
try {
@@ -388,10 +401,10 @@ private terminateEventSocket() {
388401
}
389402
}
390403

404+
// failure handler: validate state and reconnect in 5 seconds
391405
private restartEventSocket() {
392406
terminateEventSocket()
393-
refresh()
394-
runInMillis(30000, connectEventSocket) // Try connect again in 30 seconds
407+
runInMillis(5000, refresh)
395408
}
396409

397410
def sendPing() {
@@ -408,11 +421,16 @@ def receivePong() {
408421
runInMillis(state.webSocketPingInterval, sendPing)
409422
}
410423

424+
// This is called every 5 minutes whether we are connected or not
411425
def checkSocketTimeout() {
412-
responseTimeout = state.lastMsgReceived + state.webSocketPingTimeout + (timeoutSlack*1000)
413-
if (now() > responseTimeout) {
414-
log.warn 'Socket ping timeout - Disconnecting Abode event socket'
415-
restartEventSocket()
426+
if (state.webSocketConnected) {
427+
responseTimeout = state.lastMsgReceived + state.webSocketPingTimeout + (timeoutSlack*1000)
428+
if (now() > responseTimeout) {
429+
log.warn 'Socket ping timeout - Disconnecting Abode event socket'
430+
restartEventSocket()
431+
}
432+
} else {
433+
connectEventSocket()
416434
}
417435
}
418436

‎CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
44

55
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)
66

7+
## 2020-03-24 Beta Release 0.6.1
8+
9+
### Changed
10+
11+
- Suppress Hubitat mode change when Abode mode was set from Hubitat
12+
- Avoid processing Abode mode update to same mode
13+
- Improve log output in different socket disconnection scenarios
14+
715
## 2020-03-21 Beta Release 0.6.0
816

917
### Added

0 commit comments

Comments
 (0)