Files
SmartThingsPublic/smartapps/smartthings/let-there-be-light.src/let-there-be-light.groovy
2015-08-04 15:49:03 -07:00

54 lines
1.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.
*
* Let There Be Light!
* Turn your lights on when an open/close sensor opens and off when the sensor closes.
*
* Author: SmartThings
*/
definition(
name: "Let There Be Light!",
namespace: "smartthings",
author: "SmartThings",
description: "Turn your lights on when a SmartSense Multi is opened and turn them off when it is closed.",
category: "Convenience",
iconUrl: "https://s3.amazonaws.com/smartapp-icons/Meta/light_contact-outlet.png",
iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Meta/light_contact-outlet@2x.png"
)
preferences {
section("When the door opens/closes...") {
input "contact1", "capability.contactSensor", title: "Where?"
}
section("Turn on/off a light...") {
input "switch1", "capability.switch"
}
}
def installed() {
subscribe(contact1, "contact", contactHandler)
}
def updated() {
unsubscribe()
subscribe(contact1, "contact", contactHandler)
}
def contactHandler(evt) {
log.debug "$evt.value"
if (evt.value == "open") {
switch1.on()
} else if (evt.value == "closed") {
switch1.off()
}
}