Update gentle-wake-up.groovy
[smartapps.git] / official / turn-it-on-when-im-here.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  *  Turn It On When I'm Here
14  *
15  *  Author: SmartThings
16  */
17 definition(
18     name: "Turn It On When I'm Here",
19     namespace: "smartthings",
20     author: "SmartThings",
21     description: "Turn something on when you arrive and back off when you leave.",
22     category: "Convenience",
23     iconUrl: "https://s3.amazonaws.com/smartapp-icons/Meta/light_presence-outlet.png",
24     iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Meta/light_presence-outlet@2x.png"
25 )
26
27 preferences {
28         section("When I arrive and leave..."){
29                 input "presence1", "capability.presenceSensor", title: "Who?", multiple: true
30         }
31         section("Turn on/off a light..."){
32                 input "switch1", "capability.switch", multiple: true
33         }
34 }
35
36 def installed()
37 {
38         subscribe(presence1, "presence", presenceHandler)
39 }
40
41 def updated()
42 {
43         unsubscribe()
44         subscribe(presence1, "presence", presenceHandler)
45 }
46
47 def presenceHandler(evt)
48 {
49         log.debug "presenceHandler $evt.name: $evt.value"
50         def current = presence1.currentValue("presence")
51         log.debug current
52         def presenceValue = presence1.find{it.currentPresence == "present"}
53         log.debug presenceValue
54         if(presenceValue){
55                 switch1.on()
56                 log.debug "Someone's home!"
57         }
58         else{
59                 switch1.off()
60                 log.debug "Everyone's away."
61         }
62 }