mirror of
https://github.com/mtan93/SmartThingsPublic.git
synced 2026-03-08 05:31:56 +00:00
130 lines
4.1 KiB
Groovy
130 lines
4.1 KiB
Groovy
/**
|
|
* Copyright 2015 SmartThings
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
|
* in compliance with the License. You may obtain a copy of the License at:
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed
|
|
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License
|
|
* for the specific language governing permissions and limitations under the License.
|
|
*
|
|
* Rise and Shine
|
|
*
|
|
* Author: SmartThings
|
|
* Date: 2013-03-07
|
|
*/
|
|
|
|
definition(
|
|
name: "Rise and Shine",
|
|
namespace: "smartthings",
|
|
author: "SmartThings",
|
|
description: "Changes mode when someone wakes up after a set time in the morning.",
|
|
category: "Mode Magic",
|
|
iconUrl: "https://s3.amazonaws.com/smartapp-icons/ModeMagic/rise-and-shine.png",
|
|
iconX2Url: "https://s3.amazonaws.com/smartapp-icons/ModeMagic/rise-and-shine@2x.png"
|
|
)
|
|
|
|
preferences {
|
|
section("When there's motion on any of these sensors") {
|
|
input "motionSensors", "capability.motionSensor", multiple: true
|
|
}
|
|
section("During this time window (default End Time is 4:00 PM)") {
|
|
input "timeOfDay", "time", title: "Start Time?"
|
|
input "endTime", "time", title: "End Time?", required: false
|
|
}
|
|
section("Change to this mode") {
|
|
input "newMode", "mode", title: "Mode?"
|
|
}
|
|
section("And (optionally) turn on these appliances") {
|
|
input "switches", "capability.switch", multiple: true, required: false
|
|
}
|
|
section( "Notifications" ) {
|
|
input("recipients", "contact", title: "Send notifications to") {
|
|
input "sendPushMessage", "enum", title: "Send a push notification?", options: ["Yes", "No"], required: false
|
|
input "phoneNumber", "phone", title: "Send a Text Message?", required: false
|
|
}
|
|
}
|
|
}
|
|
|
|
def installed() {
|
|
log.debug "installed, current mode = ${location.mode}, state.actionTakenOn = ${state.actionTakenOn}"
|
|
initialize()
|
|
}
|
|
|
|
def updated() {
|
|
log.debug "updated, current mode = ${location.mode}, state.actionTakenOn = ${state.actionTakenOn}"
|
|
unsubscribe()
|
|
initialize()
|
|
}
|
|
|
|
def initialize() {
|
|
log.trace "timeOfDay: $timeOfDay, endTime: $endTime"
|
|
subscribe(motionSensors, "motion.active", motionActiveHandler)
|
|
subscribe(location, modeChangeHandler)
|
|
if (state.modeStartTime == null) {
|
|
state.modeStartTime = 0
|
|
}
|
|
}
|
|
|
|
def modeChangeHandler(evt) {
|
|
state.modeStartTime = now()
|
|
}
|
|
|
|
def motionActiveHandler(evt)
|
|
{
|
|
// for backward compatibility
|
|
if (state.modeStartTime == null) {
|
|
subscribe(location, modeChangeHandler)
|
|
state.modeStartTime = 0
|
|
}
|
|
|
|
def t0 = now()
|
|
def modeStartTime = new Date(state.modeStartTime)
|
|
def timeZone = location.timeZone ?: timeZone(timeOfDay)
|
|
def startTime = timeTodayAfter(modeStartTime, timeOfDay, timeZone)
|
|
def endTime = timeTodayAfter(startTime, endTime ?: "16:00", timeZone)
|
|
log.debug "startTime: $startTime, endTime: $endTime, t0: ${new Date(t0)}, modeStartTime: ${modeStartTime}, actionTakenOn: $state.actionTakenOn, currentMode: $location.mode, newMode: $newMode "
|
|
|
|
if (t0 >= startTime.time && t0 <= endTime.time && location.mode != newMode) {
|
|
def message = "Good morning! SmartThings changed the mode to '$newMode'"
|
|
send(message)
|
|
setLocationMode(newMode)
|
|
log.debug message
|
|
|
|
def dateString = new Date().format("yyyy-MM-dd")
|
|
log.debug "last turned on switches on ${state.actionTakenOn}, today is ${dateString}"
|
|
if (state.actionTakenOn != dateString) {
|
|
log.debug "turning on switches"
|
|
state.actionTakenOn = dateString
|
|
switches?.on()
|
|
}
|
|
|
|
}
|
|
else {
|
|
log.debug "not in time window, or mode is already set, currentMode = ${location.mode}, newMode = $newMode"
|
|
}
|
|
}
|
|
|
|
private send(msg) {
|
|
|
|
if (location.contactBookEnabled) {
|
|
log.debug("sending notifications to: ${recipients?.size()}")
|
|
sendNotificationToContacts(msg, recipients)
|
|
}
|
|
else {
|
|
if (sendPushMessage != "No") {
|
|
log.debug("sending push message")
|
|
sendPush(msg)
|
|
}
|
|
|
|
if (phoneNumber) {
|
|
log.debug("sending text message")
|
|
sendSms(phoneNumber, msg)
|
|
}
|
|
}
|
|
|
|
log.debug msg
|
|
}
|