-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
led_device.js
247 lines (167 loc) · 5.77 KB
/
led_device.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
246
247
'use strict';
/*!
* s1panel - led_device
* Copyright (c) 2024 Tomasz Jaworski
* GPL-3 Licensed
*/
const fs = require('fs');
const { SerialPort } = require('serialport');
const BUFFER_SIZE = 5;
const HEADER_SIZE = 5;
const SIGNATURE_BYTE = 0xFA;
const THEME_RAINBOW = 0x01;
const THEME_BREATHING = 0x02;
const THEME_COLORS = 0x03;
const THEME_OFF = 0x04;
const THEME_AUTO = 0x05;
const MAX_VALUE = 0x05;
const MIN_VALUE = 0x01;
const DELAY = 5; // 0.005 second
var _port_cache;
function printBytesInHex(array) {
var _hexString = "";
for (var i = 0; i < Math.min(array.length, HEADER_SIZE); i++) {
_hexString += ('0' + array[i].toString(16)).slice(-2) + ' ';
}
console.log(_hexString);
}
function fix_value(num) {
return Math.min(MAX_VALUE, Math.max(6 - num, MIN_VALUE));
}
function checksum(dv) {
var _crc = 0x00;
for (var i = 0; i < 4; i++) {
_crc += dv.getUint8(i);
}
return _crc;
}
function open_device(device) {
return new Promise((fulfill, reject) => {
if (_port_cache) {
return fulfill(_port_cache);
}
const _port = new SerialPort({ path: device, baudRate: 10000, autoOpen: false });
_port.open(err => {
if (err) {
console.log('led_device: error opening port ', err.message);
return reject();
}
_port_cache = _port;
fulfill(_port);
});
});
}
function port_byte_write(port, buffer, index, size, fulfill) {
if (index < size) {
const _one_byte = Buffer.from( [ buffer[index] ]);
port.write(_one_byte, err => {
if (err) {
console.log('led_device: ' + err);
return fulfill();
}
setTimeout(() => {
port_byte_write(port, buffer, 1 + index, size, fulfill);
}, DELAY);
});
}
else {
fulfill();
}
}
function set_rainbow(device, intensity, speed) {
return new Promise(fulfill => {
const _buffer = new Uint8ClampedArray(BUFFER_SIZE);
const _header = new DataView(_buffer.buffer);
_header.setUint8(0, SIGNATURE_BYTE);
_header.setUint8(1, THEME_RAINBOW);
_header.setUint8(2, fix_value(intensity));
_header.setUint8(3, fix_value(speed));
_header.setUint8(4, checksum(_header));
//console.log('set_rainbow: speed=' + speed + ' intensity=' + intensity);
//printBytesInHex(_buffer);
open_device(device).then(port => {
port_byte_write(port, _buffer, 0, BUFFER_SIZE, () => {
fulfill();
});
}, fulfill);
});
}
function set_breathing(device, intensity, speed) {
return new Promise(fulfill => {
const _buffer = new Uint8ClampedArray(BUFFER_SIZE);
const _header = new DataView(_buffer.buffer);
_header.setUint8(0, SIGNATURE_BYTE);
_header.setUint8(1, THEME_BREATHING);
_header.setUint8(2, fix_value(intensity));
_header.setUint8(3, fix_value(speed));
_header.setUint8(4, checksum(_header));
//console.log('set_breathing: speed=' + speed + ' intensity=' + intensity);
//printBytesInHex(_buffer);
open_device(device).then(port => {
port_byte_write(port, _buffer, 0, BUFFER_SIZE, () => {
fulfill();
});
}, fulfill);
});
}
function set_color(device, intensity, speed) {
return new Promise(fulfill => {
const _buffer = new Uint8ClampedArray(BUFFER_SIZE);
const _header = new DataView(_buffer.buffer);
_header.setUint8(0, SIGNATURE_BYTE);
_header.setUint8(1, THEME_COLORS);
_header.setUint8(2, fix_value(intensity));
_header.setUint8(3, fix_value(speed));
_header.setUint8(4, checksum(_header));
//console.log('led_color: speed=' + speed + ' intensity=' + intensity);
//printBytesInHex(_buffer);
open_device(device).then(port => {
port_byte_write(port, _buffer, 0, BUFFER_SIZE, () => {
fulfill();
});
}, fulfill);
});
}
function set_automatic(device, intensity, speed) {
return new Promise(fulfill => {
const _buffer = new Uint8ClampedArray(BUFFER_SIZE);
const _header = new DataView(_buffer.buffer);
_header.setUint8(0, SIGNATURE_BYTE);
_header.setUint8(1, THEME_AUTO);
_header.setUint8(2, fix_value(intensity));
_header.setUint8(3, fix_value(speed));
_header.setUint8(4, checksum(_header));
//console.log('led_auto: speed=' + speed + ' intensity=' + intensity);
//printBytesInHex(_buffer);
open_device(device).then(port => {
port_byte_write(port, _buffer, 0, BUFFER_SIZE, () => {
fulfill();
});
}, fulfill);
});
}
function set_off(device) {
return new Promise(fulfill => {
const _buffer = new Uint8ClampedArray(BUFFER_SIZE);
const _header = new DataView(_buffer.buffer);
_header.setUint8(0, SIGNATURE_BYTE);
_header.setUint8(1, THEME_OFF);
_header.setUint8(2, 0x05);
_header.setUint8(3, 0x05);
_header.setUint8(4, checksum(_header));
//console.log('led_off');
//printBytesInHex(_buffer);
open_device(device).then(port => {
port_byte_write(port, _buffer, 0, BUFFER_SIZE, () => {
fulfill();
});
}, fulfill);
});
}
module.exports = {
set_rainbow,
set_breathing,
set_color,
set_automatic,
set_off
};