"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.ModeMap = exports.Mode = exports.TachoMotor = void 0;
const basicmotor_1 = require("./basicmotor");
const Consts = __importStar(require("../consts"));
const utils_1 = require("../utils");
/**
* @class TachoMotor
* @extends BasicMotor
*/
class TachoMotor extends basicmotor_1.BasicMotor {
constructor(hub, portId, modeMap = {}, type = Consts.DeviceType.UNKNOWN) {
super(hub, portId, Object.assign({}, modeMap, exports.ModeMap), type);
this._brakeStyle = Consts.BrakingStyle.BRAKE;
this._maxPower = 100;
this.useAccelerationProfile = true;
this.useDecelerationProfile = true;
}
receive(message) {
const mode = this._mode;
switch (mode) {
case Mode.ROTATION:
const degrees = message.readInt32LE(this.isWeDo2SmartHub ? 2 : 4);
/**
* Emits when a rotation sensor is activated.
* @event TachoMotor#rotate
* @type {object}
* @param {number} rotation
*/
this.notify("rotate", { degrees });
break;
}
}
/**
* Set the braking style of the motor.
*
* Note: This applies to setSpeed, rotateByDegrees, and gotoAngle.
* @method TachoMotor#setBrakingStyle
* @param {number} style Either BRAKE or HOLD
*/
setBrakingStyle(style) {
this._brakeStyle = style;
}
/**
* Set the max power of the motor.
*
* Note: This applies to setSpeed, rotateByDegrees, and gotoAngle.
* @method TachoMotor#setMaxPower
* @param {number} style Either BRAKE or HOLD
*/
setMaxPower(maxPower) {
this._maxPower = maxPower;
}
/**
* Set the global acceleration time
* @method TachoMotor#setAccelerationTime
* @param {number} time How long acceleration should last (in milliseconds).
* @returns {Promise} Resolved upon successful completion of command (ie. once the motor is finished).
*/
setAccelerationTime(time, profile = 0x00) {
const message = Buffer.from([0x81, this.portId, 0x11, 0x05, 0x00, 0x00, profile]);
message.writeUInt16LE(time, 4);
this.send(message);
}
/**
* Set the global deceleration time
* @method TachoMotor#setDecelerationTime
* @param {number} time How long deceleration should last (in milliseconds).
* @returns {Promise} Resolved upon successful completion of command (ie. once the motor is finished).
*/
setDecelerationTime(time, profile = 0x00) {
const message = Buffer.from([0x81, this.portId, 0x11, 0x06, 0x00, 0x00, profile]);
message.writeUInt16LE(time, 4);
this.send(message);
}
/**
* Set the motor speed.
* @method TachoMotor#setSpeed
* @param {number} speed For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100. Stop is 0.
* @param {number} time How long the motor should run for (in milliseconds).
* @returns {Promise} Resolved upon successful issuance of the command.
*/
setSpeed(speed, time) {
if (!this.isVirtualPort && speed instanceof Array) {
throw new Error("Only virtual ports can accept multiple speeds");
}
if (this.isWeDo2SmartHub) {
throw new Error("Motor speed is not available on the WeDo 2.0 Smart Hub");
}
this.cancelEventTimer();
return new Promise((resolve) => {
if (speed === undefined || speed === null) {
speed = 100;
}
let message;
if (time !== undefined) {
if (speed instanceof Array) {
message = Buffer.from([0x81, this.portId, 0x11, 0x0a, 0x00, 0x00, (0, utils_1.mapSpeed)(speed[0]), (0, utils_1.mapSpeed)(speed[1]), this._maxPower, this._brakeStyle, this.useProfile()]);
}
else {
message = Buffer.from([0x81, this.portId, 0x11, 0x09, 0x00, 0x00, (0, utils_1.mapSpeed)(speed), this._maxPower, this._brakeStyle, this.useProfile()]);
}
message.writeUInt16LE(time, 4);
}
else {
if (speed instanceof Array) {
message = Buffer.from([0x81, this.portId, 0x11, 0x08, (0, utils_1.mapSpeed)(speed[0]), (0, utils_1.mapSpeed)(speed[1]), this._maxPower, this.useProfile()]);
}
else {
message = Buffer.from([0x81, this.portId, 0x11, 0x07, (0, utils_1.mapSpeed)(speed), this._maxPower, this.useProfile()]);
}
}
this.send(message);
this._finishedCallbacks.push(() => {
return resolve();
});
});
}
/**
* Rotate a motor by a given amount of degrees.
* @method TachoMotor#rotateByDegrees
* @param {number} degrees How much the motor should be rotated (in degrees).
* @param {number} [speed=100] For forward, a value between 1 - 100 should be set. For reverse, a value between -1 to -100.
* @returns {Promise} Resolved upon successful completion of command (ie. once the motor is finished).
*/
rotateByDegrees(degrees, speed) {
if (!this.isVirtualPort && speed instanceof Array) {
throw new Error("Only virtual ports can accept multiple speeds");
}
if (this.isWeDo2SmartHub) {
throw new Error("Rotation is not available on the WeDo 2.0 Smart Hub");
}
this.cancelEventTimer();
return new Promise((resolve) => {
if (speed === undefined || speed === null) {
speed = 100;
}
let message;
if (speed instanceof Array) {
message = Buffer.from([0x81, this.portId, 0x11, 0x0c, 0x00, 0x00, 0x00, 0x00, (0, utils_1.mapSpeed)(speed[0]), (0, utils_1.mapSpeed)(speed[1]), this._maxPower, this._brakeStyle, this.useProfile()]);
}
else {
message = Buffer.from([0x81, this.portId, 0x11, 0x0b, 0x00, 0x00, 0x00, 0x00, (0, utils_1.mapSpeed)(speed), this._maxPower, this._brakeStyle, this.useProfile()]);
}
message.writeUInt32LE(degrees, 4);
this.send(message);
this._finishedCallbacks.push(() => {
return resolve();
});
});
}
useProfile() {
let value = 0x00;
if (this.useAccelerationProfile) {
value += 0x01;
}
if (this.useDecelerationProfile) {
value += 0x02;
}
return value;
}
}
exports.TachoMotor = TachoMotor;
var Mode;
(function (Mode) {
Mode[Mode["ROTATION"] = 2] = "ROTATION";
})(Mode || (exports.Mode = Mode = {}));
exports.ModeMap = {
"rotate": Mode.ROTATION
};
//# sourceMappingURL=tachomotor.js.map