

The Water Pump 5V is a compact electric pump designed to move water or other liquids efficiently. Operating at a low voltage of 5 volts, it is ideal for applications requiring small-scale liquid transfer. This pump is commonly used in aquariums, cooling systems, small-scale irrigation setups, and DIY electronics projects. Its low power consumption and ease of integration make it a popular choice for hobbyists and professionals alike.








Below are the key technical details of the Water Pump 5V:
| Parameter | Specification |
|---|---|
| Operating Voltage | 5V DC |
| Operating Current | 100-300 mA (varies with load) |
| Power Consumption | ~1.5W |
| Maximum Flow Rate | ~120 L/h (liters per hour) |
| Maximum Lift Height | ~1 meter |
| Inlet/Outlet Diameter | ~5-6 mm |
| Material | Plastic (housing), metal (motor) |
| Dimensions | ~45mm x 24mm x 30mm |
| Weight | ~30 grams |
The Water Pump 5V typically has two wires for connection:
| Wire Color | Function | Description |
|---|---|---|
| Red | Positive (+) | Connect to the 5V power supply or microcontroller. |
| Black | Negative (-) | Connect to ground (GND). |
Below is an example of how to control the Water Pump 5V using an Arduino UNO and a transistor:
// Example: Controlling a 5V Water Pump with Arduino UNO
// Components: Water Pump 5V, NPN Transistor (e.g., 2N2222), 1kΩ Resistor, Diode (1N4007)
// Define the pin connected to the transistor's base
const int pumpControlPin = 9;
void setup() {
pinMode(pumpControlPin, OUTPUT); // Set the control pin as an output
}
void loop() {
digitalWrite(pumpControlPin, HIGH); // Turn the pump ON
delay(5000); // Keep the pump ON for 5 seconds
digitalWrite(pumpControlPin, LOW); // Turn the pump OFF
delay(5000); // Keep the pump OFF for 5 seconds
}
Circuit Notes:
| Issue | Possible Cause | Solution |
|---|---|---|
| Pump does not start | Insufficient power supply | Check the voltage and current of the power source. |
| Pump runs but no water is pumped | Airlock or clogged inlet/outlet | Check for blockages and ensure the pump is primed. |
| Pump overheats | Running dry or excessive load | Ensure the pump is submerged and not overloaded. |
| Noise during operation | Debris in the pump or loose mounting | Clean the pump and secure it properly. |
Can I use the Water Pump 5V with a battery?
Is the pump waterproof?
Can I control the pump speed?
What liquids can the pump handle?
By following this documentation, you can effectively integrate and operate the Water Pump 5V in your projects.