The Double Solenoid by FESTO (Manufacturer Part ID: DOUBLE SOLENOID) is an electromechanical device equipped with two coils. These coils can move a plunger or armature in two directions, making it ideal for controlling the flow of fluids or gases in various systems. Double solenoids are commonly used in automation, pneumatic systems, and hydraulic systems to achieve precise control over fluid or gas flow.
Parameter | Value |
---|---|
Voltage | 24V DC |
Current | 0.5A per coil |
Power Rating | 12W per coil |
Actuation Time | 20 ms |
Operating Pressure | 0 to 10 bar |
Temperature Range | -10°C to 50°C |
Duty Cycle | 100% |
Pin Number | Description |
---|---|
1 | Coil A Positive |
2 | Coil A Negative |
3 | Coil B Positive |
4 | Coil B Negative |
5 | Common Ground |
6 | Not Connected (NC) |
To use the double solenoid in a circuit, follow these steps:
Below is an example code to control the double solenoid using an Arduino UNO:
// Define pin connections
const int coilAPin = 8; // Pin connected to Coil A
const int coilBPin = 9; // Pin connected to Coil B
void setup() {
// Set pin modes
pinMode(coilAPin, OUTPUT);
pinMode(coilBPin, OUTPUT);
}
void loop() {
// Activate Coil A
digitalWrite(coilAPin, HIGH);
delay(1000); // Keep Coil A activated for 1 second
// Deactivate Coil A
digitalWrite(coilAPin, LOW);
delay(500); // Wait for 0.5 seconds
// Activate Coil B
digitalWrite(coilBPin, HIGH);
delay(1000); // Keep Coil B activated for 1 second
// Deactivate Coil B
digitalWrite(coilBPin, LOW);
delay(500); // Wait for 0.5 seconds
}
Solenoid Not Activating:
Overheating:
Erratic Behavior:
By following this documentation, users can effectively integrate and troubleshoot the FESTO Double Solenoid in their projects, ensuring reliable and efficient operation.