

The 테무 릴레이 4개 버튼 is a versatile 4-channel relay module designed for controlling high-power devices using low-power control signals. Manufactured by 테무, this module is ideal for applications requiring multiple relay switches, such as home automation, industrial control systems, and robotics. Each relay can be independently controlled, making it suitable for switching AC or DC loads.








| Parameter | Value |
|---|---|
| Manufacturer | 테무 |
| Part ID | 테무 릴레이 4개 버튼 |
| Number of Channels | 4 |
| Operating Voltage | 5V DC |
| Trigger Voltage | 3.3V to 5V DC |
| Maximum Load (AC) | 250V AC @ 10A |
| Maximum Load (DC) | 30V DC @ 10A |
| Isolation | Optocoupler isolation |
| Dimensions | 75mm x 55mm x 20mm |
| Weight | ~60g |
The 테무 릴레이 4개 버튼 module has a total of 10 pins for control and power, along with 12 terminal blocks for load connections.
| Pin Name | Description |
|---|---|
| VCC | Power supply input (5V DC) |
| GND | Ground connection |
| IN1 | Control signal for Relay 1 (Active LOW) |
| IN2 | Control signal for Relay 2 (Active LOW) |
| IN3 | Control signal for Relay 3 (Active LOW) |
| IN4 | Control signal for Relay 4 (Active LOW) |
Each relay has three terminals: COM, NO, and NC.
| Terminal | Description |
|---|---|
| COM | Common terminal for the relay |
| NO | Normally Open terminal (connected when relay is activated) |
| NC | Normally Closed terminal (connected when relay is deactivated) |
Below is an example code to control the 테무 릴레이 4개 버튼 module using an Arduino UNO:
// Define relay control pins
#define RELAY1 2 // Pin connected to IN1
#define RELAY2 3 // Pin connected to IN2
#define RELAY3 4 // Pin connected to IN3
#define RELAY4 5 // Pin connected to IN4
void setup() {
// Set relay pins as outputs
pinMode(RELAY1, OUTPUT);
pinMode(RELAY2, OUTPUT);
pinMode(RELAY3, OUTPUT);
pinMode(RELAY4, OUTPUT);
// Initialize all relays to OFF (HIGH state)
digitalWrite(RELAY1, HIGH);
digitalWrite(RELAY2, HIGH);
digitalWrite(RELAY3, HIGH);
digitalWrite(RELAY4, HIGH);
}
void loop() {
// Example: Turn on Relay 1 for 2 seconds, then turn it off
digitalWrite(RELAY1, LOW); // Activate Relay 1
delay(2000); // Wait for 2 seconds
digitalWrite(RELAY1, HIGH); // Deactivate Relay 1
// Add similar logic for other relays as needed
}
Relays Not Activating:
Load Not Switching:
Microcontroller Not Controlling Relays:
Electrical Noise or Interference:
Q1: Can this module be used with a 3.3V microcontroller like the ESP8266?
A1: Yes, the module supports trigger voltages as low as 3.3V. However, ensure the VCC pin is still powered with 5V DC.
Q2: Is it safe to control high-power AC devices with this module?
A2: Yes, as long as the load does not exceed the maximum ratings (250V AC @ 10A). Always follow proper safety precautions when working with high voltages.
Q3: Can I control all four relays simultaneously?
A3: Yes, you can activate all four relays at the same time, provided your power supply can handle the current requirements.
Q4: What is the purpose of the optocouplers?
A4: The optocouplers provide electrical isolation between the control circuit and the high-power relay circuit, improving safety and reducing noise.
This concludes the documentation for the 테무 릴레이 4개 버튼 module.