

The SN7404N is a NOT gate, also known as an inverter, manufactured by TTL. A NOT gate is a fundamental digital logic gate that outputs the opposite value of its input. If the input is 1 (high), the output is 0 (low), and vice versa. This component is widely used in digital circuits for signal inversion, logic operations, and various other applications.








| Parameter | Value |
|---|---|
| Supply Voltage (Vcc) | 4.75V to 5.25V |
| Input Voltage (VI) | 0V to 5V |
| Output Voltage (VO) | 0V to 5V |
| High-Level Input Voltage (VIH) | 2V (min) |
| Low-Level Input Voltage (VIL) | 0.8V (max) |
| High-Level Output Voltage (VOH) | 2.4V (min) |
| Low-Level Output Voltage (VOL) | 0.4V (max) |
| High-Level Output Current (IOH) | -0.4mA |
| Low-Level Output Current (IOL) | 16mA |
| Power Dissipation | 500mW |
| Operating Temperature Range | 0°C to 70°C |
The SN7404N NOT gate comes in a 14-pin Dual In-line Package (DIP). The pin configuration is as follows:
| Pin Number | Pin Name | Description |
|---|---|---|
| 1 | 1A | Input for Gate 1 |
| 2 | 1Y | Output for Gate 1 |
| 3 | 2A | Input for Gate 2 |
| 4 | 2Y | Output for Gate 2 |
| 5 | 3A | Input for Gate 3 |
| 6 | 3Y | Output for Gate 3 |
| 7 | GND | Ground |
| 8 | 4Y | Output for Gate 4 |
| 9 | 4A | Input for Gate 4 |
| 10 | 5Y | Output for Gate 5 |
| 11 | 5A | Input for Gate 5 |
| 12 | 6Y | Output for Gate 6 |
| 13 | 6A | Input for Gate 6 |
| 14 | Vcc | Supply Voltage |
Here is an example of how to use the SN7404N with an Arduino UNO to invert a digital signal:
// Define the input and output pins
const int inputPin = 2; // Input signal from Arduino
const int outputPin = 3; // Inverted output signal
void setup() {
pinMode(inputPin, OUTPUT); // Set inputPin as output
pinMode(outputPin, INPUT); // Set outputPin as input
}
void loop() {
digitalWrite(inputPin, HIGH); // Set inputPin to HIGH
delay(1000); // Wait for 1 second
digitalWrite(inputPin, LOW); // Set inputPin to LOW
delay(1000); // Wait for 1 second
}
No Output Signal:
Erratic Behavior:
Overheating:
By following this documentation, users can effectively utilize the SN7404N NOT gate in their digital circuits, ensuring reliable and efficient performance.