Skip to content

Commit b0edb0c

Browse files
committed
update docs
1 parent 7a5f806 commit b0edb0c

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

adafruit_ad569x.py

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,13 +66,22 @@ def __init__(self, i2c: I2C, address: int = 0x4C) -> None:
6666
:param address: The I2C address of the device. Defaults to 0x4C.
6767
"""
6868
self.i2c_device = I2CDevice(i2c, address)
69+
self.normal_mode = const(0x00)
6970
"""
70-
Mode options
71+
Normal mode
7172
"""
72-
self.normal_mode = const(0x00)
7373
self.output_1k_impedance = const(0x01)
74+
"""
75+
1K impedance mode
76+
"""
7477
self.output_100k_impedance = const(0x02)
78+
"""
79+
100K impedance mode
80+
"""
7581
self.output_tristate = const(0x03)
82+
"""
83+
Tri-state mode
84+
"""
7685

7786
try:
7887
self.reset()

0 commit comments

Comments
 (0)