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.16.tar.gz (31.7 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file adafruit-circuitpython-amg88xx-1.2.16.tar.gz.

File metadata

File hashes

Hashes for adafruit-circuitpython-amg88xx-1.2.16.tar.gz
Algorithm Hash digest
SHA256 a7472eced5c3145812e98b0f25d59ffb6953459dbf92777b081b265749d08e20
MD5 f43edad6c3af4d20404849a25ab005df
BLAKE2b-256 f4b88a37654a07ea64ca7592db3d94977b908565b7ef8037f9206dd37f35612c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for adafruit_circuitpython_amg88xx-1.2.16-py3-none-any.whl
Algorithm Hash digest
SHA256 04157ec0d262c5e7c610433003ed6ab09eb30f258478970d8313e9470762003b
MD5 d56b5c82b73685ca200b364e360a72d0
BLAKE2b-256 12a2b5ddd005a036ebd912ceacae0e04c524b2e54ce9298a0f5128f7b54c1f1d

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