• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

Homemade Circuit Projects

Get free circuit help 24/7

  • 1000+ Circuits
  • Privacy Policy
  • About Us
  • Contact
  • Disclaimer
  • Videos – Circuit Test Results
You are here: Home / Battery Chargers / Arduino based Battery Over Discharge Protection Circuit

Arduino based Battery Over Discharge Protection Circuit

Last Updated on November 4, 2020 by Swagatam 31 Comments

In this post, we are going to construct a over discharge protection circuit for 12v battery using Arduino   which can protect 12V SLA battery against over discharge, and also protect the connected load from over voltage in case of overcharged battery is connected.

Understanding Battery Charge/Discharge Rates

All the batteries have natural decline, but most of them get damaged due to ignorance from the users part. The life span of battery will get shorten if the voltage of a battery goes below certain degree, in case of 12V SLA battery, it must not go below 11.80 V.

This project could be accomplished with comparators, but here we are using microcontroller and coding to accomplish the same.

This circuit is well suitable for resistive loads and other loads which don’t generate noise in the supply during operation. Try to avoid inductive loads such as brushed DC motors.

Microcontrollers are sensitive to noise and this setup may read error voltage values in such case, and it may cut-off the battery from load at wrong voltage.

How it Works

Arduino based Battery Over Discharge Protection

The discussed over discharge protection circuit for 12v battery consists of a voltage divider which is responsible for stepping down the input voltage and reduce to narrow range where arduino can read the voltage.

The 10k pre-set resistor is used to calibrate the readings on arduino; these readings are used by arduino to trigger the relay, the calibration of this setup will be discussed later part of the article.

A LED indicator is utilized for indicating the status of the relay. The transistor drives the relay on/off and a diode is connected across the relay for arresting high voltage spike generated from relay, while switching it on/off.

When the battery voltage goes below 11.80V, the relay gets turned on and disconnects the battery from load and LED indicator also turns on, this happen same when the circuit reads overvoltage from the battery, you can set the overvoltage cut-off in the program.

When the battery goes below 11.80V, the relay disconnect the load, the relay will reconnect the load to battery only after when the battery voltage attains above nominal voltage which is set in the program.

The nominal voltage is normal operating voltage of the load. The above stated mechanism is done because; the battery voltage rise after disconnecting from load and this must not trigger the relay ON at low battery state.

The nominal voltage in the program set as 12.70 V which is full battery voltage of typical 12V SLA batteries (Full battery voltage after disconnecting from charger).

Program Code:

//---------Program developed by R.Girish----------//
float cutoff = 11.80; //Cutoff voltage
float nominal = 12.70; //Nomial Voltage
float overvoltage = 14.00; //Overvoltage
int analogInput = 0;
int out = 8;
float vout = 0.0;
float vin = 0.0;
float R1 = 100000;
float R2 = 10000;
int value = 0;
int off=13;
void setup()
{
pinMode(analogInput,INPUT);
pinMode(out,OUTPUT);
pinMode(off,OUTPUT);
digitalWrite(off,LOW);
Serial.begin(9600);
}
void loop()
{
value = analogRead(analogInput);
vout = (value * 5.0) / 1024;
vin = vout / (R2/(R1+R2));
if (vin<0.10)
{
vin=0.0;
}
if(vin<=cutoff)
{
digitalWrite(out,HIGH);
}
if(vin>=nominal && vin<=overvoltage && vin>cutoff)
{
digitalWrite(out,LOW);
}
if(vin>=overvoltage)
{
digitalWrite(out,HIGH );
delay(10000);
}
Serial.println("INPUT V= ");
Serial.println(vin);
delay(1000);
}
//---------Program developed by R.Girish----------//

Note:

float cutoff = 11.80;            //Cutoff voltage
float nominal = 12.70;           //Nomial Voltage
float overvoltage = 14.00;       //Overvoltage

