/cozmo-turtle

cozmo the robot fun

Primary LanguagePython

cozmo-turtle

a 🤖 🐢 friend to accompany the book Mindstorms

setup

virtualenv .env -p python3
source ./env/bin/activate
pip install -r requirements.txt

Enter your LOGO commands in a file like this

PENDOWN
FORWARD(100)
ANGLE(50)
PENUP

Run the Cozmo-Turtle

python turtle.py -c commands.txt

Extra credit

To make Cozmo sing, try this:

python sing.py

I made this to remind myself how to work Cozmo. And I'm keeping it.