Wish List 0

Infrared Temperature Sensor Gy 906 Mlx90614

Rs. 590.00 Rs. 679.00

-The MLX90614 ESF is an Infra-Red thermometer for non-contact temperature measurements. 
-Both the IR sensitive thermopile detector chip and the signal conditioning ASIC are integrated into the same TO-39 can.
-The Integrated MLX90614 GY-906 is a low noise amplifier, 17-bit ADC, and powerful DSP unit thus achieving high accuracy and resolution of the thermometer.
-The user can configure the digital output to be PWM. As a standard, the 10-bit PWM is configured to continuously transmit the measured temperature in the range of -20 to 120 °C, with an output resolution of 0.14 °C.

Application:
-High precision non-contact temperature measurements
-Thermal Comfort sensor for Mobile Air Conditioning control system
-The temperature sensing element for residential, commercial and industrial building air conditioning Windshield defogging
-The automotive blind angle detection
-Industrial temperature control of moving parts
-Temperature control in printers and copiers
-Home appliances with temperature control
-Healthcare
-Livestock monitoring
-Movement detection
-Multiple zone temperature control – up to 127 sensors can be read via common 2 wires
-Thermal relay/alert
-Body temperature measurement

Features:
-Works from 3.3V to 5V input, Module has power regulator IC built-in.
-Standard I2C interface with built 2x pull up resistors
-When measuring the temperature, please maintain a measuring distance of 1 cm
-Small size, low cost
-Easy to integrate
-Factory calibrated in a wide temperature range: -40 to 125 °C for sensor temperature and -70 to 380 °C for object temperature.
-High accuracy of 0.5°C over the wide temperature range (0..+50 C for both Ta and To)
-Medical accuracy of 0.1°C in a limited temperature range available on request
-The measurement resolution of 0.01°C
-SMBus compatible digital interface for fast temperature readings and building sensor networks
-Customizable PWM output for continuous reading
-Simple adaptation for 8 to 16V applications
SPECIFICATIONS:
Operating Voltage(V)                    03-May
Operating Current(mA)                   2
Communication protocol                  I2C
Sensor working temperature( Degree C)   -40 to +125
Sensing temperature range(Degree C)     -70 to +380
PCB dimensions(mm)                      11 x 17
Weight(g)                               1
Shipment Weight                         0.02 kg
Shipment Dimensions                     8 × 6 × 2 cm

OVERVIEW:

-Operating Voltage(V): 3- 5

-Operating Current(mA): 2

-Communication protocol: I2C

-Power saving mode

-Automotive grad

-Small size, low cost

PACKAGE INCLUDES:

1 PCS x Infrared Temperature Sensor Gy 906 Mlx90614


//SOURCE CODE TKEN FROM BELOW LINK

//https://create.arduino.cc/projecthub/SurtrTech/contactless-temperature-sensor-mlx90614-1e7bc7

/* This code works with MLX90614 (GY906) and LCD ic screen

 * It measures both ambient and object temperature in Celsius and display it on the screen

 * Please visit www.surtrtech.com for more details

 */


#include <LiquidCrystal_I2C.h>

#include <Wire.h>

#include <Adafruit_MLX90614.h>


#define I2C_ADDR 0x27 //I2C adress, you should use the code to scan the adress first (0x27) here

#define BACKLIGHT_PIN 3 // Declaring LCD Pins

#define En_pin 2

#define Rw_pin 1

#define Rs_pin 0

#define D4_pin 4

#define D5_pin 5

#define D6_pin 6

#define D7_pin 7


LiquidCrystal_I2C lcd(I2C_ADDR,En_pin,Rw_pin,Rs_pin,D4_pin,D5_pin,D6_pin,D7_pin);

Adafruit_MLX90614 mlx = Adafruit_MLX90614();


void setup() {

  

  mlx.begin();

  lcd.begin (16,2);

  lcd.setBacklightPin(BACKLIGHT_PIN,POSITIVE);

  lcd.setBacklight(HIGH); //Lighting backlight

  lcd.home ();


}


void loop() {

 lcd.setCursor(0,0);

 lcd.print("Ambient ");

 lcd.print(mlx.readAmbientTempC());

 lcd.print(" C");

 

 lcd.setCursor(0,1);

 lcd.print("Target  ");

 lcd.print(mlx.readObjectTempC());

 lcd.print(" C");


 delay(1000);


}

15 days

Write a review

Please login or register to review