The 2/2 Solenoid Valve is an electromechanical device designed to control the flow of fluids in various systems. It features two ports and two positions, enabling it to either allow or block fluid flow based on its energized or de-energized state. This versatility makes it ideal for applications in automation, irrigation, HVAC systems, and fluid control in industrial processes.
Specification | Value |
---|---|
Manufacturer | Jectse |
Manufacturer Part ID | jectseiogt8zvfgy-12 |
Voltage Rating | 12V DC |
Current Rating | 0.5A |
Power Rating | 6W |
Fluid Type | Air, Water, Oil |
Maximum Pressure | 0-10 bar |
Temperature Range | -10°C to 60°C |
Pin Number | Description |
---|---|
1 | Coil Positive (+) |
2 | Coil Negative (-) |
3 | Port A (Inlet) |
4 | Port B (Outlet) |
Wiring the Solenoid Valve:
Controlling the Valve:
Valve Not Opening:
Fluid Leaks:
Valve Sticking:
Here is a simple example of how to control the 2/2 solenoid valve using an Arduino UNO:
// Define pin for relay control
const int relayPin = 7;
void setup() {
// Set relay pin as output
pinMode(relayPin, OUTPUT);
}
void loop() {
// Activate the solenoid valve
digitalWrite(relayPin, HIGH); // Turn on
delay(5000); // Keep it on for 5 seconds
// Deactivate the solenoid valve
digitalWrite(relayPin, LOW); // Turn off
delay(5000); // Keep it off for 5 seconds
}
This code will turn the solenoid valve on for 5 seconds and then off for 5 seconds in a continuous loop. Adjust the delay()
values as needed for your application.