Update loft.groovy
[smartapps.git] / third-party / AlarmThing-AlertContact.groovy
1 /**
2  *  AlarmThing AlertContact
3  *
4  *  Copyright 2014 ObyCode
5  *
6  *  Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
7  *  in compliance with the License. You may obtain a copy of the License at:
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed
12  *  on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License
13  *  for the specific language governing permissions and limitations under the License.
14  *
15  */
16 definition(
17     name: "AlarmThing AlertContact",
18     namespace: "com.obycode",
19     author: "ObyCode",
20     description: "Alert me when a specific contact sensor on my alarm is opened.",
21     category: "Safety & Security",
22     iconUrl: "https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience.png",
23     iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience@2x.png"
24 )
25
26 preferences {
27     section("When a contact is opened on this alarm...") {
28         input "theAlarm", "capability.alarm", multiple: false, required: true
29     }
30     section("with this sensor name...") {
31         input "theSensor", "string", multiple: false, required: true
32     }
33     section("push me this message...") {
34         input "theMessage", "string", multiple: false, required: true
35     }
36 }
37
38 def installed() {
39     log.debug "Installed with settings: ${settings}"
40
41     initialize()
42 }
43
44 def updated() {
45     log.debug "Updated with settings: ${settings}"
46
47     unsubscribe()
48     initialize()
49 }
50
51 def initialize() {
52     log.debug "in initialize"
53     subscribe(theAlarm, theSensor + ".open", sensorTriggered)
54 }
55
56 def sensorTriggered(evt) {
57     sendPush(theMessage)
58 }