Skip to main content

Turtle graphics library for CircuitPython and displayio

Project description

Introduction

Documentation Status Discord Build Status Code Style: Black

Turtle graphics library for CircuitPython and displayio

Dependencies

This driver depends on:

Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle.

Installing from PyPI

On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:

pip3 install adafruit-circuitpython-turtle

To install system-wide (this may be required in some cases):

sudo pip3 install adafruit-circuitpython-turtle

To install in a virtual environment in your current project:

mkdir project-name && cd project-name
python3 -m venv .venv
source .venv/bin/activate
pip3 install adafruit-circuitpython-turtle

Usage Example

import board
from adafruit_turtle import Color, turtle

turtle = turtle(board.DISPLAY)
starsize = min(board.DISPLAY.width, board.DISPLAY.height) * 0.9  # 90% of screensize

print("Turtle time! Lets draw a star")

turtle.pencolor(Color.BLUE)

turtle.penup()
turtle.goto(-starsize/2, 0)
turtle.pendown()

start = turtle.pos()
while True:
    turtle.forward(starsize)
    turtle.left(170)
    if abs(turtle.pos() - start) < 1:
        break

while True:
    pass

Documentation

API documentation for this library can be found on Read the Docs.

For information on building library documentation, please check out this guide.

Contributing

Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

adafruit_circuitpython_turtle-3.0.2.tar.gz (36.1 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file adafruit_circuitpython_turtle-3.0.2.tar.gz.

File metadata

File hashes

Hashes for adafruit_circuitpython_turtle-3.0.2.tar.gz
Algorithm Hash digest
SHA256 dcefcc0b9ace830376fa1aa0fe4717b4c199f53a9c28c1990a66461faa501364
MD5 ccceebf5924836cb996c64938e0e1894
BLAKE2b-256 509528cbf22ae2cb4ab23768da3ce5c824b2d98564247748e5037fe4f8658520

See more details on using hashes here.

File details

Details for the file adafruit_circuitpython_turtle-3.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for adafruit_circuitpython_turtle-3.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 c72299210dc9278052739260f415762b25df93909b08009076c35f4cba1150eb
MD5 313df00536bdec2df9f8df05f31b131c
BLAKE2b-256 d748e0ef45f8a8fb77bf0a58a009a249cce7bf87583dd0798aca2fa991446acb

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page