Update laundry-monitor.groovy
[smartapps.git] / official / presence-change-push.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  *  Presence Change Push
14  *
15  *  Author: SmartThings
16  */
17 definition(
18     name: "Presence Change Push",
19     namespace: "smartthings",
20     author: "SmartThings",
21     description: "Get a push notification when a SmartSense Presence tag or smartphone arrives at or departs from a location.",
22     category: "Safety & Security",
23     iconUrl: "https://s3.amazonaws.com/smartapp-icons/Meta/text_presence.png",
24     iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Meta/text_presence@2x.png"
25 )
26
27 preferences {
28         section("When a presence sensor arrives or departs this location..") {
29                 input "presence", "capability.presenceSensor", title: "Which sensor?"
30         }
31 }
32
33 def installed() {
34         subscribe(presence, "presence", presenceHandler)
35 }
36
37 def updated() {
38         unsubscribe()
39         subscribe(presence, "presence", presenceHandler)
40 }
41
42 def presenceHandler(evt) {
43         if (evt.value == "present") {
44                 // log.debug "${presence.label ?: presence.name} has arrived at the ${location}"
45         sendPush("${presence.label ?: presence.name} has arrived at the ${location}")
46         } else if (evt.value == "not present") {
47                 // log.debug "${presence.label ?: presence.name} has left the ${location}"
48         sendPush("${presence.label ?: presence.name} has left the ${location}")
49         }
50 }