

The Water Pump 12V (Manufacturer: PUMP, Part ID: 03) is a compact and efficient device designed for moving water in a variety of applications. It operates on a 12-volt DC power supply and is suitable for tasks such as irrigation, aquarium water circulation, cooling systems, and small-scale water transfer projects. Its compact design and ease of use make it a popular choice for hobbyists and professionals alike.








| 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) |
| Weight | 200 grams |
| Operating Temperature | 0°C to 50°C |
| Waterproof Rating | IPX4 |
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.
// Define the relay pin connected to the Arduino
const int relayPin = 7;
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the pump is off initially
}
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 | Check connections and ensure 12V power supply is working. |
| Low water flow | Blocked inlet or outlet | Clean the inlet and outlet to remove debris. |
| Pump overheating | Running dry or excessive load | Ensure the pump is submerged or primed with water. |
| Noise during operation | Loose mounting or air in the system | Secure the pump and remove air bubbles. |
This concludes the documentation for the Water Pump 12V. For further assistance, refer to the manufacturer's guidelines or contact technical support.