

The CRLD20MA from Rsdz Store is a versatile and compact module designed to simplify power management in your electronic projects. This module combines a battery charger for 3.7V and 3.8V Li-Ion and Li-Polymer batteries with a low dropout (LDO) buck converter that steps down 4.2V to 3.3V or 3V. It is ideal for applications requiring an uninterruptible power supply (UPS) and various DIY projects.








| Parameter | Value |
|---|---|
| Input Voltage | 4.2V |
| Output Voltage | 3.3V or 3V (selectable) |
| Charging Voltage | 3.7V / 3.8V |
| Charging Current | 500mA |
| Output Current | 500mA |
| Efficiency | Up to 95% |
| Dimensions | 22mm x 17mm x 4mm |
| Operating Temperature | -40°C to 85°C |
| Pin No. | Pin Name | Description |
|---|---|---|
| 1 | VIN | Input Voltage (4.2V) |
| 2 | GND | Ground |
| 3 | BAT+ | Battery Positive Terminal (3.7V / 3.8V) |
| 4 | BAT- | Battery Negative Terminal |
| 5 | VOUT | Output Voltage (3.3V or 3V) |
| 6 | SEL | Voltage Selection Pin (High for 3.3V, Low for 3V) |
Module Not Powering Up
Battery Not Charging
Incorrect Output Voltage
Overheating
Q1: Can I use this module with an Arduino UNO?
Q2: What type of batteries are compatible with this module?
Q3: How do I select the output voltage?
// Example code to monitor battery voltage using Arduino UNO
const int batteryPin = A0; // Analog pin connected to VOUT
float batteryVoltage = 0.0;
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int sensorValue = analogRead(batteryPin); // Read the analog input
batteryVoltage = sensorValue * (5.0 / 1023.0); // Convert to voltage
Serial.print("Battery Voltage: ");
Serial.println(batteryVoltage); // Print the battery voltage
delay(1000); // Wait for 1 second before next reading
}
This code reads the battery voltage from the VOUT pin and prints it to the serial monitor. Ensure the VOUT pin is connected to an analog input pin on the Arduino UNO.
By following this documentation, you can effectively integrate the CRLD20MA module into your projects, ensuring reliable power management and efficient battery charging.