Akshay Joseph
Published © GPL3+

COVID - 19 Non Contact Thermometer

We can measure body temperature without contact with this device.

BeginnerFull instructions provided61,040
COVID - 19 Non Contact Thermometer

Things used in this project

Hardware components

MLX90614
×1
Arduino Nano R3
Arduino Nano R3
×1
Female/Female Jumper Wires
Female/Female Jumper Wires
×1
OTG Adapter
×1
USB Mini to USBMicro Cable
×1
Android device
Android device
×1

Software apps and online services

Arduino IDE
Arduino IDE
Serial Monitor Android app

Story

Read more

Schematics

Non-contact thermometer.png

Code

Non-contact Thermometer

Arduino
//Sketch created by Akshay Joseph
#include <Wire.h>
#include <Adafruit_MLX90614.h>
Adafruit_MLX90614 mlx = Adafruit_MLX90614();
void setup() {
  Serial.begin(9600);  
  mlx.begin();  
}
void loop() {
 
Serial.print("Temperature : ");
Serial.print(mlx.readObjectTempC()); 
Serial.println(" Celsius");
 
Serial.print("Temperature : "); 
Serial.print(mlx.readObjectTempF());
Serial.println(" Fahrenheit");

Serial.println();
delay(500);
}

Credits

Akshay Joseph
25 projects • 157 followers
B.Sc. Electronics Student at Govt. College Tanur

Comments