The Hunter PGV 101g is a 24V solenoid-operated irrigation valve designed for residential and light commercial use in controlling the flow of water in irrigation systems. This valve is widely used in automated sprinkler systems, drip irrigation setups, and can be integrated into smart home automation for scheduled watering.
Pin No. | Description | Notes |
---|---|---|
1 | Solenoid Lead (24V) | Connect to 24V AC power supply |
2 | Solenoid Lead (GND) | Connect to common/ground line |
// Example code to control a Hunter PGV 101g valve using an Arduino UNO and a relay module
const int relayPin = 2; // Relay control connected to digital pin 2
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as an output
digitalWrite(relayPin, LOW); // Start with the valve closed
}
void loop() {
digitalWrite(relayPin, HIGH); // Open the valve
delay(10000); // Keep the valve open for 10 seconds
digitalWrite(relayPin, LOW); // Close the valve
delay(20000); // Keep the valve closed for 20 seconds
}
Note: The above code assumes the use of a normally open relay module that activates the valve when the relay is energized.
FAQs:
Q: Can I use a DC power supply with this valve?
Q: How can I integrate this valve into a smart home system?
Q: What is the warranty period for the Hunter PGV 101g valve?
For further assistance, contact Hunter's customer support or refer to the official PGV 101g manual.