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
Infrared Body Temperature Monitoring System
Just Do Electronics
August 20, 2022
Circuit Diagram :-
Component List :-
1. MLX90614 Temperature Sensor
2. Arduino UNO
3. 16x2 LCD Display
4. 10k Potentiometer
5. Green Led
6. Buzzer
7. Red Led
8. Zero PCB
Code :-
//Prateek //wwww.prateeks.in //https://www.youtube.com/c/JustDoElectronics/videos #include
#include
#include
LiquidCrystal lcd(8, 9, 10, 11,12,13); const int red = 4; const int green = 6; const int buzzer = 5; Adafruit_MLX90614 mlx = Adafruit_MLX90614(); double temp_amb; double temp_obj; void setup() { Serial.begin(9600); Serial.println("Temperature Sensor MLX90614"); pinMode(buzzer, OUTPUT); pinMode(red, OUTPUT); pinMode(green, OUTPUT); digitalWrite(green, HIGH); digitalWrite(buzzer, LOW); digitalWrite(red, LOW); lcd.begin(16, 2); 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..."); digitalWrite(buzzer, HIGH); digitalWrite(red, HIGH); digitalWrite(green, LOW); 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); }
Video :-
0 Comments
Newer
Older
ESP32 Interfacing With LDR Sensor
Smart Street Light Using Arduino
IoT Based Patient Health Monitoring System Using Blynk App
Esp32 Cam Based Face Unlock
IoT Based Fingerprint Biometric Attendance System Using NodeMCU (Esp8266)
How to Make a Conveyor Belt System | Counter Machine
ESP32 And Fingerprint Sensor Based Biometric Door Lock Security System
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
0 Comments