Australian approved light switches

sorry, where do i debug to get my endpoints?

Logs. Keep page open and turn on/off the light manually. See if anything appears there.

Or when rejoining the device look for a catch-all.

so i can see my endpoints are:

dev:5852019-02-04 19:44:17.571 debugTest Device, parse description: read attr - raw: 0C240300060800001001, dni: 0C24, endpoint: 03, cluster: 0006, size: 08, attrId: 0000, encoding: 10, value: 01

dev:5852019-02-04 19:44:17.558 debugTest Device, parse description: read attr - raw: 0C240200060800001001, dni: 0C24, endpoint: 02, cluster: 0006, size: 08, attrId: 0000, encoding: 10, value: 01

dev:5852019-02-04 19:44:17.542 debugTest Device, parse description: read attr - raw: 0C240100060800001000, dni: 0C24, endpoint: 01, cluster: 0006, size: 08, attrId: 0000, encoding: 10, value: 00

Do i just do a find replace for 10, 11 & 12 and replace with 01, 02, 03 in the device code?

Thanks but no or not just yet. :+1:t2:

Yes, that should work a treat.

Sadly not. Here is my code:

/**
*

  • 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 3 Gang V.3.3", namespace: "George Castanza", author: "George Castanza") {
capability "Actuator"
capability "Configuration"
capability "Refresh"
capability "Switch"
capability "Health Check"

    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"
    attribute "switch1", "string"
	attribute "switch2", "string"
    attribute "switch3", "string"
    command "on0"
	command "off0"
	command "on1"
	command "off1"
	command "on2"
	command "off2"
	command "on3"
	command "off3"  
    command "on"
    command "off"
    
    
    attribute "switch1","ENUM",["on","off"]
    attribute "switch2","ENUM",["on","off"]
    attribute "switch3","ENUM",["on","off"]    
    attribute "switchstate","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: 0x01]) +
zigbee.readAttribute(0x0006, 0x0000, [destEndpoint: 0x02]) +
zigbee.readAttribute(0x0006, 0x0000, [destEndpoint: 0x03])

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 == 0x01)
    {
    log.debug "Its Switch one"
	def onoff = cluster.data[-1]
    if (onoff == 1)
    	resultMap = createEvent(name: "switch", value: "on")
    else if (onoff == 0)
        resultMap = createEvent(name: "switch", value: "off")
        }
        else if (cluster.sourceEndpoint == 0x02)
        {
        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")
        }
 else if (cluster.sourceEndpoint == 0x03)
        {
        log.debug "Its Switch three"
	def onoff = cluster.data[-1]
    if (onoff == 1)
    	resultMap = createEvent(name: "switch3", value: "on")
    else if (onoff == 0)
        resultMap = createEvent(name: "switch3", value: "off")
        }					

//
}

return resultMap

}
//
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 == "01") {
	resultMap = createEvent(name: "switch1", value: "off")
} 
    
if (descMap.cluster == "0006" && descMap.attrId == "0000" && descMap.value =="01" && descMap.endpoint == "01") {
	resultMap = createEvent(name: "switch1", value: "on")
}
if (descMap.cluster == "0006" && descMap.attrId == "0000" && descMap.value =="00" && descMap.endpoint == "02") {
	resultMap = createEvent(name: "switch2", value: "off")
} 
    
if (descMap.cluster == "0006" && descMap.attrId == "0000" && descMap.value =="01" && descMap.endpoint == "02") {
	resultMap = createEvent(name: "switch2", value: "on")
}
if (descMap.cluster == "0006" && descMap.attrId == "0000" && descMap.value =="00" && descMap.endpoint == "03") {
	resultMap = createEvent(name: "switch3", value: "off")
} 
    
else if (descMap.cluster == "0006" && descMap.attrId == "0000" && descMap.value =="01" && descMap.endpoint == "03") {
	resultMap = createEvent(name: "switch3", value: "on")
}


return resultMap

}

def off1() {
log.debug "off()"
sendEvent(name: "switch1", value: "off")
"he cmd 0x${device.deviceNetworkId} 0x10 0x0006 0x0 {}"
}

def on1() {
log.debug "on()"
sendEvent(name: "switch1", value: "on")
"he cmd 0x${device.deviceNetworkId} 0x10 0x0006 0x1 {}"
}
def off2() {
log.debug "off2()"
sendEvent(name: "switch2", value: "off")
"he cmd 0x${device.deviceNetworkId} 0x11 0x0006 0x0 {}"
}

def on2() {
log.debug "on2()"
sendEvent(name: "switch2", value: "on")
"he cmd 0x${device.deviceNetworkId} 0x11 0x0006 0x1 {}"
}

def off3() {
log.debug "off3()"
sendEvent(name: "switch3", value: "off")
"he cmd 0x${device.deviceNetworkId} 0x12 0x0006 0x0 {}"
}

def on3() {
log.debug "on3()"
sendEvent(name: "switch3", value: "on")
"he cmd 0x${device.deviceNetworkId} 0x12 0x0006 0x1 {}"
}

def off0() {
log.debug "off0()"
sendEvent(name: "switch", value: "off")
"he cmd 0x${device.deviceNetworkId} 0xFF 0x0006 0x0 {}"

}

def on0() {
log.debug "on0()"
sendEvent(name: "switch", value: "on")
"he cmd 0x${device.deviceNetworkId} 0xFF 0x0006 0x1 {}"

}

def off() {
log.debug "off()"
sendEvent(name: "switch", value: "off")
"he cmd 0x${device.deviceNetworkId} 0xFF 0x0006 0x0 {}"

}

def on() {
log.debug "on()"
sendEvent(name: "switch", value: "on")
"he cmd 0x${device.deviceNetworkId} 0xFF 0x0006 0x1 {}"

}

def refresh() {
log.debug "refreshing"
[
"he rattr 0x${device.deviceNetworkId} 0x10 0x0006 0x0", "delay 1000",
"he rattr 0x${device.deviceNetworkId} 0x11 0x0006 0x0", "delay 1000",
"he rattr 0x${device.deviceNetworkId} 0x12 0x0006 0x0", "delay 1000",

]

}

private Integer convertHexToInt(hex) {
Integer.parseInt(hex,16)
}

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

}

Plus further down.

1 Like

That works!!!

I dont suppose you have the drivers for 2-gang and 1-gang, do you?

I do.

Edit: only the single.

@mike I've got your 1 gang driver but is there a 1 gang app too?

No. No need. Only 1 endpoint.

How difficult is it to get this working for 2 gang?

I would imagine that the 3 end point driver would work for the 2 gang device. There was an issue that the endpoints changed with a new revision. Simple to change the endpoints in the driver from 12, 11, and 10 to 3, 2, 1.

I'm trying to edit the end point for the 1-gang unit

This is what I see in the logs for my switch:

Parsing 'read attr - raw: 8AC40B00060800001000, dni: 8AC4, endpoint: 0B, cluster: 0006, size: 08, attrId: 0000, encoding: 10, command: 0A, value: 00'

is my endpoint 0?

No, it's 10.

Edit: it's 0B. (I cant read)

so it should work without modifying your code?

It should!

No luck yet, this is my device page:

I can see it turning off and on in the logs when i press the button on the device itself. I just can't control it from the on/off button on the page above

Did you hit configure?