Skip to content

Commit 26d5ddc

Browse files
committed
Add getstarted docs
1 parent 0b60f5d commit 26d5ddc

File tree

6 files changed

+55
-2
lines changed

6 files changed

+55
-2
lines changed

content/hardware/10.mega/boards/mega-2560/product.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Mega 2560 Rev3
33
url_shop: https://store.arduino.cc/arduino-mega-2560-rev3
4-
url_guide: /software/ide-v2/tutorials/ide-v2-board-manager#avr
5-
primary_button_url: /software/ide-v2/tutorials/ide-v2-board-manager#avr
4+
url_guide: /tutorials/mega-2560/getting-started/
5+
primary_button_url: /tutorials/mega-2560/getting-started/
66
primary_button_title: Get Started
77
core: arduino:avr
88
productCode: '002'
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
title: Getting Started with Arduino Mega 2560 Rev3
3+
description: A step-by-step guide to get started with the Arduino Mega 2560 Rev3.
4+
author: Jacob Hylén
5+
tags: [Mega 2560 Rev3, Installation, IDE]
6+
---
7+
8+
To use the [Arduino Mega 2560 Rev3](hardware/mega-2560/) board, you will need the Arduino AVR Board Package, which comes pre-installed with the IDE.
9+
10+
You will need a version of the Arduino IDE, which you can download from the [Arduino Software page](https://www.arduino.cc/en/software). In this guide, we will use the latest version of the IDE 2.
11+
12+
## Software & Hardware Needed
13+
14+
- [Arduino Mega 2560 Rev3](https://store.arduino.cc/products/arduino-mega-2560-rev3)
15+
- [Arduino IDE](/software/ide-v2)
16+
17+
***You can also use the [Cloud Editor](https://create.arduino.cc/editor) which comes with all Arduino boards pre-installed.***
18+
19+
## Download & Install IDE
20+
21+
1. First, we need to download the Arduino IDE, which can be done from the [Arduino Software page](https://www.arduino.cc/en/software/).
22+
2. Install the Arduino IDE on your local machine.
23+
3. Open the Arduino IDE.
24+
25+
![The Arduino IDE.](./assets/open-ide.png)
26+
27+
## Board Package
28+
29+
The [Arduino Core for AVR devices](https://github.com/arduino/ArduinoCore-avr) comes pre-installed with the IDE, so no additional installation is necessary to get started. To use a different version than the latest, open the "Board Manager" from the left-hand menu. Search for AVR and install the version you want to use.
30+
31+
![Arduino AVR Board Package](./assets/install-mega-core.png)
32+
33+
You should now be able to select your board in the board selector. You will need to have your board connected to your computer via the USB-B connector at this point.
34+
35+
![Arduino Mega 2560 Rev3 board found.](./assets/mega-connected.png)
36+
37+
Congratulations, your board is now ready to be used via the Arduino IDE.
38+
39+
## Compile & Upload Sketches
40+
41+
To compile and upload sketches, you can use the:
42+
- **Checkmark** for compiling code.
43+
- **Right arrow** to upload code.
44+
45+
There are several examples available for the Mega 2560 Rev3 board, which can be accessed directly in the IDE, through **File > Examples**. These examples can be used directly without external libraries.
46+
47+
![Mega 2560 Rev3 examples.](./assets/mega-examples.png)
48+
49+
## Summary
50+
51+
In this tutorial we prepared the Arduino Mega 2560 Rev3 to be used with the Arduino IDE.
52+
53+
For any issues regarding the Arduino AVR board package, please refer to the [Arduino Core for AVR devices](https://github.com/arduino/ArduinoCore-avr).

0 commit comments

Comments
 (0)