Australian approved light switches

Yes I've seen these and will pick some up. Hoping for options. The pictures with wonky buttons didn't inspire confidence although the seller says they were Photoshop rendered.

I have these working fine in hubitat. Took me a while to get the device code working though.

I have 1 and 3 gang, and the 2 gang would work too.

Would you think about posting your Driver here, www.hubitatapps.com ,
for others to use ?

As @bptworld said " kick the tires and let me know what you think! "

1 Like

Yes, currently traveling internationally and will do so upon return.

1 Like

Thanks @mike - have you done just a room or your whole place with these switches?

Any chance of posting, please @mike?

Here is the device code. Forgot upon return.

@njanda (did you also want this?

@mike - thanks for that code, did you get this working? I can only turn on/off all 3 switches. I've put the app in place and 3 virtual switches but no joy.

Yes. Did you hit configure?

Look on the device page. There are other options like off1, off2 and off3. Etc.

I just hit configure here and nothing happens:

then i've got this virtual switch created:

and finally, this is what i've done in the app:

OK.

If I was you, I would remove it from HE, and then re-pair it with HE. Your endpoints are different from mine. I have endpoint 12, you have endpoint 01. You can remove it by opening the front of the switch and pressing a button (from memory).

Get it working firstly from the device page (on1, on2, on3, and off1 2 3).

Then get it working with the app.

Re-joined it and got:

  • endpointId: 01
  • application: 01
  • model: FNB56-ZSW03LX2.0
  • manufacturer: FeiBit

No luck so far.

You must have an updated version. This is mine.
image

You will need to debug when turning on and off switched by watching the logs, and seeing what the new end points are. Mine are 10, 11, 12. Yours might be something different, and it wont be too hard to change the driver code to the new endpoints.

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

}