-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettable_switch.groovy
More file actions
75 lines (65 loc) · 2.54 KB
/
settable_switch.groovy
File metadata and controls
75 lines (65 loc) · 2.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/**
* 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 Switch", namespace: "erocm123", author: "Eric Maycock") {
capability "Switch"
capability "Relay Switch"
capability "Actuator"
command "onPhysical"
command "offPhysical"
}
tiles(scale: 2) {
multiAttributeTile(name:"switch", type: "lighting", width: 6, height: 4, canChangeIcon: true){
tileAttribute ("device.switch", key: "PRIMARY_CONTROL") {
attributeState "off", label: '${name}', icon: "st.switches.light.off", backgroundColor: "#ffffff", nextState:"turningOn"
attributeState "on", label: '${name}', icon: "st.switches.light.on", backgroundColor: "#00a0dc", nextState:"turningOff"
attributeState "turningOff", label:'${name}', action:"switch.on", icon:"st.switches.light.off", backgroundColor:"#ffffff", nextState:"turningOn"
attributeState "turningOn", label:'${name}', action:"switch.off", icon:"st.switches.light.on", backgroundColor:"#00a0dc", nextState:"turningOff"
}
}
main "switch"
details(["switch"])
}
}
def parse(String description) {
//def pair = description.split(":")
//createEvent(name: pair[0].trim(), value: pair[1].trim())
}
def parse(Map description) {
//def pair = description.split(":")
//createEvent(name: pair[0].trim(), value: pair[1].trim())
def eventMap
if (description.type == null) eventMap = [name:"$description.name", value:"$description.value"]
else eventMap = [name:"$description.name", value:"$description.value", type:"$description.type"]
createEvent(eventMap)
}
def on() {
log.debug "$version on()"
sendEvent(name: "switch", value: "on")
}
def off() {
log.debug "$version off()"
sendEvent(name: "switch", value: "off")
}
def onPhysical() {
log.debug "$version onPhysical()"
sendEvent(name: "switch", value: "on", type: "physical")
}
def offPhysical() {
log.debug "$version offPhysical()"
sendEvent(name: "switch", value: "off", type: "physical")
}
private getVersion() {
"PUBLISHED"
}