https://github.com/whatrocks/cozmo-turtle
cozmo the robot fun
https://github.com/whatrocks/cozmo-turtle
Last synced: 11 months ago
JSON representation
cozmo the robot fun
- Host: GitHub
- URL: https://github.com/whatrocks/cozmo-turtle
- Owner: whatrocks
- Created: 2020-02-08T17:57:55.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-03T23:07:27.000Z (over 2 years ago)
- Last Synced: 2025-01-11T20:47:01.053Z (12 months ago)
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cozmo-turtle
a :robot: :turtle: friend to accompany the book Mindstorms
## setup
```bash
virtualenv .env -p python3
source ./env/bin/activate
pip install -r requirements.txt
```
Enter your LOGO commands in a file like this
```logo
PENDOWN
FORWARD(100)
ANGLE(50)
PENUP
```
Run the Cozmo-Turtle
```bash
python turtle.py -c commands.txt
```
### Extra credit
To make Cozmo sing, try this:
```bash
python sing.py
```
I made this to remind myself how to work Cozmo. And I'm keeping it.