IDE 插件
[English]
1.Arduino IDE 如何添加 ESP32 开发板?
关于 arduino-esp32 的安装指南,请参考 arduino-ide 入门指南。
Arduino IDE 添加开发板引导链接 arduino Cores。
更新时间:2022.4.22
2.使用 Arduino IDE 开发平台,如何读取 ESP32 出厂自带的 Wi-Fi 的 MAC 地址?
esp32-arduino 开发框架:https://github.com/espressif/arduino-esp32
使用 WiFi.macAddress() 来获取 ESP32 的 Wi-Fi 的 MAC 地址;
Serial.println(WiFi.macAddress());参考链接。
更新时间:2022.4.22
3.如何使用 flash download tool 将基于 Arduino 开发生成的 bin 文件烧录到 ESP32?
File - Preferences - Show verbose output during
勾选compilation
编译成功后会打印一条 python 烧录命令,包含待烧录的 bin 文件以及对应的烧录地址。在乐鑫官网的 工具页面下载 flash download tool,使用 flash download tool 烧录时选择 bin 文件,输入对应的烧录地址即可。
更新时间:2022.4.22