Update garage-switch.groovy
[smartapps.git] / official / undead-early-warning.groovy
1 /**
2  *  Copyright 2015 SmartThings
3  *
4  *  Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5  *  in compliance with the License. You may obtain a copy of the License at:
6  *
7  *      http://www.apache.org/licenses/LICENSE-2.0
8  *
9  *  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed
10  *  on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License
11  *  for the specific language governing permissions and limitations under the License.
12  *
13  *  The simplest Undead Early Warning system that could possibly work. ;)
14  *
15  *  Author: SmartThings
16  */
17 definition(
18     name: "Undead Early Warning",
19     namespace: "smartthings",
20     author: "SmartThings",
21     description: "Undead Early Warning",
22     category: "Safety & Security",
23     iconUrl: "https://s3.amazonaws.com/smartapp-icons/SafetyAndSecurity/App-UndeadEarlyWarning.png",
24     iconX2Url: "https://s3.amazonaws.com/smartapp-icons/SafetyAndSecurity/App-UndeadEarlyWarning@2x.png"
25 )
26
27 preferences {
28         section("When the door opens...") {
29                 input "contacts", "capability.contactSensor", multiple: true, title: "Where could they come from?"
30         }
31         section("Turn on the lights!") {
32                 input "switches", "capability.switch", multiple: true
33         }
34 }
35
36 def installed()
37 {
38         subscribe(contacts, "contact.open", contactOpenHandler)
39 }
40
41 def updated()
42 {
43         unsubscribe()
44         subscribe(contacts, "contact.open", contactOpenHandler)
45 }
46
47 def contactOpenHandler(evt) {
48         log.debug "$evt.value: $evt, $settings"
49         log.trace "The Undead are coming! Turning on the lights: $switches"
50         switches.on()
51 }