-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfullcolorlight.js
245 lines (232 loc) · 11.7 KB
/
fullcolorlight.js
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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
const { hasProperty, willUpdate } = require('./utils');
const {battery} = require('./battery')
module.exports = function(RED) {
function MatterFullColorLight(config) {
RED.nodes.createNode(this,config);
var node = this;
node.bridge = RED.nodes.getNode(config.bridge);
node.name = config.name
node.range = config.range
node.pending = false
node.pendingmsg = null
node.passthrough = /^true$/i.test(config.passthrough)
node.tempformat = config.tempformat || "kelvin" //Default to kelvin for legacy
node.levelstep = Number(config.levelstep)
node.bat = config.bat;
node.topic= config.topic || false
this.log(`Loading Device node ${node.id}`)
node.status({fill:"red",shape:"ring",text:"not running"});
node.identifying = false
node.identifyEvt = function() {
node.identifying = !node.identifying
if (node.identifying){
node.status({fill:"blue",shape:"dot",text:"identify"});
} else {
node.status({fill:"green",shape:"dot",text:"ready"});
}
};
this.on('input', function(msg) {
switch (msg.topic) {
case 'state':
if (hasProperty(msg, 'payload')) {
node.device.set(msg.payload)
}
if (config.wires.length != 0){
msg.payload = node.device.state
node.send(msg)
} else{
node.error((node.device.state));
}
break;
case 'battery':
if (node.bat){
battery(node, msg)
}
break
default:
if (msg.payload.state == undefined) {
msg.payload.state = node.device.state.onOff.onOff
}
if (hasProperty(msg.payload, 'level') && node.range == "100"){ msg.payload.level = Math.round(msg.payload.level*2.54)}
if (hasProperty(msg.payload, 'increaseLevel')){
if (node.range == "100") {
msg.payload.level = node.device.state.levelControl.currentLevel+Math.round(node.levelstep*2.54)
} else {
msg.payload.level = node.device.state.levelControl.currentLevel+node.levelstep
}
}
if (hasProperty(msg.payload, 'decreaseLevel')){
if (node.range == "100") {
msg.payload.level = node.device.state.levelControl.currentLevel-Math.round(node.levelstep*2.54)
} else {
msg.payload.level = node.device.state.levelControl.currentLevel-node.levelstep
}
}
if (msg.payload.level == undefined) {
msg.payload.level = node.device.state.levelControl.currentLevel
}
if ((hasProperty(msg.payload, 'hue') || hasProperty(msg.payload, 'sat')) && hasProperty(msg.payload, 'temp')) {
node.error("Can't set Colour Temp and Hue/Sat at same time")
} else {
if (hasProperty(msg.payload, 'hue') || hasProperty(msg.payload, 'sat')){
msg.payload.hue = msg.payload.hue ? msg.payload.hue : node.device.state.colorControl.currentHue
msg.payload.sat = msg.payload.sat ? msg.payload.sat : node.device.state.colorControl.currentSaturation
newcolor = {
colorMode: 0,
currentHue: msg.payload.hue,
currentSaturation: msg.payload.sat
}
} else if (hasProperty(msg.payload, 'temp')) {
if (node.tempformat == 'kelvin'){
var mireds = 1000000/msg.payload.temp
} else {
var mireds = msg.payload.temp
}
newcolor = {
colorMode: 2,
colorTemperatureMireds : mireds
}
}
else {
newcolor = {colorMode: node.device.state.colorControl.colorMode}
}
}
if (typeof msg.payload.state != "boolean") {
switch (msg.payload.state){
case '1':
case 1:
case 'on':
msg.payload.state = true
break
case '0':
case 0:
case 'off':
msg.payload.state = false
break
case 'toggle':
msg.payload.state = !node.device.state.onOff.onOff
break
}
}
let newData = {
onOff: {
onOff: msg.payload.state,
},
levelControl: {
currentLevel: Math.max(2, Math.min(254, msg.payload.level))
},
colorControl: newcolor
}
//If values are changed then set them & wait for callback otherwise send msg on
if (willUpdate.call(node.device, newData)) {
node.debug(`WILL update, ${newData}`)
node.pending = true
node.pendingmsg = msg
node.device.set(newData).catch((err) => {node.debug(err); node.error('Invalid Input')})
} else {
node.debug(`WONT update, ${newData}`)
if (node.passthrough){
node.send(msg);
}
}
break;
}
});
this.on('serverReady', function() {
var node = this
node.device.events.identify.startIdentifying.on(node.identifyEvt)
node.device.events.identify.stopIdentifying.on(node.identifyEvt)
node.device.events.onOff.onOff$Changed.on(node.stateEvt)
node.device.events.levelControl.currentLevel$Changed.on(node.stateEvt)
node.device.events.colorControl.colorTemperatureMireds$Changed.on(node.stateEvt)
node.device.events.colorControl.currentHue$Changed.on(node.stateEvt)
node.device.events.colorControl.currentSaturation$Changed.on(node.stateEvt)
node.status({fill:"green",shape:"dot",text:"ready"});
})
node.stateEvt = function(data, oldValue, context) {
let eventSource = {}
if (hasProperty(context, 'offline')) {
eventSource.local = true
} else {
eventSource.local = false
eventSource.srcAddress = context.exchange.channel.channel.peerAddress
eventSource.srcPort = context.exchange.channel.channel.peerPort
eventSource.fabric = node.bridge.matterServer.state.commissioning.fabrics[context.fabric]
}
if ((node.pending && node.passthrough)) {
var msg = node.pendingmsg
msg.eventSource = eventSource
msg.payload.state = node.device.state.onOff.onOff
msg.payload.level = node.device.state.levelControl.currentLevel
if (node.range == "100"){ msg.payload.level = Math.round(msg.payload.level/2.54)}
if (node.device.state.colorControl.colorMode == 0){
msg.payload.hue = node.device.state.colorControl.currentHue
msg.payload.sat = node.device.state.colorControl.currentSaturation
}
else if (node.device.state.colorControl.colorMode == 2){
if (node.tempformat == 'kelvin'){
msg.payload.temp = Math.floor(1000000/node.device.state.colorControl.colorTemperatureMireds)
} else {
msg.payload.temp = node.device.state.colorControl.colorTemperatureMireds
}
} else {
node.error(`Unknown color mode: ${node.device.state.colorControl.colorMode}`)
}
node.send(msg);
} else if (!node.pending){
var msg = {payload : {}};
if (node.topic) {msg.topic = node.topic}
msg.eventSource = eventSource
msg.payload.state = node.device.state.onOff.onOff
msg.payload.level = node.device.state.levelControl.currentLevel
if (node.range == "100"){ msg.payload.level = Math.round(msg.payload.level/2.54)}
if (node.device.state.colorControl.colorMode == 0){
msg.payload.hue = node.device.state.colorControl.currentHue
msg.payload.sat = node.device.state.colorControl.currentSaturation
}
else if (node.device.state.colorControl.colorMode == 2){
msg.payload.temp = Math.floor(1000000/node.device.state.colorControl.colorTemperatureMireds)
} else {
node.error(`Unknown color mode: ${node.device.state.colorControl.colorMode}`)
}
node.send(msg);
}
node.pending = false
}
this.on('close', async function(removed, done) {
let node = this
let rtype = removed ? 'Device was removed/disabled' : 'Device was restarted'
node.log(`Closing device: ${this.id}, ${rtype}`)
//Remove Matter.js Events
await node.device.events.identify.startIdentifying.off(node.identifyEvt)
await node.device.events.identify.stopIdentifying.off(node.identifyEvt)
await node.device.events.onOff.onOff$Changed.off(node.stateEvt)
await node.device.events.levelControl.currentLevel$Changed.off(node.stateEvt)
await node.device.events.colorControl.colorTemperatureMireds$Changed.off(node.stateEvt)
await node.device.events.colorControl.currentHue$Changed.off(node.stateEvt)
await node.device.events.colorControl.currentSaturation$Changed.off(node.stateEvt)
//Remove Node-RED Custom Events
node.removeAllListeners('serverReady')
//Remove from Bridge Node Registered
let index = node.bridge.registered.indexOf(node);
if (index > -1) {
node.bridge.registered.splice(index, 1);
}
if (removed){
await node.device.close()
}
done();
});
//Wait till server is started
function waitforserver(node) {
if (!node.bridge.serverReady) {
setTimeout(waitforserver, 100, node)
} else {
node.log('Registering Child......')
node.bridge.emit('registerChild', node)
}
}
waitforserver(node)
}
RED.nodes.registerType("matterfullcolorlight",MatterFullColorLight);
}