

The DC 12V Submersible Water Pump is a compact and efficient pump designed to operate underwater. It is commonly used for moving water in aquariums, fountains, hydroponic systems, or small-scale irrigation setups. Powered by a 12V DC power source, this pump is energy-efficient, easy to use, and highly reliable for continuous operation in various water circulation applications.








Below are the key technical details of the DC 12V Submersible Water Pump:
| Parameter | Specification |
|---|---|
| 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 a simple two-wire 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 of the 12V DC 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() {
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
}
Pump does not start:
Low water flow:
Pump makes unusual noise:
Pump overheats:
Q: Can this pump be used with liquids other than water?
A: The pump is designed for water. Using it with other liquids may damage the internal components or reduce its lifespan.
Q: Is the pump safe for saltwater use?
A: Yes, the pump can be used in saltwater, but regular cleaning is recommended to prevent corrosion.
Q: Can the pump be used continuously?
A: Yes, the pump is designed for continuous operation, provided it is submerged and used within its specifications.
Q: How do I clean the pump?
A: Disconnect the pump from the power supply, remove it from the water, and clean the inlet and outlet with a soft brush to remove debris.