Remove space after command
This commit is contained in:
parent
85a26af9b4
commit
b0d61fa041
1 changed files with 2 additions and 2 deletions
|
@ -15,10 +15,10 @@ function BBDMX(device_id, options) {
|
||||||
}
|
}
|
||||||
|
|
||||||
BBDMX.prototype.send_universe = function() {
|
BBDMX.prototype.send_universe = function() {
|
||||||
let messageBuffer = new Buffer(this.universe.length + ' ');
|
let messageBuffer = new Buffer(this.universe.length.toString());
|
||||||
|
|
||||||
for (let i = 0; i < this.universe.length; i++) {
|
for (let i = 0; i < this.universe.length; i++) {
|
||||||
const channel = new Buffer(this.universe[i] + ' ');
|
const channel = new Buffer(' ' + this.universe[i]);
|
||||||
const length = channel.length + messageBuffer.length;
|
const length = channel.length + messageBuffer.length;
|
||||||
messageBuffer = Buffer.concat([messageBuffer, channel], length);
|
messageBuffer = Buffer.concat([messageBuffer, channel], length);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue