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………

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


                                           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.println(val);// output and display the analog value

 if(val>=500)// when the analog value is larger than 600, the buzzer will buzz

 {

 digitalWrite(Beep,HIGH);

 digitalWrite(relay,HIGH);

 }else

 {

 digitalWrite(Beep,LOW);

 digitalWrite(relay,LOW);

 }

 delay(500);

}




                                                            ...........Project Diagram...........





Comments

12hello said…
BRO PCB DESIGN????????????????????????
Unknown said…
Bro please
Reply
My project works ulta
Unknown said…
Code kya hai bhai

Popular posts from this blog

Smart Bridge - Automatic Hight increase when flooding | Best science Project

Inspire Award Project | Train accident Prevention project | Best science Project / Harish Projects

How to make Wifi Talking robot with arduino codes and Diagram best science project