The HVAC Damper, manufactured by Ecojay, is a critical component in heating, ventilation, and air conditioning (HVAC) systems. It is designed to regulate airflow within ducts by opening or closing in response to control signals. This functionality allows for precise control of air distribution, improving energy efficiency and maintaining desired temperature zones in residential, commercial, and industrial environments.
The Ecojay HVAC Damper is available in various sizes and configurations to suit different duct systems. Below are the general technical specifications:
Parameter | Value/Range |
---|---|
Operating Voltage | 24 VAC |
Power Consumption | 2-5 VA (depending on model) |
Control Signal | 2-wire or 3-wire (24 VAC) |
Actuator Type | Motorized (spring-return or non-spring-return) |
Damper Material | Galvanized steel or aluminum |
Operating Temperature | -20°C to 60°C (-4°F to 140°F) |
Torque Rating | 35 in-lb (typical) |
Dimensions | Varies by model (6", 8", 10", etc.) |
The HVAC Damper actuator typically has a 2-wire or 3-wire connection for control. Below is the pin configuration:
Pin Number | Label | Description |
---|---|---|
1 | COM | Common (ground) |
2 | 24V | 24 VAC power input |
Pin Number | Label | Description |
---|---|---|
1 | COM | Common (ground) |
2 | OPEN | Signal to open the damper |
3 | CLOSE | Signal to close the damper |
The HVAC Damper can be controlled using an Arduino UNO with a relay module to switch the 24 VAC signal. Below is an example code snippet:
// Example code to control an HVAC Damper using Arduino UNO and a relay module
// Ensure the relay module is rated for 24 VAC switching
const int openRelayPin = 7; // Pin connected to the relay for opening the damper
const int closeRelayPin = 8; // Pin connected to the relay for closing the damper
void setup() {
pinMode(openRelayPin, OUTPUT); // Set the open relay pin as output
pinMode(closeRelayPin, OUTPUT); // Set the close relay pin as output
// Initialize both relays to OFF state
digitalWrite(openRelayPin, LOW);
digitalWrite(closeRelayPin, LOW);
}
void loop() {
// Example: Open the damper for 5 seconds
digitalWrite(openRelayPin, HIGH); // Activate the open relay
delay(5000); // Wait for 5 seconds
digitalWrite(openRelayPin, LOW); // Deactivate the open relay
// Example: Close the damper for 5 seconds
digitalWrite(closeRelayPin, HIGH); // Activate the close relay
delay(5000); // Wait for 5 seconds
digitalWrite(closeRelayPin, LOW); // Deactivate the close relay
delay(10000); // Wait for 10 seconds before repeating
}
Damper Not Responding:
Damper Stuck in One Position:
Intermittent Operation:
Noisy Operation:
Q: Can the damper be used with a smart thermostat?
Q: What is the lifespan of the damper?
Q: Can the damper be manually operated?
Q: Is the damper compatible with DC power?