Chromebook ではじめる Raspberry Py PICO
Chromebook と Raspberry Py PICO だけで制御プログラミングを始めたい
Chromebookだけで制御ボードプログラミングを始めようとするとmbedが思いつくが、最近発売されたRaspberry Py PICO でも簡単にプログラミング環境が構築できました
使用環境
CircuitPython
https://circuitpython.org/board/raspberry_pi_pico/
chrome拡張機能 Text Editor
chrome ウェブストアでText Editorを検索、chromeに追加する
https://chrome.google.com/webstore
手順
1.CircuitPythonの最新版をChromebookにダウンロード
2.Raspberry Py PICO の BOOTSELボタンを押しながらChromebookのUSBポートに接続
3.デバイスとして表示されたRaspberry Py PICOに1.でダウンロードしたファイルをドロップする
4.しばらく待つとデバイスが再認識されデバイス名が「CIRCUITPY」に変わる
これで、環境構築終了
表示されたデバイスの中にある「code.py」を開いて編集、上書き保存すると実行される
一度環境構築すれば、次回からは、USBポートに接続するだけでこの環境が利用可能となる
デバイスが認識され、表示された「CIRCUITPY」を開いて「code.py」を編集するだけで、様々な制御プログラムを試すことができる
sampleコード(USBコネクタ傍のLEDが点滅)
import digitalio
from board import *
import time
led = digitalio.DigitalInOut(GP25)
led.direction = digitalio.Direction.OUTPUT
while True:
led.value = True
time.sleep(0.3)
led.value = False
time.sleep(0.3)
参考
CircuitPython 10行プログラミング Step5 (1) Raspberry Pi Picoの準備と動作確認
https://www.denshi.club/parts/2021/03/circuitpython-10-step5-1-raspberry-pi-pico.html
Author And Source
この問題について(Chromebook ではじめる Raspberry Py PICO), 我々は、より多くの情報をここで見つけました https://qiita.com/atsuya_morito/items/259ce4fc0ad96e9091bd著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .