-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwindowcovering.js
237 lines (221 loc) · 9.87 KB
/
windowcovering.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
const {logEndpoint, EndpointServer} = require( "@matter/main")
const { hasProperty, willUpdate } = require('./utils');
const {battery} = require('./battery')
module.exports = function(RED) {
function MatterWindowCovering(config) {
RED.nodes.createNode(this,config);
var node = this;
node.bridge = RED.nodes.getNode(config.bridge);
node.name = config.name
node.tilt = config.tilt
node.lift = config.lift
node.productType = Number(config.productType)
node.coveringType = Number(config.coveringType)
node.reversed = config.reversed
this.log(`Loading Device node ${node.id}`)
node.status({fill:"red",shape:"ring",text:"not running"});
node.pending = false
node.passthrough = /^true$/i.test(config.passthrough)
node.bat = config.bat;
node.topic = config.topic || false
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) {
this.log(msg.payload)
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.liftPosition == undefined) {
msg.payload.liftPosition = node.device.state.windowCovering.currentPositionLiftPercent100ths
}
if (msg.payload.tiltPosition == undefined) {
msg.payload.tiltPosition = node.device.state.windowCovering.currentPositionTiltPercent100ths
}
let newData = {
windowCovering: {
targetPositionLiftPercent100ths: msg.payload.liftPosition,
targetPositionTiltPercent100ths: msg.payload.tiltPosition,
currentPositionLiftPercent100ths: msg.payload.liftPosition,
currentPositionTiltPercent100ths: msg.payload.tiltPosition
}
}
//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)
if (node.tilt == 'pos'){
node.device.events.windowCovering.currentPositionTiltPercent100ths$Changed.on(node.liftTiltEvt)
}
if (node.lift == 'pos'){
node.device.events.windowCovering.currentPositionLiftPercent100ths$Changed.on(node.liftTiltEvt)
}
if (node.tilt == 'tilt'){
node.device.events.windowCovering.tiltMovement.on(node.tiltMovementEvt)
}
if (node.tilt == 'lift'){
node.device.events.windowCovering.liftMovement.on(node.liftMovementEvt)
}
node.status({fill:"green",shape:"dot",text:"ready"});
})
node.liftTiltEvt = function(value, 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]
}
data = {}
if (node.lift){
data.liftPosition = node.device.state.windowCovering.currentPositionLiftPercent100ths
}
if (node.tilt){
data.tiltPosition = node.device.state.windowCovering.currentPositionTiltPercent100ths
}
if ((node.pending && node.passthrough)) {
var msg = node.pendingmsg
msg.eventSource = eventSource
msg.payload=data
node.send(msg);
} else if (!node.pending){
var msg = {payload : {}};
if (node.topic) {msg.topic = node.topic}
msg.eventSource = eventSource
msg.payload=data
node.send(msg);
}
node.pending = false
}
node.liftMovementEvt = function(direction, 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]
//}
data = {'action' : 'lift', 'direction' : direction}
if ((node.pending && node.passthrough)) {
var msg = node.pendingmsg
//msg.eventSource = eventSource
msg.payload=data
node.send(msg);
} else if (!node.pending){
var msg = {payload : {}};
if (node.topic) {msg.topic = node.topic}
//msg.eventSource = eventSource
msg.payload=data
node.send(msg);
}
node.pending = false
}
node.tiltMovementEvt = function(direction, 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]
//}
data = {'action' : 'tilt', 'direction' : direction}
if ((node.pending && node.passthrough)) {
var msg = node.pendingmsg
msg.eventSource = eventSource
msg.payload=data
node.send(msg);
} else if (!node.pending){
var msg = {payload : {}};
if (node.topic) {msg.topic = node.topic}
msg.eventSource = eventSource
msg.payload=data
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)
if (node.tilt == 'pos'){
await node.device.events.windowCovering.currentPositionTiltPercent100ths$Changed.off(node.liftTiltEvt)
}
if (node.lift == 'pos'){
await node.device.events.windowCovering.currentPositionLiftPercent100ths$Changed.off(node.liftTiltEvt)
}
if (node.tilt == 'tilt'){
await node.device.events.windowCovering.tiltMovement.off(node.tiltMovementEvt)
}
if (node.tilt == 'lift'){
await node.device.events.windowCovering.liftMovement.off(node.liftMovementEvt)
}
//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("matterwindowcovering",MatterWindowCovering)
}