pxt-ev3/libs/core/output.ts

695 lines
22 KiB
TypeScript
Raw Normal View History

2017-07-07 16:15:36 +02:00
enum Output {
2017-10-25 05:16:33 +02:00
//% block="A"
2017-07-07 16:15:36 +02:00
A = 0x01,
2017-10-25 05:16:33 +02:00
//% block="B"
2017-07-07 16:15:36 +02:00
B = 0x02,
2017-10-25 05:16:33 +02:00
//% block="C"
2017-07-07 16:15:36 +02:00
C = 0x04,
2017-10-25 05:16:33 +02:00
//% block="D"
2017-07-07 16:15:36 +02:00
D = 0x08,
2017-12-12 23:08:45 +01:00
//% block="B+C"
2017-12-15 02:01:23 +01:00
BC = Output.B | Output.C,
//% block="A+B"
AB = Output.A | Output.B,
//% block="C+D"
CD = Output.C | Output.D,
//% block="A+D"
AD = Output.A | Output.D,
2017-10-25 05:16:33 +02:00
//% block="All"
2017-07-07 16:15:36 +02:00
ALL = 0x0f
}
enum OutputType {
None = 0,
Tacho = 7,
MiniTacho = 8,
}
2017-12-14 07:40:40 +01:00
enum MoveUnit {
//% block="rotations"
Rotations,
//% block="degrees"
Degrees,
//% block="seconds"
Seconds,
//% block="milliseconds"
MilliSeconds
2017-12-14 07:40:40 +01:00
}
2017-10-27 20:01:11 +02:00
namespace motors {
let pwmMM: MMap
let motorMM: MMap
const enum MotorDataOff {
TachoCounts = 0, // int32
Speed = 4, // int8
Padding = 5, // int8[3]
TachoSensor = 8, // int32
Size = 12
}
function init() {
if (pwmMM) return
pwmMM = control.mmap("/dev/lms_pwm", 0, 0)
if (!pwmMM) control.fail("no PWM file")
motorMM = control.mmap("/dev/lms_motor", MotorDataOff.Size * DAL.NUM_OUTPUTS, 0)
2017-12-13 23:55:14 +01:00
if (!motorMM) control.fail("no motor file")
resetAllMotors()
const buf = output.createBuffer(1)
buf[0] = DAL.opProgramStart
writePWM(buf)
}
2017-10-27 09:09:00 +02:00
/**
* Sends a command to the motors device
* @param buf the command buffer
*/
//%
export function writePWM(buf: Buffer): void {
init()
pwmMM.write(buf)
}
2017-07-07 16:15:36 +02:00
/**
* Sends and receives a message from the motors device
* @param buf message buffer
*/
//%
2017-12-19 22:10:40 +01:00
export function readPWM(buf: Buffer): void {
2017-08-08 02:39:37 +02:00
init()
2017-12-19 22:10:40 +01:00
pwmMM.read(buf);
2017-08-08 02:39:37 +02:00
}
/**
* Allocates a message buffer
* @param out ports
* @param cmd command id
* @param addSize required additional bytes
*/
//%
export function mkCmd(out: Output, cmd: number, addSize: number) {
2017-10-27 20:01:11 +02:00
const b = output.createBuffer(2 + addSize)
2017-07-07 16:15:36 +02:00
b.setNumber(NumberFormat.UInt8LE, 0, cmd)
b.setNumber(NumberFormat.UInt8LE, 1, out)
return b
}
export function outputToName(out: Output): string {
let r = "";
for (let i = 0; i < DAL.NUM_OUTPUTS; ++i) {
if (out & (1 << i)) {
if (r.length > 0) r += "+";
r += "ABCD"[i];
}
}
return r;
2017-10-27 09:09:00 +02:00
}
2017-10-25 05:16:33 +02:00
2017-10-27 11:52:42 +02:00
/**
* Stops all motors
*/
2017-12-14 22:07:10 +01:00
//% blockId=motorStopAll block="stop all motors"
2018-01-11 07:29:35 +01:00
//% weight=1
2018-01-08 05:33:02 +01:00
//% group="Move"
2017-10-27 11:52:42 +02:00
export function stopAllMotors() {
const b = mkCmd(Output.ALL, DAL.opOutputStop, 0)
writePWM(b)
}
/**
* Resets all motors
*/
2018-01-08 05:33:02 +01:00
//% group="Move"
export function resetAllMotors() {
reset(Output.ALL)
}
2017-10-25 05:16:33 +02:00
//% fixedInstances
export class MotorBase extends control.Component {
protected _port: Output;
protected _portName: string;
protected _brake: boolean;
2017-12-18 17:54:53 +01:00
private _initialized: boolean;
private _init: () => void;
private _setSpeed: (speed: number) => void;
private _move: (steps: boolean, stepsOrTime: number, speed: number) => void;
constructor(port: Output, init: () => void, setSpeed: (speed: number) => void, move: (steps: boolean, stepsOrTime: number, speed: number) => void) {
2017-10-25 05:16:33 +02:00
super();
2017-12-14 07:40:40 +01:00
this._port = port;
this._portName = outputToName(this._port);
2017-12-14 07:40:40 +01:00
this._brake = false;
2017-12-18 17:54:53 +01:00
this._initialized = false;
this._init = init;
this._setSpeed = setSpeed;
this._move = move;
2017-12-14 07:40:40 +01:00
}
/**
* Lazy initialization code
2017-12-15 02:01:23 +01:00
*/
2017-12-18 17:54:53 +01:00
protected init() {
if (!this._initialized) {
this._initialized = true;
this._init();
}
2017-12-15 02:01:23 +01:00
}
/**
* Sets the automatic brake on or off when the motor is off
* @param brake a value indicating if the motor should break when off
*/
//% blockId=outputMotorSetBrakeMode block="set %motor|brake %brake"
//% brake.fieldEditor=toggleonoff
//% weight=60 blockGap=8
2018-01-08 05:33:02 +01:00
//% group="Move"
setBrake(brake: boolean) {
2017-12-18 17:54:53 +01:00
this.init();
this._brake = brake;
2017-12-18 17:54:53 +01:00
}
/**
* Reverses the motor polarity
*/
//% blockId=motorSetReversed block="set %motor|reversed %reversed"
//% reversed.fieldEditor=toggleonoff
2018-01-11 08:34:27 +01:00
//% weight=59 blockGap=8
2018-01-08 05:33:02 +01:00
//% group="Move"
setReversed(reversed: boolean) {
2017-12-18 17:54:53 +01:00
this.init();
const b = mkCmd(this._port, DAL.opOutputPolarity, 1)
2017-12-18 08:19:38 +01:00
b.setNumber(NumberFormat.Int8LE, 2, reversed ? 0 : 1);
writePWM(b)
2017-12-18 08:19:38 +01:00
}
/**
* Stops the motor(s).
*/
//% weight=6 blockGap=8
//% group="Move"
//% blockId=motorStop block="%motors|stop"
stop() {
2017-12-18 17:54:53 +01:00
this.init();
stop(this._port, this._brake);
}
/**
* Resets the motor(s).
*/
2018-01-11 07:29:35 +01:00
//% weight=5
//% group="Move"
//% blockId=motorReset block="%motors|reset"
reset() {
2017-12-18 17:54:53 +01:00
this.init();
reset(this._port);
}
2017-10-25 05:16:33 +02:00
/**
* Sets the motor speed for limited time or distance.
2017-12-14 07:54:08 +01:00
* @param speed the speed from ``100`` full forward to ``-100`` full backward, eg: 50
* @param value (optional) measured distance or rotation
* @param unit (optional) unit of the value
2017-10-25 05:16:33 +02:00
*/
2018-01-06 23:25:50 +01:00
//% blockId=motorSetSpeed block="set %motor|speed to %speed=motorSpeedPicker|%"
//% weight=100 blockGap=8
2018-01-08 05:33:02 +01:00
//% group="Move"
setSpeed(speed: number, value: number = 0, unit: MoveUnit = MoveUnit.MilliSeconds) {
2017-12-18 17:54:53 +01:00
this.init();
2017-12-14 07:54:08 +01:00
speed = Math.clamp(-100, 100, speed >> 0);
2018-01-10 20:14:18 +01:00
// stop if speed is 0
2017-12-14 07:54:08 +01:00
if (!speed) {
2017-12-14 07:40:40 +01:00
this.stop();
return;
}
2018-01-10 20:14:18 +01:00
// special: 0 is infinity
if (value == 0) {
this._setSpeed(speed);
return;
}
// timed motor moves
2017-12-14 07:40:40 +01:00
let useSteps: boolean;
let stepsOrTime: number;
switch (unit) {
case MoveUnit.Rotations:
stepsOrTime = (value * 360) >> 0;
useSteps = true;
break;
case MoveUnit.Degrees:
stepsOrTime = value >> 0;
useSteps = true;
break;
case MoveUnit.Seconds:
stepsOrTime = (value * 1000) >> 0;
useSteps = false;
break;
2017-12-14 07:40:40 +01:00
default:
stepsOrTime = value;
useSteps = false;
break;
}
2017-12-18 17:54:53 +01:00
this._move(useSteps, stepsOrTime, speed);
// wait till motor is done with this work
this.pauseUntilReady();
2017-10-25 05:16:33 +02:00
}
/**
* Returns a value indicating if the motor is still running a previous command.
*/
2018-01-04 17:25:02 +01:00
//% group="Sensors"
isReady(): boolean {
this.init();
2017-12-19 22:10:40 +01:00
const buf = mkCmd(this._port, DAL.opOutputTest, 2);
readPWM(buf)
const flags = buf.getNumber(NumberFormat.UInt8LE, 2);
2018-01-06 09:00:04 +01:00
return (~flags & this._port) == this._port;
}
/**
* Pauses the execution until the previous command finished.
* @param timeOut optional maximum pausing time in milliseconds
*/
//% blockId=motorPauseUntilRead block="%motor|pause until ready"
2018-01-08 05:33:02 +01:00
//% weight=90
//% group="Move"
2017-12-18 23:45:44 +01:00
pauseUntilReady(timeOut?: number) {
pauseUntil(() => this.isReady(), timeOut);
}
}
2017-12-18 17:54:53 +01:00
//% fixedInstances
export class Motor extends MotorBase {
private _large: boolean;
2018-01-11 08:34:27 +01:00
private _regulated: boolean;
constructor(port: Output, large: boolean) {
2017-12-18 17:54:53 +01:00
super(port, () => this.__init(), (speed) => this.__setSpeed(speed), (steps, stepsOrTime, speed) => this.__move(steps, stepsOrTime, speed));
this._large = large;
2018-01-11 08:34:27 +01:00
this._regulated = true;
2017-12-18 22:04:17 +01:00
this.markUsed();
}
markUsed() {
motors.__motorUsed(this._port, this._large);
}
2017-10-31 05:29:18 +01:00
2017-12-18 17:54:53 +01:00
private __init() {
// specify motor size on this port
const b = mkCmd(outOffset(this._port), DAL.opOutputSetType, 1)
b.setNumber(NumberFormat.Int8LE, 2, this._large ? 0x07 : 0x08)
writePWM(b)
2017-10-27 10:47:25 +02:00
}
2017-12-18 17:54:53 +01:00
private __setSpeed(speed: number) {
const b = mkCmd(this._port, this._regulated ? DAL.opOutputSpeed : DAL.opOutputPower, 1)
b.setNumber(NumberFormat.Int8LE, 2, speed)
2017-10-27 11:52:42 +02:00
writePWM(b)
2017-12-18 18:17:19 +01:00
if (speed) {
writePWM(mkCmd(this._port, DAL.opOutputStart, 0))
2017-12-18 18:17:19 +01:00
}
2017-10-27 11:52:42 +02:00
}
2017-12-18 17:54:53 +01:00
private __move(steps: boolean, stepsOrTime: number, speed: number) {
step(this._port, {
useSteps: steps,
step1: 0,
step2: stepsOrTime,
step3: 0,
2018-01-11 08:34:27 +01:00
speed: this._regulated ? speed : undefined,
power: this._regulated ? undefined : speed,
useBrake: this._brake
})
}
2018-01-11 08:34:27 +01:00
/**
* Indicates if the motor speed should be regulated. Default is true.
* @param value true for regulated motor
*/
//% blockId=outputMotorSetRegulated block="set %motor|regulated %value"
//% value.fieldEditor=toggleonoff
//% weight=58
//% group="Move"
setRegulated(value: boolean) {
this._regulated = value;
}
2017-10-25 05:16:33 +02:00
/**
* Gets motor actual speed.
* @param motor the port which connects to the motor
*/
//% blockId=motorSpeed block="%motor|speed"
2018-01-04 17:25:02 +01:00
//% weight=72
//% blockGap=8
//% group="Counters"
2017-10-27 11:52:42 +02:00
speed(): number {
2017-12-18 17:54:53 +01:00
this.init();
2017-12-14 07:40:40 +01:00
return getMotorData(this._port).actualSpeed;
2017-10-27 09:09:00 +02:00
}
2017-10-27 11:52:42 +02:00
/**
2018-01-04 17:25:02 +01:00
* Gets motor angle.
2017-10-27 11:52:42 +02:00
* @param motor the port which connects to the motor
*/
//% blockId=motorAngle block="%motor|angle"
2017-12-14 07:40:40 +01:00
//% weight=70
//% blockGap=8
//% group="Counters"
angle(): number {
2017-12-18 17:54:53 +01:00
this.init();
return getMotorData(this._port).count;
2017-10-27 11:52:42 +02:00
}
2018-01-04 17:25:02 +01:00
/**
* Gets motor tachometer count.
* @param motor the port which connects to the motor
*/
//% blockId=motorTachoCount block="%motor|tacho"
//% weight=69
//% blockGap=8
//% group="Counters"
2018-01-04 17:25:02 +01:00
tacho(): number {
this.init();
return getMotorData(this._port).tachoCount;
}
2017-10-27 11:52:42 +02:00
/**
* Clears the motor count
*/
2018-01-04 17:25:02 +01:00
//% blockId=motorClearCount block="%motor|clear counts"
//% weight=68
//% blockGap=8
//% group="Counters"
2018-01-04 17:25:02 +01:00
clearCounts() {
2017-12-18 17:54:53 +01:00
this.init();
2017-12-14 07:40:40 +01:00
const b = mkCmd(this._port, DAL.opOutputClearCount, 0)
2017-10-27 11:52:42 +02:00
writePWM(b)
for (let i = 0; i < DAL.NUM_OUTPUTS; ++i) {
2017-12-14 07:40:40 +01:00
if (this._port & (1 << i)) {
2017-10-27 11:52:42 +02:00
motorMM.setNumber(NumberFormat.Int32LE, i * MotorDataOff.Size + MotorDataOff.TachoSensor, 0)
}
}
}
/**
* Returns the status of the motor
*/
//%
toString(): string {
return `${this._large ? "" : "M"}${this._portName} ${this.speed()}% ${this.angle()}>`;
}
2017-12-15 02:01:23 +01:00
}
//% whenUsed fixedInstance block="large A"
export const largeA = new Motor(Output.A, true);
2017-12-15 02:01:23 +01:00
//% whenUsed fixedInstance block="large B"
export const largeB = new Motor(Output.B, true);
2017-12-15 02:01:23 +01:00
//% whenUsed fixedInstance block="large C"
export const largeC = new Motor(Output.C, true);
2017-12-15 02:01:23 +01:00
//% whenUsed fixedInstance block="large D"
export const largeD = new Motor(Output.D, true);
2017-12-15 02:01:23 +01:00
//% whenUsed fixedInstance block="medium A"
export const mediumA = new Motor(Output.A, false);
2017-12-15 02:01:23 +01:00
//% whenUsed fixedInstance block="medium B"
export const mediumB = new Motor(Output.B, false);
2017-12-15 02:01:23 +01:00
//% whenUsed fixedInstance block="medium C"
export const mediumC = new Motor(Output.C, false);
2017-12-15 02:01:23 +01:00
//% whenUsed fixedInstance block="medium D"
export const mediumD = new Motor(Output.D, false);
2017-12-15 02:01:23 +01:00
//% fixedInstances
export class SynchedMotorPair extends MotorBase {
2017-12-18 17:54:53 +01:00
2017-12-15 02:01:23 +01:00
constructor(ports: Output) {
2017-12-18 17:54:53 +01:00
super(ports, () => this.__init(), (speed) => this.__setSpeed(speed), (steps, stepsOrTime, speed) => this.__move(steps, stepsOrTime, speed));
2017-12-18 22:04:17 +01:00
this.markUsed();
}
markUsed() {
motors.__motorUsed(this._port, true);
2017-12-15 02:01:23 +01:00
}
2017-12-14 07:40:40 +01:00
2017-12-18 17:54:53 +01:00
private __init() {
for (let i = 0; i < DAL.NUM_OUTPUTS; ++i) {
if (this._port & (1 << i)) {
const b = mkCmd(outOffset(1 << i), DAL.opOutputSetType, 1)
b.setNumber(NumberFormat.Int8LE, 2, 0x07) // large motor
writePWM(b)
}
2017-12-15 02:01:23 +01:00
}
}
2017-12-18 17:54:53 +01:00
private __setSpeed(speed: number) {
syncMotors(this._port, {
2017-12-15 02:01:23 +01:00
speed: speed,
2018-01-06 09:00:04 +01:00
turnRatio: 0, // same speed
2017-12-15 02:01:23 +01:00
useBrake: !!this._brake
})
}
2017-12-18 17:54:53 +01:00
private __move(steps: boolean, stepsOrTime: number, speed: number) {
syncMotors(this._port, {
useSteps: steps,
speed: speed,
2018-01-06 09:00:04 +01:00
turnRatio: 0, // same speed
stepsOrTime: stepsOrTime,
useBrake: this._brake
});
2017-12-18 17:54:53 +01:00
}
2017-12-14 07:40:40 +01:00
/**
* The Move Tank block can make a robot drive forward, backward, turn, or stop.
* Use the Move Tank block for robot vehicles that have two Large Motors,
* with one motor driving the left side of the vehicle and the other the right side.
* You can make the two motors go at different speeds or in different directions
* to make your robot turn.
* @param speedLeft the speed on the left motor, eg: 50
* @param speedRight the speed on the right motor, eg: 50
* @param value (optional) move duration or rotation
* @param unit (optional) unit of the value
*/
2018-01-07 19:06:02 +01:00
//% blockId=motorPairTank block="tank %motors|%speedLeft=motorSpeedPicker|%|%speedRight=motorSpeedPicker|%"
2018-01-08 05:33:02 +01:00
//% weight=96 blockGap=8
//% inlineInputMode=inline
//% group="Move"
tank(speedLeft: number, speedRight: number, value: number = 0, unit: MoveUnit = MoveUnit.MilliSeconds) {
this.init();
speedLeft = Math.clamp(-100, 100, speedLeft >> 0);
speedRight = Math.clamp(-100, 100, speedRight >> 0);
const speed = Math.abs(speedLeft) > Math.abs(speedRight) ? speedLeft : speedRight;
const turnRatio = speedLeft == speed
? (100 - speedRight / speedLeft * 100)
: (speedLeft / speedRight * 100 - 100);
this.steer(turnRatio, speed, value, unit);
}
/**
* Turns the motor and the follower motor by a number of rotations
* @param turnRatio the ratio of power sent to the follower motor, from ``-200`` to ``200``, eg: 0
* @param speed the speed from ``100`` full forward to ``-100`` full backward, eg: 50
* @param value (optional) move duration or rotation
* @param unit (optional) unit of the value
*/
//% blockId=motorPairSteer block="steer %chassis|turn ratio %turnRatio=motorTurnRatioPicker|speed %speed=motorSpeedPicker|%"
2018-01-08 05:33:02 +01:00
//% weight=95
//% turnRatio.min=-200 turnRatio=200
//% inlineInputMode=inline
2018-01-08 05:33:02 +01:00
//% group="Move"
steer(turnRatio: number, speed: number, value: number = 0, unit: MoveUnit = MoveUnit.MilliSeconds) {
2017-12-18 17:54:53 +01:00
this.init();
2017-12-15 02:01:23 +01:00
speed = Math.clamp(-100, 100, speed >> 0);
if (!speed) {
stop(this._port, this._brake);
2017-12-15 02:01:23 +01:00
return;
}
turnRatio = Math.clamp(-200, 200, turnRatio >> 0);
2017-12-15 02:01:23 +01:00
let useSteps: boolean;
let stepsOrTime: number;
switch (unit) {
case MoveUnit.Rotations:
stepsOrTime = (value * 360) >> 0;
useSteps = true;
break;
case MoveUnit.Degrees:
stepsOrTime = value >> 0;
useSteps = true;
break;
case MoveUnit.Seconds:
stepsOrTime = (value * 1000) >> 0;
useSteps = false;
break;
2017-12-15 02:01:23 +01:00
default:
stepsOrTime = value >> 0;
2017-12-15 02:01:23 +01:00
useSteps = false;
break;
}
syncMotors(this._port, {
2017-12-15 02:01:23 +01:00
useSteps: useSteps,
speed: speed,
turnRatio: turnRatio,
stepsOrTime: stepsOrTime,
useBrake: this._brake
});
}
2017-12-15 02:01:23 +01:00
/**
* Returns the name(s) of the motor
*/
//%
toString(): string {
this.init();
let r = outputToName(this._port);
for (let i = 0; i < DAL.NUM_OUTPUTS; ++i) {
if (this._port & (1 << i)) {
r += ` ${getMotorData(1 << i).actualSpeed}%`
}
}
return r;
}
2017-07-07 16:15:36 +02:00
}
2017-12-15 02:01:23 +01:00
//% whenUsed fixedInstance block="large B+C"
export const largeBC = new SynchedMotorPair(Output.BC);
2017-10-27 09:09:00 +02:00
2017-12-15 02:01:23 +01:00
//% whenUsed fixedInstance block="large A+D"
export const largeAD = new SynchedMotorPair(Output.AD);
2017-10-27 09:09:00 +02:00
2017-12-15 02:01:23 +01:00
//% whenUsed fixedInstance block="large A+B"
export const largeAB = new SynchedMotorPair(Output.AB);
2017-10-27 09:09:00 +02:00
2017-12-15 02:01:23 +01:00
//% whenUsed fixedInstance block="large C+D"
export const largeCD = new SynchedMotorPair(Output.CD);
2017-10-25 05:16:33 +02:00
function reset(out: Output) {
2017-12-19 22:10:40 +01:00
writePWM(mkCmd(out, DAL.opOutputReset, 0))
writePWM(mkCmd(out, DAL.opOutputClearCount, 0))
2017-07-07 16:15:36 +02:00
}
function outOffset(out: Output) {
for (let i = 0; i < DAL.NUM_OUTPUTS; ++i) {
if (out & (1 << i))
return i * MotorDataOff.Size
}
return 0
}
export interface MotorData {
actualSpeed: number; // -100..+100
tachoCount: number;
count: number;
}
// only a single output at a time
2017-10-25 05:16:33 +02:00
function getMotorData(out: Output): MotorData {
2017-12-13 23:55:14 +01:00
init()
const buf = motorMM.slice(outOffset(out), MotorDataOff.Size)
return {
actualSpeed: buf.getNumber(NumberFormat.Int8LE, MotorDataOff.Speed),
tachoCount: buf.getNumber(NumberFormat.Int32LE, MotorDataOff.TachoCounts),
count: buf.getNumber(NumberFormat.Int32LE, MotorDataOff.TachoSensor),
}
}
2017-08-08 02:39:37 +02:00
export function getAllMotorData(): MotorData[] {
init();
return [Output.A, Output.B, Output.C, Output.D].map(out => getMotorData(out));
}
2017-12-12 22:20:25 +01:00
interface SyncOptions {
useSteps?: boolean;
speed: number;
turnRatio: number;
2017-12-14 07:40:40 +01:00
stepsOrTime?: number;
2017-12-12 22:20:25 +01:00
useBrake?: boolean;
}
function syncMotors(out: Output, opts: SyncOptions) {
const cmd = opts.useSteps ? DAL.opOutputStepSync : DAL.opOutputTimeSync;
const b = mkCmd(out, cmd, 11);
const speed = Math.clamp(-100, 100, opts.speed);
const turnRatio = Math.clamp(-200, 200, opts.turnRatio);
b.setNumber(NumberFormat.Int8LE, 2, speed)
// note that b[3] is padding
b.setNumber(NumberFormat.Int16LE, 4 + 4 * 0, turnRatio)
// b[6], b[7] is padding
b.setNumber(NumberFormat.Int32LE, 4 + 4 * 1, opts.stepsOrTime || 0)
b.setNumber(NumberFormat.Int8LE, 4 + 4 * 2, opts.useBrake ? 1 : 0)
writePWM(b)
}
2017-10-25 05:16:33 +02:00
interface StepOptions {
2017-07-07 16:15:36 +02:00
power?: number;
speed?: number; // either speed or power has to be present
step1: number;
step2: number;
step3: number;
useSteps?: boolean; // otherwise use milliseconds
2017-08-08 02:39:37 +02:00
useBrake?: boolean;
2017-07-07 16:15:36 +02:00
}
2017-12-12 23:08:45 +01:00
function start(out: Output) {
const b = mkCmd(out, DAL.opOutputStart, 0)
writePWM(b);
}
function stop(out: Output, brake: boolean) {
2017-12-14 07:40:40 +01:00
const b = mkCmd(out, DAL.opOutputStop, 1)
b.setNumber(NumberFormat.UInt8LE, 2, brake ? 1 : 0)
2017-12-14 07:40:40 +01:00
writePWM(b);
}
2017-10-25 05:16:33 +02:00
function step(out: Output, opts: StepOptions) {
let op = opts.useSteps ? DAL.opOutputStepSpeed : DAL.opOutputTimeSpeed
2017-07-07 16:15:36 +02:00
let speed = opts.speed
if (speed == null) {
speed = opts.power
op = opts.useSteps ? DAL.opOutputStepPower : DAL.opOutputTimePower
2017-07-07 16:15:36 +02:00
if (speed == null)
return
}
speed = Math.clamp(-100, 100, speed)
let b = mkCmd(out, op, 15)
b.setNumber(NumberFormat.Int8LE, 2, speed)
// note that b[3] is padding
b.setNumber(NumberFormat.Int32LE, 4 + 4 * 0, opts.step1)
b.setNumber(NumberFormat.Int32LE, 4 + 4 * 1, opts.step2)
b.setNumber(NumberFormat.Int32LE, 4 + 4 * 2, opts.step3)
2017-08-08 02:39:37 +02:00
b.setNumber(NumberFormat.Int8LE, 4 + 4 * 3, opts.useBrake ? 1 : 0)
2017-07-07 16:15:36 +02:00
writePWM(b)
}
const types = [0, 0, 0, 0]
export function setType(out: Output, type: OutputType) {
let b = mkCmd(out, DAL.opOutputSetType, 3)
2017-07-07 16:15:36 +02:00
for (let i = 0; i < 4; ++i) {
if (out & (1 << i)) {
types[i] = type
}
b.setNumber(NumberFormat.UInt8LE, i + 1, types[i])
}
writePWM(b)
}
2017-07-10 10:10:36 +02:00
}
interface Buffer {
[index: number]: number;
// rest defined in buffer.cpp
2017-07-07 16:15:36 +02:00
}