Friday, September 6, 2013
Solar charge controller for inverters
12V 24V 30A solar charge controller for solar panels
Auto Day/Night Sensor PWM, MCU, Auto 12V/24V Selector Switch
LCD display
Overcharge protection
Can be used for any panels Mono/Poly/Multi Crstalline
Discharge protection
Short and Open Circuit protection
Fail Safe and cannot be damaged by accidental wiring mistakes
Advanced design with simple plug and play technology. No need for complicated adjustments
Product Description
Nominal Battery Voltage: 12V or 24V Auto select
Maximum Charging/Load Current: 30A
Product Information:
The Solar Charge Controller is a Micro-Controller Unit(MCU) based digital controller which will charge your battery in a healthy Pulse Width Modulation(PWM) 3-Stage mode . Bulk, Equalization, and Float Charging. The LCD indicates the level of the Battery and charging status. It automatically disconnects the load when battery is low. The load/light can be controlled in a dusk-to-dawn mode with very accuracy. It automatically connects the load at sunset and disconnects at sunrise. This feature is very useful for 12/24V DC solar lighting purposes. The controller also has user-friendly LCD indicators for Solar Charging status, Battery status, and Load status.
PWM Solar Charge Controller Features:
·MCU controlled digitally accurate device with 12V/24V auto distinguish
· State of Charge, Battery Level Indicator, Load status indication via LCD
· Protects your batteries from Overcharging or Over Discharge, thereby increasing their working life
· Charges battery in PWM Control 3 Stage - Bulk, Equalization, and Float Charging
· Prevents Reverse Current to Solar Panels during Night time
· Easy to install, lightweight, and very compact in size
·Dusk-to-dawn controlled loading mode
·Short Circuit and overload protection
Technical Information:
Solar Converter is a Innovative way to make
solar cost affordable to masses and change lives. Solar Converter is for those
who have already invested in Inverters or UPS. Solar Converter is a product
which can converter any Inverter or UPS into a solar system. This product will
preserve your investment and make you a proud owner of renewable energy
generating system.
We offer Solar Converter cum Solar Charge
Controller for existing inverters. If you own an inverter system then by
connecting our Solar Converter you can convert your existing non Solar Inverter
into a Solar Inverter.
We offer Solar Converter cum solar charge
controller for existing inverters.
If you own an inverter system then by
connecting our Solar Converter you converts your existing non solar inverter
system into a solar inverter. This gives priority to solar charging.
Auto Day/Night Sensor PWM, MCU, Auto 12V/24V Selector Switch
LCD display
Overcharge protection
Can be used for any panels Mono/Poly/Multi Crstalline
Discharge protection
Short and Open Circuit protection
Fail Safe and cannot be damaged by accidental wiring mistakes
Advanced design with simple plug and play technology. No need for complicated adjustments
Product Description
Nominal Battery Voltage: 12V or 24V Auto select
Maximum Charging/Load Current: 30A
Product Information:
The Solar Charge Controller is a Micro-Controller Unit(MCU) based digital controller which will charge your battery in a healthy Pulse Width Modulation(PWM) 3-Stage mode . Bulk, Equalization, and Float Charging. The LCD indicates the level of the Battery and charging status. It automatically disconnects the load when battery is low. The load/light can be controlled in a dusk-to-dawn mode with very accuracy. It automatically connects the load at sunset and disconnects at sunrise. This feature is very useful for 12/24V DC solar lighting purposes. The controller also has user-friendly LCD indicators for Solar Charging status, Battery status, and Load status.
PWM Solar Charge Controller Features:
·MCU controlled digitally accurate device with 12V/24V auto distinguish
· State of Charge, Battery Level Indicator, Load status indication via LCD
· Protects your batteries from Overcharging or Over Discharge, thereby increasing their working life
· Charges battery in PWM Control 3 Stage - Bulk, Equalization, and Float Charging
· Prevents Reverse Current to Solar Panels during Night time
· Easy to install, lightweight, and very compact in size
·Dusk-to-dawn controlled loading mode
·Short Circuit and overload protection
Technical Information:
This is a MOSFET based design which has very negligible voltage drop which means the loss is very Low, ideal for solar applications. Since the drop is less, the losses are negligible so the efficiency achieved is > 99.5%.This is a micro-controller based charger, the micro-controller will sense the battery full charge voltage and will cut-off the battery when it reaches full charge. It will reconnect the battery if the battery drops to a preset level. The charger will also disconnect the panel from the battery; this is to avoid the reverse current flow from the battery to the panel during night. Moreover, if you connect the panel reverse, the micro-controller will not switch on the charger; similarly if you connect the battery reverse, the charger will not function. Battery reverse, panel reverse protections are implemented in the design. In all the above cases, the circuit will not damage and there will not be any current flow from the panel or battery. Two stage higher voltage regulators are incorporated in this design to withstand open circuit voltage of the panel.
Introduction of Solar Converter
Solar Converter is a Innovative way to make
solar cost affordable to masses and change lives. Solar Converter is for those
who have already invested in Inverters or UPS. Solar Converter is a product
which can converter any Inverter or UPS into a solar system. This product will
preserve your investment and make you a proud owner of renewable energy
generating system.
Solar Converter
We offer Solar Converter cum Solar Charge
Controller for existing inverters. If you own an inverter system then by
connecting our Solar Converter you can convert your existing non Solar Inverter
into a Solar Inverter.
Why Solar Converter?
We offer Solar Converter cum solar charge
controller for existing inverters.
If you own an inverter system then by
connecting our Solar Converter you converts your existing non solar inverter
system into a solar inverter. This gives priority to solar charging.
high frequencysine wave inverter
// just follow the code for H- bridge inverter with pic in bult PWM controllers for genrating sine wave inverters
#ifndef _XTAL_FREQ
#define _XTAL_FREQ 16000000
#define __delay_us(x) _delay((unsigned long)((x)*(_XTAL_FREQ/4000000.0)))
#define __delay_ms(x) _delay((unsigned long)((x)*(_XTAL_FREQ/4000.0)))
#endif
#include
__CONFIG(PROTECT&
HS& //INTIO& //internal
OSC_8MHZ&
WDTDIS&
MCLRDIS&
PWRTEN &
BOREN &
0x3FFF);
unsigned char sin_table[32] = {0, 25, 49, 73, 96, 118, 137,
159, 177, 193, 208, 220, 231, 239, 245, 249, 250, 249, 245,
239, 231, 220, 208, 193, 177, 159, 137, 118, 96, 73, 49, 25};
unsigned char index;
unsigned char soft_start_sh; //soft start shift count.
unsigned char soft_start_td; //soft start time delay.
unsigned int DUTY_CYCLE; //delay.
bit soft_start, wave_flag = 0;
void interrupt siva() {
if (TMR2IF == 1) {
TMR2IF = 0;
CCPR1L = 200; //sin_table[index];
// ++index;
if(index == 32)
{ index = 0;
wave_flag = ~wave_flag;
if( wave_flag) CCP1CON = 0x8D; //half bridge control
else CCP1CON = 0x8C; //half bridge control
}
}
}
void main() {
ANSEL = 0; //Disable ADC
CM1CON0 = 0; //Disable Comparator
CM2CON0 = 0; //Disable Comparator
VRCON = 0;
PR2 = 249; //16 khz@16MHZ
TRISC = 0x3F;
CCP1CON = 0x00;
ECCPAS = 0x40;
PWM1CON = 0x94; //5ussec
PRSEN = 1;
CCP1CON = 0x8D; //half bridge control
wave_flag = 0;
__delay_ms(500);
TMR2IF = 0;
T2CON = 0x24; //TMR2 on, prescaler and postscaler 1:5
while (TMR2IF == 0);
TMR2IF = 0;
TRISC = 0x03; //set pwm pins as o/p
TMR2IE = 1;
GIE = 1;
PEIE = 1;
RC2 = 0;
RC3 = 0;
while (1) {
if (ECCPASE) index = 0;
}
}
PWM1A,1B,1C,1D pins form the H bridge circuit. IR2110 and IRF 740 MOS FETS are Used for circuit.
Thursday, December 6, 2012
DIGITAL PANEL METER.
DIGITAL PANEL METER FOR CONTROL THE MOTOR SPEED.
IT DISPLAY THE SPEED AND CONTROLS TO SET SPEED
REMOTE CONTROL DIGITAL GOLD RATE DISPLAY. ITS DISPLAY EVERY DAY GOLD RATES. THIS IS SET BY IR REMOTE. THIS WAS ALSO DISPLAY THE REAL TIME AND DATE.
GSM BASED 2 CHANNEL REMOTE CONTROLLER. THIS UNIT SWITCH ON/OFF THE ANY DEVICE THROUGH THE SMS OR DTMF CONTROL. THIS PRODUCT USED FOR SECURITY SYSTEMS. STREET LIGHT CONTROL SYSTEM. OR ANY OTHER DEVICE ARE ON/OFF FROM REMOTE PLACE.
DEVELOPMENT OF FIRE ALARAM SYSTEM.
DEVELOPMENT OF GPS DIGITAL CLOCK.
THIS CLOCK WAS GPS SYNCHRONISED CLOCK.
DEVELOPMENT OF GSM BASED SECURITY SYSTEM. THIS SYSTEM SEND THE SMS ALRELT WHEN ANY UNAUTHORISED ENTER TO THE OUR HOUSE.
REMOTE CONTROL DIGITAL GOLD RATE DISPLAY. ITS DISPLAY EVERY DAY GOLD RATES. THIS IS SET BY IR REMOTE. THIS WAS ALSO DISPLAY THE REAL TIME AND DATE.
GSM BASED 2 CHANNEL REMOTE CONTROLLER. THIS UNIT SWITCH ON/OFF THE ANY DEVICE THROUGH THE SMS OR DTMF CONTROL. THIS PRODUCT USED FOR SECURITY SYSTEMS. STREET LIGHT CONTROL SYSTEM. OR ANY OTHER DEVICE ARE ON/OFF FROM REMOTE PLACE.
DEVELOPMENT OF FIRE ALARAM SYSTEM.
DEVELOPMENT OF GSM BASED SECURITY SYSTEM. THIS SYSTEM SEND THE SMS ALRELT WHEN ANY UNAUTHORISED ENTER TO THE OUR HOUSE.
Subscribe to:
Posts (Atom)
Popular Posts
-
servo control SERVO MOTOR CONTROL USING ATMEGA16 download link for c file: SERVO MOTOR CONTROL download link for Proteus VSM: Servo...
-
it was solar charge controller auto cutoff if bat ful and low. Chip type ...
-
Specifications:- Dspic30F2010 based, less components, small in size. LCD / LED compatible. Soft start features for mixed load a...
-
// just follow the code for H- bridge inverter with pic in bult PWM controllers for genrating sine wave inverters #ifndef _XTAL_F...
-
Features of Solar Hybrid Inverters * pure sine wave output * Noise less operation * improved battery charging capacity * DSP based...
-
acc e-solutions Features of inverter: 1. Output waveform: pure sine wave 2. 12v/24v/48v DC input 3. 220v-240v AC outp...
-
Zero drop solar charge controller technology transfer we had technology per solar charger with PWM and drop technology. LCD ve...
-
40Amps 12/24V auto detection solar charge controller with all features and display all parameters Add caption
-
12V 24V 30A solar charge controller for solar panels Auto Day/Night Sensor PWM, MCU, Auto 12V/24V Selector Switch LCD display Overcharg...