

The 1N4007 is a silicon rectifier diode designed for general-purpose applications. It is capable of withstanding a maximum reverse voltage of 1000V and can handle a forward current of up to 1A. This diode is widely 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 a variety of electronic projects, including rectification, voltage blocking, and polarity protection.








Below are the key technical details of the 1N4007 rectifier diode:
| 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) |
| Operating Temperature | -55°C to +150°C |
| Package Type | DO-41 |
The 1N4007 diode has two terminals:
| Pin | Description |
|---|---|
| Anode | Positive terminal (current enters) |
| Cathode | Negative terminal (current exits) |
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 reverse polarity. Below is an example circuit and code:
// Example code to blink an LED connected to Arduino UNO
// This demonstrates the use of a 1N4007 diode for reverse polarity protection
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
}
Diode Overheating:
No Current Flow:
Circuit Not Working as Expected:
Q1: Can I use the 1N4007 for high-frequency applications?
A1: No, the 1N4007 is not suitable for high-frequency applications due to its slow recovery time. Use a fast recovery or Schottky diode instead.
Q2: What is the difference between the 1N4007 and other diodes in the 1N400x series?
A2: The primary difference is the maximum reverse voltage rating. The 1N4007 has the highest rating (1000V) in the series.
Q3: Can I use the 1N4007 for AC voltage higher than 1000V?
A3: No, the 1N4007 is rated for a maximum reverse voltage of 1000V. Exceeding this limit may damage the diode.
By following this documentation, you can effectively use the 1N4007 rectifier diode in your electronic projects.