Changing remote branch to PLRG Git server.
[smartapps.git] / third-party / AlarmThing-AlertAll.groovy
1 /**
2  *  AlarmThing AlertAll
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 AlertAll",
18     namespace: "com.obycode",
19     author: "ObyCode",
20     description: "Send a message whenever any sensor changes on the alarm.",
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("Notify me when there is any activity on this alarm:") {
28         input "theAlarm", "capability.alarm", multiple: false, required: true
29     }
30 }
31
32 def installed() {
33     log.debug "Installed with settings: ${settings}"
34
35     initialize()
36 }
37
38 def updated() {
39     log.debug "Updated with settings: ${settings}"
40
41     unsubscribe()
42     initialize()
43 }
44
45 def initialize() {
46     log.debug "in initialize"
47     subscribe(theAlarm, "contact", contactTriggered)
48     subscribe(theAlarm, "motion", motionTriggered)
49 }
50
51 def contactTriggered(evt) {
52     if (evt.value == "open") {
53         sendPush("A door was opened")
54     } else {
55         sendPush("A door was closed")
56     }
57 }
58
59 def motionTriggered(evt) {
60     if (evt.value == "active") {
61         sendPush("Alarm motion detected")
62     }// else {
63         //sendPush("Motion stopped")
64     //}
65 }