-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathonoffswitch.groovy
174 lines (141 loc) · 5.01 KB
/
onoffswitch.groovy
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/**
* Insteon On/Off Switch
* Original Author : [email protected]
* Creation Date : 2013-12-08
*
* Rewritten by : idealerror
* Last Modified Date : 2016-12-13
*
* Rewritten by : kuestess
* Last Modified Date : 2017-09-30
*
* Disclaimer about 3rd party server: No longer uses third-party server :)
*
* Changelog:
*
* 2016-12-13: Added polling for Hub2
* 2016-12-13: Added background refreshing every 3 minutes
* 2016-11-21: Added refresh/polling functionality
* 2016-10-15: Added full dimming functions
* 2016-10-01: Redesigned interface tiles
*/
import groovy.json.JsonSlurper
preferences {
input("deviceid", "text", title: "Device ID", description: "Your Insteon device. Do not include periods example: FF1122.")
input("host", "text", title: "URL", description: "The URL of your Hub (without http:// example: my.hub.com ")
input("port", "text", title: "Port", description: "The hub port.")
input("username", "text", title: "Username", description: "The hub username (found in app)")
input("password", "text", title: "Password", description: "The hub password (found in app)")
}
metadata {
definition (name: "Insteon On/Off Switch or Plug", author: "kuestess", oauth: true) {
capability "Polling"
capability "Switch"
capability "Refresh"
}
// simulator metadata
simulator {
}
// UI tile definitions
tiles(scale:2) {
multiAttributeTile(name:"switch", type: "lighting", width: 6, height: 4, canChangeIcon: true){
tileAttribute ("device.switch", key: "PRIMARY_CONTROL") {
attributeState "on", label:'${name}', action:"switch.off", icon:"st.switches.switch.on", backgroundColor:"#79b821", nextState:"turningOff"
attributeState "off", label:'${name}', action:"switch.on", icon:"st.switches.switch.off", backgroundColor:"#ffffff", nextState:"turningOn"
attributeState "turningOn", label:'${name}', action:"switch.off", icon:"st.switches.switch.on", backgroundColor:"#79b821", nextState:"turningOff"
attributeState "turningOff", label:'${name}', action:"switch.on", icon:"st.switches.switch.off", backgroundColor:"#ffffff", nextState:"turningOn"
}
}
standardTile("refresh", "device.switch", width: 2, height: 2, inactiveLabel: false, decoration: "flat") {
state "default", label:'', action:"refresh.refresh", icon:"st.secondary.refresh"
}
main(["switch"])
details(["switch", "refresh"])
}
}
// Not in use
def parse(String description) {
}
def on() {
log.debug "Turning device ON"
sendCmd("11", "FF")
sendEvent(name: "switch", value: "on");
}
def off() {
log.debug "Turning device OFF"
sendCmd("13", "00")
sendEvent(name: "switch", value: "off");
}
def sendCmd(num, level)
{
log.debug "Sending Command"
httpGet("http://${settings.username}:${settings.password}@${settings.host}:${settings.port}//3?0262${settings.deviceid}0F${num}${level}=I=3") {response ->
def content = response.data
// log.debug content
}
log.debug "Command Completed"
}
def refresh()
{
log.debug "Refreshing.."
poll()
}
def poll()
{
log.debug "Polling.."
getStatus()
runIn(180, refresh)
}
def ping()
{
log.debug "Pinging.."
poll()
}
def initialize(){
poll()
}
def getStatus() {
def myURL = [
uri: "http://${settings.username}:${settings.password}@${settings.host}:${settings.port}/3?0262${settings.deviceid}0F1901=I=3"
]
log.debug myURL
httpPost(myURL)
def buffer_status = runIn(2, getBufferStatus)
}
def getBufferStatus() {
def buffer = ""
def params = [
uri: "http://${settings.username}:${settings.password}@${settings.host}:${settings.port}/buffstatus.xml"
]
try {
httpPost(params) {resp ->
buffer = "${resp.responseData}"
log.debug "Buffer: ${resp.responseData}"
}
} catch (e) {
log.error "something went wrong: $e"
}
def buffer_end = buffer.substring(buffer.length()-2,buffer.length())
def buffer_end_int = Integer.parseInt(buffer_end, 16)
def parsed_buffer = buffer.substring(0,buffer_end_int)
log.debug "ParsedBuffer: ${parsed_buffer}"
def responseID = parsed_buffer.substring(22,28)
if (responseID == settings.deviceid) {
log.debug "Response is for correct device: ${responseID}"
def status = parsed_buffer.substring(38,40)
log.debug "Status: ${status}"
def level = Math.round(Integer.parseInt(status, 16)*(100/255))
log.debug "Level: ${level}"
if (level == 0) {
log.debug "Device is off..."
sendEvent(name: "switch", value: "off")
}
else if (level > 0) {
log.debug "Device is on..."
sendEvent(name: "switch", value: "on")
}
} else {
log.debug "Response is for wrong device - trying again"
getStatus()
}
}