mirror of
https://github.com/mtan93/SmartThingsPublic.git
synced 2026-03-08 05:31:56 +00:00
Compare commits
1 Commits
PROD_2017.
...
MSA-895-1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7650e0ebed |
@@ -0,0 +1,201 @@
|
||||
/**
|
||||
* Copyright 2015 NodOn
|
||||
*
|
||||
* 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: "Nodon Octan Remote", namespace: "NodOn", author: "Alexis Lutun") {
|
||||
capability "Actuator"
|
||||
capability "Button"
|
||||
capability "Configuration"
|
||||
capability "Sleep Sensor"
|
||||
capability "Battery"
|
||||
|
||||
command "pushButtonOne"
|
||||
command "pushButtonTwo"
|
||||
command "pushButtonThree"
|
||||
command "pushButtonFour"
|
||||
command "buttonEvent"
|
||||
command "buttonPushed"
|
||||
command "buttonPushed", [int]
|
||||
command "refresh"
|
||||
|
||||
fingerprint deviceId: "0x0101", inClusters: "0x5E,0x85,0x59,0x80,0x5B,0x70,0x5A,0x72,0x73,0x86,0x84,0xEF,0x5E,0x5B,0x2B,0x27,0x22,0x20,0x26,0x84"
|
||||
}
|
||||
tiles(scale: 2) {
|
||||
standardTile("Octan", "device.button", width: 1, height: 1)
|
||||
{
|
||||
state "default", label: "", icon:"http://nodon.fr/smarthings/octan-remote/octanfullicon.png", backgroundColor: "#ffffff"
|
||||
}
|
||||
multiAttributeTile(name:"BatteryTile", type: "generic", width: 6, height: 4)
|
||||
{
|
||||
tileAttribute ("device.battery", key: "PRIMARY_CONTROL")
|
||||
{
|
||||
attributeState "default", icon:"http://nodon.fr/smarthings/octan-remote/octanfullicon.png" , backgroundColor: "#f58220", decoration: "flat"
|
||||
}
|
||||
tileAttribute ("device.battery", key: "SECONDARY_CONTROL")
|
||||
{
|
||||
attributeState "default", label:'${currentValue}% battery', unit:"%"
|
||||
}
|
||||
}
|
||||
standardTile("button One", "device.button", width: 2, height: 2, decoration: "flat")
|
||||
{
|
||||
state "default", label: "", action: "pushButtonOne", icon:"http://nodon.fr/smarthings/octan-remote/1line.png",defaultState: true, backgroundColor: "#ffffff"
|
||||
state "pushed", label: "", action: "pushButtonOne", icon:"http://nodon.fr/smarthings/octan-remote/1fill.png", backgroundColor: "#ffffff"
|
||||
}
|
||||
standardTile("button Two", "device.button", width: 2, height: 2, decoration: "flat")
|
||||
{
|
||||
state "default", label: "",action: "pushButtonTwo", icon:"http://nodon.fr/smarthings/octan-remote/2line.png", defaultState: true, backgroundColor: "#ffffff"
|
||||
state "pushed", label: "",action: "pushButtonTwo", icon:"http://nodon.fr/smarthings/octan-remote/2fill.png", backgroundColor: "#ffffff"
|
||||
}
|
||||
standardTile("button Three", "device.button", width: 2, height: 2, decoration: "flat")
|
||||
{
|
||||
state "default", label: "", action: "pushButtonThree", icon: "http://nodon.fr/smarthings/octan-remote/3line.png", defaultState: true, backgroundColor: "#ffffff"
|
||||
state "pushed", label: "", action: "pushButtonThree", icon: "http://nodon.fr/smarthings/octan-remote/3fill.png", backgroundColor: "#ffffff"
|
||||
}
|
||||
standardTile("button Four", "device.button", width: 2, height: 2,decoration: "flat")
|
||||
{
|
||||
state "default", label: "",action: "pushButtonFour", icon:"http://nodon.fr/smarthings/octan-remote/4line.png", defaultState: true, backgroundColor: "#ffffff"
|
||||
state "pushed", label: "",action: "pushButtonFour", icon:"http://nodon.fr/smarthings/octan-remote/4fill.png", backgroundColor: "#ffffff"
|
||||
}
|
||||
standardTile("refresh", "generic", inactiveLabel: false, decoration: "flat", width: 2, height: 2)
|
||||
{
|
||||
state "default", label:'', action: "refresh", icon:"st.secondary.refresh"
|
||||
}
|
||||
|
||||
standardTile("configure", "device.Configuration", decoration: "flat", width: 2, height: 2)
|
||||
{
|
||||
state "configure", label:'', action:"configuration.configure", icon:"st.secondary.configure"
|
||||
}
|
||||
main "Octan"
|
||||
details(["BatteryTile", "button One", "button Two", "configure", "button Three", "button Four", "refresh"])
|
||||
}
|
||||
}
|
||||
|
||||
def parse(String description)
|
||||
{
|
||||
def results = []
|
||||
if (description.startsWith("Err"))
|
||||
{
|
||||
results = createEvent(descriptionText:description, displayed:true)
|
||||
}
|
||||
else
|
||||
{
|
||||
def cmd = zwave.parse(description, [0x5B: 1, 0x80: 1, 0x84: 1]) //Central Scene , battery, wake up
|
||||
if(cmd) results += zwaveEvent(cmd)
|
||||
if(!results) results = [ descriptionText: cmd, displayed: false ]
|
||||
}
|
||||
//log.debug("Parsed '$description' to $results")
|
||||
return results
|
||||
}
|
||||
|
||||
def zwaveEvent(physicalgraph.zwave.commands.wakeupv1.WakeUpNotification cmd)
|
||||
{
|
||||
def results = [createEvent(descriptionText: "$device.displayName woke up", isStateChange: false)]
|
||||
def prevBattery = device.currentState("battery")
|
||||
if (!prevBattery || (new Date().time - prevBattery.date.time)/60000 >= 60 * 53) //
|
||||
{
|
||||
results << response(zwave.batteryV1.batteryGet().format())
|
||||
createEvent(name: "battery", value: "10", descriptionText: "battery is now ${currentValue}%", isStateChange: true, displayed: true)
|
||||
}
|
||||
results << response(zwave.wakeUpV1.wakeUpNoMoreInformation().format())
|
||||
//log.debug("Wake up")
|
||||
return results
|
||||
}
|
||||
|
||||
def buttonEvent(button, attribute)
|
||||
{
|
||||
if (attribute)
|
||||
{
|
||||
createEvent(name: "button", value: "pushed", data: [buttonNumber: button, action: "held"] ,descriptionText: "$device.displayName button $button was held", icon:"http://nodon.fr/smarthings/octan-remote/octandiskfill.png", isStateChange: true, displayed: true)
|
||||
}
|
||||
else
|
||||
{
|
||||
createEvent(name: "button", value: "pushed", data: [buttonNumber: button, action: "pushed"] ,descriptionText: "$device.displayName button $button was pressed", icon:"http://nodon.fr/smarthings/octan-remote/octandiskfill.png", isStateChange: true, displayed: true)
|
||||
}
|
||||
}
|
||||
|
||||
def zwaveEvent(physicalgraph.zwave.commands.centralscenev1.CentralSceneNotification cmd)
|
||||
{
|
||||
Integer sceneNumber = cmd.sceneNumber as Integer
|
||||
Integer keyAttributes = cmd.keyAttributes as Integer
|
||||
Integer sequenceNumber = cmd.sequenceNumber as Integer
|
||||
|
||||
buttonEvent(sceneNumber, keyAttributes)
|
||||
}
|
||||
|
||||
def zwaveEvent(physicalgraph.zwave.commands.batteryv1.BatteryReport cmd)
|
||||
{
|
||||
def map = [ name: "battery", unit: "%" ]
|
||||
if (cmd.batteryLevel == 0xFF)
|
||||
{
|
||||
map.value = 1
|
||||
map.descriptionText = "${device.displayName} has a low battery"
|
||||
}
|
||||
else
|
||||
{
|
||||
map.value = cmd.batteryLevel
|
||||
}
|
||||
createEvent(map)
|
||||
}
|
||||
|
||||
def zwaveEvent(physicalgraph.zwave.Command cmd)
|
||||
{
|
||||
[ descriptionText: "$device.displayName: $cmd", linkText:device.displayName, displayed: false ]
|
||||
}
|
||||
|
||||
def configurationCmds()
|
||||
{
|
||||
[
|
||||
zwave.configurationV1.configurationSet(parameterNumber: 8, scaledConfigurationValue:2).format(), //Configure LED to feedback user when command of button has been acknowloedge by the static controller
|
||||
zwave.associationV1.associationSet(groupingIdentifier:1, nodeId:zwaveHubNodeId).format() // Set hub id in lifeline of product so product know the destination of the central scene notification command
|
||||
]
|
||||
}
|
||||
|
||||
def refresh()
|
||||
{
|
||||
def cmd = zwave.batteryV1.batteryGet().format()
|
||||
|
||||
return (response(cmd))
|
||||
}
|
||||
|
||||
def configure()
|
||||
{
|
||||
def cmd = configurationCmds()
|
||||
log.debug("Sending configuration: $cmd")
|
||||
return response(cmd)
|
||||
}
|
||||
|
||||
def pushButtonOne()
|
||||
{
|
||||
buttonPushed(1)
|
||||
}
|
||||
|
||||
def pushButtonTwo()
|
||||
{
|
||||
buttonPushed(2)
|
||||
}
|
||||
|
||||
def buttonPushed(button)
|
||||
{
|
||||
sendEvent(name: "button", value: "pushed", data: [buttonNumber: button, action: "pushed"], descriptionText: "$device.displayName button $button was pushed", icon:"http://nodon.fr/smarthings/octan-remote/octanfullicon.png", isStateChange: true)
|
||||
}
|
||||
|
||||
def pushButtonThree()
|
||||
{
|
||||
buttonPushed(3)
|
||||
}
|
||||
|
||||
def pushButtonFour()
|
||||
{
|
||||
buttonPushed(4)
|
||||
}
|
||||
Reference in New Issue
Block a user