The Mạch sạc 18650 is a battery charging circuit specifically designed for safely charging lithium-ion 18650 cells. It is equipped with essential safety features such as overcharge protection, temperature monitoring, and charging status indicators. This component ensures efficient and reliable charging, making it ideal for applications requiring rechargeable power sources.
Pin/Connector | Description |
---|---|
IN+ | Positive input terminal for 5V DC power supply (via solder pad or micro-USB). |
IN- | Negative input terminal for 5V DC power supply (via solder pad or micro-USB). |
B+ | Positive terminal for connecting the 18650 battery. |
B- | Negative terminal for connecting the 18650 battery. |
OUT+ | Positive output terminal for powering external circuits (connected to battery). |
OUT- | Negative output terminal for powering external circuits (connected to battery). |
IN+
and IN-
pins. You can use a micro-USB cable or solder wires directly to the input pads.B+
and B-
terminals. Ensure correct polarity to avoid damage.OUT+
and OUT-
terminals. The output voltage will match the battery voltage.The Mạch sạc 18650 can be used to power an Arduino UNO. Here's an example of connecting the circuit:
OUT+
and OUT-
terminals of the charging module to the Arduino's VIN
and GND
pins, respectively.You can monitor the battery voltage using the Arduino's analog input:
const int batteryPin = A0; // Connect OUT+ to A0 via a voltage divider
float voltage = 0.0;
void setup() {
Serial.begin(9600);
}
void loop() {
int sensorValue = analogRead(batteryPin);
// Convert the analog reading to voltage (assuming a 10k:10k voltage divider)
voltage = (sensorValue * 5.0 / 1023.0) * 2;
// Multiply by 2 because of the voltage divider ratio
Serial.print("Battery Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(1000);
}
Note: Use a voltage divider (e.g., two 10k resistors) to scale the battery voltage to a safe range for the Arduino's analog input.
LEDs Not Lighting Up
Battery Not Charging
B+
and B-
.Overheating During Charging
Output Voltage Too Low
Can I use this module with other lithium-ion batteries?
What happens if I connect the battery with reverse polarity?
Can I charge multiple 18650 cells in parallel?
Is it safe to leave the battery connected after charging?