Industrial manufacturing
Industrial Internet of Things | Industrial materials | Equipment Maintenance and Repair | Industrial programming |
home  MfgRobots >> Industrial manufacturing >  >> Manufacturing Technology >> Manufacturing process

Contactless Temperature Monitoring Gate for Rapid, Accurate Screening

Components and supplies

Contactless Temperature Monitoring Gate for Rapid, Accurate Screening
Arduino MKR1000
×1
DfRobot Non-contact IR Temperature Sensor
×1
Contactless Temperature Monitoring Gate for Rapid, Accurate Screening
SG90 Micro-servo motor
×1
Contactless Temperature Monitoring Gate for Rapid, Accurate Screening
Jumper wires (generic)
×1

Necessary tools and machines

Contactless Temperature Monitoring Gate for Rapid, Accurate Screening
Hot glue gun (generic)
Contactless Temperature Monitoring Gate for Rapid, Accurate Screening
Soldering iron (generic)

Apps and online services

Contactless Temperature Monitoring Gate for Rapid, Accurate Screening
Arduino IDE
Contactless Temperature Monitoring Gate for Rapid, Accurate Screening
Microsoft Visual Studio Code Extension for Arduino

About this project

We have presented a automated temperature scanning gate for monitoring the temperature of human when they passed trough the gate. if temperature of a person is more than 99 degree Fahrenheit then the gate automatically rejects the entry (by closing it). The gate also provides warning beeps if the temperature is high.

Contactless Temperature Monitoring Gate for Rapid, Accurate Screening

Description

The main objective of the system (temperature scanning gate) is to monitor the human body temperature when a they passed through the gate. In normal situation the gate is always open. If the gate senses any high temperature (more than 99.0 degree Fahrenheit), the gates automatically rejects the entry by closing the gate. The gate also provides warning beeps while the body temperature of a person is high.

Our world is effected by covid-19. Some health measurements are needed for preventing the covid-19 spreads. One of the early symptoms of covid-19 is high body temperature or fever. Our temperature monitoring gates able to detects high body temperature.

This temperature screening gate is useful for bus stops, hospitals, restaurants, airports, grocery stores and shopping malls etc. The implementation cost of this gate is also cheap (compare with heat camera). Thermal cameras are also used to monitor the temperature.

Contactless Temperature Monitoring Gate for Rapid, Accurate Screening
Contactless Temperature Monitoring Gate for Rapid, Accurate Screening
Contactless Temperature Monitoring Gate for Rapid, Accurate Screening
Contactless Temperature Monitoring Gate for Rapid, Accurate Screening

Bill of materials

  • IR temperature sensor
  • Sever motor
  • micro-controller (Arduino MKR1000)
  • PVC sheets/boards
  • jumper wires
  • Cutter knife
  • Glues

We made the prototype gate using PVC sheets. We have installed a temperature sensor in the middle position at the top of the gate. The micro-controller and warning buzzer were placed next to the gate. The opening and blocking operation of the gate is performed by a servo motor.

Circuit Diagram

Contactless Temperature Monitoring Gate for Rapid, Accurate Screening

DEMO

Conclusion

An automatic temperature scanning gate is presented. This scanning gate is useful for checking human body temperature.

Code

  • source
sourceArduino
#include <Wire.h>
#include <Adafruit_MLX90614.h>
#include <Servo.h> 

Servo myservo;

Adafruit_MLX90614 mlx = Adafruit_MLX90614();

double temp;
int b = 2;
void setup() {
  Serial.begin(115200);
  Serial.println("Adafruit MLX90614 test");
  pinMode(b, OUTPUT);
  myservo.attach(5);  // Arduino MKR PIN
  myservo.write(0);
  mlx.begin();  
}

void loop() {
  digitalWrite(b, HIGH);
  myservo.write(0);
  temp = mlx.readObjectTempF();
  if (temp >90)
  {
    Serial.println("HIGH TEMPERATURE");
    digitalWrite(b, LOW);
    myservo.write(95);

    delay(1000);
    }
  Serial.print(temp); 
  Serial.println("*F");
  Serial.println();

  delay(500);
}

Schematics

Contactless Temperature Monitoring Gate for Rapid, Accurate Screening

Manufacturing process

  1. Arduino Temperature & Humidity Logger Using DHT11 and Ethernet Shield
  2. Find Me: Smart Item Locator with Arduino and Bluetooth
  3. Build a Custom Arduino Joystick Steering Wheel for Gaming
  4. Smart Temperature Monitoring System for Schools: Accurate, Real‑Time, and Secure
  5. Precision Temperature‑Controlled Charcoal Smoker Kit – Build Your Own BBQ Masterpiece
  6. Smartphone-Based Temperature Monitoring System with Arduino and Bluetooth
  7. Bolt IoT: Advanced Humidity & Temperature Monitoring with DHT11 and Arduino
  8. PhoneLocator: Securely Locate Your Phone Anywhere
  9. Hysteresis-Based Arduino Temperature Control System
  10. Real‑Time Environmental Monitoring with Arduino MKR1000 & Environment Click Sensors