Hi there,
I’m having issues understanding how to implement the delay ability correctly. Whatever I do doesn’t seem to work right. Can someone offer some clues on how to fix this?
Note – I know it’s messy. Ideally, I’d like the function to show that its enabled and waiting, but I’m just trying to test getting the delay to work correctly.
/**
* DELAYED Simulated Switch
* Modification by Angela Morley
* For reasons....
* ----------------------------------
* 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.
*
*/
metadata {
definition (name: "Simulated Delayed Switch", namespace: "smartthings/testing", author: "Angela") {
capability "Switch"
capability "Relay Switch"
capability "Sensor"
capability "Actuator"
command "onPhysical"
command "offPhysical"
}
tiles {
standardTile("switch", "device.switch", width: 2, height: 2, canChangeIcon: true) {
state "off", label: '${currentValue}', action: "switch.on", icon: "st.switches.switch.off", backgroundColor: "#ffffff"
state "on", label: '${currentValue}', action: "switch.off", icon: "st.switches.switch.on", backgroundColor: "#79b821"
}
standardTile("on", "device.switch", decoration: "flat") {
state "default", label: 'On', action: "onPhysical", backgroundColor: "#ffffff"
}
standardTile("off", "device.switch", decoration: "flat") {
state "default", label: 'Off', action: "offPhysical", backgroundColor: "#ffffff"
}
main "switch"
details(["switch","on","off"])
}
}
def parse(description) {
}
def on() {
log.debug "$version on()"
sendEvent(name: "switch", value: "on", [delay: 5000])
}
def off() {
log.debug "$version off()"
sendEvent(name: "switch", value: "off", [delay: 5000])
}
def onPhysical() {
log.debug "$version onPhysical()"
sendEvent(name: "switch", value: "on", type: "physical", [delay: 5000])
}
def offPhysical() {
log.debug "$version offPhysical()"
sendEvent(name: "switch", value: "off", type: "physical", [delay: 5000])
}
private getVersion() {
"PUBLISHED"
}