Arduino boards primarily use Direct Current (DC) for their operation. Here's a detailed explanation:
### Power Supply
1. **Power Input**: Arduino boards can be powered through several options:
- **USB Connection**: When connected to a computer or a USB power supply, the Arduino typically receives 5V DC.
- **Barrel Jack**: Many Arduino boards have a barrel jack for external power, which can accept a voltage range (commonly 7-12V DC). This input is then regulated down to 5V to power the microcontroller and other components.
2. **Voltage Regulation**: Inside the Arduino, there is a voltage regulator that takes the input voltage (from the barrel jack or VIN pin) and regulates it to 5V. This ensures that the microcontroller and connected components receive the correct voltage, regardless of the input source.
### Why DC?
- **Microcontroller Operation**: The microcontrollers on Arduino boards, such as the ATmega series, require a stable DC voltage for reliable operation. They interpret voltage levels as binary data (high or low), and fluctuating AC voltage would lead to inconsistent performance.
- **Peripheral Devices**: Many sensors, motors, and other components connected to Arduino boards also operate on DC. While some devices may use AC (like certain motors), they typically require rectification (conversion from AC to DC) before connecting to an Arduino.
### Summary
In essence, Arduino operates using DC voltage, which is essential for its microcontroller and the components it controls. Although you might encounter AC power sources in other contexts, for Arduino projects, DC is the standard.