

The Solenoid Valve 1/2" N/C AC 220V (Male Thread) is an electromechanical device designed to control the flow of fluids in a system. It operates on an AC voltage of 220V and features a normally closed (N/C) configuration, meaning the valve remains closed when no electrical current is applied. When energized, the solenoid coil generates a magnetic field that opens the valve, allowing fluid to pass through. This model is equipped with a 1/2" male thread for easy integration into piping systems.








| Parameter | Specification |
|---|---|
| Operating Voltage | AC 220V |
| Configuration | Normally Closed (N/C) |
| Thread Size | 1/2" Male Thread |
| Material | Brass (body), stainless steel (internal components) |
| Operating Pressure Range | 0.02 MPa to 0.8 MPa |
| Fluid Type | Water, air, or other non-corrosive fluids |
| Power Consumption | Approximately 6-8W |
| Response Time | < 1 second |
| Operating Temperature | 0°C to 80°C |
This solenoid valve does not have traditional pins like an IC or microcontroller. Instead, it features two electrical terminals for AC power input. Below is a description of the terminals:
| Terminal Name | Description |
|---|---|
| Terminal 1 | Live (L) wire connection for AC 220V input |
| Terminal 2 | Neutral (N) wire connection for AC 220V input |
Electrical Connection:
Plumbing Installation:
Operation:
Although this solenoid valve operates on AC 220V and cannot be directly controlled by an Arduino, you can use a relay module to interface it with an Arduino. Below is an example of how to control the solenoid valve using an Arduino and a relay module:
// Define the relay control pin
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
// Ensure the relay is off initially
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn the solenoid valve ON (relay activated)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the valve open for 5 seconds
// Turn the solenoid valve OFF (relay deactivated)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the valve closed for 5 seconds
}
Note: Ensure proper isolation between the Arduino and the AC circuit to avoid electrical hazards.
| Issue | Possible Cause | Solution |
|---|---|---|
| Valve does not open when powered | Incorrect wiring or no power supply | Verify wiring and ensure AC 220V is supplied. |
| Valve leaks fluid when closed | Damaged internal seal or debris inside | Inspect and clean the valve; replace seals if necessary. |
| Valve makes a buzzing noise | Loose coil or improper voltage | Check the coil and ensure the voltage is stable at 220V AC. |
| Valve does not close after power off | Residual pressure or mechanical failure | Release pressure or inspect for mechanical damage. |
Can this valve be used with DC power?
What happens if the valve is installed backward?
Can this valve handle hot water?
Is the valve waterproof?
How do I know if the valve is working?
This documentation provides all the necessary details to understand, use, and troubleshoot the Solenoid Valve 1/2" N/C AC 220V (Male Thread). Always follow safety guidelines when working with high-voltage components.