

The Water Pump 12V (Manufacturer: PUMP, Part ID: 03) is a compact and efficient water pump designed for a wide range of applications. It operates on a 12-volt DC power supply and is ideal for moving water in systems such as aquariums, irrigation setups, cooling systems, and small-scale water circulation projects. Its robust design ensures reliable performance, making it suitable for both hobbyist and professional use.








| Parameter | Specification |
|---|---|
| Operating Voltage | 12V DC |
| Operating Current | 0.5A to 1.5A (depending on load) |
| Power Consumption | 6W to 18W |
| Maximum Flow Rate | 240 liters per hour (L/h) |
| Maximum Lift Height | 3 meters |
| Inlet/Outlet Diameter | 8 mm |
| Material | Plastic (housing), metal (motor) |
| Dimensions | 70 mm x 40 mm x 35 mm |
| Weight | 150 grams |
The Water Pump 12V typically has two wires for connection:
| Wire Color | Function | Description |
|---|---|---|
| Red | Positive (+) | Connect to the positive terminal of the 12V DC supply. |
| Black | Negative (-) | Connect to the negative terminal (ground). |
The Water Pump 12V can be controlled using an Arduino UNO and a relay module. Below is an example circuit and code to turn the pump on and off using a digital pin.
// Water Pump Control with Arduino UNO
// This code turns the water pump on for 5 seconds, then off for 5 seconds.
const int relayPin = 7; // Define the pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the pump is off at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn the pump on
delay(5000); // Keep the pump on for 5 seconds
digitalWrite(relayPin, LOW); // Turn the pump off
delay(5000); // Keep the pump off for 5 seconds
}
| Issue | Possible Cause | Solution |
|---|---|---|
| Pump does not start | Incorrect wiring or no power | Verify connections and ensure 12V DC is supplied. |
| Low or no water flow | Blocked inlet/outlet or tubing | Check for clogs and clean the pump and tubing. |
| Pump overheats | Running dry or excessive voltage | Ensure the pump is submerged or primed, and use a 12V supply. |
| Noise during operation | Air trapped in the pump | Submerge the pump fully or remove air from the system. |
Can this pump handle hot water?
Is the pump waterproof?
Can I control the pump speed?
What is the maximum tubing length I can use?
This concludes the documentation for the Water Pump 12V (PUMP-03). For further assistance, refer to the manufacturer's support resources.