tw88xx_utils/tw8836.py
Patrick Moessler accbed7d3b initial
2022-01-09 18:20:49 +01:00

9 lines
188 B
Python

from i2c_interfaces import I2CInterface
from tw88xx import TW88xx
class TW8836(TW88xx):
ADDR = 0x45
def __init__(self, i2c: I2CInterface) -> None:
super().__init__(i2c)