All Projects → adafruit → Adafruit_CircuitPython_AMG88xx

adafruit / Adafruit_CircuitPython_AMG88xx

Licence: MIT license
circuit python driver from AMG88xx GRID-EYE 8x8 IR sensor

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Adafruit CircuitPython AMG88xx

CapableRobot USBHub Driver
www.crowdsupply.com/capable-robot-components/programmable-usb-hub
Stars: ✭ 17 (-48.48%)
Mutual labels:  circuitpython
usbhostcopro
USB Host Co-processor
Stars: ✭ 54 (+63.64%)
Mutual labels:  circuitpython
Big Honking Button
A simple Eurorack sampler and performance module in a silly package.
Stars: ✭ 45 (+36.36%)
Mutual labels:  circuitpython
CircuitPython GC9A01 demos
Demos showing how to use CircuitPython displayio driver for GC9A01 round LCDs
Stars: ✭ 18 (-45.45%)
Mutual labels:  circuitpython
Adafruit CircuitPython CharLCD
Library code for character LCD interfacing
Stars: ✭ 54 (+63.64%)
Mutual labels:  circuitpython
awesome-macropad
A curated list of awesome applications, macros, 3d printed cases, guides, and more for the Adafruit CircuitPython rp2040 Macropad.
Stars: ✭ 26 (-21.21%)
Mutual labels:  circuitpython
CircuitPython nRF24L01
CircuitPython driver library for the nRF24L01 transceiver.
Stars: ✭ 25 (-24.24%)
Mutual labels:  circuitpython
Adafruit CircuitPython MiniMQTT
MQTT Client Library for CircuitPython
Stars: ✭ 51 (+54.55%)
Mutual labels:  circuitpython
lightroom-macro-pad
Lightroom Macro Pad With CircuitPython Boards
Stars: ✭ 33 (+0%)
Mutual labels:  circuitpython
Env-KB
A custom mechanical keyboard inspired by the CFTKB Mysterium utilizing the Raspberry Pi Pico
Stars: ✭ 203 (+515.15%)
Mutual labels:  circuitpython
circuitpython-build-tools
Build scripts for CircuitPython libraries and the bundle
Stars: ✭ 20 (-39.39%)
Mutual labels:  circuitpython
CircuitPython Community Bundle
A bundle of useful CircuitPython libraries from the CircuitPython community.
Stars: ✭ 98 (+196.97%)
Mutual labels:  circuitpython
CircuitPython-online-IDE
CircuitPython online IDE
Stars: ✭ 15 (-54.55%)
Mutual labels:  circuitpython
circuitpython
CircuitPython - a Python implementation for teaching coding with microcontrollers
Stars: ✭ 3,097 (+9284.85%)
Mutual labels:  circuitpython
kerntroller
No description or website provided.
Stars: ✭ 31 (-6.06%)
Mutual labels:  circuitpython
qtpy-knob
QT Py Media Knob using rotary encoder & neopixel ring
Stars: ✭ 49 (+48.48%)
Mutual labels:  circuitpython
PyDOS
DOS-like OS for microcontroller boards running Micropython or Circuitpython
Stars: ✭ 40 (+21.21%)
Mutual labels:  circuitpython
microS2
microS2 - An esp32-s2 based development board 🚀
Stars: ✭ 18 (-45.45%)
Mutual labels:  circuitpython
Adafruit CircuitPython SD
SD card drivers for Adafruit CircuitPython
Stars: ✭ 24 (-27.27%)
Mutual labels:  circuitpython
adafruit-circuitpython-weekly-meeting
Notes from the weekly circuitpython meetings on Discord
Stars: ✭ 22 (-33.33%)
Mutual labels:  circuitpython

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].