EnttecUSBDMXPRO Driver Buffer API Fix (No Polyfill)
This commit is contained in:
parent
b7afca3ea2
commit
6dc9dddd52
2 changed files with 5 additions and 7 deletions
|
@ -12,8 +12,7 @@ var ENTTEC_PRO_DMX_STARTCODE = 0x00
|
|||
function EnttecUSBDMXPRO(device_id, options) {
|
||||
var self = this
|
||||
options = options || {}
|
||||
this.universe = new Buffer(513)
|
||||
this.universe.fill(0)
|
||||
this.universe = Buffer.alloc(513, 0);
|
||||
|
||||
this.dev = new SerialPort(device_id, {
|
||||
'baudRate': 250000,
|
||||
|
@ -31,7 +30,7 @@ EnttecUSBDMXPRO.prototype.send_universe = function() {
|
|||
if(!this.dev.writable) {
|
||||
return
|
||||
}
|
||||
var hdr = Buffer([
|
||||
var hdr = Buffer.from([
|
||||
ENTTEC_PRO_START_OF_MSG,
|
||||
ENTTEC_PRO_SEND_DMX_RQ,
|
||||
(this.universe.length) & 0xff,
|
||||
|
@ -42,7 +41,7 @@ EnttecUSBDMXPRO.prototype.send_universe = function() {
|
|||
var msg = Buffer.concat([
|
||||
hdr,
|
||||
this.universe.slice(1),
|
||||
Buffer([ENTTEC_PRO_END_OF_MSG])
|
||||
Buffer.from([ENTTEC_PRO_END_OF_MSG])
|
||||
])
|
||||
this.dev.write(msg)
|
||||
}
|
||||
|
|
|
@ -3,8 +3,7 @@
|
|||
function Null(device_id, options) {
|
||||
var self = this
|
||||
options = options || {}
|
||||
this.universe = new Buffer(513)
|
||||
this.universe.fill(0)
|
||||
this.universe = Buffer.alloc(513, 0);
|
||||
self.start()
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue