Adding more official apps gotten from https://github.com/SmartThingsCommunity/Code
[smartapps.git] / official / big-turn-on.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  *  Big Turn ON
14  *
15  *  Author: SmartThings
16  */
17
18 definition(
19     name: "Big Turn ON",
20     namespace: "smartthings",
21     author: "SmartThings",
22     description: "Turn your lights on when the SmartApp is tapped or activated.",
23     category: "Convenience",
24     iconUrl: "https://s3.amazonaws.com/smartapp-icons/Meta/light_outlet.png",
25     iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Meta/light_outlet@2x.png"
26 )
27
28 preferences {
29         section("When I touch the app, turn on...") {
30                 input "switches", "capability.switch", multiple: true
31         }
32 }
33
34 def installed()
35 {
36         subscribe(location, changedLocationMode)
37         subscribe(app, appTouch)
38 }
39
40 def updated()
41 {
42         unsubscribe()
43         subscribe(location, changedLocationMode)
44         subscribe(app, appTouch)
45 }
46
47 def changedLocationMode(evt) {
48         log.debug "changedLocationMode: $evt"
49         switches?.on()
50 }
51
52 def appTouch(evt) {
53         log.debug "appTouch: $evt"
54         switches?.on()
55 }