17
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【M5Stack】Arduino IDEでの書き込みが絶望的に遅いのでPlatform IOを試してみた

Last updated at Posted at 2020-10-18

##状況
最近M5Stackを使うことが多いのですが、Arduino IDE でのM5Stackへの書き込みが絶望的に遅いです。
サンプルコードの「Hello World」でも、5分かかっているほどです。

##環境
Windows 10
Visual Studio Code インストール済み

##Platform IO
「Arduino IDE 遅い」
で、Twitter検索してみますと、みなさん不満を持っているようです。
このリンク先参照
https://twitter.com/search?q=Arduino%20IDE%20%E9%81%85%E3%81%84&src=typed_query

そのなかで、このようなツイッターのやりとりを発見。


ふむふむ、Platform IOなるものがよいとの情報を得ました。

##やってみた

こちらの記事を参考にしました

###Visual Studio Codeの拡張機能

Visual Studio Codeの拡張機能にあるので楽ちんです。

Image from Gyazo


###手順 さっそくHello Worldをやってみます。   NEW Projectを選択 [![Image from Gyazo](https://i.gyazo.com/adbcd213b2d2066c30b172f6224a0383.png)](https://gyazo.com/adbcd213b2d2066c30b172f6224a0383)

Image from Gyazo

プロジェクトができたら、

M5Stackのライブラリをプロジェクトに追加
(これ、プロジェクトを作る都度やる必要がある)
Image from Gyazo

Image from Gyazo

src > main.cpp
に "Hello World"のコードを入力

main.cpp
#include <Arduino.h>
#include <M5Stack.h>

void setup(){

  M5.begin();
  M5.Power.begin();
    
  M5.Lcd.print("Hello World");
}


ビルド & 書き込み
Image from Gyazo


ビルド、書き込みともに約10秒、
合計20秒くらいで
あっという間に、できました。


さようなら Arduino IDE こんにちは Platform IO
17
15
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
17
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?