

The lead-acid battery is a rechargeable energy storage device that uses lead dioxide (PbO₂) as the positive electrode, sponge lead (Pb) as the negative electrode, and sulfuric acid (H₂SO₄) as the electrolyte. It is one of the oldest and most widely used battery technologies due to its reliability, cost-effectiveness, and ability to deliver high surge currents.








Below are the key technical details of a typical lead-acid battery. Note that specific values may vary depending on the model and manufacturer.
| Parameter | Value |
|---|---|
| Nominal Voltage | 2V per cell (e.g., 12V for 6 cells) |
| Capacity Range | 1 Ah to 3000 Ah |
| Energy Density | 30-50 Wh/kg |
| Cycle Life | 200-1000 cycles (depending on usage) |
| Operating Temperature | -20°C to 50°C |
| Self-Discharge Rate | ~3-5% per month at 25°C |
Lead-acid batteries typically have two terminals: positive and negative. The configuration is as follows:
| Terminal Name | Symbol | Description |
|---|---|---|
| Positive | (+) | Connects to the positive side of the circuit. |
| Negative | (-) | Connects to the negative side of the circuit. |
To power an Arduino UNO using a lead-acid battery, follow these steps:
// This code reads the voltage of a lead-acid battery connected to an Arduino UNO.
// Ensure a voltage divider is used to step down the battery voltage to a safe level
// for the Arduino's analog input (max 5V).
const int batteryPin = A0; // Analog pin connected to the voltage divider
const float voltageDividerRatio = 5.7; // Adjust based on your resistor values
const float referenceVoltage = 5.0; // Arduino's reference voltage (5V)
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int rawValue = analogRead(batteryPin); // Read the analog input
float batteryVoltage = (rawValue / 1023.0) * referenceVoltage * voltageDividerRatio;
// Print the battery voltage to the Serial Monitor
Serial.print("Battery Voltage: ");
Serial.print(batteryVoltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
Battery Not Charging
Battery Drains Quickly
Excessive Heat During Charging
Corroded Terminals
Q: Can I use a lead-acid battery indoors?
Q: How do I store a lead-acid battery?
Q: What is sulfation, and how can I prevent it?
Q: Can I connect multiple lead-acid batteries together?
By following this documentation, you can safely and effectively use a lead-acid battery in your projects and applications.