Skip to content

Commit

Permalink
Merge pull request #39 from makermelissa/master
Browse files Browse the repository at this point in the history
Added version and Repo URL
  • Loading branch information
ladyada authored Sep 6, 2019
2 parents 100ec29 + 1553faf commit 3e64ef3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions adafruit_ht16k33/bargraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@

from adafruit_ht16k33.ht16k33 import HT16K33

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_HT16K33.git"

class Bicolor24(HT16K33):
"""Bi-color 24-bar bargraph display."""

Expand Down
2 changes: 2 additions & 0 deletions adafruit_ht16k33/ht16k33.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
from adafruit_bus_device import i2c_device
from micropython import const

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_HT16K33.git"

_HT16K33_BLINK_CMD = const(0x80)
_HT16K33_BLINK_DISPLAYON = const(0x01)
Expand Down
2 changes: 2 additions & 0 deletions adafruit_ht16k33/matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@

from adafruit_ht16k33.ht16k33 import HT16K33

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_HT16K33.git"

class Matrix16x8(HT16K33):
"""A double matrix or the matrix wing."""
Expand Down
3 changes: 3 additions & 0 deletions adafruit_ht16k33/segments.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@

from adafruit_ht16k33.ht16k33 import HT16K33

__version__ = "0.0.0-auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_HT16K33.git"

CHARS = (
0b00000000, 0b00000000, #
0b01000000, 0b00000110, # !
Expand Down

0 comments on commit 3e64ef3

Please sign in to comment.