

The Solenoid Valve 1/2" N/C AC 220V is an electromechanical valve designed to control the flow of fluids in a system. This specific model is a normally closed (N/C) valve, meaning it remains closed when no electrical current is applied and opens when powered. It operates on 220V AC and features a 1/2-inch male threaded connection for straightforward integration into pipelines.








| Parameter | Specification |
|---|---|
| Valve Type | Normally Closed (N/C) |
| Operating Voltage | 220V AC |
| Power Consumption | ~15W |
| Connection Type | 1/2-inch Male Thread |
| Operating Pressure Range | 0.02 MPa to 0.8 MPa |
| Fluid Type | Water, low-viscosity fluids |
| Body Material | Brass |
| Seal Material | NBR (Nitrile Butadiene Rubber) |
| Response Time | < 1 second |
| Operating Temperature | 0°C to 80°C |
The solenoid valve does not have traditional pins like an IC but instead has two electrical terminals for AC power input. Below is a description of the connections:
| Terminal Name | Description |
|---|---|
| Terminal 1 | Live (L) wire connection for 220V AC input |
| Terminal 2 | Neutral (N) wire connection for 220V AC |
Note: Ensure proper insulation and secure connections to avoid electrical hazards.
To control the solenoid valve using an Arduino UNO, you can use a relay module to switch the 220V AC power. Below is an example code snippet:
// Example code to control a solenoid valve using Arduino and a relay module
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set the relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn on the relay (valve opens)
delay(5000); // Keep the valve open for 5 seconds
digitalWrite(relayPin, LOW); // Turn off the relay (valve closes)
delay(5000); // Wait for 5 seconds before repeating
}
Note: Ensure proper isolation between the Arduino and the high-voltage AC circuit. Use an optocoupler-based relay module for safety.
| Issue | Possible Cause | Solution |
|---|---|---|
| Valve does not open | No power supply or incorrect wiring | Check the power source and wiring. |
| Valve leaks when closed | Damaged seal or debris in the valve | Inspect and clean the valve; replace seal if needed. |
| Valve makes a buzzing noise | Loose coil or improper voltage | Ensure proper voltage and secure the coil. |
| Fluid flow is restricted | Blockage in the pipeline or valve | Clean the pipeline and valve. |
Can this valve be used with DC power? No, this valve is designed specifically for 220V AC operation.
What happens if the power supply is interrupted? Since this is a normally closed (N/C) valve, it will automatically close when power is lost.
Can this valve handle hot water? Yes, it can handle fluids up to 80°C, making it suitable for hot water applications.
How do I know the flow direction? The valve body has an arrow indicating the correct flow direction.
By following this documentation, you can effectively integrate and troubleshoot the Solenoid Valve 1/2" N/C AC 220V in your projects.