Jashwanth Valurouthu
Created May 2, 2020

Low Cost Contact less doorbell

This doorbell can use by people without touching it. So the chances for Coronavirus stay there is zero & no risk of further infection.

BeginnerFull instructions provided18 minutes38
Low Cost Contact less doorbell

Things used in this project

Hardware components

Arduino Nano R3
Arduino Nano R3
Any microcontroller or microprocessor can be used but in here the code for Arduino is only given.
×1
Infrared IR Proximity Sensor
×1
Buzzer
Buzzer
×1
9V battery (generic)
9V battery (generic)
×1
Jumper wires (generic)
Jumper wires (generic)
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

3D Printer (generic)
3D Printer (generic)
Soldering iron (generic)
Soldering iron (generic)

Story

Read more

Schematics

Circuit Diagram

Code

Code

C/C++
{
void setup(){
pinMode(2,INPUT);
pinMode(13,OUTPUT);
}

void loop(){
if(digitalRead(2)==HIGH){
digitalWrite(13,HIGH);
}
else{
digitalWrite(13,LOW);
}
}

Credits

Jashwanth Valurouthu

Jashwanth Valurouthu

8 projects • 1 follower

Comments