

The 1N4007 is a silicon rectifier diode commonly used for converting alternating current (AC) to direct current (DC). It is part of the 1N400x series of diodes, known for their reliability and efficiency in rectification applications. With a maximum reverse voltage of 1000V and a forward current rating of 1A, the 1N4007 is ideal for use in power supplies, battery chargers, and other electronic circuits requiring rectification.








The following table outlines the key technical specifications of the 1N4007 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 forward current) |
| Reverse Recovery Time | 2µs |
| Operating Temperature | -55°C to +150°C |
| Package Type | DO-41 (Axial Lead) |
The 1N4007 is a two-terminal device with the following pin configuration:
| Pin | Description |
|---|---|
| Anode | Positive terminal (current enters here) |
| Cathode | Negative terminal (current exits here) |
The cathode is marked with a silver or white band on the diode body for easy identification.
The 1N4007 can be used to protect an Arduino UNO from reverse polarity or to create a simple rectifier circuit for powering the board. Below is an example of a rectifier circuit:
The following Arduino code demonstrates reading an analog signal from a rectified DC source:
// Example: Reading a rectified DC voltage with Arduino UNO
const int analogPin = A0; // Pin A0 is used to read the rectified voltage
int sensorValue = 0; // Variable to store the analog reading
void setup() {
Serial.begin(9600); // Initialize serial communication at 9600 baud
}
void loop() {
sensorValue = analogRead(analogPin); // Read the voltage on pin A0
float voltage = sensorValue * (5.0 / 1023.0); // Convert to voltage (0-5V range)
// Print the voltage to the Serial Monitor
Serial.print("Rectified Voltage: ");
Serial.print(voltage);
Serial.println(" V");
delay(1000); // Wait for 1 second before the next reading
}
Diode Overheating:
No Output Voltage:
Low Output Voltage:
Diode Failure:
Q1: Can I use the 1N4007 for high-frequency applications?
A1: No, the 1N4007 is not suitable for high-frequency applications due to its relatively slow reverse recovery time (2µs). Use a fast-recovery or Schottky diode for such applications.
Q2: Can the 1N4007 handle AC voltages above 1000V?
A2: No, the maximum reverse voltage rating is 1000V. Exceeding this value can damage the diode.
Q3: How do I test if a 1N4007 diode is working?
A3: Use a multimeter in diode mode. A working diode will show a forward voltage drop (~0.7V) when the positive lead is on the anode and the negative lead is on the cathode. It should show no continuity in reverse.
Q4: Can I use the 1N4007 in a solar panel circuit?
A4: Yes, the 1N4007 can be used as a blocking diode in solar panel circuits to prevent reverse current flow at night.