2018-02-07 04:43:50 +01:00
|
|
|
# Motors
|
|
|
|
|
|
|
|
## Motion
|
|
|
|
|
|
|
|
```cards
|
2018-02-19 16:35:08 +01:00
|
|
|
motors.largeA.run(50)
|
2018-02-07 04:43:50 +01:00
|
|
|
motors.largeAB.tank(50, 50)
|
|
|
|
motors.largeAB.steer(0, 50)
|
|
|
|
motors.largeA.pauseUntilReady()
|
|
|
|
motors.largeA.setBrake(false)
|
2018-02-07 08:18:36 +01:00
|
|
|
motors.largeA.setInverted(true)
|
2018-02-07 04:43:50 +01:00
|
|
|
motors.largeA.setRegulated(false)
|
|
|
|
motors.largeA.stop()
|
|
|
|
motors.largeA.reset()
|
2018-02-14 17:56:12 +01:00
|
|
|
motors.stopAll()
|
2018-02-07 04:43:50 +01:00
|
|
|
```
|
|
|
|
## Counters
|
|
|
|
|
|
|
|
```cards
|
|
|
|
motors.largeA.speed()
|
|
|
|
motors.largeA.angle()
|
|
|
|
motors.largeA.clearCounts()
|
|
|
|
```
|