You can change the cut-off, nominal and overvoltage by changing the above values.
It is recommended not modify these values unless you are working with different battery voltage.

 How to calibrate:

The calibration for this battery over discharge protection circuit must be done carefully; you need a variable power supply, a good multimeter and a screw driver for adjusting the pre-set resistor.

1)    The completed setup is connected to variable power supply without load.
2)    Set the 13 volt on the variable power supply, verify this using multimeter.
3)    Open the serial monitor and rotate the 10k preset resistor clock or counter clock wise and bring the readings close to the readings of multimeter.
4)    Now, reduce the voltage of variable power supply to 12V, the multimeter and serial monitor must read same or very close value.
5)    Now, reduce the voltage to 11.80 V the relay must trigger on and LED must light up.
6)    Now, increase the voltage to 14.00V the relay must trigger on and LED light up.
7)    If the above sets are successful replace the variable power supply with a fully charged battery, the readings on serial monitor and multimeter must be same or very close to same.
8)    Now connect the load, the readings on both must remain same and synchronized.
If the above steps are successful your circuit is ready to serve the battery.

NOTE: 

Please note this point while calibrating.

When the relay is triggered on due to low voltage cut-off or due over voltage cut-off, the readings on serial monitor will not read the correct voltage as on multimeter, and shows higher or lower than on multimeter.

But, when the voltage falls back to normal operating voltage the relay will turns off and starts showing correct voltage.

The conclusion of the above point is that, when the relay is trigged ON, the readings on the serial monitor show some significant variation and you need not to calibrate again at this stage.




Previous: Timer Controlled Submersible Pumpset Circuit
Next: 1.5V Power Supply Circuit for Wall Clock

About Swagatam

I am an electronic engineer (dipIETE ), hobbyist, inventor, schematic/PCB designer, manufacturer. I am also the founder of the website: https://www.homemade-circuits.com/, where I love sharing my innovative circuit ideas and tutorials.
If you have any circuit related query, you may interact through comments, I'll be most happy to help!

You'll also like:

  • 1.  Charging a Cellphone battery with a Laptop Battery
  • 2.  Super Capacitor Charger Theory and Working
  • 3.  3 Smart Li-Ion Battery Chargers using TP4056, IC LP2951, IC LM3622
  • 4.  High Current Li-Ion Battery Charger Circuit
  • 5.  Self Regulating Battery Charger Circuit
  • 6.  Lipo Battery Balance Charger for Charging of Series Connected Lipo Cells

Please Subscribe (Only if you are Genuinely Interested in our Newsletters)


 

Reader Interactions

