Skip to content

Commit f82602a

Browse files
authored
Merge pull request #37 from tekktrik/doc/add-init-params
Update class docstring with __init__() params
2 parents 757fc13 + 49eebcc commit f82602a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

adafruit_amg88xx.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,11 @@ def _twos_comp_to_float(val: int) -> float:
9393

9494

9595
class AMG88XX:
96-
"""Driver for the AMG88xx GRID-Eye IR 8x8 thermal camera."""
96+
"""Driver for the AMG88xx GRID-Eye IR 8x8 thermal camera.
97+
98+
:param ~busio.I2C i2c: The I2C bus object
99+
:param int address: The I2C address, default is 0x69
100+
"""
97101

98102
# Set up the registers
99103
_pctl: RWBits = i2c_bits.RWBits(8, 0x00, 0)

0 commit comments

Comments
 (0)