-
Notifications
You must be signed in to change notification settings - Fork 3
/
Double gang
212 lines (168 loc) · 6.61 KB
/
Double gang
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
/**
*
* 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.
*
* Based on on original by Lazcad / RaveTam
* Mods for Hui 3 Gang Switch by Netsheriff
*/
metadata {
definition (name: "HUI ZigBee Wall Switch Double Gang 1.2", namespace: "Hubitat", author: "George Castanza") {
capability "Actuator"
capability "Configuration"
capability "Refresh"
capability "Health Check"
capability "Switch"
fingerprint profileId: "0104", inClusters: "0000, 0003, 0004, 0005, 0006"
fingerprint profileId: "0104", inClusters: "0000, 0003, 0006", outClusters: "0003, 0006, 0019, 0406", manufacturer: "Leviton", model: "ZSS-10", deviceJoinName: "Leviton Switch"
fingerprint profileId: "0104", inClusters: "0000, 0003, 0006", outClusters: "000A", manufacturer: "HAI", model: "65A21-1", deviceJoinName: "Leviton Wireless Load Control Module-30amp"
fingerprint profileId: "0104", inClusters: "0000, 0003, 0004, 0005, 0006", outClusters: "0003, 0006, 0008, 0019, 0406", manufacturer: "Leviton", model: "DL15A", deviceJoinName: "Leviton Lumina RF Plug-In Appliance Module"
fingerprint profileId: "0104", inClusters: "0000, 0003, 0004, 0005, 0006", outClusters: "0003, 0006, 0008, 0019, 0406", manufacturer: "Leviton", model: "DL15S", deviceJoinName: "Leviton Lumina RF Switch"
attribute "lastCheckin", "string"
attribute "switch", "string"
command "on1"
command "on2"
command "off1"
command "off2"
command "on"
command "off"
command "on0"
command "off0"
attribute "switch","ENUM",["on","off"]
}
}
// Parse incoming device messages to generate events
def parse(String description) {
// log.debug "Parsing '${description}'"
def value = zigbee.parse(description)?.text
// log.debug "Parse: $value"
Map map = [:]
if (description?.startsWith('catchall:')) {
map = parseCatchAllMessage(description)
}
else if (description?.startsWith('read attr -')) {
map = parseReportAttributeMessage(description)
}
else if (description?.startsWith('on/off: ')){
// log.debug "onoff"
def refreshCmds = zigbee.readAttribute(0x0006, 0x0000, [destEndpoint: 0x10])
return refreshCmds.collect { new hubitat.device.HubAction(it) }
//def resultMap = zigbee.getKnownDescription(description)
//log.debug "${resultMap}"
//map = parseCustomMessage(description)
}
// log.debug "Parse returned $map"
// send event for heartbeat
def now = new Date()
sendEvent(name: "lastCheckin", value: now)
def results = map ? createEvent(map) : null
return results;
}
private Map parseCatchAllMessage(String description) {
Map resultMap = [:]
def cluster = zigbee.parse(description)
// log.debug cluster
if (cluster.clusterId == 0x0006 && cluster.command == 0x01){
if (cluster.sourceEndpoint == 0x10)
{
log.debug "Its Switch one"
def onoff = cluster.data[-1]
if (onoff == 1)
resultMap = createEvent(name: "switch1", value: "on")
else if (onoff == 0)
resultMap = createEvent(name: "switch1", value: "off")
}
if (cluster.sourceEndpoint == 0x11)
{
log.debug "Its Switch two"
def onoff = cluster.data[-1]
if (onoff == 1)
resultMap = createEvent(name: "switch2", value: "on")
else if (onoff == 0)
resultMap = createEvent(name: "switch2", value: "off")
}
}
}
private Map parseReportAttributeMessage(String description) {
Map descMap = (description - "read attr - ").split(",").inject([:]) { map, param ->
def nameAndValue = param.split(":")
map += [(nameAndValue[0].trim()):nameAndValue[1].trim()]
}
//log.debug "Desc Map: $descMap"
Map resultMap = [:]
if (descMap.cluster == "0006" && descMap.attrId == "0000" && descMap.value =="00" && descMap.endpoint == "10") {
resultMap = createEvent(name: "switch1", value: "off1")
}
if (descMap.cluster == "0006" && descMap.attrId == "0000" && descMap.value =="00" && descMap.endpoint == "11") {
resultMap = createEvent(name: "switch2", value: "off2")
}
if (descMap.cluster == "0006" && descMap.attrId == "0000" && descMap.value =="01" && descMap.endpoint == "10") {
resultMap = createEvent(name: "switch1", value: "on1")
}
else if (descMap.cluster == "0006" && descMap.attrId == "0000" && descMap.value =="01" && descMap.endpoint == "11") {
resultMap = createEvent(name: "switch2", value: "on2")
}
return resultMap
}
def off1() {
log.info "off1()"
sendEvent(name: "switch1", value: "off")
"st cmd 0x${device.deviceNetworkId} 0x10 0x0006 0x0 {}"
}
def on1() {
log.info "on1()"
sendEvent(name: "switch1", value: "on")
"st cmd 0x${device.deviceNetworkId} 0x10 0x0006 0x1 {}"
}
def off2() {
log.info "off2()"
sendEvent(name: "switch2", value: "off")
"st cmd 0x${device.deviceNetworkId} 0x11 0x0006 0x0 {}"
}
def on2() {
log.info "on2()"
sendEvent(name: "switch2", value: "on")
"st cmd 0x${device.deviceNetworkId} 0x11 0x0006 0x1 {}"
}
def refresh() {
log.info "refreshing"
[
"st rattr 0x${device.deviceNetworkId} 0x10 0x0006 0x0", "delay 1000",
]
}
def off0() {
log.info "off0()"
sendEvent(name: "switch", value: "off")
"he cmd 0x${device.deviceNetworkId} 0xFF 0x0006 0x0 {}"
}
def on0() {
log.info "on0()"
sendEvent(name: "switch", value: "on")
"he cmd 0x${device.deviceNetworkId} 0xFF 0x0006 0x1 {}"
}
def off() {
log.info "off()"
sendEvent(name: "switch", value: "off")
"he cmd 0x${device.deviceNetworkId} 0xFF 0x0006 0x0 {}"
}
def on() {
log.info "on()"
sendEvent(name: "switch", value: "on")
"he cmd 0x${device.deviceNetworkId} 0xFF 0x0006 0x1 {}"
}
private Map parseCustomMessage(String description) {
def result
if (description?.startsWith('on/off: ')) {
if (description == 'on/off: 0')
result = createEvent(name: "switch", value: "off")
else if (description == 'on/off: 1')
result = createEvent(name: "switch", value: "on")
}
return result
}