

The DC 12V Submersible Water Pump is a compact and efficient device designed to move water from one location to another. Powered by a 12V DC power source, this pump is ideal for a variety of applications, including aquariums, fountains, hydroponic systems, and small-scale irrigation setups. Its submersible design allows it to operate underwater, making it a versatile and reliable choice for water circulation and transfer tasks.








| Parameter | Value |
|---|---|
| Operating Voltage | 12V DC |
| Operating Current | 0.5A to 1.2A (depending on load) |
| Power Consumption | 6W to 15W |
| Maximum Flow Rate | 240 liters per hour (L/h) |
| Maximum Lift Height | 3 meters |
| Pump Type | Submersible |
| Material | Plastic (ABS or similar) |
| Inlet/Outlet Diameter | 8mm to 10mm |
| Cable Length | ~1 meter |
| Operating Temperature | 0°C to 50°C |
| Waterproof Rating | IP68 |
The DC 12V Submersible Water Pump typically has two wires for connection:
| Wire Color | Function | Description |
|---|---|---|
| Red | Positive (+) | Connect to the positive terminal of the 12V DC power source. |
| Black | Negative (-) | Connect to the negative terminal (ground) of the power source. |
The DC 12V Submersible Water Pump 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.
// Define the relay control pin
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
// Start with the pump off
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn the pump on for 5 seconds
digitalWrite(relayPin, HIGH); // Activate relay to power the pump
delay(5000); // Wait for 5 seconds
// Turn the pump off for 5 seconds
digitalWrite(relayPin, LOW); // Deactivate relay to stop the pump
delay(5000); // Wait for 5 seconds
}
| Issue | Possible Cause | Solution |
|---|---|---|
| Pump does not start | No power or incorrect wiring | Check the power supply and wiring connections. |
| Low water flow rate | Clogged inlet or outlet | Clean the inlet and outlet to remove debris. |
| Pump overheats | Running dry or insufficient water level | Ensure the pump is fully submerged in water. |
| Noisy operation | Air trapped in the pump | Submerge the pump fully and tilt it to release trapped air. |
| Pump stops intermittently | Insufficient power supply | Use a power supply with adequate current rating. |
Can this pump be used with liquids other than water?
Is the pump safe for continuous operation?
Can the pump be used outdoors?
What is the maximum distance the pump can lift water?
By following this documentation, you can effectively use the DC 12V Submersible Water Pump in your projects and ensure its longevity and performance.