

The TK4S-24RR is a solid-state relay (SSR) designed for efficient and reliable switching applications. Unlike mechanical relays, the TK4S-24RR uses semiconductor components to perform switching, ensuring a longer lifespan and faster operation. Its compact design and high reliability make it an excellent choice for controlling AC loads with minimal input power. Additionally, the relay provides electrical isolation between the control and load circuits, enhancing safety and performance.








| Parameter | Value |
|---|---|
| Input Voltage Range | 3-32 VDC |
| Input Current | 7-25 mA |
| Output Voltage Range | 24-240 VAC |
| Output Current Rating | 4 A |
| Isolation Voltage | 2500 VAC |
| Switching Speed | ≤10 ms |
| Operating Temperature | -30°C to +80°C |
| Storage Temperature | -30°C to +100°C |
| Mounting Type | PCB Mount |
| Pin Number | Name | Description |
|---|---|---|
| 1 | Input (+) | Positive terminal for the DC control signal. |
| 2 | Input (-) | Negative terminal for the DC control signal (ground). |
| 3 | Output (AC1) | One terminal of the AC load circuit. |
| 4 | Output (AC2) | The other terminal of the AC load circuit. |
Input Side (Control Circuit):
Input (+) pin.Input (-) pin.Output Side (Load Circuit):
Output (AC1) and Output (AC2) pins.Power Supply:
Mounting:
The TK4S-24RR can be easily controlled using an Arduino UNO. Below is an example circuit and code to toggle an AC load using the relay.
Input (+) pin of the relay to Arduino digital pin 7.Input (-) pin of the relay to the Arduino GND.Output (AC1) and Output (AC2) pins of the relay.// Define the pin connected to the relay
const int relayPin = 7;
void setup() {
// Set the relay pin as an output
pinMode(relayPin, OUTPUT);
// Start with the relay off
digitalWrite(relayPin, LOW);
}
void loop() {
// Turn the relay on (AC load ON)
digitalWrite(relayPin, HIGH);
delay(5000); // Keep the load on for 5 seconds
// Turn the relay off (AC load OFF)
digitalWrite(relayPin, LOW);
delay(5000); // Keep the load off for 5 seconds
}
Relay Not Switching:
Overheating:
AC Load Not Turning On:
Voltage Spikes When Switching Inductive Loads:
Q1: Can the TK4S-24RR switch DC loads?
A1: No, the TK4S-24RR is designed specifically for AC loads. For DC loads, use a DC-specific solid-state relay.
Q2: What is the maximum switching frequency?
A2: The relay has a switching speed of ≤10 ms, making it suitable for low to moderate frequency applications.
Q3: Is the relay polarity-sensitive on the input side?
A3: Yes, the Input (+) and Input (-) pins must be connected correctly to the DC control signal.
Q4: Can I use the relay without a microcontroller?
A4: Yes, the relay can be controlled using any DC voltage source within the specified range (e.g., a 5 V power supply).
By following this documentation, users can effectively integrate the TK4S-24RR into their projects and troubleshoot common issues with ease.