mlx90614
v0.1.7
Published
Driver for the MLX90614 Infrared Temperature Sensor
Downloads
18
Maintainers
Readme
MLX90614 sensor for node.js
A node.js module for working with the infrared temperature sensor via i2c. Ported from
This module was wirtten by prosperv, and you can check original code in: https://github.com/prosperv/mlx90614-driver. I just published to npm for easy installion. I also added i2c-bus dependency to package.json.
About the sensor
TThe MLX90614 is an infrared thermometer for non-contact temperature measurements. Both the IR sensitive thermopile detector chip and the signal conditioning ASIC are integrated in the same TO-39 can. Integrated into the MLX90614 are a low noise amplifier, 17-bit ADC and powerful DSP unit thus achieving high accuracy and resolution of the thermometer. Datasheet available via from melexis.
Install
$ npm install mlx90614
Raspberry PI
Enable i2c on your Pi if you haven't done already. To avoid having to run the i2c tools as root add the ‘pi’ user to the i2c group:
sudo adduser pi i2c
Usage
var MLX90614 = require('mlx90614-driver');
var sensor = new MLX90614();
function getTemp() {
var temp = sensor.readObject();
console.log(temp);
}
window.setInterval(getTemp, 1000);