Comments

    Your Comments are too Valuable! But please see that they are related to the above article, and are not off-topic! Cancel reply

    Your email address will not be published. Required fields are marked *

  1. Search Related Posts for Commenting

  2. Ayo says

    Pls I guess this circuit required two relays one for fully charge and one for low battery.

    Reply
    • Swagatam says

      yes, it is only for over discharge protection, the over charge protection will required additional upgrade

      Reply
  3. Sam says

    Hi. What is the purpose of the 10k Potentiometer in this diagram?

    Reply
  4. RAVINDRA VINCHURKAR says

    Battery 18650 Li-ION
    3.7 V 2200mA , upto 4.2 V
    discharge @2AH
    Cut-off required 2.8V or battery temp >55 degree
    for this battery I need cut off voltage setable with preset and also need temperature protection .
    Load on this battery is small pump .
    can you design for it ,please reply at email

    Reply
    • Swagatam says

      You can build the first circuit from this article;

      https://www.homemade-circuits.com/li-ion-battery-charger-circuit-using-ic/

      Reply
      • Liam McHugh says

        Hiya

        I am trying to use your circuit for an electronic project in college in Electronic Engineering. Would many changes need to be made if a PIC were used instead of an Arduino?

        Reply
        • Swagatam says

          Hi, Sorry I have no idea about the question you have asked, however, since Arduino also uses a PIC, it might be possible to do that!

          Reply
  5. nhon says

    i copy the above code for battery protection and paste it into arduino sketch when i upload it….an erro appear at the end below saying…

    void
    exit status 1
    “stray ‘ \342’ in program

    it can’t upload…

    Reply
    • Swagatam says

      I confirmed it in my Arduino IDE, it compiled perfectly, please check your IDE, may be there’s something missing in it.

      Reply
  6. Argha says

    Can the load be the arduino project including the arduino itself?

    Reply
    • Swagatam says

      No, because Arduino takes times to boot and may cause the circuit to behave erratically.

      Reply
      • Argha says

        Need some leads about how to do the same.
        I want to recharge the batteries for the arduino and the rest of the project without using one extra arduino. Also need to sense the bat levels and a overcharge cutoff circuit.

        Reply
        • Swagatam says

          I don’t think you can have two programs in one Arduino

          Reply
          • Argha says

            I want a standalone battery operated project and when the battery is charged it should not power the load and the charger should power the load and charge the battery in parallel.
            Do you think a tp4506 with load sharing circuit should do my purpose?

            Reply
            • Swagatam says

              You can use any battery charger for load sharing as long as the charger is rated to provide the required amount of current for the battery as well as the load.

  7. Aslam ms says

    Sir this circuit only 9v 12 battery charging enogh 9v ? And can you make with LCD for monitoring

    Reply
    • Swag says

      Aslam, this circuit is an over discharge protector for the battery and over voltage protector for the load….it will not charge the battery. Moreover the 9V is only for the Arduino.

      Reply
      • Naman Kumar says

        How can I control the battery charging and discharging automatically when it reaches determined low and high voltage while charging?
        also the current rating is 100A (100A load can be connected for discharging)
        battery output max is 100V.

        CAN YOU PLEASE HELP ME TO SOLVE THIS PROBLEM??????

        Reply
        • Swagatam says

          I explained many battery charger circuit in this website, you can select any one of them appropriately and use it for the purpose.
          For 100V you can apply the following circuit:
          https://www.homemade-circuits.com/high-voltage-360v-battery-charger/

          Reply
          • Naman Kumar says

            Hii sir,
            https://www.homemade-circuits.com/make-this-48v-automatic-battery-charger/
            The ckt diagram in above link can satisfy the charging discharging of four 12V,12AH batteries in series means is it suitable for 48V. operation.?
            # Upto 42V the battery should be discharge
            # Two loads connected in parallel for discharging first is heavy load and 2nd is light load & switching should be happen after voltage dropped to 42V.

            Reply
            • Swagatam says

              Hi Naman, yes you can use the diagrams for your battery, but make sure you always use the batteries in series only, never use them separately otherwise they may get affected with differing charging characteristics.

              If possible I’ll try to update an improved design using lm393 iC which is a better comparator than IC 741

            • Naman Kumar says

              Thankuhh sir I must try it….can you please tell me details of all equipments used in the ckt. because in some diodes full details are not mention I have to buy all the things used in this ckt.

              please share bills of materials so that I am able to do it………and thanks again for your support .

            • Swagatam says

              I’ll try to do it soon…

            • Naman Kumar says

              ok sir, you have to only tell me the Rating of mosfet and the green diode used near the mosfet please tell this so that I can start my project…..please help

            • Swagatam says

              Naman, MOSFET is IRF540, and green diode can be a green led or a red led. Please note that the first 3 diagrams do not have automatic low voltage detection and re-charging facility, it will only cut off when battery reaches full charge level, and MOSFET will shut off permanently until power is switched OFF and ON again..

  8. Putera D. Luffy says

    i just watch your circuit about Li-ion Emergency Light Circuit with Over charge and Low Battery Cut off Features. is it related to my desired circuit like i mention above? or it just for overcharge protection?

    Reply
    • Swagatam says

      No it's not as per your requirement. The first circuit from the following link might satisfy your requirement.

      https://homemade-circuits.com/2012/07/make-6v-4ah-automatic-battery-charger.html

      Reply
  9. Putera D. Luffy says

    can you give me a circuit to auto on and off cell phone charger. Detail is:
    1. the charger will charge the phone and it will stop charging when 100% full(overcharge protection)
    2 the charger will start charging again if the user didn't unplug the charger from the phone. it will start charging again when the battery shows only 20% capacity in phone screen

    Reply
    • Swagatam says

      All cellphones have an in-built overcharge cut off and a low charge restart, so an external circuit is never required. Even if the charger remains connected permanently the internal cut-off circuitry of the phone will keep the battery safely charged.

      By the way Li-Ion batts should be never discharged to 20%….

      Reply
    • Putera D. Luffy says

      this circuit can it be done with 3.7v battery? which component that i need to change?

      Reply
    • Swagatam says

      Li-ion can also be charged with the above circuit, just make sure the input current is as per the rating of the batt

      Reply


  10. COMMENT BOX IS MOVED AT THE TOP


