Showing posts with label Solar Tracker. Show all posts
Showing posts with label Solar Tracker. Show all posts

Sunday, March 27, 2016

Circuit Schematic Solar Tracking Solar Panel Based on ATMEGA8 Micro controller

Eltronicschool. - There are many circuit schematic designed using solar panel for many application. One application is for solar tracking based on ATMEGA8 microcontroller. In here we will give you specific circuit schematic using solar panel is Circuit Schematic Solar Tracking Solar Panel Based on ATMEGA8 Micro controller like in figure 1 below. (You also can read: Circuit Schematic 12V LDO Solar Charge Controller using MOSFET)

Circuit schematic

Component Parts

  • Solar panel
  • ATmega8 micro controller
  • Light Dependent Resistor.
  • Motor driver I
  • Stepper Motor.
Description

Circuit schematic like in Figure 1 above is Circuit Schematic Solar Tracking Solar Panel Based on ATMEGA8 Micro controller. According Electronicshub site describe that the Sun tracking solar panel consists of two LDRs, solar panel and stepper motor and ATMEGA8 Micro controller.

Two light dependent resistors are arranged on the edges of the solar panel. Light dependent resistors produce low resistance when light falls on them. The stepper motor connected to the panel rotates the panel in the direction of Sun. Panel is arranged in such a way that light on two LDRs is compared and panel is rotated towards LDR which have high intensity i.e. low resistance compared to other. Stepper motor rotates the panel at certain angle.

When the intensity of the light falling on right LDR is more, panel slowly moves towards right and if intensity on the left LDR is more, panel slowly moves towards left. In the noon time, Sun is ahead and intensity of light on both the panels is same. In such cases, panel is constant and there is no rotation.

How Sun Tracking Solar Panel Works?

  • Initially power the circuit.
  • Place the set up in dark
  • When the two LDRs are in dark, there is no movement in the panel.
  • Now place a torch in front of the left LDR. Panels slowly move towards its left.
  • Now move light from left to right. You can observe the panel moving slowly with the torch towards right.
  • In the middle, when intensity on both LDRs is equal, panel will not move until there is difference between the light intensity falling on the LDRs. Read more here.

Monday, May 11, 2015

Solar Tracker Based on Arduino Uno with Servo Motor

Eltronicschool. - One application of system based on Arduino is used to control motor servo for solar tracker. This application is simply and arrange from the Arduino UNO board, a servomotor, 2 LDRs and 2 resistors to rotate the solar panel towards the Sun or a source of light.

In this article we will show you the circuit schematic of Solar Tracker Based on Arduino Uno with Servo Motor, the description, and also the basic listing program of this application.

Circuit Schematic

arduino solar tracker circuit
Figure 1. Solar Tracker Based on Arduino Uno with Servo Motor
(Source: Electronischematic)
Description

Circuit schematic like in figure 1 above is Solar Tracker Based on Arduino Uno with Servo Motor.  This circuit using Arduino Uno board, LDR module, and Servo Motor. This circuit is using a standard servo that can rotate approximately 180 degrees (90° in each direction) and is controlled using the included Arduino’s Servo Library. 

Inside the code we use the “pos” variable to set the initial position of the servo to 90, the mid position. The 2 LDRs are connected to pin A0 and A1 on the board. The “tolerance” variable is used for allowing a small tolerance otherwise the solar panel would be continously adjusting its position.

In the setup() function we set the pins were the LDR are connected as INPUTs and position the servo motor at 90° then wait for a 2 seconds before the code execution inside the loop(). In the loop() we read the values received from our 2 sensors and adjust the solar panel based on these values.

Listing Program
  • Solar Tracker Based on Arduino Uno with Servo Motor Listing Program [Link]