Wish List 0

Mlx90615 Infrared Thermometer

Rs. 617.00 Rs. 710.00

TThe Melexis' MLX90615-SSG-DAA-000-TU  is an Medical Grade Infrared thermometer for non contact temperature measurements. Both the IR sensitive thermopile detector chip and the signal conditioning chip are integrated in the same TO-46 can package.

Thanks to its low noise amplifier, 16-bit ADC and powerful DSP unit, a high accuracy and resolution of the thermometer is achieved. The thermometer is factory calibrated with the digital SMBus compatible interface enabled. Readout resolution is 0.02°C.

The MLX90615 is built from 2 chips, the Infra Red thermopile detector and the signal conditioning chip MLX90325, specially designed by Melexis to process the output of IR sensor.

The device is available in an industry standard TO-46 package.  Melexis is able to deliver a high accuracy and high resolution infrared thermometer.

The calculated object and ambient temperatures are available in the RAM memory of the MLX90325 with a resolution of 0.02˚C.

The values are accessible by 2 wire serial SMBus compatible protocol with a resolution of 0.02°C or via a 10-bit PWM (Pulse Width Modulated) signal from the device.

The MLX90615 is factory calibrated in standard temperature ranges from: -40...85˚C for the ambient temperature and from -40...115˚C for the object temperature. As a standard, the MLX90615 is delivered with a programmed object emissivity of 1.

It can be easily customized by the customer for any other emissivity in the range 0.1...1.0 without the need of recalibration with a black body.

The MLX90615 can be battery powered. An optical filter (5.5µm …14µm long-wave pass) that cuts off the visible and near infra-red radiant flux is integrated in the package to make the sensor insensitive to visible light. 


SPECIFICATIONS:

-Small size, low cost

-Easy to integrate

-Factory calibrated in wide temperature range:

-40…85˚C for sensor temperature and

-40…115˚C for object temperature

-High accuracy up to 0.2°C over wide temperature range (0...+50°C for both TA and TO )

-High (medical) accuracy calibration

-Measurement resolution of 0.02°C

-SMBus(I2C) compatible digital interface

-Power saving mode

-Customizable PWM output for continuous reading

-Embedded emissivity compensation

-3V supply voltage 

OVERVIEW:

-Factory calibrated in wide temperature range: -20 to 85°C for sensor temperature and -40 to 115°C for object temperature

-High accuracy of 0.5°C over wide temperature range (0..+50 C for both Ta and To)

-Medical accuracy of 0.2°C in a limited temperature range

-Measurement resolution of 0.02°C

-SMBus compatible digital interface for fast temperature readings and building sensor networks

-Customizable PWM output for continuous reading

-3V supply voltage with power saving mode

PACKAGE INCLUDES:

1 PCS x Mlx90615 Infrared Thermometer


//SOURCE CODE TAKEN FORM BELOW LINK

//http://www.esp8266learning.com/mlx90615-infrared-thermometer-and-esp8266-example.php

#include <Wire.h>

#include <mlx90615.h>

MLX90615 mlx = MLX90615();

void setup() {

Serial.begin(9600);

Serial.println("Melexis MLX90615 infra-red temperature sensor test");

mlx.begin();

Serial.print("Sensor ID number = ");

Serial.println(mlx.get_id(), HEX);

}

void loop() {

Serial.print("Ambient = ");

Serial.print(mlx.get_ambient_temp());

Serial.print(" *C\tObject = ");

Serial.print(mlx.get_object_temp());

Serial.println(" *C");

Serial.println();

delay(500);

}

15 days 

Write a review

Please login or register to review