Driver for the MLX90640 thermal camera
Project description
Introduction
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file adafruit_circuitpython_mlx90640-1.3.3.tar.gz
.
File metadata
- Download URL: adafruit_circuitpython_mlx90640-1.3.3.tar.gz
- Upload date:
- Size: 35.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a2703f06ff1c584d06387207f53ef77ea2dfc25e2c34ab5f0c28a157f617e3e4 |
|
MD5 | 260d6a78eb0ed47653b7803223dc4595 |
|
BLAKE2b-256 | 77f416dbfa27c7d3510a4cca576b9076b26f3f938a7cabeb821265704c4af313 |
Provenance
File details
Details for the file adafruit_circuitpython_mlx90640-1.3.3-py3-none-any.whl
.
File metadata
- Download URL: adafruit_circuitpython_mlx90640-1.3.3-py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fc6df9a0513843e05ef3823db6964fb77ef729e4305f717bc46c1685e97d0ed0 |
|
MD5 | 7cd64709dc9b1340e9096cfe15d62251 |
|
BLAKE2b-256 | 93152b549bcbc4f1934b2df7f03e1496978a2f612d77c2c43fb61cf609057c00 |