Welcome

Welcome to the StudioBot, an advanced Python capable robotics platform.

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.

We can program our StudioBot in two ways:

  1. Edit the files directly using a text editor

Using one of the tools above, find the file code.py and modify it to the following code.

code.py
import board
print("Hello World")

The starting program on your StudioBot will print the words 'StudioBot' to the robot screen.

Try changing the words to say hello to you:

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

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

Last updated