Shashwat Raj
Published © GPL3+

Automatic Handwash Dispenser

This is automatic handwash dispenser. In this pandemic condition, it is very important to wash hand safely. Thats why I design this project.

BeginnerFull instructions provided3,538
Automatic Handwash Dispenser

Things used in this project

Hardware components

Arduino Nano R3
Arduino Nano R3
×1
Relay Module (Generic)
×1
Hook Up Wire Kit, 22 AWG
Hook Up Wire Kit, 22 AWG
×1
9V battery (generic)
9V battery (generic)
×1
9V Battery Clip
9V Battery Clip
×1
Li-Ion Battery 1000mAh
Li-Ion Battery 1000mAh
×1
Cable Tie, Belt Ty™ In Line
Cable Tie, Belt Ty™ In Line
×1
Slide Switch
Slide Switch
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Wire Stripper & Cutter, 18-10 AWG / 0.75-4mm² Capacity Wires
Wire Stripper & Cutter, 18-10 AWG / 0.75-4mm² Capacity Wires
Hot glue gun (generic)
Hot glue gun (generic)
Soldering iron (generic)
Soldering iron (generic)
Solder Wire, Lead Free
Solder Wire, Lead Free
PCB Holder, Soldering Iron
PCB Holder, Soldering Iron
PCB, For DMB-4775
PCB, For DMB-4775

Story

Read more

Schematics

Circuit Diagram

This is circuit diagram of this project

Code

Ardujno Code

Arduino
This is source code for this project
void setup(){
pinMode(2,INPUT);
pinMode(3,OUTPUT);
}
void loop(){
if(digitalRead(2)== 1){
digitalWrite(3,HIGH);
}
else{
digitalWrite(3,LOW);
}
delay(500);
}

Credits

Shashwat Raj
7 projects • 12 followers
My name is Shashwat Raj. I love doing projects with arduino and Raspberry Pi. You want to view more please subscribe to my YouTube Channel.

Comments