Thermal Camera AMG8833 (Raspberry Pi)

by piddlerintheroot in Circuits > Raspberry Pi

30579 Views, 27 Favorites, 0 Comments

Thermal Camera AMG8833 (Raspberry Pi)

therm.png

Basic tutorial of how to setup an IR camera (AMG833) with the Raspberry Pi.

Parts

vlcsnap-7147-08-15-00h02m27s351.png

Setup

vlcsnap-0598-03-30-17h33m01s590.png
diagg.PNG

Adafruit Guide: https://learn.adafruit.com/adafruit-amg8833-8x8-th...

1. Enable VNC and I2C interfaces:

sudo raspi-config

select "interfacing options"

activate VNC

activate I2C

select <FINISH>

sudo reboot

2. Check to see if I2C is setup correctly

sudo i2cdetect -y 1 (You should see a 69 on column 9)

3. Download and install packages outlined in Adafruit guide

sudo apt-get install -y build-essential python-pip python-dev python-smbus git
git clone https://github.com/adafruit/Adafruit_Python_GPIO....

cd Adafruit_Python_GPIO

sudo python setup.py install

4. Install pygame and scipy

sudo apt-get install -y python-scipy python-pygame
sudo pip install colour Adafruit_AMG88xx

5. Run example script

cd ~/
git clone https://github.com/adafruit/Adafruit_AMG88xx_pyth...

cd Adafruit_AMG88xx_python/examples

sudo python thermal_cam.py

Code

code.PNG

Additional Info

vlcsnap-4240-06-21-08h51m51s648.png
Thermal Camera (AMG8833) Raspberry Pi