

The 24 V DC Solenoid Valve NC (Normally Closed) is an electromechanical device designed to control the flow of fluids. When energized with a 24-volt DC power supply, the valve opens to allow fluid flow. Conversely, when de-energized, the valve closes to stop the flow. This type of solenoid valve is commonly used in various applications, including:








| Parameter | Value |
|---|---|
| Operating Voltage | 24 V DC |
| Current Rating | 0.5 A |
| Power Consumption | 12 W |
| Operating Pressure | 0-10 bar |
| Response Time | < 50 ms |
| Port Size | 1/2 inch |
| Material | Brass/Stainless Steel |
| Temperature Range | -10°C to 80°C |
| Pin Number | Description |
|---|---|
| 1 | Positive Terminal (+) |
| 2 | Negative Terminal (-) |
/*
* Example code to control a 24 V DC Solenoid Valve NC using Arduino UNO.
* The solenoid valve is connected to a relay module, which is controlled
* by the Arduino.
*/
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as an output
digitalWrite(relayPin, LOW); // Ensure the relay is off initially
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn on the relay (energize solenoid)
delay(5000); // Keep the valve open for 5 seconds
digitalWrite(relayPin, LOW); // Turn off the relay (de-energize solenoid)
delay(5000); // Keep the valve closed for 5 seconds
}
By following this documentation, users can effectively integrate and troubleshoot the 24 V DC Solenoid Valve NC in their projects, ensuring reliable and efficient fluid control.