5
2

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.

PlatformIOでRaspberry Pi Pico を動かす(Windows,Arduinoフレームワーク)

Last updated at Posted at 2021-03-28

2021/10/27追記
公式から出ている Raspberry Pi Pico のボート選択でビルドできました。
ボタン押しながらUSBを挿して転送モードにしておいても転送には失敗するようで(wizio-pico は成功する)、
ビルドボタンでビルド後、
.pio\build\pico\firmware.uf2

をRaspberry Pi Picoにドラッグ&ドロップすることで転送&実行できました。


(2021/03/27現在)公式からは対応されていないようですが、
こちらにある方法でビルド&実行を確認できました。

1.Platforms>Advanced Installation -> https://github.com/Wiz-IO/wizio-pico を入力してInstall
image.png

2.Board:WizIO - Raspberry Pi Pico, Framework:Arduino で適当なプロジェクトを作成
image.png

3.適当なプログラムを作成

# include <Arduino.h>

void setup() {
  // put your setup code here, to run once:
  pinMode(2,OUTPUT);
}

void loop() {
  // put your main code here, to run repeatedly:
  digitalWrite(2,HIGH);
  delay(100);
  digitalWrite(2,LOW);
  delay(400);
}

4.ビルド&アップロードで実行ファイル作成
image.png

5.Raspberry Pi PicoのBOOTSELボタンを押しながらUSBを接続し、ARDUINO.uf2をドラッグ&ドロップ
image.png

6.Raspberry Pi Pico上で実行される
image.png
動画

以上です。

5
2
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
5
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?