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:
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.
import board
print("Hello World")Try changing the words to say hello to you:
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