Datasheet

That's all there is to using AMG88ss with CircuitPython!
Full Example Code
import time
import busio
import board
import adafruit_amg88xx
i2c = busio.I2C(board.SCL, board.SDA)
amg = adafruit_amg88xx.AMG88XX(i2c)
while True:
for row in amg.pixels:
# Pad to 1 decimal place
print(['{0:.1f}'.format(temp) for temp in row])
print("")
print("\n")
time.sleep(1)
© Adafruit Industries https://learn.adafruit.com/adafruit-amg8833-8x8-thermal-camera-sensor Page 21 of 30