Skip to main content

CircuitPython library for AMG88xx thermal camera.

Project description

Introduction

Documentation Status Discord Build Status Code Style: Black

Adafruit CircuitPython module for the AMG88xx GRID-Eye IR 8x8 thermal camera.

Dependencies

This driver depends on:

Please ensure all dependencies are available on the CircuitPython filesystem. This is easily achieved by downloading the Adafruit library and driver bundle.

Installing from PyPI

On supported GNU/Linux systems like the Raspberry Pi, you can install the driver locally from PyPI. To install for current user:

pip3 install adafruit-circuitpython-amg88xx

To install system-wide (this may be required in some cases):

sudo pip3 install adafruit-circuitpython-amg88xx

To install in a virtual environment in your current project:

mkdir project-name && cd project-name
python3 -m venv .venv
source .venv/bin/activate
pip3 install adafruit-circuitpython-amg88xx

Usage Example

Of course, you must import the library to use it:

import busio
import adafruit_amg88xx

The way to create an I2C object depends on the board you are using. For boards with labeled SCL and SDA pins, you can:

import board

You can also use pins defined by the onboard microcontroller through the microcontroller.pin module.

Now, to initialize the I2C bus:

i2c_bus = busio.I2C(board.SCL, board.SDA)

Once you have created the I2C interface object, you can use it to instantiate the AMG88xx object

amg = adafruit_amg88xx.AMG88XX(i2c_bus)

You can also optionally use the alternate i2c address (make sure to solder the jumper on the back of the board if you want to do this)

amg = adafruit_amg88xx.AMG88XX(i2c_bus, addr=0x68)

Pixels can be then be read by doing:

print(amg.pixels)

Documentation

API documentation for this library can be found on Read the Docs.

For information on building library documentation, please check out this guide.

Contributing

Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

adafruit_circuitpython_amg88xx-1.2.22.tar.gz (30.3 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file adafruit_circuitpython_amg88xx-1.2.22.tar.gz.

File metadata

File hashes

Hashes for adafruit_circuitpython_amg88xx-1.2.22.tar.gz
Algorithm Hash digest
SHA256 eb8f59e499ac633b623bf024fa4db8f4821f2273b82a3b328711a696b2e22661
MD5 6e15479c8ed8a28cd6d5df65250faadb
BLAKE2b-256 1462ca7c7b7624c2f08a7658f20bfb63ae73cfb06c8d1618880fec1ef99198d0

See more details on using hashes here.

Provenance

File details

Details for the file adafruit_circuitpython_amg88xx-1.2.22-py3-none-any.whl.

File metadata

File hashes

Hashes for adafruit_circuitpython_amg88xx-1.2.22-py3-none-any.whl
Algorithm Hash digest
SHA256 4f219557b341efd96f304489e2d4ee188442b4f5326bf3d188420b7dd345b21d
MD5 8fc4c5f507767bf0ae2a47f26ad5c802
BLAKE2b-256 bf6858f3584a8ce97012d654ce03885ca9a0f43311fb1dc24cae43d9d6ba7776

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page