Solar Charger Shield V2.2

The solar charger is a stackable shield to Arduino compatible platforms, enables adaptive battery power and act as energy harvester for in-field charging. You may use various batteries that has the voltage of 3.0V-4.2V to shift up for 5V output, or put on Li-ion battery and solar panel to form an autonomous sensor unit. The maximum current provided by the board can get up to 600mA. An usb connector is also useful to charge the battery.

Features

Specification

Applications

Information on use of Solar panels for charging

1) The solar charger shield produces charges under sunlight and light from filament bulbs. Its function is more effective in the former than in the latter. Solar panels require invisible radiations namely ultraviolet and infrared radiations for producing current.

2) In order to test the system under filament bulb, hold the solar panel at a distance, less than 20cm(< 0.5 feet). However, the charging may not be effective under filament bulbs.

3) Place the solar panel at an angle such that the maximum amount of sunlight is incident on it.

4) Protect the solar panel from excessive exposure to water/water vapors. This may oxidize the surface of the solar panel and reduce its performance.

5) The Solar panel usually comes with a protective transparent sheet of cover. Remove the transparent plastic sheet for better performance of the solar panel.

6) Protect the surface of the solar panel from scratches

Caution

1) The solar charger shield is designed to protect any potential short circuit. However care must be taken to avoid any such situations.

2) The solar shield should not be operated at voltages greater than 5V

Usage

1) Connect the Solar panel and the Li-Pol battery in their designated places as shown in the figure below:


Solar_Charger_Shield_v2.2_inputs.jpg


2) Place the solar under sunlight or filament bulbs as mentioned in the "Information for using solar panels" section


3) Ensure that the charging (Red) light glows as shown in the figure below:

4) When the battery is fully charged, the green light glows.

5) Once you have charged the battery, you may mount the shield on to the arduino. As you power up the solar charger shield, it should power up the arduino as shown in the figure below:



Testing the solar shield with a simple arduino program

Short R7 using a 0ohm resistor as shown in the figure:

Img Solar_Charger_Shield_v2.2_shortR7.jpg

Programming Example

You can measure the voltage of Battery using the following example:

/*
 Solar charger shield voltage measurement example. Connect VBAT pin to analog pin A0.
 
 The pin measures 2.0 V when not under direct exposre to sunlight and 5V when exposed to sunlight. 
 
 This example code is in the public domain.
 
 */
 
// These constants won't change.  They're used to give names
// to the pins used:
const int analogInPin = A0;  // Analog input pin that the VBAT pin is attached to
 
 
int BatteryValue = 0;        // value read from the VBAT pin
float outputValue = 0;        // variable for voltage calculation
 
void setup() {
  // initialize serial communications at 9600 bps:
  Serial.begin(9600); 
}
 
void loop() {
  // read the analog in value:
  BatteryValue = analogRead(analogInPin);            
  // Calculate the battery voltage value
  outputValue = (float(BatteryValue)*5)/1023*2;
 // print the results to the serial monitor:
  Serial.print("Analog value = " );                       
  Serial.print(BatteryValue);      
  Serial.print("\t voltage = ");      
  Serial.println(outputValue);
  Serial.println("V \n");  
 
  // wait 10 milliseconds before the next loop
  // for the analog-to-digital converter to settle
  // after the last reading:
  delay(10);                     
}


Resources

Solar Charger Shield v2.2 sch&pcb
DSE-CN3065.pdf
ETA1036.pdf

Support

If you have questions or other better design ideas, you can go to our forum or wish to discuss.

Copyright (c) 2008-2016 Seeed Development Limited (www.seeedstudio.com / www.seeed.cc)
This static html page was created from http://www.seeedstudio.com/wiki