Update groveStreams.groovy
[smartapps.git] / official / brighten-my-path.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  *  Brighten My Path
14  *
15  *  Author: SmartThings
16  */
17 definition(
18     name: "Brighten My Path",
19     namespace: "smartthings",
20     author: "SmartThings",
21     description: "Turn your lights on when motion is detected.",
22     category: "Convenience",
23     iconUrl: "https://s3.amazonaws.com/smartapp-icons/Meta/light_motion-outlet.png",
24     iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Meta/light_motion-outlet@2x.png"
25 )
26
27 preferences {
28         section("When there's movement...") {
29                 input "motion1", "capability.motionSensor", title: "Where?", multiple: true
30         }
31         section("Turn on a light...") {
32                 input "switch1", "capability.switch", multiple: true
33         }
34 }
35
36 def installed()
37 {
38         subscribe(motion1, "motion.active", motionActiveHandler)
39 }
40
41 def updated()
42 {
43         unsubscribe()
44         subscribe(motion1, "motion.active", motionActiveHandler)
45 }
46
47 def motionActiveHandler(evt) {
48         switch1.on()
49 }