Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump

  • 12V DC brushless motor pump
  • Max flow: 240 liters/hour
  • Max lift height: 3 meters
  • Ultra-quiet and energy-efficient
  • Submersible and compact design

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

300,00 EGP

16 People watching this product now!

Payment Methods:

Description

You might be searching for a pump that operates on 12 V and gives an output of above 240L/H then this could be the best choice for your project.

This Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump is a low-cost, small size Submersible Pump. It can take up to 240 liters per hour with a very low current consumption from 300mA. Just connect the tube pipe to the motor outlet, submerge it in water, and power it. The black color pump comes with a heavy-duty cable and a 5mm DC female jack at the end to connect directly to the 12V power supply.  It is widely used in prototype projects as well as for decoration purposes.

 

Caution:

Make sure that the water level is always higher than the motor. The dry run may damage the motor due to heating and it will also produce noise.


Features :

  1. Super long working life(more than 30000 hours); Adopt high-performance ceramic shaft.
  2. The axis is enclosed with static sealing, not dynamic, which can avoid leaking problems.
  3. Amphibious design; Submersible installation and entirely waterproof.
  4. low consumption; low noise(less than 35db),  used in computer cooling system, Garden fountain.
  5. Used in Aquarium, car cooling, humidifier, air conditioner, other cooling and circulation systems.

Package Includes :

1 x Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump

 

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Pumpto H-bridge OUTmotor leads into an H-bridge driver's output terminals
📟
Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump - Arduino Uno
Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump - Arduino Nano
Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump - Arduino Mega
Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump - ESP32
Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump - ESP8266
Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump - STM32
Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump - Raspberry Pi Pico
📄 File: ultra-quiet_dc_12v_3m_240l/h_brushless_submersible_water_pump_-_arduino_uno.inoArduino Uno
666 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=8, IN2=9, ENA(speed)=10 on Arduino Uno.
6#define IN1 8
7#define IN2 9
8#define ENA 10
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: ultra-quiet_dc_12v_3m_240l/h_brushless_submersible_water_pump_-_arduino_nano.inoArduino Nano
667 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=8, IN2=9, ENA(speed)=10 on Arduino Nano.
6#define IN1 8
7#define IN2 9
8#define ENA 10
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: ultra-quiet_dc_12v_3m_240l/h_brushless_submersible_water_pump_-_arduino_mega.inoArduino Mega
667 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=8, IN2=9, ENA(speed)=10 on Arduino Mega.
6#define IN1 8
7#define IN2 9
8#define ENA 10
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: ultra-quiet_dc_12v_3m_240l/h_brushless_submersible_water_pump_-_esp32.inoESP32
664 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=26, IN2=27, ENA(speed)=25 on ESP32.
6#define IN1 26
7#define IN2 27
8#define ENA 25
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: ultra-quiet_dc_12v_3m_240l/h_brushless_submersible_water_pump_-_esp8266.inoESP8266
666 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=D5, IN2=D6, ENA(speed)=D7 on ESP8266.
6#define IN1 D5
7#define IN2 D6
8#define ENA D7
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: ultra-quiet_dc_12v_3m_240l/h_brushless_submersible_water_pump_-_stm32.inoSTM32
670 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=PB0, IN2=PB1, ENA(speed)=PA8 on STM32.
6#define IN1 PB0
7#define IN2 PB1
8#define ENA PA8
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
📄 File: ultra-quiet_dc_12v_3m_240l/h_brushless_submersible_water_pump_-_raspberry_pi_pico.inoRaspberry Pi Pico
676 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// Ultra-Quiet DC 12V 3M 240L/H Brushless Submersible Water Pump needs an H-bridge driver (e.g. L298N/L293D/L9110S) between it and the board - a GPIO pin alone can't supply a motor's current. IN1=14, IN2=15, ENA(speed)=16 on Raspberry Pi Pico.
6#define IN1 14
7#define IN2 15
8#define ENA 16
9
10void setup() {
11 Serial.begin(115200);
12 pinMode(IN1, OUTPUT);
13 pinMode(IN2, OUTPUT);
14 pinMode(ENA, OUTPUT);
15}
16
17void loop() {
18 digitalWrite(IN1, HIGH); digitalWrite(IN2, LOW);
19 analogWrite(ENA, 200); // run forward at ~78% speed
20 delay(2000);
21 digitalWrite(IN1, LOW); digitalWrite(IN2, LOW); // stop
22 delay(1000);
23}
A DC water pump is electrically just a DC motor - drive it through the same kind of H-bridge or single-transistor switch.

Specification

Specification

WeightWeight3,0000 g
Dimensions6 × 3,5 × 3,5 cm
Product NameUltra-Quiet DC 12V Brushless Submersible Water Pump – 3M, 240 L/H
TypeSubmersible Water Pump
Operating Voltage12 V DC
Pump TypeBrushless DC Motor
Maximum Flow Rate240 L/H
Maximum Head / Lift3 m
Power Consumption~4–6 W (typical)
Noise LevelUltra-Quiet
MaterialPlastic Housing with Internal Brushless Motor
Connection Type2-Pin Wire Leads
Operating Temperature0°C to +50°C (liquid temperature)
ApplicationsAquarium, Fountain, Water Circulation, Arduino / DIY Water Projects, Small Hydroponics Systems
Package Contents1× Ultra-Quiet DC 12V Brushless Submersible Water Pump – 3M, 240 L/H

Customer Reviews