本帖最后由 ptlzx 于 2017-12-22 17:55 编辑
使用的教程地址:
https://www.letscontrolit.com/wi ... ino_Firmware_Upload
碰到两个问题:
1、怎么没有1M的那个选项。
2、教程中有下面这么一段,因为E文水平不好搞不懂,似乎是要把以下脚本中的蓝色行前面的“//”注释符删去,我不太确定到底该不该删去。
Selecting the plugin sets
In version ESPEasy v2 or higher its possible to select different plugin sets. Since we're using Arduino IDE instead of Platformio, its neccesary to select them in ESPEasy.ino. In the top of the .ino file you find the defines you can uncomment to enable a plugin set: ============================================================== //build all the normal stable plugins
//#define PLUGIN_BUILD_NORMAL
//build all plugins that are in test stadium
//#define PLUGIN_BUILD_TESTING
//build all plugins that still are being developed and are broken or incomplete
//#define PLUGIN_BUILD_DEV
==============================================================
Remove the // from the plugin sets that you want to enable.
|