6V-12V DC
6V-12V DC
4W-5W
up to 500L/H
0.5m-1.5m
30mm
60mm
1.5m
0C-40C
IP68
Applications
The DC Submersible Aquarium Pump 6V-12V 4W-5W 500L/H is suitable for various aquatic applications, including |
Small to medium-sized aquariums
Ponds and water gardens
Hydroponic and aquaponic systems
Decorative fountains and water features
Certifications and Compliance
The pump meets international safety standards and regulations, including |
CE certification
RoHS compliance
UL certification (optional)
Warranty and Support
The pump comes with a manufacturer-provided warranty and technical support, including |
1-year limited warranty
Dedicated customer support team
Online documentation and resources
Overall, the DC Submersible Aquarium Pump 6V-12V 4W-5W 500L/H is a reliable, efficient, and compact solution for aquarium enthusiasts and professionals, offering a range of features and benefits that enhance the overall aquatic experience.
DC Submersible Aquarium Pump 6V-12V 4W-5W 500L/H Documentation
Overview
The DC Submersible Aquarium Pump is a compact and efficient pump designed for use in aquariums and other water-based systems. Operating on a DC voltage range of 6V to 12V, this pump is capable of delivering a maximum flow rate of 500 liters per hour while consuming a power of 4W to 5W. Its submersible design makes it suitable for underwater operation, minimizing noise and vibration.
Technical Specifications
Voltage: 6V to 12V DC
Power: 4W to 5W
Flow Rate: up to 500 liters per hour (L/H)
Submersible Design: Suitable for underwater operation
Dimensions: [Insert dimensions]
Code Examples
### Example 1: Basic On/Off Control using Arduino
This example demonstrates how to control the DC Submersible Aquarium Pump using an Arduino board.
Hardware Requirements
Arduino Board (e.g., Arduino Uno)
DC Submersible Aquarium Pump
Breadboard and jumper wires
Software Requirements
Arduino IDE
Code
```c
const int pumpPin = 9; // Pin connected to the pump
void setup() {
pinMode(pumpPin, OUTPUT);
}
void loop() {
// Turn the pump on for 10 seconds
digitalWrite(pumpPin, HIGH);
delay(10000);
// Turn the pump off for 5 seconds
digitalWrite(pumpPin, LOW);
delay(5000);
}
```
Explanation
In this example, we connect the pump to digital pin 9 of the Arduino board. We set the pin as an output in the `setup()` function. In the `loop()` function, we turn the pump on by setting the pin high for 10 seconds, then turn it off by setting the pin low for 5 seconds. This creates a basic on/off cycle for the pump.
### Example 2: PWM Control using Raspberry Pi and Python
This example demonstrates how to control the DC Submersible Aquarium Pump using a Raspberry Pi and Python.
Hardware Requirements
Raspberry Pi Board (e.g., Raspberry Pi 4)
DC Submersible Aquarium Pump
Breadboard and jumper wires
Software Requirements
Raspbian OS
Python 3.x
Code
```python
import RPi.GPIO as GPIO
import time
# Set up GPIO mode
GPIO.setmode(GPIO.BCM)
# Define the pump pin
pump_pin = 17
# Set up the pump pin as an output
GPIO.setup(pump_pin, GPIO.OUT)
try:
while True:
# Set the pump to 50% duty cycle (half speed)
GPIO.PWM(pump_pin, 50).start(50)
time.sleep(5)
# Set the pump to 100% duty cycle (full speed)
GPIO.PWM(pump_pin, 100).start(100)
time.sleep(5)
# Turn the pump off
GPIO.output(pump_pin, GPIO.LOW)
time.sleep(5)
except KeyboardInterrupt:
GPIO.cleanup()
```
Explanation
In this example, we use the RPi.GPIO library to control the pump. We set up the pump pin as an output and use the `GPIO.PWM` function to create a PWM signal. We then set the duty cycle to 50% for 5 seconds, 100% for 5 seconds, and turn the pump off for 5 seconds. This creates a simple PWM control example for the pump.
Note: Make sure to adjust the pin numbers and voltage levels according to your specific setup and requirements. Additionally, ensure proper safety precautions when working with electrical components and water.