

The TR-HTSE is a thermal relay designed for temperature control in electrical circuits. It provides reliable protection against overheating by interrupting the circuit when a preset temperature threshold is exceeded. This component is widely used in industrial, commercial, and residential applications to safeguard electrical equipment and systems from thermal damage.








| Parameter | Value | 
|---|---|
| Operating Voltage Range | 24V to 240V AC/DC | 
| Current Rating | 0.1A to 10A | 
| Temperature Range | -20°C to 120°C (adjustable) | 
| Response Time | < 2 seconds | 
| Reset Type | Manual or Automatic (selectable) | 
| Contact Configuration | Normally Closed (NC) or Normally Open (NO) | 
| Insulation Resistance | > 100 MΩ at 500V DC | 
| Operating Humidity | 10% to 90% RH (non-condensing) | 
| Dimensions | 50mm x 30mm x 20mm | 
| Mounting Type | DIN rail or panel mount | 
| Pin Number | Label | Description | 
|---|---|---|
| 1 | L1 | Line input (power supply) | 
| 2 | T1 | Load connection (output to the circuit) | 
| 3 | NC | Normally Closed contact | 
| 4 | NO | Normally Open contact | 
| 5 | COM | Common terminal for relay switching | 
| 6 | GND | Ground connection | 
Wiring the Component:
L1 pin.T1 pin.COM, NC, and NO pins to integrate the relay into your control circuit:NC pin.NO pin.GND pin is connected to the circuit ground.Setting the Temperature Threshold:
Testing the Relay:
Resetting the Relay:
The TR-HTSE can be used with an Arduino UNO to monitor and control temperature. Below is an example of how to connect and program the relay:
COM pin of the relay to a digital output pin on the Arduino (e.g., pin 7).NO pin to the load (e.g., a fan or heater).GND pin of the relay to the Arduino's GND.// Define the relay pin
const int relayPin = 7;
void setup() {
  // Initialize the relay pin as an output
  pinMode(relayPin, OUTPUT);
  // Start with the relay off
  digitalWrite(relayPin, LOW);
}
void loop() {
  // Example: Turn the relay on for 5 seconds, then off for 5 seconds
  digitalWrite(relayPin, HIGH); // Activate the relay
  delay(5000);                 // Wait for 5 seconds
  digitalWrite(relayPin, LOW);  // Deactivate the relay
  delay(5000);                 // Wait for 5 seconds
}
| Issue | Possible Cause | Solution | 
|---|---|---|
| Relay does not trip at the set temperature | Incorrect temperature threshold setting | Recheck and adjust the temperature setting. | 
| Relay trips too early or too late | Faulty temperature sensor | Inspect and replace the sensor if needed. | 
| No response from the relay | Improper wiring or loose connections | Verify all connections and ensure proper wiring. | 
| Relay does not reset | Manual reset mode is enabled | Press the reset button or switch to automatic mode. | 
| Overheating of the relay | Exceeding current or voltage ratings | Ensure the circuit parameters are within the relay's specifications. | 
Can the TR-HTSE be used with DC circuits?
What happens if the temperature exceeds the maximum range?
How do I know if the relay is in manual or automatic reset mode?
Can I use the TR-HTSE for low-power applications?
By following this documentation, you can effectively integrate the TR-HTSE thermal relay into your projects and ensure reliable temperature control and circuit protection.