Projectupdate1 (#325)

* integrating test lesson from lego

* adding side card annotations
This commit is contained in:
Peli de Halleux
2018-02-14 08:56:12 -08:00
committed by GitHub
parent d6cbbcc3d9
commit 523c507c35
30 changed files with 404 additions and 223 deletions

View File

@ -76,7 +76,7 @@ for (let i = 0; i < 4; i++) {
motors.largeBC.steer(-30, 30)
loops.pause(5000)
}
motors.stopAllMotors()
motors.stopAll()
```
## See also

View File

@ -46,7 +46,7 @@ motors.largeAB.tank(75, 75)
loops.pause(10000)
motors.largeAB.tank(-55, -55)
loops.pause(10000)
motors.stopAllMotors()
motors.stopAll()
```
### Slip steer
@ -73,7 +73,7 @@ Run both motors in opposite directions to spin the brick around to the left.
```blocks
motors.largeAB.tank(-30, 30)
loops.pause(5000)
motors.stopAllMotors()
motors.stopAll()
```
## See also