

The TLP3555A is an optically isolated photorelay manufactured by Toshiba. It is designed to control high voltage and high current loads using low voltage input signals. This solid-state relay utilizes an LED and a photodetector to achieve electrical isolation between the input and output, ensuring safe and reliable operation in various applications.
The TLP3555A is widely used in:
Its compact design, high-speed switching capability, and robust isolation make it an ideal choice for applications requiring reliable and efficient load control.








| Parameter | Value |
|---|---|
| Manufacturer | Toshiba |
| Part Number | TLP3555A |
| Type | Photorelay |
| Input Type | LED (infrared) |
| Output Type | MOSFET (normally open) |
| Maximum Load Voltage | 600 V |
| Maximum Load Current | 4 A |
| Trigger LED Current (IF) | 3 mA (typical) |
| Maximum LED Current (IF) | 30 mA |
| On-State Resistance (RON) | 0.11 Ω (typical) |
| Isolation Voltage | 5000 Vrms |
| Switching Speed (Turn-On) | 3 ms (typical) |
| Switching Speed (Turn-Off) | 1 ms (typical) |
| Package Type | DIP-8 |
| Operating Temperature Range | -40°C to +110°C |
The TLP3555A is housed in an 8-pin DIP package. The pinout is as follows:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Anode (A) | Positive terminal of the input LED. Connect to the control signal source. |
| 2 | Cathode (K) | Negative terminal of the input LED. Connect to ground. |
| 3 | NC | No connection. Leave unconnected. |
| 4 | NC | No connection. Leave unconnected. |
| 5 | Drain (D1) | Output terminal 1 of the MOSFET. Connect to the load or power source. |
| 6 | Source (S) | Common source terminal of the MOSFET. Connect to the load or ground. |
| 7 | Drain (D2) | Output terminal 2 of the MOSFET. Connect to the load or power source. |
| 8 | NC | No connection. Leave unconnected. |
Input Side (Control Signal):
Output Side (Load Control):
Power Considerations:
Isolation:
The TLP3555A can be controlled using an Arduino UNO. Below is an example circuit and code to toggle a load using the photorelay.
// TLP3555A Photorelay Control Example
// This code toggles the photorelay on and off every second.
const int relayPin = 9; // Pin connected to the TLP3555A Anode
void setup() {
pinMode(relayPin, OUTPUT); // Set relayPin as an output
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn on the photorelay
delay(1000); // Wait for 1 second
digitalWrite(relayPin, LOW); // Turn off the photorelay
delay(1000); // Wait for 1 second
}
| Issue | Possible Cause | Solution |
|---|---|---|
| Photorelay does not turn on | Insufficient input current | Check the current-limiting resistor value and ensure the control signal provides enough current. |
| Load does not operate correctly | Exceeding maximum load ratings | Verify that the load voltage and current are within the specified limits. |
| Excessive heat generation | High load current or poor heat dissipation | Use a heatsink or improve ventilation around the component. |
| No isolation between input and output | Incorrect wiring or damaged component | Verify the wiring and replace the TLP3555A if necessary. |
Can the TLP3555A be used with AC loads?
What is the maximum switching frequency?
Is additional isolation required for high-voltage applications?
Can I use the TLP3555A with a 3.3 V control signal?
This concludes the documentation for the TLP3555A Photorelay. For further details, refer to the official Toshiba datasheet.