

The 1N4007 is a general-purpose silicon rectifier diode designed for a wide range of applications. It is capable of handling up to 1A of forward current and can withstand a reverse voltage of up to 1000V. This diode is commonly used in power supply circuits for converting alternating current (AC) to direct current (DC). Its robust design and high voltage rating make it suitable for use in various electronic devices, including chargers, adapters, and other power management systems.








| Parameter | Value |
|---|---|
| Maximum Reverse Voltage | 1000V |
| Maximum Forward Current | 1A |
| Peak Surge Current | 30A (8.3ms single half-sine) |
| Forward Voltage Drop | 1.1V (at 1A) |
| Reverse Current | 5µA (at 25°C, 1000V) |
| Operating Temperature | -55°C to +150°C |
| Package Type | DO-41 axial lead |
The 1N4007 diode has two terminals:
| Pin Name | Description |
|---|---|
| Anode | Positive terminal; current enters here in forward bias. |
| Cathode | Negative terminal; current exits here in forward bias. |
The cathode is marked with a silver or white band on the diode body.
The 1N4007 can be used to protect an Arduino UNO from voltage spikes caused by an inductive load, such as a relay. Below is an example circuit and code:
// Example code to control a relay with an Arduino UNO
const int relayPin = 7; // Pin connected to the relay control
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn relay ON
delay(1000); // Keep relay ON for 1 second
digitalWrite(relayPin, LOW); // Turn relay OFF
delay(1000); // Keep relay OFF for 1 second
}
Note: The 1N4007 diode protects the Arduino from voltage spikes generated when the relay coil is de-energized.
Diode Overheating:
Circuit Not Working:
Diode Breakdown:
Q: Can the 1N4007 be used for high-frequency applications?
A: No, the 1N4007 is not suitable for high-frequency applications due to its relatively slow switching speed. Use a fast recovery or Schottky diode for such applications.
Q: What is the difference between the 1N4007 and other diodes in the 1N400x series?
A: The primary difference is the maximum reverse voltage rating. The 1N4007 has the highest rating (1000V) in the series, making it more versatile for high-voltage applications.
Q: Can I use the 1N4007 for current higher than 1A?
A: No, the 1N4007 is rated for a maximum forward current of 1A. For higher currents, consider using a diode with a higher current rating, such as the 1N5408.
By following these guidelines and best practices, you can effectively use the 1N4007 rectifier diode in your electronic projects.