# Motor Control

To help get you moving, your board comes with a helper library that can be used to drive your robot.

From here you'll be able to combine your sensor readings and build a robot that can respond to other robots and the white line.

```python
import time
import BBRSumoClass

sumo = BBRSumoClass.BBRSumo()

#go forwards
sumo.forward(255)
time.sleep(1)
#stop with brakes
sumo.stop()
time.sleep(1)
#go backwards
sumo.reverse(255)
time.sleep(1)
#coasting is releasing the motors - can be pushed
sumo.coast()

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://sumokit.buildingblockrobotics.com/movement/motor-control.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
