Update smart-alarm.groovy
[smartapps.git] / official / habit-helper.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  *  Habit Helper
14  *  Every day at a specific time, get a text reminding you about your habit
15  *
16  *  Author: SmartThings
17  */
18 definition(
19     name: "Habit Helper",
20     namespace: "smartthings",
21     author: "SmartThings",
22     description: "Add something you want to be reminded about each day and get a text message to help you form positive habits.",
23     category: "Family",
24     iconUrl: "https://s3.amazonaws.com/smartapp-icons/Meta/text.png",
25     iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Meta/text@2x.png"
26 )
27
28 preferences {
29         section("Remind me about..."){
30                 input "message1", "text", title: "What?"
31         }
32         section("At what time?"){
33                 input "time1", "time", title: "When?"
34         }
35         section("Text me at..."){
36         input("recipients", "contact", title: "Send notifications to") {
37             input "phone1", "phone", title: "Phone number?"
38         }
39         }
40 }
41
42 def installed()
43 {
44         schedule(time1, "scheduleCheck")
45 }
46
47 def updated()
48 {
49         unschedule()
50         schedule(time1, "scheduleCheck")
51 }
52
53 def scheduleCheck()
54 {
55         log.trace "scheduledCheck"
56
57         def message = message1 ?: "SmartThings - Habit Helper Reminder!"
58
59     if (location.contactBookEnabled) {
60         log.debug "Texting reminder to contacts:${recipients?.size()}"
61         sendNotificationToContacts(message, recipients)
62     }
63     else {
64         log.debug "Texting reminder"
65         sendSms(phone1, message)
66     }
67 }