The 313KB Peristaltic Pump is a precision fluid movement device commonly used in medical, laboratory, and industrial settings. This pump operates by mechanically compressing a length of flexible tubing, thus propelling the fluid within the tube along in a controlled manner. The design ensures that the fluid only contacts the tubing, not the pump mechanism, which is ideal for sterile applications or when handling aggressive chemicals.
Pin Number | Description | Notes |
---|---|---|
1 | Positive Voltage (V+) | Connect to 12V DC power source |
2 | Ground (GND) | Connect to system ground |
// Define the control pin
const int pumpPin = 3; // Connect the pump control wire to pin 3
void setup() {
pinMode(pumpPin, OUTPUT); // Set the pump control pin as an output
}
void loop() {
digitalWrite(pumpPin, HIGH); // Turn on the pump
delay(1000); // Run the pump for 1 second (1000 milliseconds)
digitalWrite(pumpPin, LOW); // Turn off the pump
delay(1000); // Wait for 1 second
}
Q: How long can the pump run continuously? A: The pump is designed for intermittent use. Continuous operation should be limited to avoid overheating and to prolong the life of the pump.
Q: Can the pump handle viscous fluids? A: Yes, but the flow rate may be reduced depending on the viscosity of the fluid. Ensure the tubing is rated for the specific fluid you are pumping.
Q: Is the pump reversible? A: No, the 313KB Peristaltic Pump is not designed to reverse its direction. Fluid will only flow in one direction.
For further assistance, please contact the manufacturer or your local distributor.