Unleashing the Power of the Sun: An Innovative Solar Panel Tracker Project
Now I'm sharing my project which I have done at a technical festival of my college and got the second position in the event of my college,
My project was a Solar Panel Tracker
and an LED String Lamp
both project I have done in November and at this time I am sharing them on the Stemgeeks platform,
No, I will tell a brief description of both projects,
Solar Panel Tracker
It was a high-intensity sensitive light project because its tracks the maximum intensity of light and moves the solar panel towards it.
That is the only reason the name of this project is solar panel tracker sun is the biggest energy source in whole the world nothing exists till now the maximum energy source compared with the sun so Max of the energy is wasted in the form of heat and the form of light of the sun so the main motto of this project to consume maximum energy of sunlight and convert into electricity.
In previous times solar panels are placed in a fixed position that is the rear panel cannot convert maximum energy during the day in the form of electricity.
About this Project
This project is working off a sensor which is LDR it's senses the maximum light option and moved towards the sun the whole day on the face of solar panels so it can get the maximum intensity of light and it can convert maximum energy into the form of electrical energy
Components Used in this Project
- Servo Motor
- LDR (Light Dependent Resistor)
- Resistor
- Arduino Uno Board
- Jumping Wire
- Bread Board
- PCB (Printed Circuit Board)
Arduino Uno Board
Servo Motor
LDR (Light Dependent Resistor)
Software Used in this Project
Other Components
And we are using a jumper wire to connect the circuit servo Motor and Arduino and to plot everything on a board we are using a printed circuit board which is also called PCB and to control the current where using some registered across the LDR to understand and making a rough circuit we are using a breadboard.
Circuit Diagram
Program of this Project.
//Include the servo motor library
#include <Servo.h>
//Define the LDR sensor pins
#define LDR1 A0
#define LDR2 A1
//Define the error value. You can change it as you like
#define error 10
//Starting point of the servo motor
int Spoint = 90;
//Create an object for the servo motor
Servo servo;
void setup() {
//Include servo motor PWM pin
servo.attach(11);
//Set the starting point of the servo
servo.write(Spoint);
delay(1000);
}
void loop() {
//Get the LDR sensor value
int ldr1 = analogRead(LDR1);
//Get the LDR sensor value
int ldr2 = analogRead(LDR2);
//Get the difference of these values
int value1 = abs(ldr1 - ldr2);
int value2 = abs(ldr2 - ldr1);
//Check these values using a IF condition
if ((value1 <= error) || (value2 <= error)) {
} else {
if (ldr1 > ldr2) {
Spoint = --Spoint;
}
if (ldr1 < ldr2) {
Spoint = ++Spoint;
}
}
//Write values on the servo motor
servo.write(Spoint);
delay(80);
}
Conclusion
At first, we have lots of difficulties making it because I I don't know how to do this project but by searching on Google and reading lots of articles and we are successful to make it and finally, we got a second ranking in the event of our college to organize every year technical event which students are participating and learning a lot it was also my first time to learn this type of thing we are working on this project about a week and got it to build some project like this we did two projects but I am posting only one project another one I will post in my upcoming article.
Thanking all of you.
Posted with STEMGeeks
Looking forward to your updates.
!discovery 29
Sure
This post was shared and voted inside the discord by the curators team of discovery-it
Join our Community and follow our Curation Trail
Discovery-it is also a Witness, vote for us here
Delegate to us for passive income. Check our 80% fee-back Program
Thanks for your contribution to the STEMsocial community. Feel free to join us on discord to get to know the rest of us!
Please consider delegating to the @stemsocial account (85% of the curation rewards are returned).
You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support.
Congratulations @waverunner! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s)
Your next target is to reach 5000 upvotes.
You can view your badges on your board and compare yourself to others in the Ranking
If you no longer want to receive notifications, reply to this comment with the word
STOP
Check out our last posts: