!RaspberryPi Pico 届いたのにさわれなかったので,とりあえずLチカまで. [Welcome to your Raspberry Pi Pico|https://www.raspberrypi.org/documentation/pico/getting-started/]を参考に. 以下やってみたこと. とりあえず BOOT SELボタンを押しながらUSBケーブルでPCに接続すると/dev/sdXに見えた. mountしてダウンロードしたMicroPythonのUF2をコピー. 接続しなおすと,/dev/ttyACM0が生えた.接続すると, % screen /dev/ttyACM0 115200 >>> と見えた.REPLであれこれ. >>> print('hello') hello >>> Ctrl-Dでソフトリセットできるらしい. >>> Ctrl-D MPY: soft reboot MicroPython v1.14 on 2021-02-05; Raspberry Pi Pico with RP2040 Type "help()" for more information. >>> とりあえずLチカ >>> from machine import Pin >>> import time >>> time.sleep(1) >>> for i in range(10): ... led.value(1) ... time.sleep(0.5) ... led.value(0) ... time.sleep(0.5) ... >>>