Skip to main content

Driver for the MLX90640 thermal camera

Project description

Introduction

Documentation Status Discord Build Status Code Style: Black

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

Uploaded Source

Built Distribution

File details

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

File metadata

File hashes

Hashes for adafruit-circuitpython-mlx90640-1.2.16.tar.gz
Algorithm Hash digest
SHA256 5d9ffbd6983f1fa078216f25ae7db63641f494042cc799041bdf71e3c8d609f5
MD5 6f9f938fcad6183aa3b8f76a0a6c9c1a
BLAKE2b-256 62588564aa66af6492407dddd6f9458d5031abd63fa0a357de1afe8891985cc6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for adafruit_circuitpython_mlx90640-1.2.16-py3-none-any.whl
Algorithm Hash digest
SHA256 45ac81fd045bca88fd0bb79b6929a42b554138fc01b5c3dfa08487ca228a63c5
MD5 f6e3eaa888bb9b786d069375eff9b4ca
BLAKE2b-256 0a46613cbe8bff5ba9487298990eedf6422c8a7ac86c96088a0db8ca62105a61

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