forked from jason0x43/hubitat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jason0x43-wemo_insight_switch.groovy
230 lines (201 loc) · 6.3 KB
/
jason0x43-wemo_insight_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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
/**
* WeMo Insight Switch driver
*
* Author: Jason Cheatham
* Last updated: 2021-03-21, 17:07:19-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 Insight Switch',
namespace: 'jason0x43',
author: 'Jason Cheatham',
importUrl: 'https://raw.githubusercontent.com/jason0x43/hubitat/master/drivers/jason0x43-wemo_insight_switch.groovy'
) {
capability 'Actuator'
capability 'Switch'
capability 'Polling'
capability 'Refresh'
capability 'Sensor'
capability 'Power Meter'
capability 'Energy Meter'
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 += createStateEvents(rawValue)
} else if (body?.property?.BinaryState?.text()) {
def rawValue = body.property.BinaryState.text()
debugLog("parse: Notify: BinaryState = ${rawValue}")
result += createStateEvents(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 += createStateEvents(rawValue)
} else if (body?.Body?.GetInsightParamsResponse?.InsightParams?.text()) {
def rawValue = body.Body.GetInsightParamsResponse.InsightParams.text()
debugLog("parse: Got GetInsightParamsResponse: ${rawValue}")
result += createStateEvents(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) {
// Insight switches actually support 3 values:
// 0: off
// 1: on
// 8: standby
// We consider 'standby' to be 'on'.
debugLog("Creating binary state event for ${rawValue}")
def value = rawValue == '0' ? 'off' : 'on';
createEvent(
name: 'switch',
value: value,
descriptionText: "Switch is ${value}"
)
}
private createEnergyEvent(rawValue) {
debugLog("Creating energy event for ${rawValue}")
def value = (rawValue.toDouble() / 60000000).round(2)
createEvent(
name: 'energy',
value: value,
descriptionText: "Energy today is ${value} WH"
)
}
private createPowerEvent(rawValue) {
debugLog("Creating power event for ${rawValue}")
def value = Math.round(rawValue.toInteger() / 1000)
createEvent(
name: 'power',
value: value,
descriptionText: "Power is ${value} W"
)
}
// A state event will probably look like:
// 8|1536896687|5998|0|249789|1209600|118|190|164773|483265057
// Fields are:
// 8 on/off
// 1536896687 last changed at (UNIX timestamp)
// 5998 last on for (seconds?)
// 0 on today
// 249789 on total
// 1209600 window (seconds) over which onTotal is aggregated
// 110 average power (Watts)
// 190 current power (Watts?)
// 164773 energy today (mW mins)
// 483265057 energy total (mW mins)
private createStateEvents(stateString) {
def params = stateString.split('\\|')
debugLog("Event params: ${params}")
def events = []
if (params.size() > 0) {
events << createBinaryStateEvent(params[0])
}
if (params.size() > 7) {
events << createPowerEvent(params[7])
}
if (params.size() > 8) {
events << createEnergyEvent(params[8])
}
events
}
private debugLog(message) {
if (parent.debugLogging) {
log.debug(message)
}
}
private syncTime() {
parent.childSyncTime(device)
}