# Welcome

## Getting Started

Plug the USB from the robot into your computer. You will see that a new disk appears called CIRCUITPY. This disk contains the python files that you will edit to control your robot.

Open *code.py*

{% code title="code.py" %}

```python
import board
print("Hello World")
```

{% endcode %}

{% hint style="info" %}
&#x20;The starting program on your StudioBot will print the words 'StudioBot' to the robot screen and  have code to bounce these words around on screen.
{% endhint %}

Try changing the words to say hello to you:

{% code title="code.py" %}

```python
import board
#Notice we can add comments if we start the line with a hash
print("Hello BBS")
```

{% endcode %}

All we have to do is save the file and the robot will restart and run our new code.


---

# 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://studiobot.buildingblockstudio.com/master.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.
