Social Distancing Reminder

August 23, 2021

Social Distancing Reminder

August 23, 2021

Created By

Rishabh Jha

I am Rishab. I’m a student of 10th class. I love spending my time in making new and optimized programs in Robotics. I love playing Badminton and I love to study Mathematics, Chemistry & Physics. My dream is to excel in Robotics and help my country improve in Bionic Engineering.

About This Project

https://drive.google.com/file/d/1hOoOQ9lyPxblGcBaxsr9-aZIsq9Z5J-w/view?usp=sharing


Hello everyone, this is my first project on Arduino Project Hub.


My name is Krishna Srikanth, I am 9 years old. I am a student of MECHATRON ROBOTICS, New Delhi. I have completed a full fledged course on Arduino and electronics in just 2 months. I have always desired to become a scientist in ISRO, Perhaps i’m also taking these small steps at an early age.


In these tough times of COVID-19 Virus, I have made this super easy project Social Distancing Reminder which will help you maintain a distance of 1 metre with another person. This virus spreads rapidly with physical contact and air transmission upto 1 metre. This piezo electric buzzer will create a sound whenever the other person comes as close as 1 metre.


Looking forward to contribute more to this world by more innovative ideas.


Thanks!!


Stay Safe and Happy !

Components Required

  • Arduino UNO
  • Ultrasonic Sensor
  • SG90 Micro-Servo Motor
  • Buzzer
  • Jumper Wires
  • 9V 1A switching Wall Supply

Schematics

In this image all the components with the connections are given

Code Of Project

  int 
pingPin = 
 9 
 ; 
 int 
buzzer = 
 11 
 ; 
 void 
 setup 
 ( 
 ) 
 { 
 Serial 
 . 
 begin 
 ( 
 9600 
 ) 
 ; 
 pinMode 
 ( 
buzzer , 
 OUTPUT 
 ) 
 ; 
 } 
 void 
 loop 
 ( 
 ) 
 { 
 long 
duration , 
cm ; 
 pinMode 
 ( 
pingPin , 
 OUTPUT 
 ) 
 ; 
 digitalWrite 
 ( 
pingPin , 
 LOW 
 ) 
 ; 
 delayMicroseconds 
 ( 
 2 
 ) 
 ; 
 digitalWrite 
 ( 
pingPin , 
 HIGH 
 ) 
 ; 
 delayMicroseconds 
 ( 
 5 
 ) 
 ; 
 digitalWrite 
 ( 
pingPin , 
 LOW 
 ) 
 ; 
 pinMode 
 ( 
pingPin , 
 INPUT 
 ) 
 ; 
duration = 
 pulseIn 
 ( 
pingPin , 
 HIGH 
 ) 
 ; 
cm = 
 microsecondsToCentimeters 
 ( 
duration ) 
 ; 
 Serial 
 . 
 print 
 ( 
 "Distance: " 
 ) 
 ; 
 Serial 
 . 
 print 
 ( 
cm ) 
 ; 
 Serial 
 . 
 print 
 ( 
 "cm" 
 ) 
 ; 
 Serial 
 . 
 println 
 ( 
 ) 
 ; 
 if 
 ( 
cm < 
 100 
 ) 
 { 
 digitalWrite 
 ( 
buzzer , 
 HIGH 
 ) 
 ; 
 } 
 else 
 { 
 digitalWrite 
 ( 
buzzer , 
 LOW 
 ) 
 ; 
 } 
 delay 
 ( 
 100 
 ) 
 ; 
 } 
 long 
 microsecondsToCentimeters 
 ( 
 long 
microseconds ) 
 { 
 return 
microseconds / 
 29 
 / 
 2 
 ; 
 } 
  
 
A person is using a laptop computer next to a robot.
By Siddhartha Kumar January 5, 2022
Robotics: Blessing and Curse? Robots have improved healthcare , surveillance, delivery of goods (drones), spacecraft, travel, logistics, etc.
A man is wearing a virtual reality headset and touching a screen.
By Tahreem Jamadar December 28, 2021
Is it time for 3D Printing to Adopt Blockchain Technology? Research has already shown 3D printing has a growing need for cybersecurity.
A group of children are sitting at a table making a robot.
By Dr. Heath Kirby-Miller December 25, 2021
Why STEM Education in Australia The Australian industries to be benefited from STEM include advanced information and communication technology
A red rc truck is sitting on top of a remote control.
December 12, 2021
Arduino IR remote controlled Car The project is arduino based project. the Links pf the projects are given below
A laptop computer is on a tripod on a table.
November 30, 2021
Animation Studios Mechatron Robotics project uses an Arduino uno R3 a LCD and push buttons. It is based on the concept of arduino and LCD
A young boy wearing headphones is using a laptop computer.
By Kiran Gupta November 30, 2021
Machine Learning for Disables can help those disabled people to improve their lives. With the marvel of machine learning doctors
A man wearing a virtual reality headset is working on a robotic arm.
By Kiran Gupta November 7, 2021
What are the Consequences of Not Embracing Robotics & AI? We won’t be able to go ahead as these are the next big things.
A person is holding a remote control in a living room.
November 4, 2021
Home Automation System is made because today's light bulbs tend to heat and this can cause blast in the house.
A close up of a bottle of vaccine with a virus in the background.
By Rajesh Sharma November 1, 2021
Robotics and the Pandemic 2020. This is where Robotics can come in, robots can help reduce the human contact.
A person is playing with a robotic head on a table.
By Siddhartha Kumar November 1, 2021
Key Elements Most of the Schools are Missing. Everyone has different criteria but one key element remains the same:” The quality of teaching
Show More
A person is using a laptop computer next to a robot.
By Siddhartha Kumar January 5, 2022
Robotics: Blessing and Curse? Robots have improved healthcare , surveillance, delivery of goods (drones), spacecraft, travel, logistics, etc.
A man is wearing a virtual reality headset and touching a screen.
By Tahreem Jamadar December 28, 2021
Is it time for 3D Printing to Adopt Blockchain Technology? Research has already shown 3D printing has a growing need for cybersecurity.
A group of children are sitting at a table making a robot.
By Dr. Heath Kirby-Miller December 25, 2021
Why STEM Education in Australia The Australian industries to be benefited from STEM include advanced information and communication technology
A red rc truck is sitting on top of a remote control.
December 12, 2021
Arduino IR remote controlled Car The project is arduino based project. the Links pf the projects are given below
A laptop computer is on a tripod on a table.
November 30, 2021
Animation Studios Mechatron Robotics project uses an Arduino uno R3 a LCD and push buttons. It is based on the concept of arduino and LCD
A young boy wearing headphones is using a laptop computer.
By Kiran Gupta November 30, 2021
Machine Learning for Disables can help those disabled people to improve their lives. With the marvel of machine learning doctors
A man wearing a virtual reality headset is working on a robotic arm.
By Kiran Gupta November 7, 2021
What are the Consequences of Not Embracing Robotics & AI? We won’t be able to go ahead as these are the next big things.
A person is holding a remote control in a living room.
November 4, 2021
Home Automation System is made because today's light bulbs tend to heat and this can cause blast in the house.
A close up of a bottle of vaccine with a virus in the background.
By Rajesh Sharma November 1, 2021
Robotics and the Pandemic 2020. This is where Robotics can come in, robots can help reduce the human contact.
Show More