The Relay Module 24V-5V by SFT is an electronic switching device that enables the control of high-voltage devices using a low-voltage signal. This module is designed to switch between 24V and 5V, making it ideal for automation, control systems, and IoT applications. It is commonly used in projects where electrical isolation and high-power switching are required, such as home automation, industrial control, and robotics.
The following table outlines the key technical details of the Relay Module 24V-5V:
Parameter | Value |
---|---|
Operating Voltage | 5V DC (control side) |
Switching Voltage | Up to 24V DC or 250V AC |
Switching Current | Up to 10A |
Trigger Voltage | 3.3V to 5V |
Relay Type | SPDT (Single Pole Double Throw) |
Isolation | Optocoupler-based isolation |
Dimensions | 50mm x 25mm x 18mm |
Manufacturer | SFT |
The relay module typically has the following pin configuration:
Pin Name | Description |
---|---|
VCC | 5V DC power supply for the module |
GND | Ground connection |
IN | Control signal input (3.3V to 5V logic) |
Pin Name | Description |
---|---|
COM | Common terminal for the relay switch |
NO | Normally Open terminal (connected when active) |
NC | Normally Closed terminal (connected when inactive) |
Below is an example of how to control the relay module using an Arduino UNO:
// Example: Controlling a Relay Module with Arduino UNO
// Pin Definitions
const int relayPin = 7; // Connect the IN pin of the relay to digital pin 7
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as an output
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn the relay ON
delay(1000); // Wait for 1 second
digitalWrite(relayPin, LOW); // Turn the relay OFF
delay(1000); // Wait for 1 second
}
relayPin
with the appropriate pin number if using a different microcontroller.Relay Not Activating:
Load Not Switching:
Relay Stuck in One State:
Noise or Flickering:
Q1: Can I use this relay module with a 3.3V microcontroller like the ESP32?
A1: Yes, the relay module can be triggered with a 3.3V control signal. Ensure the VCC pin is still powered with 5V.
Q2: Is the relay module suitable for AC loads?
A2: Yes, the relay can switch AC loads up to 250V, provided the current does not exceed 10A.
Q3: Can I control multiple relays with one microcontroller?
A3: Yes, as long as each relay is connected to a separate digital output pin and the microcontroller can supply sufficient current.
Q4: How do I know if the relay is active?
A4: Most relay modules include an onboard LED that lights up when the relay is activated.
By following this documentation, you can effectively integrate the SFT Relay Module 24V-5V into your projects for reliable and efficient high-voltage control.