Skip to content

Adafruit CircuitPython driver for PCA9685 16-channel, 12-bit PWM LED & servo driver chip.

License

Notifications You must be signed in to change notification settings

adafruit/Adafruit_CircuitPython_PCA9685

This branch is 8 commits behind main.

Folders and files

NameName
Last commit message
Last commit date
Jan 20, 2023
Jan 12, 2021
Dec 4, 2023
Jan 26, 2021
Dec 1, 2022
May 10, 2023
May 24, 2023
Feb 15, 2022
Jan 12, 2021
Jan 19, 2017
Aug 2, 2022
Jan 12, 2021
May 22, 2023
Aug 9, 2022
Aug 16, 2022
Aug 9, 2022

Repository files navigation

Introduction

Documentation Status Discord Build Status Code Style: Black

Driver for the PCA9685, a 16-channel, 12-bit PWM chip

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-pca9685

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

sudo pip3 install adafruit-circuitpython-pca9685

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-pca9685

Usage Example

See examples/pca9685_simpletest.py for a demo of the usage.

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.