Posts

Showing posts from April, 2022

Sun Tracker Solar Panel - Circuit Diagram | Dual Axis Without Arduino | Harish Projects

Image
 Circuit Components List  1. TDA2822 IC 2x 2. 10k ohm Resistor 4x 3. 5mm LDR 4x 4. N20 Gear Motor 2x 5. N20 Wheel 6. Solar Panel  7. Zero PCB 8. Sunboard  9. 3.7v Small Battery  10. Charging Module 11. Tip Top Button Ordre all components from Here  Click here ЁЯСЙ  https://harishprojects.com/   …….. Circuit Diagram……….. ……….Watch full Detailed video………

Inspire Award Project | Smart Helmet Alcohol Detection for Drivers | Best science Project | Harish Projects

Image
  Watch Making video.... //Arduino Code// #define sensorDigital A0 #define Motor 9 #define buzzer 8 #define sensorAnalog A1 void setup() {   pinMode(sensorDigital, INPUT);     pinMode(Motor, OUTPUT);       pinMode(buzzer, OUTPUT);         Serial.begin(9600);         }         void loop() {           bool digital = digitalRead(sensorDigital);             int analog = analogRead(sensorAnalog);   Serial.print("Analog value : ");     Serial.print(analog);       Serial.print("t");         Serial.print("Digital value :");           Serial.println(digital);   if (digital == 0) {       digitalWrite(Motor, HIGH);           digitalWrite(buzzer, HIGH);             } else {                 digitalWrite(Motor, LOW);                     digitalWrite(buzzer, LOW);                       }                       } // Diagram 1....//   // Diagram 2...// Contact us for support. instagram -  https://www.instagram.com/harishchoudhary70/

Inspire Award Project | Automatic рдХрдкреЬो рдХो рдмाрд░िрд╢ рд╕े рдмрдЪाрдПрдЧा Best state level science Project | Harish Projects

Image
//Arduino code// #include <Servo.h> #include <Servo.h> Servo tap_servo; int sensor_pin = 4; int tap_servo_pin =5; int val; void setup(){   pinMode(sensor_pin,INPUT);   tap_servo.attach(tap_servo_pin);    } void loop(){   val = digitalRead(sensor_pin);   if (val==0)   {tap_servo.write(0);   }   if (val==1)   {tap_servo.write(180);     } } //Project Diagram// Contact us for support -  https://www.instagram.com/harishchoudhary70/

How to make Simple Programmable Robotic Arm using Arduino \ Harish Projects

Image
  COMPONENTS AND SUPPLIES Arduino UNO Can be any 5V Arduino board such as the mega × 1 Breadboard (generic) × 1 Jumper wires (generic) × 1 Rotary potentiometer (generic) × 3 SparkFun Pushbutton switch 12mm × 3 LED (generic) × 5 Resistor 221 ohm × 5 Capacitor 10 ┬╡F Optional; you don't need it if you don't have it × 1 Servos (Tower Pro MG996R) I recommend micro servos as they draw less power × 3 Resistor 10k ohm × 2 ABOUT THIS PROJECT About This is just a simple robot arm made out of readily available materials and instruments, such as micro servos, cardboard, and hot glue, designed for beginners. The code and circuit can be improved, so feel free to make changes and learn! Features It can record and play five positions using potentiometers and buttons. (But you can add as many as you want). Making video. //Arduino Code// //Code written by Ryan Chan; it is pretty inefficient, but gets the job done, I challenge you to make it more efficient! //*IMPORTANT CHANGES IN VERSION 2: LE