No description
Find a file
Tyeth Gundry 1d237a6695
Some checks failed
Arduino Library CI / build (push) Has been cancelled
Bump version to 1.0.2 in library.properties
2025-08-22 21:44:39 +01:00
.github/workflows Initial commit: MLX90632 Far Infrared Temperature Sensor library 2025-07-18 19:25:34 -04:00
examples/test_MLX90632 Integrate calibration loading and add comprehensive mode support 2025-08-02 16:29:51 -04:00
.clang-format Initial commit: MLX90632 Far Infrared Temperature Sensor library 2025-07-18 19:25:34 -04:00
.gitignore Initial commit: MLX90632 Far Infrared Temperature Sensor library 2025-07-18 19:25:34 -04:00
Adafruit_MLX90632.cpp Initialize i2c_dev to nullptr in constructor 2025-08-22 12:30:28 +01:00
Adafruit_MLX90632.h Update license to MIT and add proper attribution 2025-08-03 12:51:32 -04:00
library.properties Bump version to 1.0.2 in library.properties 2025-08-22 21:44:39 +01:00
LICENSE Update license to MIT and add proper attribution 2025-08-03 12:51:32 -04:00
README.md Update license to MIT and add proper attribution 2025-08-03 12:51:32 -04:00

Adafruit MLX90632 Build Status

Arduino library for the MLX90632 Far Infrared Temperature Sensor

This library provides a complete interface for the MLX90632 Far Infrared Temperature Sensor, supporting both medical and extended range measurement modes with automatic calibration loading and comprehensive temperature calculations using the Stefan-Boltzmann law.

Features

  • Complete MLX90632 register control and status monitoring
  • Support for all measurement modes: Continuous, Step, and Sleeping Step
  • Automatic calibration constant loading from EEPROM
  • Both medical and extended range measurement support
  • Stefan-Boltzmann law temperature calculations for accurate object temperature
  • Double precision calibration with proper scaling factors
  • Efficient new data flag handling for optimal performance
  • Debug output control with preprocessor directives
  • Hardware tested and verified functionality

Dependencies

Contributing

Contributions are welcome! Please read our Code of Conduct before contributing to help this project stay welcoming.

Documentation and doxygen

Documentation is produced by doxygen. Contributions should include documentation for any new features.

Formatting and clang-format

This library uses clang-format to standardize the formatting of .cpp and .h files. Contributions should be formatted using clang-format:

The -i flag will make the changes to the file.

clang-format -i *.cpp *.h

If you prefer to make the changes yourself, running clang-format without the -i flag will print out a formatted version of the file. You can save this to a file and diff it against the original to see the changes.

Note that the formatting output by clang-format is what the automated formatting checker will expect. Any pull requests that don't conform to the formatting style will not pass the automated checks.

About this Driver

Written by Limor "Ladyada" Fried for Adafruit Industries with assistance from Claude Code.

MIT license, check LICENSE for more information. All text above must be included in any redistribution.