The Aeroflex 5/2 Way 24V DC Single Solenoid Valve (Part ID: VALVE) is a versatile component used to control the flow of air or fluid in pneumatic or hydraulic systems. This valve features five ports and two positions, allowing for efficient and precise control of fluid dynamics. It operates on a 24V DC power supply and is commonly used in industrial automation, robotics, and various fluid control applications.
Parameter | Specification |
---|---|
Operating Voltage | 24V DC |
Power Consumption | 3W |
Operating Pressure | 0.15 to 0.8 MPa |
Response Time | ≤ 50 ms |
Port Size | 1/4" |
Operating Temperature | -10 to 50°C |
Insulation Class | Class F |
Weight | 0.3 kg |
Pin Number | Description |
---|---|
1 | Solenoid Positive (24V DC) |
2 | Solenoid Negative (GND) |
3 | Port 1 (P) - Pressure |
4 | Port 2 (A) - Output 1 |
5 | Port 3 (R) - Exhaust 1 |
6 | Port 4 (B) - Output 2 |
7 | Port 5 (S) - Exhaust 2 |
Below is an example code to control the Aeroflex 5/2 Way 24V DC Single Solenoid Valve using an Arduino UNO.
// Define the pin connected to the relay module
const int relayPin = 7;
void setup() {
// Initialize the relay pin as an output
pinMode(relayPin, OUTPUT);
// Start with the relay off
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn the relay on (energize the solenoid)
digitalWrite(relayPin, HIGH);
delay(1000); // Keep the solenoid energized for 1 second
// Turn the relay off (de-energize the solenoid)
digitalWrite(relayPin, LOW);
delay(1000); // Keep the solenoid de-energized for 1 second
}
By following this documentation, users can effectively utilize the Aeroflex 5/2 Way 24V DC Single Solenoid Valve in their applications, ensuring reliable and efficient fluid control.