Primary Sidebar

Electronic Projects Categories

  • 3-Phase Power (15)
  • 324 IC Circuits (19)
  • 4017 IC Circuits (51)
  • 4060 IC Circuits (25)
  • 555 IC Circuits (92)
  • 741 IC Circuits (18)
  • Amplifiers (49)
  • Arduino Engineering Projects (82)
  • Audio Projects (84)
  • Battery Chargers (75)
  • Car and Motorcycle (87)
  • Datasheets (45)
  • Decorative Lighting (Diwali, Christmas) (31)
  • DIY LED Projects (81)
  • Electronic Components (97)
  • Electronic Devices and Circuit Theory (35)
  • Electronics Tutorial (99)
  • Fish Aquarium (5)
  • Free Energy (34)
  • Games (2)
  • GSM Projects (9)
  • Health Related (17)
  • Heater Controllers (23)
  • Home Electrical Circuits (98)
  • Incubator Related (6)
  • Industrial Electronics (26)
  • Infrared (IR) (39)
  • Inverter Circuits (94)
  • Laser Projects (10)
  • LM317/LM338 (21)
  • LM3915 IC (24)
  • Meters and Testers (54)
  • Mini Projects (153)
  • Motor Controller (64)
  • MPPT (7)
  • Oscillator Circuits (12)
  • PIR (Passive Infrared) (8)
  • Power Electronics (33)
  • Power Supply Circuits (66)
  • Radio Circuits (9)
  • Remote Control (46)
  • Security and Alarm (56)
  • Sensors and Detectors (115)
  • SG3525 IC (5)
  • Simple Circuits (72)
  • SMPS (30)
  • Solar Controllers (60)
  • Timer and Delay Relay (51)
  • TL494 IC (5)
  • Transformerless Power Supply (8)
  • Transmitter Circuits (38)
  • Ultrasonic Projects (12)
  • Water Level Controller (45)

Follow Homemade Circuits

Facebook
Twitter
YouTube
Instagram
My Facebook-Page
Quora

Feeds

Post RSS
Comment RSS

Circuit Calculators

  • AWG to Millimeter Converter
  • Battery Back up Time Calculator
  • Capacitance Reactance Calculator
  • IC 555 Astable Calculator
  • IC 555 Monostable Calculator
  • Inductance Calculator
  • LC Resonance Calculator
  • LM317, LM338, LM396 Calculator
  • Ohm’s Law Calculator
  • Phase Angle Phase Shift Calculator
  • Power Factor (PF) Calculator
  • Reactance Calculator
  • Small Signal Transistor(BJT) and Diode Quick Datasheet
  • Transistor Astable Calculator
  • Transistor base Resistor Calculator
  • Voltage Divider Calculator
  • Wire Current Calculator
  • Zener Diode Calculator

© 2021 · Swagatam Innovations