- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Add a new board in Arduino
To add a new board in Arduino IDE, go to Tools -> Board -> Boards Manager
In the window that opens up, search for the board of your interest, click on that board, and click on the 'Install' button. You can even choose to install an earlier version of the board from the versions dropdown (1.1.6 in the image below).
Some boards are not directly searchable in the Arduino Boards Manager. Popular examples are ESP32 and ESP8266. In order to install the ESP32 and ESP8266 board in Arduino, the following steps can work (other non-available boards may have similar steps).
Step 1: Get the JSON file for that board (generally a quick Google Search gives these results, I just searched 'ESP32 JSON for Arduino'). The following are the JSON files for these boards.
https://dl.espressif.com/dl/package_esp32_index.json, http://arduino.esp8266.com/stable/package_esp8266com_index.json
Step 2: Go to File -> Preferences
Step 3: In the Window that opens up, enter these JSONs, separated by comma, in the 'Additional Board Manager URLs' field and click on OK.
Step 4: Once the above steps are done, you can now search for these boards in Tools -> Board -> Boards Manager and follow the normal installation steps written above.
- Related Articles
- Add new header files in Arduino IDE
- Change board selection in Arduino IDE
- Components of Arduino Uno board
- How to program a board using Arduino IDE
- Download a new library in Arduino IDE
- Defining new functions in Arduino
- Check if the board is connected or not in Arduino IDE
- Add delay in Arduino
- Installing a new library in Arduino IDE 2.0
- Print new line and tab in Arduino
- Store a new file in SD Card connected to Arduino
- What are the major new features in Arduino IDE 2.0?
- Battleships in a Board in C++
- How to add a new column to a matrix in R?
- How to add a new row in a table using jQuery?
