This commit is contained in:
Peli de Halleux 2018-05-21 09:06:23 -07:00
Родитель b983c103b9
Коммит d905345eb6
1 изменённых файлов: 0 добавлений и 11 удалений

11
main.ts
Просмотреть файл

@ -87,17 +87,6 @@ namespace chassis {
setBaseLength(cm: number) {
this.baseLength = cm;
}
/**
* Sets the motors used by the chassis, default is B+C
* @param motors
*/
//% blockId=chassisSetMotors block="set %chassis motors to %motors"
//% weight=10
//% group="Properties"
setMotors(motors: motors.SynchedMotorPair) {
this.motors = motors;
}
toString(): string {
return `chassis ${this.motors ? this.motors.toString() : "--"} base ${this.baseLength}, wheel ${this.wheelRadius}`;