The T73 Series 16 Channel 24V Relay is an electromechanical device that operates as an electrically controlled switch. It is designed for medium to high current applications and is commonly used in industrial automation, home automation, and other applications where multiple circuits need to be controlled independently. The relay module can be easily mounted on a DIN rail, making it suitable for installation in electrical cabinets and control panels.
Pin Number | Description | Notes |
---|---|---|
1-16 | Relay Channels (NO, NC, COM) | NO: Normally Open, NC: Normally Closed, COM: Common |
IN1-IN16 | Input Control Signals | TTL compatible, Active Low |
GND | Ground | Connect to system ground |
VCC | Power Supply (24V) | Connect to 24V DC |
Below is an example code snippet for controlling one channel of the T73 Series 16 Channel 24V Relay using an Arduino UNO. This code will turn the relay on and off in a loop.
// Define the control pin for relay channel 1
const int relayPin = 2;
void setup() {
// Set the relay control pin as an output
pinMode(relayPin, OUTPUT);
}
void loop() {
// Turn the relay on by setting the control pin LOW
digitalWrite(relayPin, LOW);
delay(1000); // Wait for 1 second
// Turn the relay off by setting the control pin HIGH
digitalWrite(relayPin, HIGH);
delay(1000); // Wait for 1 second
}
Note: The control pins are active low, which means setting the pin to LOW activates the relay and setting it to HIGH deactivates it.
Remember to adjust the relayPin
variable to match the input pin connected to the Arduino UNO. Repeat the setup and control logic for additional channels as needed.