Skip to content

Releases: adafruit/Adafruit_CircuitPython_HT16K33

4.1.2 - Moved to pre-commit, added licensing info

20 Jan 22:35
88a1575
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-ht16k33.

Read the docs for info on how to use it.

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

10 Apr 18:12
4eed803
Compare
Choose a tag to compare

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

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

Read the docs for info on how to use it.

4.1.0 - Upgrade to latest Pylint, implement Black formatting

23 Mar 17:32
9e73ebb
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-ht16k33.

Read the docs for info on how to use it.

Brightness has been updated for consistency

10 Mar 15:43
f38cd30
Compare
Choose a tag to compare

Breaking Changes The brightness property has been updated to now be in a range of 0-1.0 instead of 0-15 for consistency with other libraries. If you are not setting the brightness property in your code, it should continue to work as it has.

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

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

Read the docs for info on how to use it.

Added a new demo

04 Mar 22:35
d3cc347
Compare
Choose a tag to compare

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

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

Read the docs for info on how to use it.

3.2.2 - Added a new demo

21 Feb 01:30
ae7101a
Compare
Choose a tag to compare

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

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

Read the docs for info on how to use it.

Added big 7-segment initializer to example

28 Jan 18:29
1da9029
Compare
Choose a tag to compare

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

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

Read the docs for info on how to use it.

Added Colon Property to smaller 7-segment display

28 Jan 01:51
29c028a
Compare
Choose a tag to compare

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

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

Read the docs for info on how to use it.

Updated Number Function for the Segmented Displays

28 Jan 00:31
297b874
Compare
Choose a tag to compare

This release includes the following updates:

  • The number function for segmented displays has been updated with changes ported from the MicroPython library. Thanks @hybotics
  • The print_hex() function for segmented displays is no longer limited to a range of 0-FFFF.

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

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

Read the docs for info on how to use it.

Fixed set_digit_raw function for LED Segment Displays

25 Jan 20:22
24bb3e9
Compare
Choose a tag to compare

Potentially breaking release
The set_digit_raw function was originally implemented incorrectly and this fixes the behavior. If you have used it, you may need to update your code.

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

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

Read the docs for info on how to use it.