Releases: adafruit/Adafruit_CircuitPython_PCA9685
Update Travis Badge In Readme
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
To use in CPython, pip install adafruit-circuitpython-pca9685
.
Read the docs for info on how to use it.
Update to .pylintrc
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
To use in CPython, pip install adafruit-circuitpython-pca9685
.
Read the docs for info on how to use it.
Now on PyPi!
- Added
setup.py
- Added PyPI release info to
.travis.yml
- Updated
requirements.txt
- Added a more comprehensive
.gitignore
To use in CircuitPython, simply install the Adafruit CircuitPython bundle.
To use in CPython, pip install adafruit-circuitpython-pca9685
.
Read the docs for info on how to use it.
More doc refinement
Thanks to @sommersoft for the documentation refinement.
To use in CircuitPython, download the .mpy file and copy it to the lib
folder on the CIRCUITPY
drive. Or, simply install the Adafruit CircuitPython bundle.
Read the docs for info on how to use it.
Improved memory usage by using StructArray class
Merge pull request #10 from tannewt/struct_array Switch to StructArray to simplify `pwm_regs` and save memory.
New API!
3.0.0 reworks the PCA9685 API to work just like CircuitPython's built in PWMOut objects by having duty_cycle
and frequency
properties for each channel object.
Servo and motor related class have moved to a new library that can work with any PWM output here: https://github.com/adafruit/Adafruit_CircuitPython_Motor The examples use PCA9685 so take a look at those.
Lastly, the code that helps initialize Motor
and Stepper
objects for the Motor Featherwing is now here in the Adafruit FeatherWing library. Docs for it are here
To use in CircuitPython, download the .zip file and copy its contents to the lib
folder on the CIRCUITPY
drive. Or, simply install the Adafruit CircuitPython bundle.
Read the docs for info on how to use it.
Struct!
Prep for CircuitPython 3.x which will have struct
instead of ustruct
. Thanks to @mrmcwethy
To use in CircuitPython, download the .zip file and copy its contents to the lib
folder on the CIRCUITPY
drive. Or, simply install the Adafruit CircuitPython bundle.
Read the docs for info on how to use it.
2.0 Release for CircuitPython 2.0
Bump of release version for CircuitPython 2.0 and up releases. The mpy file on this release can ONLY be used on CircuitPython 2.0 and above!
1.0.2 - Update examples
This requires CircuitPython 0.9.4+!
Update the examples to busio
which uses bitbanging on the ESP8266.
Swap to UnaryStruct internally.
Switched to UnaryStruct for simplified register access. Note this requires the latest version of Adafruit_Register!