Wish List 0

Mlx90614Esf Bcc Contactless Temprature Digital Ir Sensor 3 5V I2C Compatible With Arduino

Rs. 988.00 Rs. 1,186.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



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 Mlx90614Esf Bcc Contactless Temprature Digital Ir Sensor 3 5V I2C Compatible With Arduino


//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