Boost Interactive Motor should not have constant mode
This commit is contained in:
parent
567ab62946
commit
6bfa704a6a
@ -46,10 +46,11 @@ class BoostHub extends Hub {
|
||||
setMotorSpeed (port, speed, seconds) {
|
||||
const characteristic = this._characteristics[Consts.BLE.Characteristics.Boost.ALL];
|
||||
if (characteristic) {
|
||||
const data = Buffer.from([0x0c, 0x00, 0x81, this.ports[port].value, 0x11, 0x09, 0xff, 0xff, speed, 0x64, 0x7f, 0x03]);
|
||||
/*const data = Buffer.from([0x0c, 0x00, 0x81, this.ports[port].value, 0x11, 0x09, 0xff, 0xff, speed, 0x64, 0x7f, 0x03]);
|
||||
if (seconds) {
|
||||
data.writeUInt16LE(seconds * 1000, 6);
|
||||
}
|
||||
}*/
|
||||
const data = Buffer.from([0x0c, 0x00, 0x81, this.ports[port].value, 0x11, 0x01, 0x00, 0x00, speed, 0x64, 0x7f, 0x03]);
|
||||
characteristic.write(data);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user