dmx
Version:
A nodejs DMX library
92 lines (75 loc) • 2.07 kB
JavaScript
const { SerialPort } = require('serialport');
const util = require('util');
const EventEmitter = require('events').EventEmitter;
const ENTTEC_PRO_DMX_STARTCODE = 0x00;
const ENTTEC_PRO_START_OF_MSG = 0x7e;
const ENTTEC_PRO_END_OF_MSG = 0xe7;
const ENTTEC_PRO_SEND_DMX_RQ = 0x06;
// var ENTTEC_PRO_RECV_DMX_PKT = 0x05;
function EnttecUSBDMXPRO(deviceId, options = {}) {
this.universe = Buffer.alloc(513, 0);
this.readyToWrite = true;
this.interval = 1000 / (options.dmx_speed || 40);
this.dev = new SerialPort({
'path': deviceId,
'baudRate': 250000,
'dataBits': 8,
'stopBits': 2,
'parity': 'none',
}, err => {
if (!err) {
this.start();
} else {
console.warn(err);
}
});
}
EnttecUSBDMXPRO.prototype.sendUniverse = function () {
if (!this.dev.writable) {
return;
}
if (this.readyToWrite) {
const hdr = Buffer.from([
ENTTEC_PRO_START_OF_MSG,
ENTTEC_PRO_SEND_DMX_RQ,
(this.universe.length) & 0xff,
((this.universe.length) >> 8) & 0xff,
ENTTEC_PRO_DMX_STARTCODE,
]);
const msg = Buffer.concat([
hdr,
this.universe.slice(1),
Buffer.from([ENTTEC_PRO_END_OF_MSG]),
]);
this.readyToWrite = false;
this.dev.write(msg);
this.dev.drain(() => {
this.readyToWrite = true;
});
}
};
EnttecUSBDMXPRO.prototype.start = function () {
this.intervalhandle = setInterval(this.sendUniverse.bind(this), this.interval);
};
EnttecUSBDMXPRO.prototype.stop = function () {
clearInterval(this.intervalhandle);
};
EnttecUSBDMXPRO.prototype.close = function (cb) {
this.dev.close(cb);
};
EnttecUSBDMXPRO.prototype.update = function (u, extraData) {
for (const c in u) {
this.universe[c] = u[c];
}
this.emit('update', u, extraData);
};
EnttecUSBDMXPRO.prototype.updateAll = function (v) {
for (let i = 1; i <= 512; i++) {
this.universe[i] = v;
}
};
EnttecUSBDMXPRO.prototype.get = function (c) {
return this.universe[c];
};
util.inherits(EnttecUSBDMXPRO, EventEmitter);
module.exports = EnttecUSBDMXPRO;