Skip to main content

Driver for the MLX90640 thermal camera

Project description

Introduction

Documentation Status Discord Build Status Code Style: Ruff

Driver for the MLX90640 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-mlx90640

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

sudo pip3 install adafruit-circuitpython-mlx90640

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-mlx90640

Usage Example

import time
import board
import busio
import adafruit_mlx90640

i2c = busio.I2C(board.SCL, board.SDA, frequency=800000)

mlx = adafruit_mlx90640.MLX90640(i2c)
print("MLX addr detected on I2C", [hex(i) for i in mlx.serial_number])

# if using higher refresh rates yields a 'too many retries' exception,
# try decreasing this value to work with certain pi/camera combinations
mlx.refresh_rate = adafruit_mlx90640.RefreshRate.REFRESH_2_HZ

frame = [0] * 768
while True:
    try:
        mlx.getFrame(frame)
    except ValueError:
        # these happen, no biggie - retry
        continue

    for h in range(24):
        for w in range(32):
            t = frame[h*32 + w]
            print("%0.1f, " % t, end="")
        print()
    print()

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_mlx90640-1.3.8.tar.gz (31.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

adafruit_circuitpython_mlx90640-1.3.8-py3-none-any.whl (10.1 kB view details)

Uploaded Python 3

File details

Details for the file adafruit_circuitpython_mlx90640-1.3.8.tar.gz.

File metadata

File hashes

Hashes for adafruit_circuitpython_mlx90640-1.3.8.tar.gz
Algorithm Hash digest
SHA256 8f89463d8d61059ef85efa8cfa32285b7804431bdb142c9ff2d5a3e680cbf35f
MD5 7f4dff9b7fc4b67acc61524cab1397dc
BLAKE2b-256 642075feaff6479347141e67ed38e6aaf2dcc7484c2c418f1d2483bf3deb173e

See more details on using hashes here.

File details

Details for the file adafruit_circuitpython_mlx90640-1.3.8-py3-none-any.whl.

File metadata

File hashes

Hashes for adafruit_circuitpython_mlx90640-1.3.8-py3-none-any.whl
Algorithm Hash digest
SHA256 4f36dacd987519762db9f2e5ec7f64f8b89b66576ade5746878e77edbead4204
MD5 7db6c4a32762eadda9df5d85fddc301f
BLAKE2b-256 b09da03e99c2caf728e11fb1640e0c58ddc4357974b2ed2d7ed9ef3576bd1038

See more details on using hashes here.

Supported by

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