









| Pin/Terminal | Description | Notes |
|---|---|---|
| Positive (+) | Positive terminal of the battery | Connect to the positive side of the circuit |
| Negative (-) | Negative terminal of the battery | Connect to the ground or negative side of the circuit |
Connecting in Series:
Connecting in Parallel:
Important Considerations:
Using with Arduino UNO:
// Simple LED blink example for Arduino UNO
// Ensure the Arduino is powered by the AAA x2 battery pack (via VIN or DC jack)
int ledPin = 13; // Built-in LED pin on Arduino UNO
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
}
Device not powering on:
Overheating:
Low runtime:
Can I use AAA x2 batteries to power a 5V device?
Can I mix rechargeable and non-rechargeable batteries?
How do I safely dispose of AAA batteries?