Home
About Us
Achievement
Home
Raspberry-Pi Projects
_Raspberry Pi 4 Complete Guide
Arduino Project
_All Projects
Esp8266 Project
_All Projects
Esp32 Project
_Automation-with-feedback
MLX90614 Non-Contact Infrared Thermometer With Arduino
Just Do Electronics
January 09, 2021
Circuit Diagram :-
Video :-
Code :-
//Prateek //www.prateeks.in #include
#include
#include
Adafruit_MLX90614 mlx = Adafruit_MLX90614(); //Define I2C address of lcd, number of columns and rows LiquidCrystal_I2C lcd(0x3F, 16, 2); double temp_amb; double temp_obj; void setup() { Serial.begin(9600); Serial.println("Temperature Sensor MLX90614"); //Initialize LCD I2C lcd.init(); lcd.backlight(); //Initialize MLX90614 mlx.begin(); } void loop() { temp_amb = mlx.readAmbientTempC(); temp_obj = mlx.readObjectTempC(); if(temp_obj > 37) { Serial.print("Warning...HIGH TEMP..."); lcd.clear(); lcd.print("HIGH TEMP..."); delay(50);} else{ } //lcd display lcd.setCursor(0, 0); lcd.print("Room Temp:"); lcd.setCursor(10, 0); lcd.print(temp_amb); lcd.setCursor(15, 0); lcd.write(1); lcd.setCursor(0, 1); lcd.print("Body Temp:"); lcd.setCursor(10, 1); lcd.print(temp_obj); lcd.setCursor(15, 1); lcd.write(1); //Serial Monitor Serial.print("Room Temp = "); Serial.println(temp_amb); Serial.print("Object temp = "); Serial.println(temp_obj); delay(1000); }
Contact Number
:-
+918830584864
2 Comments
LÃnea de Investigación EMI C & T
31 July 2021 at 17:51
Excelente página. Felicitaciones
Reply
Delete
Replies
Reply
mohanaprabhu
23 April 2022 at 01:57
This comment has been removed by the author.
Reply
Delete
Replies
Reply
Add comment
Load more...
Newer
Older
ESP32 Interfacing With LDR Sensor
Smart Street Light Using Arduino
Esp32 Cam Based Face Unlock
How to Make a Conveyor Belt System | Counter Machine
IoT Based Patient Health Monitoring System Using Blynk App
ESP32 And Fingerprint Sensor Based Biometric Door Lock Security System
IoT Based Fingerprint Biometric Attendance System Using NodeMCU (Esp8266)
How To Make RFID & Keypad Based Door Lock
ESP32 Led Blink With Push Button
IoT Weight Scale using Load Cell HX711 & ESP8266
YouTube
Like on Facebook
Follow on Twitter
Follow on Google+
Follow on Instagram
Subscribe on Youtube
Hi WelCome To My Website If you have a creative mind and want to learn Electronics even without studying it then FRIENDS this Website And Youtube Channel is for you, I am crazy creators who love making Electronics things. I have a bunch of more than 130 Tutorial Videos on My YouTube Channel and I upload a new Tutorial every Sunday.
Tags
Arduino Project
Esp32 Project
Esp8266 Project
2 Comments
Excelente página. Felicitaciones
ReplyDeleteThis comment has been removed by the author.
ReplyDelete