forked from jason0x43/hubitat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jason0x43-wemo_switch.groovy
182 lines (154 loc) · 4.69 KB
/
jason0x43-wemo_switch.groovy
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/**
* WeMo Switch driver
*
* Author: Jason Cheatham
* Last updated: 2021-03-21, 17:08:44-0400
*
* Based on the original Wemo Switch driver by Juan Risso at SmartThings,
* 2015-10-11.
*
* Copyright 2015 SmartThings
*
* Licensed under the Apache License, Version 2.0 (the 'License'); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an 'AS IS' BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
metadata {
definition(
name: 'Wemo Switch',
namespace: 'jason0x43',
author: 'Jason Cheatham',
importUrl: 'https://raw.githubusercontent.com/jason0x43/hubitat/master/drivers/jason0x43-wemo_switch.groovy'
) {
capability 'Actuator'
capability 'Switch'
capability 'Polling'
capability 'Refresh'
capability 'Sensor'
command 'subscribe'
command 'unsubscribe'
command 'resubscribe'
}
}
def getDriverVersion() {
4
}
def on() {
log.info('Turning on')
parent.childSetBinaryState(device, '1')
}
def off() {
log.info('Turning off')
parent.childSetBinaryState(device, '0')
}
def parse(description) {
debugLog('parse: received message')
// A message was received, so the device isn't offline
unschedule('setOffline')
def msg = parseLanMessage(description)
parent.childUpdateSubscription(msg, device)
def result = []
def bodyString = msg.body
if (bodyString) {
def body = new XmlSlurper().parseText(bodyString)
if (body?.property?.TimeSyncRequest?.text()) {
debugLog('parse: Got TimeSyncRequest')
result << syncTime()
} else if (body?.Body?.SetBinaryStateResponse?.BinaryState?.text()) {
def rawValue = body.Body.SetBinaryStateResponse.BinaryState.text()
debugLog("parse: Got SetBinaryStateResponse = ${rawValue}")
result << createBinaryStateEvent(rawValue)
} else if (body?.property?.BinaryState?.text()) {
def rawValue = body.property.BinaryState.text()
debugLog("parse: Notify: BinaryState = ${rawValue}")
result << createBinaryStateEvent(rawValue)
} else if (body?.property?.TimeZoneNotification?.text()) {
debugLog("parse: Notify: TimeZoneNotification = ${body.property.TimeZoneNotification.text()}")
} else if (body?.Body?.GetBinaryStateResponse?.BinaryState?.text()) {
def rawValue = body.Body.GetBinaryStateResponse.BinaryState.text()
debugLog("parse: GetBinaryResponse: BinaryState = ${rawValue}")
result << createBinaryStateEvent(rawValue)
}
}
result
}
def poll() {
log.info('Polling')
// Schedule a call to flag the device offline if no new message is received
if (device.currentValue('switch') != 'offline') {
runIn(10, setOffline)
}
parent.childGetBinaryState(device)
}
def refresh() {
log.info('Refreshing')
[
resubscribe(),
syncTime(),
poll()
]
}
def resubscribe() {
log.info('Resubscribing')
// Schedule a subscribe check that will run after the resubscription should
// have completed
runIn(10, subscribeIfNecessary)
parent.childResubscribe(device)
}
def setOffline() {
sendEvent(
name: 'switch',
value: 'offline',
descriptionText: 'The device is offline'
)
}
def subscribe() {
log.info('Subscribing')
parent.childSubscribe(device)
}
def subscribeIfNecessary() {
parent.childSubscribeIfNecessary(device)
}
def unsubscribe() {
log.info('Unsubscribing')
parent.childUnsubscribe(device)
}
def updated() {
log.info('Updated')
refresh()
}
private createBinaryStateEvent(rawValue) {
def value = ''
// Properly interpret our rawValue
if (rawValue == '1') {
value = 'on'
} else if (rawValue == '0') {
value = 'off'
} else {
// Sometimes, wemo returns us with rawValue=error, so we do nothing
debugLog("parse: createBinaryStateEvent: rawValue = ${rawValue} : Invalid! Not raising any events")
return
}
// Raise the switch state event
createEvent(
name: 'switch',
value: value,
descriptionText: "Switch is ${value} : ${rawValue}"
)
}
private debugLog(message) {
if (parent.debugLogging) {
log.debug(message)
}
}
private syncTime() {
parent.childSyncTime(device)
}