

The Quartz 123 Battery Charger is a high-performance device designed to recharge batteries with a nominal voltage of 14.6 volts. It is specifically optimized for lithium-ion or lithium-polymer battery packs, ensuring safe, efficient, and reliable charging. This charger incorporates advanced safety features to protect against overcharging, overheating, and short circuits, making it ideal for a wide range of applications.








The following table outlines the key technical details of the Quartz 123 Battery Charger:
| Parameter | Value |
|---|---|
| Input Voltage Range | 100-240V AC, 50/60Hz |
| Output Voltage | 14.6V DC |
| Maximum Output Current | 5A |
| Charging Method | CC/CV (Constant Current/Constant Voltage) |
| Efficiency | ≥ 85% |
| Operating Temperature | 0°C to 40°C |
| Storage Temperature | -20°C to 60°C |
| Dimensions | 120mm x 60mm x 35mm |
| Weight | 250g |
| Safety Features | Overcharge protection, short circuit protection, over-temperature protection |
The Quartz 123 Battery Charger has a simple interface with the following connections:
| Pin/Connector | Description |
|---|---|
| AC Input | Standard AC power input (100-240V AC) |
| DC Output (+) | Positive terminal for 14.6V DC output |
| DC Output (-) | Negative terminal for 14.6V DC output |
| LED Indicator | Status indicator (e.g., charging, fully charged) |
Connect the Charger to the Battery Pack:
Power the Charger:
Monitor the Charging Process:
Disconnect the Charger:
While the Quartz 123 Battery Charger is not directly programmable, it can be monitored using an Arduino UNO to track the charging status via the LED indicator. Below is an example code snippet to monitor the charger's LED status:
// Arduino code to monitor the LED status of the Quartz 123 Battery Charger
// Connect the charger's LED indicator to Arduino pin 2 via a voltage divider
// to ensure the voltage is within the Arduino's input range.
const int ledPin = 2; // Pin connected to the charger's LED indicator
void setup() {
pinMode(ledPin, INPUT); // Set the LED pin as input
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int ledState = digitalRead(ledPin); // Read the LED state
if (ledState == HIGH) {
Serial.println("Charging in progress...");
} else {
Serial.println("Charging complete or no battery connected.");
}
delay(1000); // Wait for 1 second before checking again
}
Charger Does Not Turn On:
Battery Does Not Charge:
LED Indicator Does Not Light Up:
Charger Overheats:
By following this documentation, users can safely and effectively utilize the Quartz 123 Battery Charger for their 14.6V battery packs.