68dc195ea4
* updated pivots * redirect support to forum * adding top level FLL link * updated wording
469 B
469 B
Smooth Turn
A smooth turn happens when a EV3 Driving Base turns around both wheels at a different speed.
You can achieve turn with a tank
or a steer
block.
forever(function() {
motors.largeBC.tank(50, 20, 2, MoveUnit.Rotations)
motors.largeBC.tank(20, 50, 2, MoveUnit.Rotations)
})