10 lines
188 B
Python
10 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)
|