Created
September 16, 2016 17:51
-
-
Save tylerlange/9555b2d113558ffd993eaa10a4150fc6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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. | |
* | |
* Bulb Resetter | |
* | |
* Author: Donald Kirker, SmartThings | |
* Date: 2015-08-23 | |
*/ | |
metadata { | |
// Automatically generated. Make future change here. | |
definition (name: "Bulb Resetter", namespace: "smartthings", author: "Donald Kirker, SmartThings") { | |
capability "Actuator" | |
capability "Switch" | |
capability "Sensor" | |
command "resetCree" | |
command "resetOsram" | |
command "resetBelkin" | |
command "resetGELink" | |
command "resetLifx" | |
attribute "resetState", "String" | |
// Hide fingerprint; you need to type a SmartPower outlet yourself. | |
//fingerprint profileId: "0104", inClusters: "0000,0003,0006", outClusters: "0019" | |
} | |
// simulator metadata | |
simulator { | |
// status messages | |
status "on": "on/off: 1" | |
status "off": "on/off: 0" | |
// reply messages | |
reply "zcl on-off on": "on/off: 1" | |
reply "zcl on-off off": "on/off: 0" | |
} | |
// UI tile definitions | |
tiles { | |
standardTile("switch", "device.switch", width: 1, height: 1, canChangeIcon: true) { | |
state "off", label: '${name}', action: "switch.on", icon: "st.switches.switch.off", backgroundColor: "#ffffff" | |
state "on", label: '${name}', action: "switch.off", icon: "st.switches.switch.on", backgroundColor: "#79b821" | |
} | |
valueTile("resetState", "device.resetState", width: 2, height: 1, decoration: "flat") { | |
state "default", label: "--" | |
state "resetting", label: "Resetting..." | |
state "done", label: "Reset Done" | |
state "idle", label: "--" | |
} | |
standardTile("cree", "device.switch", inactiveLabel: false, decoration: "flat") { | |
state "on", label:"Cree", action:"resetCree", icon:"http://ecx.images-amazon.com/images/I/51Fvtfl%2BjjL._SL1000_.jpg", backgroundColor: "#ffffff" | |
} | |
standardTile("osram", "device.switch", inactiveLabel: false, decoration: "flat") { | |
state "on", label:"Osram", action:"resetOsram", icon:"https://support.smartthings.com/hc/en-us/article_attachments/202057663/OSRAM_LIGHTIFY_Tunable_White.jpg", backgroundColor: "#ffffff" | |
} | |
standardTile("belkin", "device.switch", inactiveLabel: false, decoration: "flat") { | |
state "on", label:"Belkin", action:"resetBelkin", icon:"https://support.smartthings.com/hc/en-us/article_attachments/202056933/Belkin_WeMo_LED_Bulb.png", backgroundColor: "#ffffff" | |
} | |
standardTile("gelink", "device.switch", inactiveLabel: false, decoration: "flat") { | |
state "on", label:"GE", action:"resetGELink", icon:"https://support.smartthings.com/hc/en-us/article_attachments/202057403/GE_Link_Bulb.jpeg", backgroundColor: "#ffffff" | |
} | |
standardTile("lifx", "device.switch", inactiveLabel: false, decoration: "flat") { | |
state "on", label:"LIFX", action:"resetLifx", icon:"https://support.smartthings.com/hc/en-us/article_attachments/202057343/LIFX-White-800-A19.jpg", backgroundColor: "#ffffff" | |
} | |
main(["switch"]) | |
details(["switch", "resetState", "cree", "osram", "belkin", "gelink", "lifx"]) | |
} | |
} | |
// Parse incoming device messages to generate events | |
def parse(String description) | |
{ | |
if (description?.startsWith("catchall: 0104 000A")) { | |
log.debug "Dropping catchall for SmartPower Outlet" | |
} else { | |
def name = description?.startsWith("on/off: ") ? "switch" : null | |
def value = name == "switch" ? (description?.endsWith(" 1") ? "on" : "off") : null | |
def result = createEvent(name: name, value: value) | |
log.debug "Parse returned ${result?.descriptionText}" | |
return result | |
} | |
return [] | |
} | |
// Commands to device | |
def on() | |
{ | |
log.debug("on()") | |
"zcl on-off on" | |
} | |
def off() | |
{ | |
log.debug("off()") | |
"zcl on-off off" | |
} | |
def seconds(numSeconds) | |
{ | |
def totalMSec = numSeconds * 1000 | |
return "delay ${totalMSec}" | |
} | |
def resetStarted() | |
{ | |
sendEvent(name: "resetState", value: "resetting") | |
} | |
def resetCompleted() | |
{ | |
sendEvent(name: "resetState", value: "done") | |
} | |
def scheduleResetCompleted(delay) | |
{ | |
runIn(delay, resetCompleted) | |
} | |
def resetIdle() | |
{ | |
sendEvent(name: "resetState", value: "idle") | |
} | |
def scheduleResetIdle(delay) | |
{ | |
runIn(delay, resetIdle) | |
} | |
// Bulb reset sequences | |
def resetCree() | |
{ | |
def fourSeconds = seconds(4) | |
def cmds = [off(), fourSeconds] | |
def i = 0 | |
log.debug("resetCree()") | |
while (i < 4) { | |
cmds += [ | |
on(), | |
off(), | |
fourSeconds | |
] | |
i++ | |
} | |
cmds += [ | |
on() | |
] | |
log.debug("cmds: ${cmds}") | |
resetStarted() | |
scheduleResetCompleted(25) | |
return response(cmds) | |
} | |
def resetOsram() | |
{ | |
def fiveSeconds = seconds(5) | |
def cmds = [off(), fiveSeconds] | |
def i = 0 | |
log.debug("resetOsram()") | |
while (i < 5) { | |
cmds += [ | |
on(), | |
fiveSeconds, | |
off(), | |
fiveSeconds | |
] | |
i++ | |
} | |
cmds += [ | |
/*on(), | |
fiveSeconds, | |
fiveSeconds, | |
off(),*/ | |
on() | |
] | |
log.debug("cmds: ${cmds}") | |
resetStarted() | |
scheduleResetCompleted(60) | |
return response(cmds) | |
} | |
def resetBelkin() | |
{ | |
def fiveSeconds = seconds(5) | |
def cmds = [on()] | |
def i = 0 | |
log.debug("resetBelkin()") | |
while (i < 3) { | |
cmds += [ | |
off(), | |
fiveSeconds, | |
on(), | |
fiveSeconds | |
] | |
i++ | |
} | |
log.debug("cmds: ${cmds}") | |
resetStarted() | |
scheduleResetCompleted(40) | |
return response(cmds) | |
} | |
def resetGELink() | |
{ | |
def threeSeconds = seconds(3) | |
def cmds = [on()] | |
def i = 0 | |
log.debug("resetGELink()") | |
while (i < 5) { | |
cmds += [ | |
off(), | |
threeSeconds, | |
on(), | |
threeSeconds | |
] | |
i++ | |
} | |
log.debug("cmds: ${cmds}") | |
resetStarted() | |
scheduleResetCompleted(40) | |
return response(cmds) | |
} | |
def resetLifx() | |
{ | |
def oneSecond = seconds(1) | |
def cmds = [on()] | |
def i = 0 | |
log.debug("resetLifx()") | |
while (i < 5) { | |
cmds += [ | |
off(), | |
oneSecond, | |
on(), | |
oneSecond | |
] | |
i++ | |
} | |
log.debug("cmds: ${cmds}") | |
resetStarted() | |
scheduleResetCompleted(15) | |
return response(cmds) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment