The Arduino Uno operates using **DC (Direct Current)** power, not AC (Alternating Current). Here’s a detailed breakdown:
### Power Supply Options for Arduino Uno:
1. **USB Port**:
- The Arduino Uno can be powered via a USB connection to a computer or an external power adapter. This USB provides **5V DC** to the board.
2. **Barrel Jack (DC Power Jack)**:
- You can also supply external power using the barrel jack (a round connector), which supports an input voltage range of **7V to 12V DC**. Inside the board, this voltage is regulated down to the required 5V and 3.3V DC that the Arduino needs for its operation.
3. **Vin Pin**:
- If you are directly powering the Arduino through the Vin pin, you need to provide DC voltage in the range of **7V to 12V**. This voltage will also be regulated down internally.
### Why Arduino Uses DC Power:
- **DC is essential for microcontrollers**: Microcontrollers like the ATmega328P on the Arduino Uno are designed to operate with DC voltage. The consistent voltage of DC is crucial for the precise operation of the components like the processor, sensors, and other peripherals.
- **Regulation**: The Arduino Uno contains voltage regulators that ensure the supplied DC power is appropriately regulated to the 5V and 3.3V levels needed for stable operation.
### What Happens if You Use AC?
- **Damage Risk**: Supplying AC power directly to the Arduino Uno can damage the board, as it’s not designed to handle the oscillating voltage of AC power. The components of the Arduino, like the ATmega328P microcontroller, need a stable DC voltage to function.
In summary, the Arduino Uno is a **DC-powered device**, and using AC power directly would likely harm it.