Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以将 PlatformIO 与官方稳定的 ESP8266 Arduino 库一起使用。
但是,我想将 PlatformIO 与该库的 git 版本(可用的最新版本)一起使用。我怎样才能做到这一点?
我尝试检查板 json 文件,但没有任何运气。
platformio platform install https://github.com/platformio/platform-espressif8266.git#feature/stage
在platformio.ini中将平台设置为 espressif8266_stage
[env:nodemcuv2] platform = espressif8266_stage board = nodemcuv2 framework = arduino
起源