Arduino Pro IDE使用指南:下載、安裝

原版官方下載地址

CSDN下載地址(windows版本)

下載之後,直接解壓就行
在這裏插入圖片描述

官方介紹

Arduino Pro IDE具有滿足高級用戶需求的功能,同時通過設置“經典” Arduino IDE保持了版本的連續性。

Arduino Pro IDE不提供預安裝的內核,因此,要獲得開發板支持,您必須使用菜單安裝板內核

Tools -> Board Manager...

使用的技術

Arduino Pro IDE基於以下技術:

  • Arduino CLI:以守護程序模式運行,它提供了Arduino的所有主要功能
  • Eclipse Theia:應用程序的前端基於此開源IDE
  • Electron:Eclipse Theia背後的框架,允許用戶在桌面環境中使用Web技術

安裝Arduino UNO板子

Tools–>Boards manger 輸入 UNO

或者點擊側邊欄的那個芯片圖標

在這裏插入圖片描述

安裝ESP32板子

辦法來源:https://github.com/arduino/arduino-pro-ide/issues/61
arduino-cli: https://arduino.github.io/arduino-cli/installation/

just open arduino-cli.yaml and add https://dl.espressif.com/dl/package_esp32_index.json
that’s work for me…

但是 這個 arduino-cli.yaml文件不知道怎麼調出來。。。

錯誤

1. 2 UNKNOWN: build failed: exec: “/bin/avr-g++”: file does not exist .

原地址:https://forum.arduino.cc/index.php?topic=660986.0

This error indicates something went wrong with your installation of Arduino AVR Boards. The solution is to remove it and then install it again. Note that this will remove all boards you installed via Boards Manager:
Close all Arduino Pro IDE windows.
Open C:\Users\jett8\AppData\Local in Windows Explorer. The AppData folder is hidden by default. You can unhide it by clicking “View” on the Windows Explorer menu bar, then checking the box next to “Hidden items”.
Delete C:\Users\jett8\AppData\Local\Arduino15
Start Arduino Pro IDE
Tools > Boards Manager
Hover the mouse pointer over “Arduino AVR Boards by Arduino”.
Click the “Install” button
Wait for the installation to finish.
Tools > Boards Manager
Try compiling again.

簡而言之:關掉Arduino Pro IDE然後刪掉C:\Users\AppData\Local\Arduino15,打開軟件再次安裝Arduino AVR Boards by Arduino

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章