mirror of
https://github.com/mtan93/SmartThingsPublic.git
synced 2026-03-25 13:04:10 +00:00
Compare commits
1 Commits
MSA-1816-1
...
MSA-1817-1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f140fe0d29 |
@@ -1,159 +0,0 @@
|
|||||||
/**
|
|
||||||
* 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.
|
|
||||||
*
|
|
||||||
* The Flasher
|
|
||||||
*
|
|
||||||
* Author: bob
|
|
||||||
* Date: 2013-02-06
|
|
||||||
*
|
|
||||||
* Modified by Craig Parkin (2017-03-02) to include a time range that events can be triggered in.
|
|
||||||
*/
|
|
||||||
definition(
|
|
||||||
name: "Flasher II",
|
|
||||||
namespace: "smartthings",
|
|
||||||
author: "SmartThings/Craig Parkin",
|
|
||||||
description: "Flashes a set of lights/switch in response to motion, an open/close event, or a switch, during a defined time period.",
|
|
||||||
category: "Convenience",
|
|
||||||
iconUrl: "https://s3.amazonaws.com/smartapp-icons/Meta/light_motion-outlet-contact.png",
|
|
||||||
iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Meta/light_motion-outlet-contact@2x.png"
|
|
||||||
)
|
|
||||||
|
|
||||||
preferences {
|
|
||||||
section("When any of the following devices trigger..."){
|
|
||||||
input "motion", "capability.motionSensor", title: "Motion Sensor?", required: false
|
|
||||||
input "contact", "capability.contactSensor", title: "Contact Sensor?", required: false
|
|
||||||
input "acceleration", "capability.accelerationSensor", title: "Acceleration Sensor?", required: false
|
|
||||||
input "mySwitch", "capability.switch", title: "Switch?", required: false
|
|
||||||
input "myPresence", "capability.presenceSensor", title: "Presence Sensor?", required: false
|
|
||||||
}
|
|
||||||
section("Then flash..."){
|
|
||||||
input "switches", "capability.switch", title: "These lights", multiple: true
|
|
||||||
input "numFlashes", "number", title: "This number of times (default 3)", required: false
|
|
||||||
}
|
|
||||||
section("Time settings in milliseconds (optional)..."){
|
|
||||||
input "onFor", "number", title: "On for (default 1000)", required: false
|
|
||||||
input "offFor", "number", title: "Off for (default 1000)", required: false
|
|
||||||
}
|
|
||||||
section("Trigger between what times?") {
|
|
||||||
input "fromTime", "time", title: "From", required: true
|
|
||||||
input "toTime", "time", title: "To", required: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
def installed() {
|
|
||||||
log.debug "Installed with settings: ${settings}"
|
|
||||||
|
|
||||||
subscribe()
|
|
||||||
}
|
|
||||||
|
|
||||||
def updated() {
|
|
||||||
log.debug "Updated with settings: ${settings}"
|
|
||||||
|
|
||||||
unsubscribe()
|
|
||||||
subscribe()
|
|
||||||
}
|
|
||||||
|
|
||||||
def subscribe() {
|
|
||||||
if (contact) {
|
|
||||||
subscribe(contact, "contact.open", contactOpenHandler)
|
|
||||||
}
|
|
||||||
if (acceleration) {
|
|
||||||
subscribe(acceleration, "acceleration.active", accelerationActiveHandler)
|
|
||||||
}
|
|
||||||
if (motion) {
|
|
||||||
subscribe(motion, "motion.active", motionActiveHandler)
|
|
||||||
}
|
|
||||||
if (mySwitch) {
|
|
||||||
subscribe(mySwitch, "switch.on", switchOnHandler)
|
|
||||||
}
|
|
||||||
if (myPresence) {
|
|
||||||
subscribe(myPresence, "presence", presenceHandler)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
def motionActiveHandler(evt) {
|
|
||||||
log.debug "motion $evt.value"
|
|
||||||
flashLights()
|
|
||||||
}
|
|
||||||
|
|
||||||
def contactOpenHandler(evt) {
|
|
||||||
log.debug "contact $evt.value"
|
|
||||||
flashLights()
|
|
||||||
}
|
|
||||||
|
|
||||||
def accelerationActiveHandler(evt) {
|
|
||||||
log.debug "acceleration $evt.value"
|
|
||||||
flashLights()
|
|
||||||
}
|
|
||||||
|
|
||||||
def switchOnHandler(evt) {
|
|
||||||
log.debug "switch $evt.value"
|
|
||||||
flashLights()
|
|
||||||
}
|
|
||||||
|
|
||||||
def presenceHandler(evt) {
|
|
||||||
log.debug "presence $evt.value"
|
|
||||||
if (evt.value == "present") {
|
|
||||||
flashLights()
|
|
||||||
} else if (evt.value == "not present") {
|
|
||||||
flashLights()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private flashLights() {
|
|
||||||
|
|
||||||
def between = timeOfDayIsBetween(fromTime, toTime, new Date(), location.timeZone)
|
|
||||||
if (between) {
|
|
||||||
def doFlash = true
|
|
||||||
def onFor = onFor ?: 1000
|
|
||||||
def offFor = offFor ?: 1000
|
|
||||||
def numFlashes = numFlashes ?: 3
|
|
||||||
|
|
||||||
log.debug "LAST ACTIVATED IS: ${state.lastActivated}"
|
|
||||||
if (state.lastActivated) {
|
|
||||||
def elapsed = now() - state.lastActivated
|
|
||||||
def sequenceTime = (numFlashes + 1) * (onFor + offFor)
|
|
||||||
doFlash = elapsed > sequenceTime
|
|
||||||
log.debug "DO FLASH: $doFlash, ELAPSED: $elapsed, LAST ACTIVATED: ${state.lastActivated}"
|
|
||||||
}
|
|
||||||
|
|
||||||
if (doFlash) {
|
|
||||||
log.debug "FLASHING $numFlashes times"
|
|
||||||
state.lastActivated = now()
|
|
||||||
log.debug "LAST ACTIVATED SET TO: ${state.lastActivated}"
|
|
||||||
def initialActionOn = switches.collect{it.currentSwitch != "on"}
|
|
||||||
def delay = 0L
|
|
||||||
numFlashes.times {
|
|
||||||
log.trace "Switch on after $delay msec"
|
|
||||||
switches.eachWithIndex {s, i ->
|
|
||||||
if (initialActionOn[i]) {
|
|
||||||
s.on(delay: delay)
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
s.off(delay:delay)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
delay += onFor
|
|
||||||
log.trace "Switch off after $delay msec"
|
|
||||||
switches.eachWithIndex {s, i ->
|
|
||||||
if (initialActionOn[i]) {
|
|
||||||
s.off(delay: delay)
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
s.on(delay:delay)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
delay += offFor
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
82
smartapps/teapps/turn-off.src/turn-off.groovy
Normal file
82
smartapps/teapps/turn-off.src/turn-off.groovy
Normal file
@@ -0,0 +1,82 @@
|
|||||||
|
/**
|
||||||
|
* Turn Off
|
||||||
|
*
|
||||||
|
* Copyright 2017 Trevor
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
definition(
|
||||||
|
name: "Turn Off",
|
||||||
|
namespace: "TEAPPS",
|
||||||
|
author: "Trevor",
|
||||||
|
description: "Turn off a light after its been turned on.",
|
||||||
|
category: "Convenience",
|
||||||
|
iconUrl: "https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience.png",
|
||||||
|
iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience@2x.png",
|
||||||
|
iconX3Url: "https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience@2x.png")
|
||||||
|
|
||||||
|
|
||||||
|
preferences {
|
||||||
|
|
||||||
|
section("Lights") {
|
||||||
|
input "lights", "capability.switch", required: true, title: "Which lights to turn off after being turned on?", multiple: true
|
||||||
|
input "offsetHours", "number", title: "How long until the light is turned off (hours)?"
|
||||||
|
input "offsetMinutes", "number", title: "How long until the light is turned off (minutes)?"
|
||||||
|
input "offsetSeconds", "number", title: "How long until the light is turned off (seconds)?"
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
def installed() {
|
||||||
|
log.debug "Installed with settings: ${settings}"
|
||||||
|
|
||||||
|
initialize()
|
||||||
|
}
|
||||||
|
|
||||||
|
def updated() {
|
||||||
|
log.debug "Updated with settings: ${settings}"
|
||||||
|
|
||||||
|
unsubscribe()
|
||||||
|
initialize()
|
||||||
|
}
|
||||||
|
|
||||||
|
def initialize() {
|
||||||
|
// TODO: subscribe to attributes, devices, locations, etc.
|
||||||
|
|
||||||
|
//Subscribe to the light device being turned on
|
||||||
|
subscribe(lights, "switch.on", lightHandler)
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: implement event handlers
|
||||||
|
def lightHandler(evt) {
|
||||||
|
|
||||||
|
if("on" == evt.value)
|
||||||
|
//Light was turned on
|
||||||
|
log.debug "Light is in ${evt.value} state"
|
||||||
|
|
||||||
|
//Get the date and time
|
||||||
|
def currentTime = new Date()
|
||||||
|
|
||||||
|
//Calculate the offset
|
||||||
|
def timeToTurnOff = new Date(currentTime.time + (offsetHours * 60 * 60 * 1000) + (offsetMinutes * 60 * 1000) + (offsetSeconds * 1000))
|
||||||
|
|
||||||
|
log.debug "Scheduling for: $timeToTurnOff"
|
||||||
|
|
||||||
|
//Schedule this to run one time
|
||||||
|
runOnce(timeToTurnOff, turnOff)
|
||||||
|
}
|
||||||
|
|
||||||
|
def turnOff() {
|
||||||
|
log.debug "turning off lights"
|
||||||
|
lights.off()
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user