Update sonos-remote-control.groovy
[smartapps.git] / official / the-gun-case-moved.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  *  The Gun Case Moved
14  *
15  *  Author: SmartThings
16  */
17 definition(
18     name: "The Gun Case Moved",
19     namespace: "smartthings",
20     author: "SmartThings",
21     description: "Send a text when your gun case moves",
22     category: "Safety & Security",
23     iconUrl: "https://s3.amazonaws.com/smartapp-icons/Meta/text_accelerometer.png",
24     iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Meta/text_accelerometer@2x.png"
25 )
26
27 preferences {
28         section("When the gun case moves..."){
29                 input "accelerationSensor", "capability.accelerationSensor", title: "Where?"
30         }
31         section("Text me at..."){
32         input("recipients", "contact", title: "Send notifications to") {
33             input "phone1", "phone", title: "Phone number?"
34         }
35         }
36 }
37
38 def installed() {
39         subscribe(accelerationSensor, "acceleration.active", accelerationActiveHandler)
40 }
41
42 def updated() {
43         unsubscribe()
44         subscribe(accelerationSensor, "acceleration.active", accelerationActiveHandler)
45 }
46
47 def accelerationActiveHandler(evt) {
48         // Don't send a continuous stream of text messages
49         def deltaSeconds = 5
50         def timeAgo = new Date(now() - (1000 * deltaSeconds))
51         def recentEvents = accelerationSensor.eventsSince(timeAgo)
52         log.trace "Found ${recentEvents?.size() ?: 0} events in the last $deltaSeconds seconds"
53         def alreadySentSms = recentEvents.count { it.value && it.value == "active" } > 1
54
55         if (alreadySentSms) {
56                 log.debug "SMS already sent to phone within the last $deltaSeconds seconds"
57         } else {
58         if (location.contactBookEnabled) {
59             sendNotificationToContacts("Gun case has moved!", recipients)
60         }
61         else {
62             log.debug "$accelerationSensor has moved, texting phone"
63             sendSms(phone1, "Gun case has moved!")
64         }
65         }
66 }