DC Submersible Aquarium Pump 6V-12V 5W 500L/H
DC Submersible Aquarium Pump 6V-12V 5W 500L/H
The DC Submersible Aquarium Pump 6V-12V 5W 500L/H is a compact, energy-efficient, and reliable water circulation pump designed specifically for use in aquariums, pet habitats, and other aquatic environments. This pump is ideal for creating water movement, increasing oxygen levels, and improving overall water quality in small to medium-sized aquariums.
The DC Submersible Aquarium Pump is designed to circulate water in aquariums, providing a gentle and consistent flow rate. The pump uses a DC motor, which allows for adjustable voltage input (6V-12V) and ensures energy efficiency, low noise, and reduced heat generation. The pump's impeller design creates a smooth, quiet operation, making it suitable for use in a variety of aquatic applications.
6V-12V DC
5W
500 L/H
TBD
High-quality plastic and metal components
20C - 40C (68F - 104F)
1.5m (4.9ft)
CE, RoHS compliant
Small to medium-sized aquariums
Pet habitats and vivariums
Hydroponic and aquaponic systems
Laboratory and scientific applications
The DC Submersible Aquarium Pump 6V-12V 5W 500L/H comes with a [insert warranty period]-year limited warranty. For technical support, documentation, and troubleshooting, please refer to the manufacturer's website or contact their dedicated customer support team.
DC Submersible Aquarium Pump 6V-12V 5W 500L/H DocumentationOverviewThe DC Submersible Aquarium Pump 6V-12V 5W 500L/H is a compact, energy-efficient, and reliable pump designed for small to medium-sized aquariums. It operates within a wide voltage range of 6V to 12V and consumes only 5W of power while providing a flow rate of 500 liters per hour.Technical SpecificationsVoltage: 6V - 12V
Power: 5W
Flow Rate: 500 liters per hour
Dimensions: [insert dimensions]
Weight: [insert weight]
Materials: [insert materials]PinoutThe pump has a simple two-wire connection:Positive (+) wire: Red
Negative (-) wire: BlackExample Code 1: Basic Pump Control with ArduinoIn this example, we'll use an Arduino board to control the pump's speed by adjusting the voltage applied to it.```c
const int pumpPin = 9; // Digital pin 9 to control the pumpvoid setup() {
pinMode(pumpPin, OUTPUT);
}void loop() {
// Set the pump speed to 50% (6V)
analogWrite(pumpPin, 128); // 0-255 corresponds to 0-12V
delay(1000);
// Set the pump speed to 100% (12V)
analogWrite(pumpPin, 255);
delay(1000);
}
```Example Code 2: Automatic Water Level Control with Raspberry PiIn this example, we'll use a Raspberry Pi to control the pump based on the water level in the aquarium.```python
import RPi.GPIO as GPIO
import time# Set up GPIO pin for pump control
pump_pin = 17
GPIO.setmode(GPIO.BCM)
GPIO.setup(pump_pin, GPIO.OUT)# Function to control the pump based on water level
def control_pump(water_level):
if water_level < 50: # If water level is low, turn on the pump
GPIO.output(pump_pin, GPIO.HIGH)
else:
GPIO.output(pump_pin, GPIO.LOW)# Read water level from a sensor (e.g., ultrasonic sensor)
water_level = read_water_level()while True:
control_pump(water_level)
time.sleep(1)
```Example Code 3: Wireless Pump Control with ESP32In this example, we'll use an ESP32 board to control the pump wirelessly using Wi-Fi.```c
#include <WiFi.h>const char ssid = "your_wifi_ssid";
const char password = "your_wifi_password";WiFiServer server(80);const int pumpPin = 5; // Digital pin 5 to control the pumpvoid setup() {
Serial.begin(115200);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(1000);
Serial.println("Connecting to WiFi...");
}
Serial.println("Connected to WiFi");
server.begin();pinMode(pumpPin, OUTPUT);
}void loop() {
WiFiClient client = server.available();
if (client) {
String request = client.readStringUntil('
');
if (request.indexOf("/pump/on") != -1) {
digitalWrite(pumpPin, HIGH);
client.println("Pump turned on!");
} else if (request.indexOf("/pump/off") != -1) {
digitalWrite(pumpPin, LOW);
client.println("Pump turned off!");
}
client.stop();
}
}
```These examples demonstrate how to use the DC Submersible Aquarium Pump 6V-12V 5W 500L/H in various contexts, including basic pump control, automatic water level control, and wireless pump control.