

The 테무 220V 원격 전원 스위치 is a versatile remote-controlled power switch designed for 220V AC applications. It allows users to remotely control electrical devices, such as lights, fans, or appliances, enhancing convenience, energy efficiency, and safety. This component is ideal for home automation systems, industrial equipment control, and other scenarios where remote operation of electrical devices is required.








| Parameter | Value |
|---|---|
| Operating Voltage | 220V AC |
| Maximum Load Current | 10A |
| Power Rating | 2200W |
| Control Method | RF Remote Control |
| Remote Control Range | Up to 30 meters (line of sight) |
| Frequency | 433 MHz |
| Dimensions | 90mm x 50mm x 30mm |
| Operating Temperature | -10°C to 50°C |
| Manufacturer Part ID | 테무 220V 원격 전원 스위치 |
The 테무 220V 원격 전원 스위치 has the following terminal connections:
| Terminal Label | Description |
|---|---|
| L (Line) | Connect to the live wire of the 220V AC supply. |
| N (Neutral) | Connect to the neutral wire of the 220V AC supply. |
| Load L | Connect to the live wire of the load (e.g., appliance). |
| Load N | Connect to the neutral wire of the load. |
Wiring the Switch:
Pairing the Remote:
Operating the Switch:
While the 테무 220V 원격 전원 스위치 is primarily controlled via its RF remote, it can be integrated with an Arduino UNO using an RF transmitter module. Below is an example code snippet to control the switch using an Arduino:
#include <RH_ASK.h> // Include RadioHead ASK library for RF communication
#include <SPI.h> // Include SPI library (required by RadioHead)
RH_ASK rf_driver; // Initialize RF driver
void setup() {
rf_driver.init(); // Initialize RF communication
}
void loop() {
const char *on_signal = "ON"; // Signal to turn the switch ON
const char *off_signal = "OFF"; // Signal to turn the switch OFF
// Send ON signal
rf_driver.send((uint8_t *)on_signal, strlen(on_signal));
rf_driver.waitPacketSent(); // Wait for the signal to be sent
delay(5000); // Wait for 5 seconds
// Send OFF signal
rf_driver.send((uint8_t *)off_signal, strlen(off_signal));
rf_driver.waitPacketSent(); // Wait for the signal to be sent
delay(5000); // Wait for 5 seconds
}
Note: Replace the
on_signalandoff_signalvalues with the actual RF codes for your remote control. Use an RF sniffer to capture these codes if necessary.
The switch does not respond to the remote control:
The connected device does not turn ON or OFF:
The switch overheats during operation:
Interference with other RF devices:
Can I use this switch with a 110V AC supply?
What happens if the remote is lost?
Is the switch waterproof?
Can I control multiple switches with one remote?
This concludes the documentation for the 테무 220V 원격 전원 스위치. For further assistance, refer to the manufacturer's support resources.