

The SMBJ28CA is a bidirectional Transient Voltage Suppressor (TVS) diode manufactured by Diodes Incorporated. It is designed to protect sensitive electronic components from voltage spikes, electrostatic discharge (ESD), and other transient events. With a standoff voltage of 28V and a robust clamping capability, the SMBJ28CA is ideal for safeguarding power supply circuits, data lines, and other critical electronic systems.








| Parameter | Value |
|---|---|
| Manufacturer | Diodes Incorporated |
| Part Number | SMBJ28CA |
| Breakdown Voltage (VBR) | 31.1V (min) to 34.4V (max) |
| Reverse Standoff Voltage (VRWM) | 28V |
| Clamping Voltage (VC) | 45.4V (max) |
| Peak Pulse Current (IPP) | 13.2A (max) |
| Power Dissipation (PPP) | 600W (10/1000 µs waveform) |
| Package Type | DO-214AA (SMB) |
| Polarity | Bidirectional |
| Operating Temperature | -55°C to +150°C |
| Storage Temperature | -55°C to +150°C |
The SMBJ28CA is a two-terminal device with no polarity marking, as it is bidirectional. The pin configuration is as follows:
| Pin Number | Description |
|---|---|
| 1 | Cathode/Anode (Bidirectional) |
| 2 | Cathode/Anode (Bidirectional) |
Placement in Circuit:
Polarity:
Voltage Selection:
PCB Layout Considerations:
To protect an Arduino UNO's 5V power supply from voltage spikes, you can connect the SMBJ28CA as follows:
Here is an example Arduino sketch to demonstrate a simple circuit with transient protection:
// Example: Simple LED Blink with TVS Diode Protection
// This sketch demonstrates a basic LED blink circuit.
// The SMBJ28CA is used to protect the Arduino's 5V line from voltage spikes.
const int ledPin = 13; // Pin connected to the onboard LED
void setup() {
pinMode(ledPin, OUTPUT); // Set the LED pin as an output
}
void loop() {
digitalWrite(ledPin, HIGH); // Turn the LED on
delay(1000); // Wait for 1 second
digitalWrite(ledPin, LOW); // Turn the LED off
delay(1000); // Wait for 1 second
}
Note: The SMBJ28CA is not directly involved in the code but protects the Arduino's power supply from transients.
| Issue | Possible Cause | Solution |
|---|---|---|
| Diode overheating | Excessive transient power dissipation | Ensure the transient power is within the diode's 600W rating. Use proper thermal management. |
| Circuit not protected from transients | Incorrect placement of the diode | Verify the diode is connected across the protected component or circuit. |
| Voltage clamping not effective | Operating voltage exceeds standoff voltage | Ensure the circuit's operating voltage is below 28V. Use a TVS diode with a higher standoff voltage if needed. |
Can the SMBJ28CA be used for AC circuits?
Yes, the SMBJ28CA is bidirectional and can protect AC circuits or bidirectional signal lines.
What happens if the diode is exposed to continuous overvoltage?
Continuous overvoltage beyond the standoff voltage may cause the diode to conduct continuously, leading to overheating and potential failure.
How do I select the right TVS diode for my application?
Consider the following parameters: reverse standoff voltage, breakdown voltage, clamping voltage, peak pulse current, and power dissipation. Ensure these values align with your circuit's requirements.
Can I use the SMBJ28CA for automotive applications?
Yes, the SMBJ28CA is suitable for automotive applications, provided the voltage and power ratings match the system requirements.
By following this documentation, you can effectively integrate the SMBJ28CA into your designs and protect your circuits from harmful transients.