0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

MicroPython/CircuitPythonAdvent Calendar 2024

Day 13

ViperIDEを使ってみる③:BLE REPLを使ってみる

Last updated at Posted at 2024-12-13

BLE REPL

ViperIDE では Raspberry Pi Pico W と ESP32 で BLE 経由の REPL をサポートしている。

前準備

viper-tools

パッケージマネージャーから viper-tools をインストールする。

スクリーンショット 2024-12-13 23.08.38.png

インストール後、ファイルマネージャを見ると lib 配下に次のものが入っていた。

スクリーンショット 2024-12-13 23.09.35.png

main.py

main.py に次の2行を入れておく。

import ble_repl
ble_repl.start()

スクリーンショット 2024-12-13 23.11.09.png

繋ぐ

右上の Bluetooth アイコンをクリックすると、自動的にデバイスを探してペア設定を要求してくる。mpy-repl を選んで「ペア設定」をクリックする。

スクリーンショット 2024-12-13 23.13.07.png

ターミナルに REPL が表示されれば成功。

スクリーンショット 2024-12-13 23.23.17.png

普通に REPL として使える。Ctrl-D でリセットをかけると、接続も切れて再接続が必要になるのは要注意。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?