Skip to content

This is a simple C++ library for "GridEye" IR sensor to read thermal imaging on Raspberry Pi.

Notifications You must be signed in to change notification settings

addison822/GridEye

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

GridEye

This is a simple C++ library for "GridEye" IR sensor to read thermal imaging on Raspberry Pi.

Prerequisites

  1. Because this library is based on wiringPi Project, so you need to install it first.

  2. Ensure I2C Interface is enabled on RPi.

  3. The connections between GridEye and RPi is as follows:

    GridEye RPi
    VDD 3.3V
    GND GND
    SCL SCL
    SDA SDA
    INT
    AD_SELECT GND

Install

$ git clone https://github.com/addison822/GridEye
$ cd GridEye/
  • For dynamic library
$ sudo make install
  • For static library
$ sudo make install-static

Usage

  • test.cpp
#include <grideye.h>
   
float frame[8][8];
   
int main(){

    inttialGridEye();
       
    readFrame(frame);
       
    return 0;
}
  • Compile
$ g++ test.cpp -lwiringPi -lgrideye -o test

Uninstall

$ cd GridEye/
$ make uninstall

About

This is a simple C++ library for "GridEye" IR sensor to read thermal imaging on Raspberry Pi.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published