

The TLP621, manufactured by Toshiba, is an optoisolator (also referred to as an optocoupler) designed to provide electrical isolation between its input and output. It consists of a gallium arsenide infrared LED on the input side and a phototransistor on the output side. This component is widely used in applications where signal isolation is required, such as interfacing between different voltage levels, protecting sensitive components from high voltages, or eliminating ground loops in circuits.








| Parameter | Value |
|---|---|
| Manufacturer | Toshiba |
| Part Number | TLP621 |
| Input Type | Infrared LED |
| Output Type | Phototransistor |
| Isolation Voltage | 5000 Vrms (minimum) |
| Forward Voltage (LED) | 1.2V (typical), 1.4V (maximum) |
| Forward Current (LED) | 10mA (typical), 50mA (maximum) |
| Collector-Emitter Voltage | 55V (maximum) |
| Current Transfer Ratio (CTR) | 50% to 600% (depending on model) |
| Operating Temperature Range | -55°C to +110°C |
| Package Type | 4-pin DIP or SMD |
The TLP621 is available in a 4-pin DIP package. The pinout is as follows:
| Pin Number | Name | Description |
|---|---|---|
| 1 | Anode (A) | Positive terminal of the infrared LED |
| 2 | Cathode (K) | Negative terminal of the infrared LED |
| 3 | Emitter (E) | Emitter terminal of the phototransistor |
| 4 | Collector (C) | Collector terminal of the phototransistor |
Input Side (LED):
Output Side (Phototransistor):
Isolation:
The following example demonstrates how to use the TLP621 to isolate a digital signal from an Arduino UNO.
// Example code to control the TLP621 optoisolator with Arduino UNO
const int ledPin = 9; // Arduino pin connected to the TLP621 anode
const int resistorValue = 220; // Current-limiting resistor value in ohms
void setup() {
pinMode(ledPin, OUTPUT); // Set the pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn on the LED in the TLP621
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn off the LED in the TLP621
delay(1000); // Wait for 1 second
}
LED Not Lighting Up:
No Output Signal:
Signal Distortion or Noise:
Low Current Transfer Ratio (CTR):
Q: Can the TLP621 be used for AC signal isolation?
A: Yes, the TLP621 can isolate AC signals, but you will need to use a suitable circuit to drive the LED with an AC signal, such as a bridge rectifier.
Q: What is the maximum isolation voltage of the TLP621?
A: The TLP621 provides a minimum isolation voltage of 5000 Vrms, making it suitable for high-voltage isolation applications.
Q: Can the TLP621 drive a relay directly?
A: The TLP621's phototransistor output may not provide sufficient current to drive a relay directly. Use an additional transistor or driver circuit to control the relay.
Q: Is the TLP621 suitable for high-speed switching?
A: The TLP621 is not optimized for high-speed switching. For faster applications, consider using optoisolators designed for high-speed operation.
By following this documentation, you can effectively integrate the TLP621 into your electronic designs for reliable signal isolation and protection.