Skip to content

Commit 3e64ef3

Browse files
authored
Merge pull request #39 from makermelissa/master
Added version and Repo URL
2 parents 100ec29 + 1553faf commit 3e64ef3

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

adafruit_ht16k33/bargraph.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@
3030

3131
from adafruit_ht16k33.ht16k33 import HT16K33
3232

33+
__version__ = "0.0.0-auto.0"
34+
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_HT16K33.git"
35+
3336
class Bicolor24(HT16K33):
3437
"""Bi-color 24-bar bargraph display."""
3538

adafruit_ht16k33/ht16k33.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131
from adafruit_bus_device import i2c_device
3232
from micropython import const
3333

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

3537
_HT16K33_BLINK_CMD = const(0x80)
3638
_HT16K33_BLINK_DISPLAYON = const(0x01)

adafruit_ht16k33/matrix.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828

2929
from adafruit_ht16k33.ht16k33 import HT16K33
3030

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

3234
class Matrix16x8(HT16K33):
3335
"""A double matrix or the matrix wing."""

adafruit_ht16k33/segments.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@
2727

2828
from adafruit_ht16k33.ht16k33 import HT16K33
2929

30+
__version__ = "0.0.0-auto.0"
31+
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_HT16K33.git"
32+
3033
CHARS = (
3134
0b00000000, 0b00000000, #
3235
0b01000000, 0b00000110, # !

0 commit comments

Comments
 (0)