Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion adafruit_amg88xx.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,11 @@ def _twos_comp_to_float(val: int) -> float:


class AMG88XX:
"""Driver for the AMG88xx GRID-Eye IR 8x8 thermal camera."""
"""Driver for the AMG88xx GRID-Eye IR 8x8 thermal camera.

:param ~busio.I2C i2c: The I2C bus object
:param int address: The I2C address, default is 0x69
"""

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