Datasheet

The numbers should increase if you put your hand or face above the sensor. They'll decrease if you hold up something
cold in front of the sensor eye
Library Reference
To create the object, use
Initialize the sensor using
to read the pixels you will need an array to place the readings into. Once you have one, you can call readPixels. Make
sure the array you create is big enough by using the pre-defined AMG88xx_PIXEL_ARRAY_SIZE macro.
Adafruit_AMG88xx amg;
status = amg.begin();
if (!status) {
Serial.println("Could not find a valid AMG88xx sensor, check wiring!");
while (1);
}
float pixels[AMG88xx_PIXEL_ARRAY_SIZE];
amg.readPixels(pixels);
© Adafruit Industries https://learn.adafruit.com/adafruit-amg8833-8x8-thermal-camera-sensor Page 15 of 30