The Electric Water Solenoid Valve 12V DC Normally Closed 1/4" is an electrically operated valve designed to control the flow of water in a system. This valve is "normally closed," meaning it remains in a closed state, preventing water flow until a 12V DC electric current is applied. It is widely used in applications requiring precise water flow control, such as irrigation systems, plumbing setups, and automation projects.
Below are the key technical details and pin configuration for the Electric Water Solenoid Valve:
Parameter | Value |
---|---|
Operating Voltage | 12V DC |
Current Consumption | ~300 mA |
Valve Type | Normally Closed (NC) |
Port Size | 1/4 inch |
Operating Pressure | 0.02 MPa to 0.8 MPa |
Fluid Type | Water (non-corrosive liquids) |
Operating Temperature | 0°C to 55°C |
Material | Plastic body, metal coil |
The solenoid valve has two wires for electrical connection. These wires are not polarized, meaning you can connect them in either orientation.
Wire Color | Description |
---|---|
Red/Black | Connect to 12V DC power supply (either polarity) |
The solenoid valve can be controlled using an Arduino UNO and a relay module. Below is an example circuit and code:
// Define the pin connected to the relay module
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 (open)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the valve open for 5 seconds
// Turn the solenoid valve OFF (close)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the valve closed for 5 seconds
}
Note: Use a flyback diode across the relay coil to protect the circuit from voltage spikes.
Issue | Possible Cause | Solution |
---|---|---|
Valve does not open | Insufficient voltage or current | Ensure a stable 12V DC supply with at least 300 mA. |
Valve remains open after power off | Debris or dirt in the valve | Clean the valve and ensure water is free of debris. |
Valve overheats | Prolonged activation | Limit activation time to prevent overheating. |
Water leaks from connections | Loose or improper plumbing connections | Tighten connections and use Teflon tape if needed. |
Can this valve be used with liquids other than water?
Is the valve waterproof?
Can I control the valve with a microcontroller directly?
What happens if I reverse the polarity of the wires?
By following this documentation, you can effectively integrate the Electric Water Solenoid Valve 12V DC Normally Closed 1/4" into your projects for reliable water flow control.