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

Uploaded Source

Built Distribution

File details

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

File metadata

File hashes

Hashes for adafruit-circuitpython-amg88xx-1.2.21.tar.gz
Algorithm Hash digest
SHA256 650f061b439baedfaaed4bbdfeb1d7a747363983fcf3c2ffb4cd358d3cd2d88c
MD5 34dba2cd704e41d092e353f074df1e35
BLAKE2b-256 7a527f37c4afdf369911fff9cb07d5e5901c7bfee1c805644789bc900067e8e3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for adafruit_circuitpython_amg88xx-1.2.21-py3-none-any.whl
Algorithm Hash digest
SHA256 e98e979a9833124ab61f7b0e6a494e135916411d87cdae4ea4f3d1c2cebcf11a
MD5 f1dee13d424d55576604ace5fea384ea
BLAKE2b-256 114ad82aed2f3812ffce45df2d1df55859ab9a46cab9d39785ca670ab51c6d1c

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