2 * Copyright 2015 SmartThings
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:
7 * http://www.apache.org/licenses/LICENSE-2.0
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.
13 * The simplest Undead Early Warning system that could possibly work. ;)
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"
28 section("When the door opens...") {
29 input "contacts", "capability.contactSensor", multiple: true, title: "Where could they come from?"
31 section("Turn on the lights!") {
32 input "switches", "capability.switch", multiple: true
38 subscribe(contacts, "contact.open", contactOpenHandler)
44 subscribe(contacts, "contact.open", contactOpenHandler)
47 def contactOpenHandler(evt) {
48 log.debug "$evt.value: $evt, $settings"
49 log.trace "The Undead are coming! Turning on the lights: $switches"