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.

Open code.py

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

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.

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