

The 3V 3A DC Pump (Manufacturer: ZyrexRobotics, Part ID: DC Pump) is a compact and efficient electric pump designed to operate on a 3-volt direct current (DC) supply. With a maximum current rating of 3 amps, this pump is ideal for applications requiring the movement of liquids in small-scale systems. Its versatility and reliability make it a popular choice for projects such as aquariums, water cooling systems, and micro-irrigation setups.








| Parameter | Value |
|---|---|
| Operating Voltage | 3V DC |
| Maximum Current | 3A |
| Flow Rate | ~1.5–2.5 liters per minute (varies by load) |
| Maximum Lift Height | ~1.5 meters |
| Inlet/Outlet Diameter | ~5 mm |
| Operating Temperature | 0°C to 50°C |
| Dimensions | ~40 mm x 30 mm x 25 mm |
| Weight | ~50 grams |
The 3V 3A DC Pump has two wires for electrical connection:
| Wire Color | Function | Description |
|---|---|---|
| Red | Positive (+) | Connect to the positive terminal of the power supply. |
| Black | Negative (-) | Connect to the negative terminal of the power supply. |
The 3V 3A DC Pump can be controlled using an Arduino UNO and a transistor or relay module. Below is an example circuit and code to control the pump using a relay module.
// Arduino code to control a 3V 3A DC pump using a relay module
const int relayPin = 7; // Pin connected to the relay module's IN pin
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the pump is off at startup
}
void loop() {
// Turn the pump ON
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the pump on for 5 seconds
// Turn the pump OFF
digitalWrite(relayPin, LOW);
delay(5000); // Keep the pump off for 5 seconds
}
Pump Does Not Start:
Low Flow Rate:
Pump Overheats:
Noise or Vibration:
Q: Can the pump handle hot liquids?
Q: Is the pump waterproof?
Q: Can I control the pump speed?
Q: What type of tubing should I use?
This concludes the documentation for the 3V 3A DC Pump by ZyrexRobotics. For further assistance, refer to the manufacturer's support resources.