Posts

Showing posts from February, 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………

River Cleaner Board Amazing Best science Project | low Budget Harish Projects

Image
  Making video Link        https://youtu.be/IdQ8P7u6zEM Diagram

Automatic fire extinguisher - for fire Prevention Best Project | inspire Award Project - Arduino Codes & Diagram / Harish Projects

Image
                                           YouTube video link -  https://youtu.be/B_FlEjyJwd4                                                                 ..........Arduino code............. int  flame = 0 ; // select analog pin 0 for the sensor int  Beep = 9 ; // select digital pin 9 for the buzzer int  val = 0 ; // initialize variable int  relay =   13 ;   /* The setup() function is called when a sketch starts. It is used to initialize variables, pin modes, start using libraries, etc. This function will only run once, after each power up or reset of the Arduino board. */   void  setup () {  pinMode ( Beep,OUTPUT ) ; // set buzzer pin as “output” pinMode ( relay,OUTPUT ) ; // set LED pin as “output” pinMode ( flame,INPUT ) ; // set flame pin as “input” Serial. begin ( 9600 ) ; // set baud rate at “9600” }   /* The loop() function executes the program repeatedly until Specified. */   void  loop () {  val = analogRead ( flame ) ; // read the analog value of the sensor  Serial. printl

Automatic watering - for Agriculture best science project for farmers / Harish Projects /Arduino Project

Image
                                        ...........................full Video Link is here............................                                                              https://youtu.be/G_p2B2-Ycv4                                           .............................Project Diagram............................                           ..........................................Arduino Code............................................. #include <Servo.h> // servo library Servo myservo; int m=0; int n=0; int pos = 0; void setup() { // put your setup code here, to run once: pinMode(A0, INPUT_PULLUP); // Soil Moisture Sensor 1 PIN A0 pinMode(A1, INPUT_PULLUP); // Soil Moisture Sensor 1 PIN A1 pinMode(8,OUTPUT); // Relay Module PIN D8 Serial.begin(9600); // Sensor Buart Rate myservo.attach(9); // Servo PIN D9 digitalWrite(8, HIGH);

Alcohol Detection Engine Locking for Drivers Best inspire Award Project | Harish Projects

Image
                                               ,,,,,,,,,,,,,,,,,,,,,,,,,,,, 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);                       }                       }

Wifi Engine start - Anti theft car To avoid thieves Best Project

Image