How to use the board manager with the Arduino IDE 2.0
The board manager is a great tool for installing the necessary cores to use your Arduino boards. In this quick tutorial, we will take a look at how to install one, and choosing the right core for your board!
You can easily download the editor from the Arduino Software page.
You can also follow the downloading and installing the Arduino IDE 2.0 tutorial for more detailed guide on how to install the editor.
Requirements
- Arduino IDE 2.0 installed.
Why use the board manager?
The board manager is a tool that is used to install different cores on your local computer. So what is a core, and why is it necessary that I install one?
Simply explained, a core is written and designed for specific microcontrollers. As Arduino have several different type of boards, they also have different type of microcontrollers.
For example, an Arduino UNO has an ATmega328P, which uses the AVR core, while an Arduino Nano 33 IoT has a SAMD21 microcontroller, where we need to use the SAMD core.
In conclusion, to use a specific board, we need to install a specific core.
Installing a core
Installing a core is quick and easy, but let's take a look at what we need to do.
Open the Arduino IDE 2.0.
With the editor open, let's take a look at the left column. Here, we can see a couple of icons. Let's click the on the "computer chip" icon.
- A list will now appear of all available cores. Now let's say we are using an Nano 33 IoT board, and we want to install the core. Simply enter the name in the search field, and the right core (SAMD) will appear, where the Nano 33 IoT features in the description. Click on the "INSTALL" button.
- This will begin an installation process, which in some cases may take several minutes.
- When it is finished, we can take a look at the core in the boards manager column, where it should say "INSTALLED".
Congratulations! You have now successfully downloaded and installed a core on your machine, and you can start using your Arduino board!
More tutorials
- Getting started with the Arduino IDE 2.0 (beta)
- Downloading and installing the Arduino IDE 2.0
- How to upload a sketch with the Arduino IDE 2.0
- How to install and use a library with the Arduino IDE 2.0
- How to use the Serial Monitor with the Arduino IDE 2.0
- How to use the autocomplete feature with the Arduino IDE 2.0