Complete arduino uno ide download and setup guide. Configure your arduino uno ide and Arduino Mega boards. Learn arduino ide 使い方 (how to use) and get the arduino.ide working perfectly with your boards.
The Arduino Uno is the most popular board in the Arduino family. The Arduino Uno IDE integration is seamless, making it perfect for beginners and professionals alike.
The Arduino Uno features an ATmega328P arduino microcontroller, 14 digital I/O pins, 6 analog inputs, and USB connectivity. It's the ideal choice for learning arduino code and building your first projects.
Check the official arduino docs for the complete arduino uno pinout diagram. For smaller boards, see the arduino nano pinout in the arduino reference.
Get started with your Arduino Uno today. Download the Arduino IDE and connect your board.
Download Arduino IDEDownload and install the Arduino IDE from the official website. The installer includes all necessary drivers for the Arduino Uno.
Windows: Run arduino.exe installer
Mac: Drag to Applications folder
Linux: Extract and run AppImage
Use a USB Type-A to Type-B cable to connect your Arduino Uno to your computer. The power LED should light up immediately.
Note: Some USB cables are power-only and won't work for data transfer. Make sure you're using a data cable.
In the Arduino IDE, navigate to Tools → Board → Arduino AVR Boards and select "Arduino Uno".
Then go to Tools → Port and select the port where your Arduino is connected:
Test your Arduino Uno IDE setup by uploading the classic "Blink" example:
File → Examples → 01.Basics → BlinkSuccess! If the LED is blinking, your Arduino Uno is properly configured and ready for development.
The Arduino Mega is the powerhouse of the Arduino family, featuring 54 digital I/O pins and 16 analog inputs.
Key Specs: ATmega2560 chip, 256 KB flash memory, 54 digital pins, 16 analog inputs, 4 hardware serial ports
Setting up the Arduino Mega is almost identical to the Arduino Uno, with just one difference in board selection.
In the Arduino IDE, go to Tools → Board → Arduino AVR Boards and select "Arduino Mega or Mega 2560".
Go to Tools → Processor and select "ATmega2560 (Mega 2560)".
Select the appropriate port in Tools → Port. The Mega uses the same USB connection as the Uno.
Upload the Blink example to verify your Arduino Mega is working correctly. The LED will blink on pin 13, just like the Uno.
If your Arduino Uno or Arduino Mega doesn't appear in the Port menu:
Solutions:
If the Port menu is grayed out in Arduino IDE:
// Blink LED Example
// Compatible with Arduino Uno and Mega
void setup() {
// Initialize the digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}Copy this code into your Arduino IDE to test your board.