

The RC-36 reed relay, manufactured by TZT, is an electromagnetic switch that uses a magnetic field to operate a pair of contacts. This component is designed for low-power applications, offering reliable isolation and control in electronic circuits. Its compact design and efficient operation make it ideal for use in signal switching, test equipment, telecommunications, and other low-power control systems.








The RC-36 reed relay is optimized for low-power applications and provides excellent performance in compact designs. Below are the key technical details:
| Parameter | Value | 
|---|---|
| Coil Voltage | 5V DC | 
| Coil Resistance | 500 Ω ±10% | 
| Contact Rating | 10W (Max) | 
| Switching Voltage | 200V DC (Max) | 
| Switching Current | 0.5A (Max) | 
| Breakdown Voltage | 250V DC | 
| Operate Time | 0.5 ms (Typical) | 
| Release Time | 0.1 ms (Typical) | 
| Insulation Resistance | ≥10⁹ Ω | 
| Parameter | Value | 
|---|---|
| Dimensions | 20mm x 10mm x 8mm | 
| Weight | 2g | 
| Contact Material | Ruthenium | 
| Operating Temperature | -40°C to +85°C | 
| Storage Temperature | -55°C to +125°C | 
The RC-36 reed relay has a 4-pin configuration. The table below describes each pin:
| Pin Number | Name | Description | 
|---|---|---|
| 1 | Coil (+) | Positive terminal of the relay coil | 
| 2 | Coil (-) | Negative terminal of the relay coil | 
| 3 | Common (COM) | Common terminal of the relay contacts | 
| 4 | Normally Open (NO) | Normally open contact terminal | 
The RC-36 reed relay is straightforward to use in electronic circuits. Follow the steps below to integrate it into your design:
Below is an example of how to control the RC-36 reed relay using an Arduino UNO:
// RC-36 Reed Relay Control Example
// This code demonstrates how to control the RC-36 relay using an Arduino UNO.
const int relayPin = 7; // Define the digital pin connected to the relay coil
void setup() {
  pinMode(relayPin, OUTPUT); // Set the relay pin as an output
  digitalWrite(relayPin, LOW); // Ensure the relay is off at startup
}
void loop() {
  digitalWrite(relayPin, HIGH); // Activate the relay
  delay(1000); // Keep the relay on for 1 second
  digitalWrite(relayPin, LOW); // Deactivate the relay
  delay(1000); // Keep the relay off for 1 second
}
Relay Not Activating
Contact Not Closing
Voltage Spikes Damaging Circuit
Relay Heating Up
Q1: Can the RC-36 relay switch AC loads?
A1: Yes, the RC-36 can switch low-power AC loads, but ensure the voltage and current ratings are not exceeded.
Q2: What is the lifespan of the RC-36 relay?
A2: The RC-36 has a mechanical lifespan of over 10 million operations under normal conditions.
Q3: Can I use the RC-36 with a 3.3V microcontroller?
A3: Yes, but you will need a transistor or MOSFET to drive the relay coil with 5V DC.
Q4: Is the RC-36 suitable for high-frequency switching?
A4: The RC-36 is not ideal for high-frequency switching due to its mechanical nature. Use a solid-state relay for such applications.