Install the Dh and smartapp. Then create 3 virtual switches in the IDE. Then link them to the three endpoints in the smartapp. Should be good to go.
Here is the DH
/**
*
metadata {
definition (name: “ZigBee Gang 3 Switch - GeorgeCastanza V1”, namespace: “smartthings”, author: “smartthings”) {
capability “Actuator”
capability “Configuration”
capability “Refresh”
capability “Switch”
capability "Temperature Measurement"
attribute "lastCheckin", "string"
attribute "switch0", "string"
attribute "switch", "string"
attribute "switch2", "string"
attribute "switch3", "string"
command "on0"
command "off0"
command "on"
command "off"
command "on2"
command "off2"
command "on3"
command "off3"
}
// simulator metadata
simulator {
// status messages
status "on": "on/off: 1"
status "off": "on/off: 0"
// reply messages
reply "zcl on-off on": "on/off: 1"
reply "zcl on-off off": "on/off: 0"
}
tiles(scale: 2) {
multiAttributeTile(name:"switch0", type: "device.switch", width: 6, height: 4, canChangeIcon: true){
tileAttribute ("device.switch", key: "PRIMARY_CONTROL") {
attributeState "on", label:'switch0', action:"off0", icon:"st.switches.light.on", backgroundColor:"#00a0dc", nextState:"turningOff"
attributeState "off", label:'switch0', action:"on0", icon:"st.switches.light.off", backgroundColor:"#ffffff", nextState:"turningOn"
attributeState "turningOn", label:'switch0', action:"off0", icon:"st.switches.light.on", backgroundColor:"#00a0dc", nextState:"turningOff"
attributeState "turningOff", label:'switch0', action:"on0", icon:"st.switches.light.off", backgroundColor:"#ffffff", nextState:"turningOn"
}
tileAttribute("device.lastCheckin", key: "SECONDARY_CONTROL") {
attributeState("default", label:'Last Update: ${currentValue}',icon: "st.Health & Wellness.health9")
}
}
multiAttributeTile(name:"switch", type: "device.switch", width: 6, height: 4, canChangeIcon: true){
tileAttribute ("device.switch1", key: "PRIMARY_CONTROL") {
attributeState "on", label:'switch', action:"off", icon:"st.switches.light.on", backgroundColor:"#00a0dc", nextState:"turningOff"
attributeState "off", label:'switch', action:"on", icon:"st.switches.light.off", backgroundColor:"#ffffff", nextState:"turningOn"
attributeState "turningOn", label:'switch', action:"off", icon:"st.switches.light.on", backgroundColor:"#00a0dc", nextState:"turningOff"
attributeState "turningOff", label:'switch', action:"on", icon:"st.switches.light.off", backgroundColor:"#ffffff", nextState:"turningOn"
}
tileAttribute("device.lastCheckin", key: "SECONDARY_CONTROL") {
attributeState("default", label:'Last Update: ${currentValue}',icon: "st.Health & Wellness.health9")
}
}
multiAttributeTile(name:"switch2", type: "device.switch", width: 6, height: 4, canChangeIcon: true){
tileAttribute ("device.switch2", key: "PRIMARY_CONTROL") {
attributeState "on", label:'switch2', action:"off2", icon:"st.switches.light.on", backgroundColor:"#00a0dc", nextState:"turningOff"
attributeState "off", label:'switch2', action:"on2", icon:"st.switches.light.off", backgroundColor:"#ffffff", nextState:"turningOn"
attributeState "turningOn", label:'switch2', action:"off2", icon:"st.switches.light.on", backgroundColor:"#00a0dc", nextState:"turningOff"
attributeState "turningOff", label:'switch2', action:"on2", icon:"st.switches.light.off", backgroundColor:"#ffffff", nextState:"turningOn"
}
tileAttribute("device.lastCheckin", key: "SECONDARY_CONTROL") {
attributeState("default", label:'Last Update: ${currentValue}',icon: "st.Health & Wellness.health9")
}
}
multiAttributeTile(name:"switch3", type: "device.switch", width: 6, height: 4, canChangeIcon: true){
tileAttribute ("device.switch3", key: "PRIMARY_CONTROL") {
attributeState "on", label:'switch3', action:"off3", icon:"st.switches.light.on", backgroundColor:"#00a0dc", nextState:"turningOff"
attributeState "off", label:'switch3', action:"on3", icon:"st.switches.light.off", backgroundColor:"#ffffff", nextState:"turningOn"
attributeState "turningOn", label:'switch3', action:"off3", icon:"st.switches.light.on", backgroundColor:"#00a0dc", nextState:"turningOff"
attributeState "turningOff", label:'switch3', action:"on3", icon:"st.switches.light.off", backgroundColor:"#ffffff", nextState:"turningOn"
}
tileAttribute("device.lastCheckin", key: "SECONDARY_CONTROL") {
attributeState("default", label:'Last Update: ${currentValue}',icon: "st.Health & Wellness.health9")
}
}
standardTile("refresh", "device.refresh", inactiveLabel: false, decoration: "flat", width: 2, height: 2) {
state "default", label:"", action:"refresh.refresh", icon:"st.secondary.refresh"
}
main(["switch0"])
details(["switch","switch2","switch3","refresh"])
}
}
// 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]) +
zigbee.readAttribute(0x0006, 0x0000, [destEndpoint: 0x11]) +
zigbee.readAttribute(0x0006, 0x0000, [destEndpoint: 0x12])
return refreshCmds.collect { new physicalgraph.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: "switch", value: "on")
else if (onoff == 0)
resultMap = createEvent(name: "switch", value: "off")
}
else 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")
}
else if (cluster.sourceEndpoint == 0x12)
{
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 == "0001" && descMap.attrId == "0020") {
resultMap = getBatteryResult(convertHexToInt(descMap.value / 2))
}
else if (descMap.cluster == "0008" && descMap.attrId == "0000") {
resultMap = createEvent(name: "switch", value: "off")
}
return resultMap
}
def off() {
log.debug “off()”
sendEvent(name: “switch”, value: “off”)
“st cmd 0x${device.deviceNetworkId} 0x10 0x0006 0x0 {}”
}
def on() {
log.debug “on()”
sendEvent(name: “switch”, value: “on”)
“st cmd 0x${device.deviceNetworkId} 0x10 0x0006 0x1 {}”
}
def off2() {
log.debug “off2()”
sendEvent(name: “switch2”, value: “off”)
“st cmd 0x${device.deviceNetworkId} 0x11 0x0006 0x0 {}”
}
def on2() {
log.debug “on2()”
sendEvent(name: “switch2”, value: “on”)
“st cmd 0x${device.deviceNetworkId} 0x11 0x0006 0x1 {}”
}
def off3() {
log.debug “off3()”
sendEvent(name: “switch3”, value: “off”)
“st cmd 0x${device.deviceNetworkId} 0x12 0x0006 0x0 {}”
}
def on3() {
log.debug “on3()”
sendEvent(name: “switch3”, value: “on”)
“st cmd 0x${device.deviceNetworkId} 0x12 0x0006 0x1 {}”
}
def off0() {
log.debug “off0()”
sendEvent(name: “switch0”, value: “off”)
“st cmd 0x${device.deviceNetworkId} 0xFF 0x0006 0x0 {}”
// “st cmd 0x${device.deviceNetworkId} 0x11 0x0006 0x0 {}”
}
def on0() {
log.debug “on0()”
sendEvent(name: “switch0”, value: “on”)
“st cmd 0x${device.deviceNetworkId} 0xFF 0x0006 0x1 {}”
// “st cmd 0x${device.deviceNetworkId} 0x11 0x0006 0x1 {}”
}
def refresh() {
log.debug “refreshing”
[
“st rattr 0x${device.deviceNetworkId} 0x10 0x0006 0x0”, “delay 1000”,
// “st rattr 0x${device.deviceNetworkId} 0x10 0x0006 0x0”, “delay 250”,
// "st rattr 0x${device.deviceNetworkId} 0x10 0x0001 0x0", "delay 250",
// "st rattr 0x${device.deviceNetworkId} 0x10 0x0000 0x0",
"st rattr 0x${device.deviceNetworkId} 0x11 0x0006 0x0", "delay 1000",
"st rattr 0x${device.deviceNetworkId} 0x12 0x0006 0x0", "delay 1000",
// “st rattr 0x${device.deviceNetworkId} 0x11 0x0006 0x0”, “delay 250”,
// "st rattr 0x${device.deviceNetworkId} 0x11 0x0001 0x0", "delay 250",
// "st rattr 0x${device.deviceNetworkId} 0x11 0x0000 0x0",
]
}
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
}
private Integer convertHexToInt(hex) {
Integer.parseInt(hex,16)
}
def off1() {
log.debug “off()”
sendEvent(name: “switch2”, value: “off”)
"st cmd 0x${device.deviceNetworkId} 0x10 0x0006 0x0 {}"
}
def on1() {
log.debug “on()”
sendEvent(name: “switch2”, value: “on”)
"st cmd 0x${device.deviceNetworkId} 0x10 0x0006 0x1 {}"
}
end here
Here is the smartapp.
/**
-
HUI Wall Switch Binder original from Andy’s SmartApp - shamlessly borrowed by the netsheriff and modded.
-
This app allows you to bind 3 Virtual On/Off Tiles to the 3 switchable outlets.
-
-
Author: simic with mod by netsheriff
-
Date: 05/09/2017
*/
// Automatically generated. Make future change here.
definition(
name: “George’s Wall Switch Binder 1.0 for 3 Gang Switch”,
namespace: “”,
author: “George Castanza”,
description: “This app allows you to bind 3 Virtual On/Off Tiles to the 3 switchable outlets.”,
category: “Convenience”,
iconUrl: “https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience.png”,
iconX2Url: “https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience%402x.png”)
preferences {
section(“Which HUI Wall Switch is used?”){
input “strip”, “capability.Switch”
}
section(“Select a Virtual Switch to bind to Outlet 1”){
input “switch1”, “capability.Switch”
}
section(“Select a Virtual Switch to bind to Outlet 2”){
input “switch2”, “capability.Switch”
}
section(“Select a Virtual Switch to bind to Outlet 3”){
input “switch3”, “capability.Switch”
}
}
def installed() {
log.debug “Installed with settings: ${settings}”
subscribe(strip, “switch.on”, MainSwitchOnOneHandler)
subscribe(strip, “switch.off”, MainSwitchOffOneHandler)
subscribe(strip, “switch1.on”, MainSwitchOnOneHandler)
subscribe(strip, “switch1.off”, MainSwitchOffOneHandler)
subscribe(strip, “switch2.on”, MainSwitchOnTwoHandler)
subscribe(strip, “switch2.off”, MainSwitchOffTwoHandler)
subscribe(strip, “switch3.on”, MainSwitchOnThreeHandler)
subscribe(strip, “switch3.off”, MainSwitchOffThreeHandler)
subscribe(switch1, “switch.on”, switchOnOneHandler)
subscribe(switch2, “switch.on”, switchOnTwoHandler)
subscribe(switch3, “switch.on”, switchOnThreeHandler)
subscribe(switch1, “switch.off”, switchOffOneHandler)
subscribe(switch2, “switch.off”, switchOffTwoHandler)
subscribe(switch3, “switch.off”, switchOffThreeHandler)
}
def updated(settings) {
log.debug “Updated with settings: ${settings}”
unsubscribe()
subscribe(strip, “switch.on”, MainSwitchOnOneHandler)
subscribe(strip, “switch.off”, MainSwitchOffOneHandler)
subscribe(strip, “switch1.on”, MainSwitchOnOneHandler)
subscribe(strip, “switch1.off”, MainSwitchOffOneHandler)
subscribe(strip, “switch2.on”, MainSwitchOnTwoHandler)
subscribe(strip, “switch2.off”, MainSwitchOffTwoHandler)
subscribe(strip, “switch3.on”, MainSwitchOnThreeHandler)
subscribe(strip, “switch3.off”, MainSwitchOffThreeHandler)
subscribe(switch1, “switch.on”, switchOnOneHandler)
subscribe(switch2, “switch.on”, switchOnTwoHandler)
subscribe(switch3, “switch.on”, switchOnThreeHandler)
subscribe(switch1, “switch.off”, switchOffOneHandler)
subscribe(switch2, “switch.off”, switchOffTwoHandler)
subscribe(switch3, “switch.off”, switchOffThreeHandler)
}
def MainSwitchOnOneHandler(evt) {
log.debug “switch on”
switch1.on()
}
def MainSwitchOffOneHandler(evt) {
log.debug “switch off”
switch1.off()
}
def MainSwitchOnTwoHandler(evt) {
log.debug “switch on”
switch2.on()
}
def MainSwitchOffTwoHandler(evt) {
log.debug “switch off”
switch2.off()
}
def MainSwitchOnThreeHandler(evt) {
log.debug “switch on”
switch3.on()
}
def MainSwitchOffThreeHandler(evt) {
log.debug “switch off”
switch3.off()
}
def switchOnOneHandler(evt) {
log.debug “switch on1”
strip.on()
}
def switchOnTwoHandler(evt) {
log.debug “switch on2”
strip.on2()
}
def switchOnThreeHandler(evt) {
log.debug “switch on3”
strip.on3()
}
def switchOffOneHandler(evt) {
log.debug “switch off1”
strip.off()
}
def switchOffTwoHandler(evt) {
log.debug “switch off2”
strip.off2()
}
def switchOffThreeHandler(evt) {
log.debug “switch off3”
strip.off3()
}