

The Dioda Schottky (Manufacturer: OOOT, Part ID: 90QE9Q) is a semiconductor device designed to allow current to flow in one direction with minimal forward voltage drop and high-speed switching capabilities. Its unique construction, utilizing a metal-semiconductor junction, makes it highly efficient for applications requiring low power loss and fast response times.








The Dioda Schottky (90QE9Q) is typically housed in a TO-220 package with three pins. Below is the pin configuration:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | Anode | Positive terminal for current flow |
| 2 | Cathode | Negative terminal for current flow |
| 3 | Cathode (Tab) | Connected to the cathode, used for heat dissipation |
The Dioda Schottky can be used in an Arduino-based DC motor driver circuit to protect against back EMF. Below is an example:
// Example code for controlling a DC motor with Arduino UNO
// The Schottky diode protects against back EMF from the motor.
const int motorPin = 9; // PWM pin connected to motor driver
void setup() {
pinMode(motorPin, OUTPUT); // Set motor pin as output
}
void loop() {
analogWrite(motorPin, 128); // Run motor at 50% speed
delay(5000); // Run for 5 seconds
analogWrite(motorPin, 0); // Stop motor
delay(2000); // Wait for 2 seconds
}
| Issue | Possible Cause | Solution |
|---|---|---|
| Diode overheating | Exceeding current or poor heat dissipation | Use a heatsink or reduce the current load. |
| No current flow in the circuit | Incorrect polarity connection | Verify the anode and cathode connections. |
| High reverse leakage current | Operating near maximum reverse voltage | Reduce the reverse voltage or check for damaged diode. |
| Circuit not functioning as expected | Faulty or damaged diode | Test the diode with a multimeter and replace if necessary. |
Can I use the Dioda Schottky for AC rectification?
What makes a Schottky diode different from a regular diode?
How do I test if the diode is working?
Can I use this diode in high-frequency circuits?
By following this documentation, you can effectively integrate the Dioda Schottky (90QE9Q) into your electronic projects for efficient and reliable performance.