LoginSignup
0
1

More than 5 years have passed since last update.

platformio で最新の esp8266/Arduino を使う

Posted at

PlatformIO で git HEAD な esp8266/Arduino を使いたい。

オフィシャルドキュメントのUsing Arduino Framework with Staging versionに載ってるやり方通り。 ~/.platformio/ 以下のを置き換えてしまうという割と強引な方法でできる。

rm -rf ~/.platformio/packages/framework-arduinoespressif8266
git clone https://github.com/esp8266/Arduino ~/.platformio/packages/framework-arduinoespressif8266
cat << EOF > ~/.platformio/packages/framework-arduinoespressif8266/package.json
{
    "description":"Arduino Wiring-based Framework (ESP8266 Core)",
    "name":"framework-arduinoespressif8266",
    "system":"all",
    "url":"https://github.com/esp8266/Arduino",
    "version":"1.20300.0"
}
EOF
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1