mirror of
https://github.com/mtan93/SmartThingsPublic.git
synced 2026-03-08 05:31:56 +00:00
94 lines
2.6 KiB
Groovy
94 lines
2.6 KiB
Groovy
/**
|
|
* Copyright 2015 SmartThings
|
|
*
|
|
* 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.
|
|
*
|
|
* The Big Switch
|
|
*
|
|
* Author: SmartThings
|
|
*
|
|
* Date: 2013-05-01
|
|
*/
|
|
definition(
|
|
name: "The Big Switch",
|
|
namespace: "smartthings",
|
|
author: "SmartThings",
|
|
description: "Turns on, off and dim a collection of lights based on the state of a specific switch.",
|
|
category: "Convenience",
|
|
iconUrl: "https://s3.amazonaws.com/smartapp-icons/Meta/light_outlet.png",
|
|
iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Meta/light_outlet@2x.png"
|
|
)
|
|
|
|
preferences {
|
|
section("When this switch is turned on, off or dimmed") {
|
|
input "master", "capability.switch", title: "Where?"
|
|
}
|
|
section("Turn on or off all of these switches as well") {
|
|
input "switches", "capability.switch", multiple: true, required: false
|
|
}
|
|
section("And turn off but not on all of these switches") {
|
|
input "offSwitches", "capability.switch", multiple: true, required: false
|
|
}
|
|
section("And turn on but not off all of these switches") {
|
|
input "onSwitches", "capability.switch", multiple: true, required: false
|
|
}
|
|
section("And Dim these switches") {
|
|
input "dimSwitches", "capability.switchLevel", multiple: true, required: false
|
|
}
|
|
}
|
|
|
|
def installed()
|
|
{
|
|
subscribe(master, "switch.on", onHandler)
|
|
subscribe(master, "switch.off", offHandler)
|
|
subscribe(master, "level", dimHandler)
|
|
}
|
|
|
|
def updated()
|
|
{
|
|
unsubscribe()
|
|
subscribe(master, "switch.on", onHandler)
|
|
subscribe(master, "switch.off", offHandler)
|
|
subscribe(master, "level", dimHandler)
|
|
}
|
|
|
|
def logHandler(evt) {
|
|
log.debug evt.value
|
|
}
|
|
|
|
def onHandler(evt) {
|
|
log.debug evt.value
|
|
log.debug onSwitches()
|
|
onSwitches()?.on()
|
|
}
|
|
|
|
def offHandler(evt) {
|
|
log.debug evt.value
|
|
log.debug offSwitches()
|
|
offSwitches()?.off()
|
|
}
|
|
|
|
def dimHandler(evt) {
|
|
log.debug "Dim level: $evt.value"
|
|
dimSwitches?.setLevel(evt.value)
|
|
}
|
|
|
|
private onSwitches() {
|
|
if(switches && onSwitches) { switches + onSwitches }
|
|
else if(switches) { switches }
|
|
else { onSwitches }
|
|
}
|
|
|
|
private offSwitches() {
|
|
if(switches && offSwitches) { switches + offSwitches }
|
|
else if(switches) { switches }
|
|
else { offSwitches }
|
|
}
|