Update once-a-day.groovy
[smartapps.git] / official / text-me-when-it-opens.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  *  Text Me When It Opens
14  *
15  *  Author: SmartThings
16  */
17 definition(
18     name: "Text Me When It Opens",
19     namespace: "smartthings",
20     author: "SmartThings",
21     description: "Get a text message sent to your phone when an open/close sensor is opened.",
22     category: "Convenience",
23     iconUrl: "https://s3.amazonaws.com/smartapp-icons/Meta/window_contact.png",
24     iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Meta/window_contact@2x.png"
25 )
26
27 preferences {
28         section("When the door opens...") {
29                 input "contact1", "capability.contactSensor", 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 {
40         subscribe(contact1, "contact.open", contactOpenHandler)
41 }
42
43 def updated()
44 {
45         unsubscribe()
46         subscribe(contact1, "contact.open", contactOpenHandler)
47 }
48
49 def contactOpenHandler(evt) {
50         log.trace "$evt.value: $evt, $settings"
51   log.debug "$contact1 was opened, sending text"
52     if (location.contactBookEnabled) {
53         sendNotificationToContacts("Your ${contact1.label ?: contact1.name} was opened", recipients)
54     }
55     else {
56         sendSms(phone1, "Your ${contact1.label ?: contact1.name} was opened")
57     }
58 }