

The 9V battery is a compact power source that provides a nominal voltage of 9 volts. It is widely used in portable electronic devices, small appliances, and DIY electronics projects. Known for its rectangular shape and snap connector terminals, the 9V battery is a reliable and versatile power supply for low-power applications.








The following table outlines the key technical details of a standard 9V battery:
| Parameter | Specification |
|---|---|
| Nominal Voltage | 9V |
| Chemistry Types | Alkaline, Lithium, Zinc-Carbon |
| Capacity (Alkaline) | ~500-600 mAh |
| Capacity (Lithium) | ~1200 mAh |
| Dimensions | 48.5 mm x 26.5 mm x 17.5 mm |
| Weight (Alkaline) | ~45 g |
| Operating Temperature | -20°C to 55°C |
| Terminal Type | Snap Connector (Positive and Negative) |
The 9V battery features two snap connectors for easy connection to circuits. The pin configuration is as follows:
| Terminal | Description |
|---|---|
| Positive (+) | Supplies the positive voltage (9V nominal). |
| Negative (-) | Ground or return path for the circuit. |
Below is an example of connecting a 9V battery to an Arduino UNO to power an LED:
// Example: Powering an LED with Arduino UNO and a 9V battery
// Define the LED pin
const int ledPin = 13;
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
// Note: Connect the 9V battery to the Arduino's DC barrel jack or VIN pin.
// Ensure the battery's positive terminal is connected to VIN and the negative
// terminal is connected to GND. Use a voltage regulator if needed.
Battery Drains Quickly:
Device Does Not Power On:
Battery Overheats:
Voltage Drops Below 9V:
Q: Can I recharge a standard 9V alkaline battery?
A: No, standard alkaline batteries are not rechargeable. Use a rechargeable 9V battery (e.g., NiMH or Li-ion) if recharging is required.
Q: How long does a 9V battery last?
A: Battery life depends on the load. For example, a 9V alkaline battery powering a 10mA circuit may last approximately 50 hours.
Q: Can I use a 9V battery to power a motor?
A: Yes, but only for small motors with low current requirements. For larger motors, consider using a higher-capacity power source.
Q: Is it safe to connect multiple 9V batteries in series or parallel?
A: Yes, but ensure proper handling. Connecting in series increases voltage, while connecting in parallel increases capacity. Use caution to avoid short circuits or mismatched batteries.