Jesus Soriano
Published © GPL3+

DesVapourFect | Automation of Patients Desinfection System

In times of Coronavirus, Dental clinics must have the best tools to protect. DesVapourFect helps dentists to desinfect their patients easily

IntermediateFull instructions provided6 hours1,343
DesVapourFect | Automation of Patients Desinfection System

Things used in this project

Hardware components

Arduino Nano 33 IoT
Arduino Nano 33 IoT
×1
SG90 Micro-servo motor
SG90 Micro-servo motor
×1
Ultrasonic Sensor - HC-SR04 (Generic)
Ultrasonic Sensor - HC-SR04 (Generic)
×1
Water Pump
×1
Vapour Machine
×1
K´NEX
×1
6600mA 5V 1A PowerBank
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Custom parts and enclosures

DesVapourFect Knex Structure

Schematics

Arduino Diagram Connections

Servo and Ultrasonic Sensor

Proteus DesVapourFect Simulation

Code

DesVapourFect Code

Arduino
Simple Arduino ultra sonic and servo code
// DesVapourFect Code. By Jesús Soriano Adam

#include <Servo.h>  //Servo Library
Servo myservo;
int t;

void setup () 
{
  myservo.attach(12); //Servo PIN
  myservo.write(80);  //Specify how many degrees do you need for start
  
  pinMode(11, OUTPUT); 
  pinMode(10, INPUT);     //Ultrasound Configuration
  digitalWrite(11, LOW);
  
}

void loop ()
{
  digitalWrite(11, HIGH);				//Ultrasound input
  delayMicroseconds(10);          //We send a 10 ms pulse
  digitalWrite(11, LOW);

  t = pulseIn(10, HIGH)/59;  // Cm conversion
  delay(500);
  
  if (t<100)          //If we detect a patient
  {
    myservo.write(130);  //We turn on the heater
    delay(30000);       //We wait for desinfection
    myservo.write(80);   //Turn off the heater
    delay(5000);
  }
  
}

Credits

Jesus Soriano

Jesus Soriano

3 projects • 11 followers

Comments