The DC 12V Submersible Water Pump is a compact and efficient device designed to operate underwater. It is commonly used for moving water in aquariums, fountains, hydroponic systems, or small-scale irrigation setups. This pump operates on a 12V DC power supply, making it ideal for low-voltage applications where safety and energy efficiency are priorities. Its small size and quiet operation make it suitable for both residential and hobbyist projects.
Below are the key technical details and pin configuration for the DC 12V Submersible Water Pump:
Parameter | Value |
---|---|
Operating Voltage | 12V DC |
Operating Current | 0.5A to 1A (depending on load) |
Power Consumption | 6W to 12W |
Maximum Flow Rate | 240 liters per hour (L/h) |
Maximum Lift Height | 3 meters |
Pump Type | Submersible |
Material | Plastic (waterproof housing) |
Dimensions | ~45mm x 35mm x 30mm |
Weight | ~100g |
Cable Length | ~1 meter |
Operating Temperature | 0°C to 50°C |
The DC 12V Submersible Water Pump has a simple two-wire connection:
Wire Color | Description |
---|---|
Red | Positive terminal (+12V DC) |
Black | Negative terminal (Ground) |
Below is an example of how to control the DC 12V Submersible Water Pump using an Arduino UNO and a relay module:
// Example: Controlling a DC 12V Submersible Water Pump with Arduino UNO
// This code turns the pump on for 5 seconds and off for 5 seconds in a loop.
const int relayPin = 7; // 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
}
Wiring Notes:
Issue | Possible Cause | Solution |
---|---|---|
Pump does not start | Incorrect wiring or no power supply | Check connections and ensure 12V DC is supplied. |
Pump runs but no water is pumped | Airlock or clogged inlet/outlet | Submerge the pump fully and clear any obstructions. |
Pump is noisy | Debris inside the pump | Clean the pump and ensure water is free of debris. |
Pump overheats | Running dry or excessive voltage | Ensure the pump is submerged and use a regulated 12V DC supply. |
Can the pump be used with liquids other than water?
Can the pump be used outdoors?
What happens if the pump is run dry?
Can the pump be controlled with a PWM signal?
By following this documentation, you can effectively use the DC 12V Submersible Water Pump in your projects while ensuring safety and optimal performance.