Releases: depklyon/raspberrypi-tm1637
Releases · depklyon/raspberrypi-tm1637
v1.3.7
v1.3.6
What's Changed
- Add installation instructions to README.md by @thesilican in #10
- Added support for decimal temperature values by @giddyhup in #11
- Create codeql-analysis.yml by @depklyon in #12
- remove endless loop from _write_byte by @chrisdecker1201 in #13
New Contributors
- @thesilican made their first contribution in #10
- @giddyhup made their first contribution in #11
- @chrisdecker1201 made their first contribution in #13
Full Changelog: v1.3.2...v1.3.6
Changes for PyPi publishing
v1.3.2 Improvements and repository rename for pypi package
Reorganize code
Reformat code to PEP8
Adds Unittests file
Reorganize code
Sync with the same release version from mcauser
Add temperature, fix brightness, change how pins are toggled
Adds alphanumeric font and scrolling.
show('1234')
show('cool')
scroll('hello world')
scroll(list(tm1637._SEGMENTS))
Backwards compatibility issue:
If you are using tm1637._SEGMENTS
, the blank
and dash
characters have been moved to the end of the font.
Previous font: 0-9
, a-f
, blank
, dash
New font: 0-9
, a-z
, blank
, dash
, star
blank
was segment 16 and is now segment 37.
dash
was segment 17 and is now segment 38.
Initial version
Merge pull request #2 from depklyon/port-to-python Port to python 3