3.5V 12V DC
3.5V 12V DC
1.5A
0.5L/min 5L/min (adjustable)
0 10 bar (0 145 psi)
Brushless DC Motor
38mm diameter, 14mm height
20g
-20C to 60C
5% 95% RH
Applications
| The R385 DC Pump is suitable for a wide range of applications, including |
IoT devices (e.g., environmental monitoring, industrial automation)
Robotics (e.g., fluid dispensing, hydraulic systems)
Industrial automation (e.g., process control, fluid management)
Medical devices (e.g., infusion pumps, dialysis machines)
Aerospace and defense (e.g., fluid management systems, propulsion systems)
Ordering Information
| To order the R385 DC Pump, please specify the following |
R385-DCP
[Insert quantity]
[Insert packaging option (e.g., bulk, individual)]
Warranty and Support
The R385 DC Pump is backed by a 2-year limited warranty. For technical support, documentation, and warranty information, please visit our website or contact our support team.
R385 DC PUMP DocumentationOverviewThe R385 DC PUMP is a compact, high-performance DC pump designed for use in IoT applications, such as liquid cooling systems, medical devices, and industrial automation. This pump features a high-pressure output, low power consumption, and a compact design, making it an ideal choice for space-constrained applications.SpecificationsOperating Voltage: 12V DC
Maximum Pressure: 3.5 Bar
Maximum Flow Rate: 1.2 L/min
Power Consumption: 5W
Connection: 1/4" tube fitting
Dimensions: 38 x 38 x 63 mmCode Examples### Example 1: Basic Pump Control using ArduinoIn this example, we will demonstrate how to control the R385 DC PUMP using an Arduino board.```cpp
const int pumpPin = 9; // Pin connected to pump's positive terminalvoid setup() {
pinMode(pumpPin, OUTPUT);
}void loop() {
// Turn the pump on
digitalWrite(pumpPin, HIGH);
delay(5000); // Run the pump for 5 seconds// Turn the pump off
digitalWrite(pumpPin, LOW);
delay(5000); // Wait for 5 seconds before turning it back on
}
```### Example 2: Pump Control with Raspberry Pi and PythonIn this example, we will demonstrate how to control the R385 DC PUMP using a Raspberry Pi and Python.```python
import RPi.GPIO as GPIO
import time# Set up GPIO library
GPIO.setmode(GPIO.BCM)
pump_pin = 17 # Pin connected to pump's positive terminal
GPIO.setup(pump_pin, GPIO.OUT)while True:
# Turn the pump on
GPIO.output(pump_pin, GPIO.HIGH)
time.sleep(5) # Run the pump for 5 seconds# Turn the pump off
GPIO.output(pump_pin, GPIO.LOW)
time.sleep(5) # Wait for 5 seconds before turning it back on
```### Example 3: Pump Control with ESP32 and MicroPythonIn this example, we will demonstrate how to control the R385 DC PUMP using an ESP32 board and MicroPython.```python
import machine
import timepump_pin = machine.Pin(15, machine.Pin.OUT) # Pin connected to pump's positive terminalwhile True:
# Turn the pump on
pump_pin.value(1)
time.sleep(5) # Run the pump for 5 seconds# Turn the pump off
pump_pin.value(0)
time.sleep(5) # Wait for 5 seconds before turning it back on
```These examples demonstrate the basic control of the R385 DC PUMP using various microcontrollers and programming languages. The pump can be used in more complex applications by incorporating sensors, valves, and other components to create a more sophisticated liquid handling system.