DIY Group Project Report
DIY Group Project Report
by,
Gunigari Nihith (21EC10030) (Group Captain)
Rishabh Singla (21EC30042)
Ayush Kumar (21HS10017)
Sambit Stita Siri Sai Pradhan (21IM10029)
Kunal Vitthal Waghmare (21GG20001)
February, 2022
Abstract
Aim: To make Automatic Water Dispenser and Hand Dryer which is used to
reduce contact between people and reduce passage of dangerous Viruses and
Bacteria.
Results:
ii
Contents
Acknowledgements v
1
1 Motivation....................…………..……………………………………. 1
2 Your model 2
3 Conclusions 3
References 5
iii
Acknowledgements
We would also like to thank all the TAs for their support
and help by the virtue of which this project has been
successfully completed,
iv
Chapter 1
Introduction
In this project we as a team made a Automatic water Dispenser and a Hand Dryer,
which is used to wash hands without making contact with them and hand dryer is
used to dry our hands after washing them.
1.Motivation
The motivation for this work is as we can see the deadly effects of Covid pandemic
around the globe, we need to take more steps to stop this dangerous virus, so we
v
Chapter 2
Things we used:
Software:
Hardware:
vi
➢ Water Can : It is used to store water in it.
vii
➢ Breadboard and Jump wires: We used a breadboard
and jump wires to connect the arduino to other
components of the project.
➢ Fan for hand dryer:We used a CPU fan to make the hand
dryer
viii
➢ NPN Transsistor and Diode: We used a NPN transistor
and a diode to control the movement of fan
Circuit
Diagram:
Arduino Uno
DC
Motor
Servomotor
NPN
Transistor
Breadboard
Ultrasonic Sensors
ix
Flow Chart of working of Project :
Start
Recognition of Recognition of
hands by sensors hands by sensors
near tap near hand dryer
Rotation of
Servomotor Rotation of Fan
with help of
NPN transistor
x
Code used for simulation of the Circuit
#include <Servo.h>
Servo myservo;
void setup() {
Serial.begin(9600);
myservo.attach(13);
pinMode (echopin,INPUT);
pinMode (trigpin,OUTPUT);
pinMode (echopin2,INPUT);
pinMode (trigpin2,OUTPUT);
pinMode (transistor,OUTPUT);
}
void loop() {
digitalWrite(trigpin, LOW);
delayMicroseconds(2);
digitalWrite(trigpin,HIGH);
delayMicroseconds(10);
digitalWrite (trigpin, LOW);
distance= duration*0.034/2;
Serial.println(distance);
digitalWrite(trigpin2, LOW);
delayMicroseconds(2);
digitalWrite(trigpin2,HIGH);
delayMicroseconds(10);
digitalWrite (trigpin2, LOW);
distance2= duration2*0.034/2;
if(distance2<5)
{
digitalWrite(transistor, HIGH);
Serial.println("Motor On");
Serial.println(distance2);
}
else
{
digitalWrite(transistor, LOW);
Serial.println("Motor off");
Serial.println(distance2);
}
xii
➢ Chapter 3
Finally, we conclude our work and present the results of project work.
This is the photo of Automatic Water Dispenser. It works well, you can clearly see
the sensors placed beneath the tap. And the servo motor is connected to handle of tap
so that it can rotate the handle.
xiii
Here, This is Automatic Hand Dryer. Here We can see the sensors are placed below
the fan. So, when we place the hand near the fan we will feel a warm breeze which
will dry our hands.
xiv
Conclusion
xv
References
xvii