1
1

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.

arduino+VSCode+Ubuntu18.04で開発環境を構築する

Posted at

はじめに

久しぶりにArduinoを使いたくなったので、せっかくなのでVSCodeで開発環境準備した

arduino IDEのインストール

https://www.arduino.cc/en/Main/Software
からLinux 64bitsを選択

bash
cd ~/Download
tar Jxfv arduino-1.8.12-linux64.tar.xz
cd arduino-1.8.12
 ./arduino-linux-setup.sh $USER
sudo reboot # rebootしろって言われたら

Screenshot from 2020-05-20 00-18-26.png
デスクトップにこんなアイコン(はじめは別のアイコンが表示されるかも)ができたらインストールOK

VScode の設定

Ctrl+Shift+xで拡張機能のタブを開き検索でarduinoを選択してインストール
Screenshot from 2020-05-20 00-21-10.png

インストールできたら、Ctrl+Shift+Pでコマンドパレット開いて、Arduino:Board Managerを選択
Screenshot from 2020-05-20 00-23-23.png
こんな感じで起動できたらOK

Lチカまでの道のり

コマンドパレット -> Arduino:Change Board Type
使いたいBoardを選択する
Screenshot from 2020-05-20 00-37-34.png

ちなみに私が購入したArduino互換ボードはHiLetgoのやつです(ArduinoUNO互換)
https://www.amazon.co.jp/gp/product/B013QV28CW/ref=ppx_yo_dt_b_asin_title_o00_s00?ie=UTF8&psc=1

コマンドパレット -> Arduino:Select Serial Port
PCに接続したBoardのシリアルポートを選択する
(私の環境はttyUSB0でした)
Screenshot from 2020-05-20 00-39-54.png

コマンドパレット -> Arduino:Examples -> Built-in Examples -> 01.Basics -> Blink
選択すると新しいwindowでBlinkのコードが開く
Screenshot from 2020-05-20 00-44-29.png

コマンドパレット -> Arduino:Upload
実行するとBoardにサンプルコードが転送され、実行される

以上!

1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?