Skip to content

Update class docstring with __init__() params #37

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 14, 2022
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