-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathLIFXUnknown.groovy
205 lines (174 loc) · 6.57 KB
/
LIFXUnknown.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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
/**
*
* Copyright 2019 Robert Heyes. All Rights Reserved
*
* This software is free for Private Use. You may use and modify the software without distributing it.
* If you make a fork, and add new code, then you should create a pull request to add value, there is no
* guarantee that your pull request will be merged.
*
* You may not grant a sublicense to modify and distribute this software to third parties without permission
* from the copyright holder
* Software is provided without warranty and your use of it is at your own risk.
*
*/
metadata {
definition(name: "LIFX Unknown", namespace: "robheyes", author: "Robert Alan Heyes", importUrl: 'https://raw.githubusercontent.com/robheyes/lifxcode/master/LIFXWhiteMono.groovy') {
capability "Bulb"
capability "Polling"
capability "Switch"
capability "SwitchLevel"
capability "Initialize"
capability 'ChangeLevel'
attribute "label", "string"
attribute "group", "string"
attribute "location", "string"
command 'setWaveform', [[name: 'Waveform*', type: 'ENUM', constraints:['SAW', 'SINE', 'HALF_SINE', 'TRIANGLE', 'PULSE']], [name: 'Color*', type: 'STRING'], [name: 'Transient', type: 'ENUM', constraints: ['true', 'false']], [name: 'Period', type: 'NUMBER'], [name: 'Cycles', type: 'NUMBER'], [name: 'Skew Ratio', type: 'NUMBER']]
}
preferences {
input "useActivityLogFlag", "bool", title: "Enable activity logging", required: false
input "useDebugActivityLogFlag", "bool", title: "Enable debug logging", required: false
input "defaultTransition", "decimal", title: "Transition time", description: "Set transition time (seconds)", required: true, defaultValue: 0.0
input "changeLevelStep", 'decimal', title: "Change level step size", description: "", required: false, defaultValue: 1
input "changeLevelEvery", 'number', title: "Change Level every x milliseconds", description: "", required: false, defaultValue: 20
}
}
@SuppressWarnings("unused")
def installed() {
initialize()
}
@SuppressWarnings("unused")
def updated() {
initialize()
}
def initialize() {
state.transitionTime = defaultTransition
state.useActivityLog = useActivityLogFlag
state.useActivityLogDebug = useDebugActivityLogFlag
state.changeLevelEvery = changeLevelEvery
state.changeLevelStep = changeLevelStep
unschedule()
requestInfo()
runEvery1Minute poll
}
@SuppressWarnings("unused")
def refresh() {
}
@SuppressWarnings("unused")
def poll() {
parent.lifxQuery(device, 'LIGHT.GET_STATE') { List buffer -> sendPacket buffer }
}
def requestInfo() {
parent.lifxQuery(device, 'LIGHT.GET_STATE') { List buffer -> sendPacket buffer }
}
def on() {
sendActions parent.deviceOnOff('on', getUseActivityLog(), state.transitionTime ?: 0)
}
def off() {
sendActions parent.deviceOnOff('off', getUseActivityLog(), state.transitionTime ?: 0)
}
@SuppressWarnings("unused")
def setLevel(level, duration = 0) {
sendActions parent.deviceSetLevel(device, level as Number, getUseActivityLog(), duration)
}
@SuppressWarnings("unused")
def setWaveform(String waveform, String color, String isTransient = 'true', period = 5, cycles = 3.40282346638528860e38, skew = 0.5) {
sendActions parent.deviceSetWaveform(device, isTransient.toBoolean(), stringToMap(color), period.toInteger(), cycles.toFloat(), skew.toFloat(), waveform)
}
@SuppressWarnings("unused")
def startLevelChange(direction) {
// logDebug "startLevelChange called with $direction"
enableLevelChange()
if (changeLevelStep && changeLevelEvery) {
doLevelChange(direction == 'up' ? 1 : -1)
} else {
logDebug "No parameters"
}
}
@SuppressWarnings("unused")
def stopLevelChange() {
sendEvent([name: "cancelLevelChange", value: 'yes', displayed: false])
}
def enableLevelChange() {
sendEvent([name: "cancelLevelChange", value: 'no', displayed: false])
}
def doLevelChange(direction) {
def cancelling = device.currentValue('cancelLevelChange') ?: 'no'
if (cancelling == 'yes') {
runInMillis 2 * (changeLevelEvery as Integer), "enableLevelChange"
return;
}
def newLevel = device.currentValue('level') + ((direction as Float) * (changeLevelStep as Float))
def lastStep = false
if (newLevel < 0) {
newLevel = 0
lastStep = true
} else if (newLevel > 100) {
newLevel = 100
lastStep = true
}
sendActions parent.deviceSetLevel(device, newLevel, getUseActivityLog(), (changeLevelEvery - 1) / 1000)
if (!lastStep) {
runInMillis changeLevelEvery as Integer, "doLevelChange", [data: direction]
}
}
private void sendActions(Map<String, List> actions) {
actions.commands?.each { item -> parent.lifxCommand(device, item.cmd, item.payload) { List buffer -> sendPacket buffer, true } }
actions.events?.each { sendEvent it }
}
def parse(String description) {
List<Map> events = parent.parseForDevice(device, description, getUseActivityLog())
events.collect { createEvent(it) }
}
private def myIp() {
device.getDeviceNetworkId()
}
private void sendPacket(List buffer, boolean noResponseExpected = false) {
String stringBytes = hubitat.helper.HexUtils.byteArrayToHexString parent.asByteArray(buffer)
sendHubCommand(
new hubitat.device.HubAction(
stringBytes,
hubitat.device.Protocol.LAN,
[
type : hubitat.device.HubAction.Type.LAN_TYPE_UDPCLIENT,
destinationAddress: myIp() + ":56700",
encoding : hubitat.device.HubAction.Encoding.HEX_STRING,
ignoreResponse : noResponseExpected
]
)
)
}
def getUseActivityLog() {
if (state.useActivityLog == null) {
state.useActivityLog = true
}
return state.useActivityLog
}
def setUseActivityLog(value) {
log.debug("Setting useActivityLog to ${value ? 'true' : 'false'}")
state.useActivityLog = value
}
def getUseActivityLogDebug() {
if (state.useActivityLogDebug == null) {
state.useActivityLogDebug = false
}
return state.useActivityLogDebug
}
def setUseActivityLogDebug(value) {
log.debug("Setting useActivityLogDebug to ${value ? 'true' : 'false'}")
state.useActivityLogDebug = value
}
void logDebug(msg) {
if (getUseActivityLogDebug()) {
log.debug msg
}
}
void logInfo(msg) {
if (getUseActivityLog()) {
log.info msg
}
}
void logWarn(String msg) {
if (getUseActivityLog()) {
log.warn msg
}
}