

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 | Ground (-) | Connect to the ground of the power supply. |
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: Arduino UNO, NPN transistor (e.g., 2N2222), 1kΩ resistor, 5V Water Pump
const int pumpPin = 9; // Pin connected to the transistor's base
void setup() {
pinMode(pumpPin, OUTPUT); // Set the pump control pin as output
}
void loop() {
digitalWrite(pumpPin, HIGH); // Turn the pump ON
delay(5000); // Keep the pump ON for 5 seconds
digitalWrite(pumpPin, LOW); // Turn the pump OFF
delay(5000); // Keep the pump OFF for 5 seconds
}
Circuit Notes:
Pump Not Running:
Low Flow Rate:
Overheating:
Noise or Vibration:
Q: Can the pump handle liquids other than water?
A: Yes, but ensure the liquid is non-corrosive and compatible with the pump's materials.
Q: Can I use the pump with a battery?
A: Yes, a 5V battery pack or USB power bank can be used, provided it meets the current requirements.
Q: How do I prevent dry running?
A: Use a liquid level sensor or float switch to detect low liquid levels and automatically turn off the pump.
Q: Can the pump be submerged?
A: Check the manufacturer's specifications. Some pumps are submersible, while others are not.
This documentation provides all the necessary details to effectively use and troubleshoot the Water Pump 5V in your projects.