Datasheet

Point the thermal camera at objects of differing temperatures to see the ASCII image change!
You also have the option to see the temperatures printed out in a grid. Change the lines below // uncomment *one*
of the below to comment out the ASCIIART line and uncomment the TEMPERATURES line so that they match below:
// uncomment *one* of the below
#define PRINT_TEMPERATURES
//#define PRINT_ASCIIART
Upload the code and open the Serial Monitor (Tools->Serial Monitor) at 115200 baud, and you will see an a grid of
temperatures in Celsius printed. To fit the entire grid, you may need to resize the serial monitor window.
Point the thermal camera at objects of differing temperatures to see the printed temperatures change.
#include <Adafruit_MLX90640.h>
Adafruit_MLX90640 mlx;
float frame[32*24]; // buffer for full frame of temperatures
// uncomment *one* of the below
//#define PRINT_TEMPERATURES
#define PRINT_ASCIIART
void setup() {
while (!Serial) delay(10);
© Adafruit Industries https://learn.adafruit.com/adafruit-mlx90640-ir-thermal-camera Page 10 of 30