forked from bspranger/Xiaomi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xiaomi-button.groovy
393 lines (362 loc) · 18.2 KB
/
xiaomi-button.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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
/**
* Xiaomi Zigbee Button - model WXKG01LM
* Device Handler for SmartThings - Firmware version 25.20 and newer ONLY
* Version 1.3
*
* NOTE: Do NOT use this device handler on any SmartThings hub running Firmware 24.x and older
* Instead use the xiaomi-button-old-firmware device handler
*
* 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.
*
* Original device handler code by a4refillpad, adapted for use with Aqara model by bspranger, updated for changes in firmware 25.20 by veeceeoh
* Additional contributions to code by alecm, alixjg, bspranger, gn0st1c, foz333, jmagnuson, rinkek, ronvandegraaf, snalee, tmleafs, twonk, & veeceeoh
*
* Known issues:
* + As of March 2019, the SmartThings Samsung Connect mobile app does NOT support custom device handlers such as this one
* + The SmartThings Classic mobile app UI text/graphics is rendered differently on iOS vs Android devices - This is due to SmartThings, not this device handler
* + Pairing Xiaomi/Aqara devices can be difficult as they were not designed to use with a SmartThings hub.
* + The battery level is not reported at pairing. Wait for the first status report, 50-60 minutes after pairing.
* + Xiaomi devices do not respond to refresh requests
* + Most ZigBee repeater devices (generally mains-powered ZigBee devices) are NOT compatible with Xiaomi/Aqara devices, causing them to drop off the network.
* + Only XBee ZigBee modules, the IKEA Tradfri Outlet / Tradfri Bulb, and ST user @iharyadi's custom multi-sensor ZigBee repeater device are confirmed to be compatible.
*
*/
import groovy.json.JsonOutput
import physicalgraph.zigbee.zcl.DataType
metadata {
definition (name: "Xiaomi Button", namespace: "bspranger", author: "bspranger", minHubCoreVersion: "000.022.0002", ocfDeviceType: "x.com.st.d.remotecontroller") {
capability "Actuator"
capability "Battery"
capability "Button"
capability "Configuration"
capability "Health Check"
capability "Holdable Button"
capability "Momentary"
capability "Sensor"
attribute "lastCheckin", "string"
attribute "lastCheckinCoRE", "string"
attribute "lastPressed", "string"
attribute "lastPressedCoRE", "string"
attribute "lastReleasedCoRE", "string"
attribute "lastButtonMssg", "string"
attribute "batteryRuntime", "string"
attribute "buttonStatus", "enum", ["pushed", "held", "released", "double", "triple", "quadruple", "shizzle"]
fingerprint deviceId: "0104", inClusters: "0000,0003,FFFF,0019", outClusters: "0000,0004,0003,0006,0008,0005,0019", manufacturer: "LUMI", model: "lumi.sensor_switch", deviceJoinName: "Original Xiaomi Button"
command "resetBatteryRuntime"
}
simulator {
status "Press button": "on/off: 0"
status "Release button": "on/off: 1"
}
tiles(scale: 2) {
multiAttributeTile(name:"buttonStatus", type: "lighting", width: 6, height: 4, canChangeIcon: false) {
tileAttribute ("device.buttonStatus", key: "PRIMARY_CONTROL") {
attributeState("default", label:'Pushed', backgroundColor:"#00a0dc", icon:"https://raw.githubusercontent.com/bspranger/Xiaomi/master/images/ButtonPushed.png")
attributeState("pushed", label:'Pushed', backgroundColor:"#00a0dc", icon:"https://raw.githubusercontent.com/bspranger/Xiaomi/master/images/ButtonPushed.png")
attributeState("held", label:'Held', backgroundColor:"#00a0dc", icon:"https://raw.githubusercontent.com/bspranger/Xiaomi/master/images/ButtonPushed.png")
attributeState("released", label:'Released', action: "momentary.push", backgroundColor:"#ffffff", icon:"https://raw.githubusercontent.com/bspranger/Xiaomi/master/images/ButtonReleased.png")
attributeState("double", label:'Double-Clicked', backgroundColor:"#00a0dc", icon:"https://raw.githubusercontent.com/bspranger/Xiaomi/master/images/ButtonPushed.png")
attributeState("triple", label:'Triple-Clicked', backgroundColor:"#00a0dc", icon:"https://raw.githubusercontent.com/bspranger/Xiaomi/master/images/ButtonPushed.png")
attributeState("quadruple", label:'Quadruple-Clicked', backgroundColor:"#00a0dc", icon:"https://raw.githubusercontent.com/bspranger/Xiaomi/master/images/ButtonPushed.png")
attributeState("shizzle", label:'Shizzle-Clicked', backgroundColor:"#00a0dc", icon:"https://raw.githubusercontent.com/bspranger/Xiaomi/master/images/ButtonPushed.png")
}
tileAttribute("device.lastPressed", key: "SECONDARY_CONTROL") {
attributeState "lastPressed", label:'Last Pressed: ${currentValue}'
}
}
valueTile("battery", "device.battery", decoration: "flat", inactiveLabel: false, width: 2, height: 2) {
state "battery", label:'${currentValue}%', unit:"%", icon:"https://raw.githubusercontent.com/bspranger/Xiaomi/master/images/XiaomiBattery.png",
backgroundColors:[
[value: 10, color: "#bc2323"],
[value: 26, color: "#f1d801"],
[value: 51, color: "#44b621"]
]
}
valueTile("lastCheckin", "device.lastCheckin", decoration: "flat", inactiveLabel: false, width: 4, height: 1) {
state "lastCheckin", label:'Last Event:\n${currentValue}'
}
valueTile("batteryRuntime", "device.batteryRuntime", inactiveLabel: false, decoration: "flat", width: 4, height: 1) {
state "batteryRuntime", label:'Battery Changed: ${currentValue}'
}
main (["buttonStatus"])
details(["buttonStatus","battery","lastCheckin","batteryRuntime"])
}
preferences {
//Button Config
input description: "As a default if the button is held for at least 2 seconds, a 'button 1 held' event is sent when released. The settings below allow changes to the minimum time needed for held.", type: "paragraph", element: "paragraph", title: "BUTTON CONFIGURATION"
input name: "waittoHeld", type: "decimal", title: "Minimum hold time required for button held:", description: "Number of seconds (default = 2.0)", range: "0.1..120"
//Date & Time Config
input description: "", type: "paragraph", element: "paragraph", title: "DATE & CLOCK"
input name: "dateformat", type: "enum", title: "Set Date Format\nUS (MDY) - UK (DMY) - Other (YMD)", description: "Date Format", options:["US","UK","Other"]
input name: "clockformat", type: "bool", title: "Use 24 hour clock?"
//Battery Reset Config
input description: "If you have installed a new battery, the toggle below will reset the Changed Battery date to help remember when it was changed.", type: "paragraph", element: "paragraph", title: "CHANGED BATTERY DATE RESET"
input name: "battReset", type: "bool", title: "Battery Changed?"
//Advanced Settings
input description: "Only change the settings below if you know what you're doing.", type: "paragraph", element: "paragraph", title: "ADVANCED SETTINGS"
//Battery Voltage Range
input description: "", type: "paragraph", element: "paragraph", title: "BATTERY VOLTAGE RANGE"
input name: "voltsmax", type: "decimal", title: "Max Volts\nA battery is at 100% at __ volts\nRange 2.8 to 3.4", range: "2.8..3.4", defaultValue: 3
input name: "voltsmin", type: "decimal", title: "Min Volts\nA battery is at 0% (needs replacing) at __ volts\nRange 2.0 to 2.7", range: "2..2.7", defaultValue: 2.5
//Live Logging Message Display Config
input description: "These settings affect the display of messages in the Live Logging tab of the SmartThings IDE.", type: "paragraph", element: "paragraph", title: "LIVE LOGGING"
input name: "infoLogging", type: "bool", title: "Display info log messages?", defaultValue: true
input name: "debugLogging", type: "bool", title: "Display debug log messages?"
}
}
//adds functionality to press the centre tile as a virtualApp Button
def push() {
displayInfoLog(": Virtual App Button Pressed")
sendEvent(name: "lastPressed", value: formatDate(), displayed: false)
sendEvent(name: "lastPressedCoRE", value: now(), displayed: false)
sendEvent(name: "button", value: "pushed", data: [buttonNumber: 1], descriptionText: "$device.displayName app button was pushed", isStateChange: true)
sendEvent(name: "lastReleasedCoRE", value: now(), displayed: false)
runIn(1, clearButtonStatus)
}
// Parse incoming device messages to generate events
def parse(String description) {
displayDebugLog(": Parsing '${description}'")
def result = [:]
// Any report - button press & Battery - results in a lastCheckin event and update to Last Checkin tile
sendEvent(name: "lastCheckin", value: formatDate(), displayed: false)
sendEvent(name: "lastCheckinCoRE", value: now(), displayed: false)
// Send message data to appropriate parsing function based on the type of report
if (description == 'on/off: 0') {
updateLastPressed("Pressed")
} else if (description == 'on/off: 1') {
result = createButtonEvent()
updateLastPressed("Released")
} else if (description?.startsWith('read attr - raw: ')) {
result = parseReadAttrMessage(description)
} else if (description?.startsWith('catchall:')) {
result = parseCatchAllMessage(description)
}
if (result != [:]) {
displayDebugLog(": Creating event $result")
return createEvent(result)
} else
return [:]
}
// on any type of button pressed update lastPressed and lastPressedCoRE or lastReleasedCoRE to current date/time
def updateLastPressed(pressType) {
if (pressType == "Pressed")
displayInfoLog(": Single button press detected")
sendEvent(name: "lastPressed", value: formatDate(), displayed: false)
displayDebugLog(": Setting Last $pressType to current date/time")
sendEvent(name: "last${pressType}CoRE", value: now(), displayed: false)
sendEvent(name: "lastButtonMssg", value: now(), displayed: false)
}
private createButtonEvent() {
def timeDif = now() - device.latestState('lastButtonMssg').date.getTime()
def holdTimeMillisec = Math.round((settings.waittoHeld?:2.0) * 1000)
displayInfoLog(": Button release detected")
displayDebugLog(": Comparing time difference between this button release and last button message")
displayDebugLog(": Time difference = $timeDif ms, Hold time setting = $holdTimeMillisec ms")
// compare waittoHeld setting with difference between current time and lastButtonMssg
def buttonHeld = (timeDif >= holdTimeMillisec & timeDif < holdTimeMillisec + 10000) ? true : false
def pressType = buttonHeld ? "held" : "pushed"
def descText = " was $pressType (button 1 $pressType)"
sendEvent(name: "buttonStatus", value: pressType, isStateChange: true, displayed: false)
runIn(1, clearButtonStatus)
displayInfoLog(descText)
return [
name: 'button',
value: pressType,
data: [buttonNumber: 1],
descriptionText: "$device.displayName$descText",
isStateChange: true
]
}
def clearButtonStatus() {
sendEvent(name: "buttonStatus", value: "released", isStateChange: true, displayed: false)
}
private Map parseReadAttrMessage(String description) {
def cluster = description.split(",").find {it.split(":")[0].trim() == "cluster"}?.split(":")[1].trim()
def attrId = description.split(",").find {it.split(":")[0].trim() == "attrId"}?.split(":")[1].trim()
def valueHex = description.split(",").find {it.split(":")[0].trim() == "value"}?.split(":")[1].trim()
Map resultMap = [:]
// Process message for double-click, triple-click, quadruple-click, and 5 or more-click
if (cluster == "0006" && attrId == "8000") {
def buttonNum = (valueHex == "80") ? 5 : Integer.parseInt(valueHex, 16)
def clickType = [2: "double", 3: "triple", 4: "quadruple", 5: "shizzle"]
def descText = " was ${clickType[buttonNum]}-clicked (Button $buttonNum pushed)"
sendEvent(name: "buttonStatus", value: clickType[buttonNum], isStateChange: true, displayed: false)
runIn(1, clearButtonStatus)
displayInfoLog(descText)
resultMap = [
name: 'button',
value: 'pushed',
data: [buttonNumber: buttonNum],
descriptionText: "$device.displayName$descText",
isStateChange: true
]
}
// Process message on short-button press containing model name and battery voltage report
else if (cluster == "0000" && attrId == "0005") {
def data = ""
def modelName = ""
def model = valueHex
if (valueHex.length() > 45) {
model = valueHex.split("02FF")[0]
data = valueHex.split("02FF")[1]
if (data[4..7] == "0121") {
def BatteryVoltage = (Integer.parseInt((data[10..11] + data[8..9]), 16))
resultMap = getBatteryResult(BatteryVoltage)
}
data = ", data: ${valueHex.split("02FF")[1]}"
}
// Parsing the model name
for (int i = 0; i < model.length(); i+=2) {
def str = model.substring(i, i+2);
def NextChar = (char)Integer.parseInt(str, 16);
modelName = modelName + NextChar
}
displayDebugLog(" reported model: $modelName$data")
}
return resultMap
}
// Check catchall for battery voltage data to pass to getBatteryResult for conversion to percentage report
private Map parseCatchAllMessage(String description) {
Map resultMap = [:]
def catchall = zigbee.parse(description)
if (catchall.clusterId == 0x0000) {
def MsgLength = catchall.data.size()
// Xiaomi CatchAll does not have identifiers, first UINT16 is Battery
if ((catchall.data.get(0) == 0x01 || catchall.data.get(0) == 0x02) && (catchall.data.get(1) == 0xFF)) {
for (int i = 4; i < (MsgLength-3); i++) {
if (catchall.data.get(i) == 0x21) { // check the data ID and data type
// next two bytes are the battery voltage
resultMap = getBatteryResult((catchall.data.get(i+2)<<8) + catchall.data.get(i+1))
break
}
}
}
}
return resultMap
}
// Convert raw 4 digit integer voltage value into percentage based on minVolts/maxVolts range
private Map getBatteryResult(rawValue) {
// raw voltage is normally supplied as a 4 digit integer that needs to be divided by 1000
// but in the case the final zero is dropped then divide by 100 to get actual voltage value
def rawVolts = rawValue / 1000
def minVolts = voltsmin ? voltsmin : 2.5
def maxVolts = voltsmax ? voltsmax : 3.0
def pct = (rawVolts - minVolts) / (maxVolts - minVolts)
def roundedPct = Math.min(100, Math.round(pct * 100))
def descText = "Battery at ${roundedPct}% (${rawVolts} Volts)"
displayInfoLog(": $descText")
return [
name: 'battery',
value: roundedPct,
unit: "%",
isStateChange:true,
descriptionText : "$descText"
]
}
private def displayDebugLog(message) {
if (debugLogging)
log.debug "${device.displayName}${message}"
}
private def displayInfoLog(message) {
if (infoLogging || state.prefsSetCount < 3)
log.info "${device.displayName}${message}"
}
//Reset the date displayed in Battery Changed tile to current date
def resetBatteryRuntime(paired) {
def newlyPaired = paired ? " for newly paired sensor" : ""
sendEvent(name: "batteryRuntime", value: formatDate(true))
displayInfoLog(": Setting Battery Changed to current date${newlyPaired}")
}
// installed() runs just after a sensor is paired using the "Add a Thing" method in the SmartThings mobile app
def installed() {
state.prefsSetCount = 0
displayInfoLog(": Installing")
// initialize battery replaced date
initialize(true)
// initialize default button states
sendEvent(name: "button", value: "pushed", data: [buttonNumber: 1], displayed: false)
checkIntervalEvent("")
}
// configure() runs after installed() when a sensor is paired
def configure() {
displayInfoLog(": Configuring")
initialize(false)
device.currentValue("numberOfButtons")?.times {
sendEvent(name: "button", value: "pushed", data: [buttonNumber: it+1], displayed: false)
}
sendEvent(name: "lastButtonMssg", value: now(), displayed: false)
checkIntervalEvent("configured")
return
}
// updated() will run twice every time user presses save in preference settings page
def updated() {
displayInfoLog(": Updating preference settings")
if (!state.prefsSetCount)
state.prefsSetCount = 1
else if (state.prefsSetCount < 3)
state.prefsSetCount = state.prefsSetCount + 1
initialize(false)
// set battery replaced date if user toggled preference setting
if (battReset){
resetBatteryRuntime()
device.updateSetting("battReset", false)
}
displayInfoLog(": Info message logging enabled")
displayDebugLog(": Debug message logging enabled")
checkIntervalEvent("preferences updated")
}
def initialize (paired) {
sendEvent(name: "DeviceWatch-Enroll", value: JsonOutput.toJson([protocol: "zigbee", scheme:"untracked"]), displayed: false)
// initialize battery replaced date if not yet set
if (!device.currentState('batteryRuntime')?.value)
resetBatteryRuntime(paired)
clearButtonStatus()
if (device.currentValue("numberOfButtons") != 5) {
sendEvent(name: "numberOfButtons", value: 5, displayed: false)
displayInfoLog(": Number of buttons set to 5")
}
}
private checkIntervalEvent(text) {
// Device wakes up every 1 hours, this interval allows us to miss one wakeup notification before marking offline
if (text)
displayInfoLog(": Set health checkInterval when ${text}")
sendEvent(name: "checkInterval", value: 2 * 60 * 60 + 2 * 60, displayed: false, data: [protocol: "zigbee", hubHardwareId: device.hub.hardwareID])
}
def formatDate(batteryReset) {
def correctedTimezone = ""
def timeString = clockformat ? "HH:mm:ss" : "h:mm:ss aa"
// If user's hub timezone is not set, display error messages in log and events log, and set timezone to GMT to avoid errors
if (!(location.timeZone)) {
correctedTimezone = TimeZone.getTimeZone("GMT")
log.error "${device.displayName}: Time Zone not set, so GMT was used. Please set up your location in the SmartThings mobile app."
sendEvent(name: "error", value: "", descriptionText: "ERROR: Time Zone not set, so GMT was used. Please set up your location in the SmartThings mobile app.")
}
else {
correctedTimezone = location.timeZone
}
if (dateformat == "US" || dateformat == "" || dateformat == null) {
if (batteryReset)
return new Date().format("MMM dd yyyy", correctedTimezone)
else
return new Date().format("EEE MMM dd yyyy ${timeString}", correctedTimezone)
}
else if (dateformat == "UK") {
if (batteryReset)
return new Date().format("dd MMM yyyy", correctedTimezone)
else
return new Date().format("EEE dd MMM yyyy ${timeString}", correctedTimezone)
}
else {
if (batteryReset)
return new Date().format("yyyy MMM dd", correctedTimezone)
else
return new Date().format("EEE yyyy MMM dd ${timeString}", correctedTimezone)
}
}