-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathalphanum_featherwing.py
executable file
·39 lines (29 loc) · 1.11 KB
/
alphanum_featherwing.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# SPDX-FileCopyrightText: 2019 Melissa LeBlanc-Williams for Adafruit Industries
#
# SPDX-License-Identifier: MIT
"""
`adafruit_featherwing.alphanum_featherwing`
====================================================
Helper for using the `14-Segment AlphaNumeric FeatherWing <https://www.adafruit.com/product/3139>`_.
* Author(s): Melissa LeBlanc-Williams
"""
__version__ = "0.0.0+auto.0"
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_FeatherWing.git"
import board
from adafruit_ht16k33 import segments
from adafruit_featherwing.led_segments import Segments
try:
from typing import Optional
from busio import I2C
except ImportError:
pass
class AlphaNumFeatherWing(Segments):
"""Class representing an `Adafruit 14-segment AlphaNumeric FeatherWing
<https://www.adafruit.com/product/3139>`_.
Automatically uses the feather's I2C bus."""
def __init__(self, address: int = 0x70, i2c: Optional[I2C] = None):
super().__init__()
if i2c is None:
i2c = board.I2C()
self._segments = segments.Seg14x4(i2c, address)
self._segments.auto_write = False