

The Batería 303035 is a compact lithium polymer (LiPo) battery designed for use in small electronic devices. With a nominal voltage of 3.7V and a lightweight, slim profile, it is ideal for portable applications where space and weight are critical factors. This battery is commonly used in devices such as wearable electronics, IoT gadgets, remote controls, and small robotics.
Its rechargeable nature and high energy density make it a reliable power source for projects requiring consistent and long-lasting performance.








Below are the key technical details of the Batería 303035:
| Parameter | Value |
|---|---|
| Nominal Voltage | 3.7V |
| Capacity | 300mAh |
| Maximum Charging Voltage | 4.2V |
| Discharge Cutoff Voltage | 3.0V |
| Maximum Discharge Current | 1C (300mA) |
| Standard Charge Current | 0.5C (150mA) |
| Dimensions (L x W x H) | 30mm x 30mm x 3.5mm |
| Weight | ~6g |
| Chemistry | Lithium Polymer (LiPo) |
| Connector Type | JST 2-pin (commonly used) |
The Batería 303035 typically comes with a JST 2-pin connector. Below is the pin configuration:
| Pin | Description |
|---|---|
| Red | Positive terminal (+) |
| Black | Negative terminal (-) |
Connection:
Charging:
Protection Circuit:
Mounting:
The Batería 303035 can be used to power an Arduino UNO via its VIN pin. Below is an example:
You can use a voltage divider circuit to monitor the battery voltage with the Arduino UNO. Here's an example:
// Define the analog pin connected to the voltage divider
const int batteryPin = A0;
// Voltage divider resistor values (in ohms)
const float R1 = 10000.0; // Resistor connected to battery positive
const float R2 = 10000.0; // Resistor connected to ground
// Reference voltage of the Arduino (5V for most boards)
const float referenceVoltage = 5.0;
void setup() {
Serial.begin(9600); // Initialize serial communication
}
void loop() {
int rawValue = analogRead(batteryPin); // Read the analog value
float voltage = (rawValue / 1023.0) * referenceVoltage; // Convert to voltage
voltage = voltage * (R1 + R2) / R2; // Adjust for voltage divider ratio
Serial.print("Battery Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
Note: Ensure the voltage divider reduces the battery voltage to a safe level for the Arduino's analog input (0-5V).
Battery Not Charging:
Battery Drains Quickly:
Battery Swells or Overheats:
No Output Voltage:
Can I use the Batería 303035 in parallel with another battery?
How long does it take to charge the battery?
Is the battery safe for outdoor use?
By following these guidelines, you can safely and effectively use the Batería 303035 in your projects.