Skip to content

Releases: adafruit/Adafruit_CircuitPython_DotStar

2.0.1 - Moved to pre-commit, added licensing info

18 Feb 23:13
85a7ed1
Compare
Choose a tag to compare

pre-commit has been added to the GitHub Actions workflow in this repository. pre-commit allows you to run multiple checks, such as black and checking the REUSE licensing compliance, both locally and on GitHub Actions with one command.

You can run pre-commit locally with pre-commit run --all-files

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-dotstar.

Read the docs for info on how to use it.

Now with pixelbuf support!

11 May 22:42
f4f66fa
Compare
Choose a tag to compare

Thanks to @rhooper and @dunkmann00 for the great work!

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-dotstar.

Read the docs for info on how to use it.

1.6.1 - Added Black check, reran Black with Python 3 target.

10 Apr 18:11
0e9a311
Compare
Choose a tag to compare

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-dotstar.

Read the docs for info on how to use it.

1.6.0 - Upgrade to latest Pylint, implement Black formatting

20 Mar 15:46
62e645e
Compare
Choose a tag to compare

We have upgraded Pylint checks to use the latest version of Pylint and implemented usage of Black Python formatting. This does not change the functionality of the code - it is designed to bring it up to current standards and make it more readable.

  • Remove pinned Pylint version number from build.yml file
  • Synced .pylintrc file to match Adafruit standard
  • Ran upgraded Pylint and applied any changes or new disables necessary
  • Ran Black formatter and allowed application of changes across entire repo

For more information on using Pylint and Black on your code, check out this guide on working with Pylint and Black

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-dotstar.

Read the docs for info on how to use it.

1.5.2 - Changed CI from Travis to GitHub Actions

17 Jan 02:15
Compare
Choose a tag to compare

This release includes:

  • Migrating this repository from Travis to GitHub Actions. This has no effect on the behavior of the code itself.

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip3 install adafruit-circuitpython-dotstar.

Read the docs for info on how to use it.

Improvements for non-hardware SPI

13 Nov 19:04
01e89a8
Compare
Choose a tag to compare

Thanks to @schelmo for the update!

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip install adafruit-circuitpython-dotstar.

Read the docs for info on how to use it.

SPI Baudrate Change, Added Examples, & Update Travis Badge In Readme

16 Jan 03:29
409e909
Compare
Choose a tag to compare
  • SPI baudrate can now be set when creating a DotStar object. Defaults to 4000000.
  • Added Light Painting & POV examples!

Thanks @PaintYourDragon!

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip install adafruit-circuitpython-dotstar.

Read the docs for info on how to use it.

Fixed and example updates.

16 Oct 17:50
03c2415
Compare
Choose a tag to compare
  • Updated to handle bit banging pin options on Raspberry PI
  • Examples updated.
  • Fix for _set_value() not accepting ints

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip install adafruit-circuitpython-dotstar.

Read the docs for info on how to use it.

Now on PyPi!

03 Aug 23:52
7027880
Compare
Choose a tag to compare
  • 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-dotstar.

Read the docs for info on how to use it.

Remove dependency on math; speed up fill()

24 May 16:53
af25424
Compare
Choose a tag to compare
  1. The math library may not always be available, so uses of math.ceil() were replaced with equivalent calculations.
  2. fill() was sped up by about 25% by using range() instead of enumerate().