699 B
699 B
reset
Reset the motor's speed setting and it's counters.
motors.largeA.reset()
The motor's speed is set back to 0
and the tacho, angle, and speed counters are set to 0
.
Example
See what the angle count is when a motor is stopped. Then, try it again after a reset.
motors.largeA.setSpeed(30)
pause(2000)
motors.largeA.stop()
brick.showString("Angle count:", 1)
brick.showNumber(motors.largeA.angle(), 2)
motors.largeA.setSpeed(30)
pause(2000)
motors.largeA.reset()
brick.showString("Angle count:", 4)
brick.showNumber(motors.largeA.angle(), 5)