Posts

Showing posts from July, 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 (distance <20 && distance>1) {   delay(1000); for(int i

Inspire Award Project | Avoid Flooding बाढ़ से बचने के लिए Project | Best science Project 2022 | Harish Projects

Image
 About This Project:-  Hello Guys. main hu Harish Choudhary. aaj ke is video me maine ek बाढ़ से बचने के लिए एक Project banaya hai आजकल rainy season होने के वजह से कई जगह पर बाढ़ आ रही हैं। जैसे - असम, उत्तराखंड, बिहार और भी बहुत सी जगहें हैं। ये project बाढ़ से बचने के लिए हैं। , 10th, 11th &12th class ke students ke liye hai. is video ko aap complete watch krna kyuki maine is video me full detailed bataya hua hai, making connection, working etc. //A rduino Code:- // Circuits DIY // For Complete Details Visit -> YouTube - HARISH PROJECTS int rainPin = A0; int greenLED = 6; int redLED = 7; // you can adjust the threshold value int thresholdValue = 800; void setup(){ pinMode(rainPin, INPUT); pinMode(greenLED, OUTPUT); pinMode(redLED, OUTPUT); digitalWrite(greenLED, HIGH); digitalWrite(redLED, HIGH); Serial.begin(9600); } void loop() { // read the input on analog pin 0: int sensorValue = analogRead(rainPin); Serial.print(sensorValue); if(sensorValue <

Inspire Award Project | All in one Budget Project | Best science Project 2022 | Harish Projects

Image
 Watch full making video -  https://youtu.be/LXDAe6HZ3Dk Inspire Award Project | All in one Budget Project | Best science Project 2022 | Harish Projects Harish Projects | inspire Award Project | College science Project | All catagory project Available Hello Guys. main hu Harish Choudhary. aaj ke is video me maine ek All in one science Project banaya hai l. , 10th, 11th &12th class ke students ke liye hai. is video ko aap complete watch krna kyuki maine is video me full detailed bataya hua hai, making connection, working etc. //Arduino Code// const int trigPin = 12 ; const int echoPin = 13 ; const int LED1 = A0 ; const int LED2 = A1 ; const int LED3 = A2 ; const int LED4 = A3 ; const int LED5 = A4 ; const int LED6 = A5 ; const int LED7 = 2 ; int duration = 0 ; int distance = 0 ; void setup () { pinMode ( trigPin , OUTPUT ); pinMode ( echoPin , INPUT ); pinMode ( LED1 , OUTPUT ); pinMode ( LED2 ,

Inspire Award Project | Laser Security Alarm | Best science Project 2022 | Harish Projects

Image
 Watch full Making video -  https://youtu.be/1EH_fxebXEU   Connection Diagram -  For support.  Contact us on instagram -  https://instagram.com/harishchoudhary70?igshid=YmMyMTA2M2Y=

How to make Humanoid Robot using esp8266 | Humanoid Robot 2022 | Harish Projects

Image
  I made Humanoid Robot in 5 Days | Humanoid Robot 2022 | Harish Projects Hello Guys. main hu Harish Choudhary. aaj ke is video me maine ek Humanoid Robot banaya hai , 10th, 11th &12th class ke students ke liye hai. is video ko aap complete watch krna kyuki maine is video me full detailed bataya hua hai, making connection, working etc. About this Video 1. About Project 2. Components 3. Model Making 4. Esp8266 Connection 5. Servo motor Connection 6. Connect to Phone 7. Working Test Thanks for watching Video Elements NodeMCU Code #define ENA 14 // Enable/speed motors Right GPIO14(D5) #define ENB 12 // Enable/speed motors Left GPIO12(D6) #define IN_1 15 // L298N in1 motors Right GPIO15(D8) #define IN_2 13 // L298N in2 motors Right GPIO13(D7) #define IN_3 2 // L298N in3 motors Left GPIO2(D4) #define IN_4 0 // L298N in4 motors Left GPIO0(D3) #include <ESP826