Posts

Showing posts from May, 2022

Wet & Dry Waste Smart Dustbin for House | Best science Project | Harish Projects

Image
 Watch Full Detailed video 👇🏻 Diagram in Video👆 //Arduino Code// //YouTube: Harish Projects //Order Electronic Parts & Project kit:  HarishProjects.com // #include <Servo.h> Servo servo1; const int trigPin = 12; const int echoPin = 11; long duration; int distance=0; int potPin = A0; //input pin int soil=0; int fsoil; void setup()  {   Serial.begin(9600); //Serial.print("Humidity"); pinMode(trigPin, OUTPUT);  pinMode(echoPin, INPUT);  servo1.attach(8); } void loop()  { //YouTube: Harish Projects //Order Electronic Parts & Project kit:  HarishProjects.com //      int soil=0;   for(int i=0;i<2;i++)   { digitalWrite(trigPin, LOW); delayMicroseconds(7); digitalWrite(trigPin, HIGH); delayMicroseconds(10); digitalWrite(trigPin, LOW); delayMicroseconds(10); duration = pulseIn(echoPin, HIGH); distance= duration*0.034/2+distance; delay(10);   }   distance=distance/2;   Serial.println(distance); if ...

Implementation steps of social distance by using Arduino board | Harish Projects

Image
  Social Distance Detector COMPONENTS AND SUPPLIES Arduino UNO × 1 5 mm LED: Red any Led colour can be used but I find red to be the most suitable × 1 Buzzer, Piezo × 1 SparkFun Solder-able Breadboard - Mini Any sized breadboard can be used but I just used mini × 1 Ultrasonic Sensor - HC-SR04 (Generic) ProjectDescription Today, social distancing has become a norm in any social interaction we have due to the increasing threat of the spread of Covid-19. There are many innovations that have been created to help combat and reduce the spread of the deadly disease, not just with other types of devices but using the power of Arduino as well. This can be seen in other projects across the website such as a Hand wash timer or an automatic hand sanitizer dispenser. This project created aims to help reduce the potential spread of the disease by utilizing an ultrasonic distance sensor. The sensor measures the distance between itself and the object in front of it, whether it be an object or a pe...

Inspire Award Project | Free energy Shoes "जूता" | Best science Project | Harish Projects

Image
  Project Diagram..