68dc195ea4
* updated pivots * redirect support to forum * adding top level FLL link * updated wording
487 B
487 B
Spin Turn
A spin turn happens when a EV3 Driving Base turns on the spot, by spinning both wheels in opposite directions.
You can achieve turn with a tank
or a steer
block.
forever(function() {
motors.largeBC.tank(50, -50, 2, MoveUnit.Rotations)
motors.largeBC.tank(-50, 50, 2, MoveUnit.Rotations)
})