

The 5V Water Pump is a compact and efficient electric pump designed to move water or other liquids. Powered by a 5V DC supply, this pump is ideal for low-power applications and is commonly used in aquariums, hydroponics, small-scale irrigation systems, and DIY electronics projects. Its small size and low voltage requirements make it a popular choice for hobbyists and professionals alike.








Below are the key technical details of the 5V Water Pump:
| Parameter | Specification |
|---|---|
| Operating Voltage | 5V DC |
| Operating Current | 100-300 mA (depending on load) |
| Power Consumption | ~1.5W |
| Maximum Flow Rate | ~120 L/h (liters per hour) |
| Maximum Lift Height | ~0.7 meters |
| Pump Type | Submersible |
| Material | Plastic (ABS or similar) |
| Dimensions | ~45mm x 24mm x 30mm |
| Weight | ~30 grams |
| Operating Temperature | 0°C to 50°C |
The 5V Water Pump typically has two wires for connection:
| Wire Color | Function | Description |
|---|---|---|
| Red | Positive (+) | Connect to the 5V DC power supply or control circuit. |
| Black | Ground (-) | Connect to the ground of the power supply or circuit. |
Below is an example of how to control the 5V Water Pump using an Arduino UNO and a transistor:
// Define the pin connected to the transistor base
const int pumpPin = 9;
void setup() {
pinMode(pumpPin, OUTPUT); // Set the pump control pin as an 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
}
Pump Does Not Start:
Pump Runs Intermittently:
Pump Overheats:
Low Water Flow:
Can the pump be used with liquids other than water?
Can I run the pump continuously?
How do I control the pump speed?
Is the pump safe for outdoor use?
By following this documentation, you can effectively integrate the 5V Water Pump into your projects and troubleshoot common issues with ease.