まんま!の備忘録

ソフトウェア・ファームウェア・ハードウェア関連の備忘録

2023-05-03から1日間の記事一覧

Visual Studio CodeでPython開発

Visual Studio CodeでのPython開発環境構築の手順を記載していきます。Pythonをインストールします。 # Raspberry Pi Zero WHがpython 3.9なのでそれに合わせます。 brew install python@3.9 python3.9 -V → Python 3.9.16 Visual Studio Codeをインストール…

Visual Studio Codeの日本語化

拡張機能のボタンをクリックしてJapaneseで検索。 Japanese Language Pack for Visual Studio Codeを選択。 Installを選択。 インストールが終わるとChange Language and Restartと出てくるので、それを選択。 (出てこなければ、アプリを再起動してください…

Visual Studio Codeのインストール

以下サイトからダウンロード。 azure.microsoft.comVisual Studio Code をダウンロードするを選択。 Macを選択。 ダウンロードしたzipファイルを解凍して、アプリケーションに移動。 初回起動時に警告が出るので、開くを選択。

Raspberry Piのベース環境構築

私のRaspberry Piのベース環境の構築手順のまとめです。SDカードフォーマット taogya.hatenablog.com イメージ書き込み taogya.hatenablog.com SSH鍵認証設定 taogya.hatenablog.com インターネット接続 taogya.hatenablog.com パッケージ更新 taogya.hatena…

Raspberry PiのAP化(USBブリッジ接続運用)

AP化して、インターフェースusb0とap0をブリッジ接続します。 internet PC USB Raspberry Pi(usb0) Raspberry Pi(ap0) iPhone 必要パッケージインストール。 taogya@taogya-pi0:~ $ sudo su - root@taogya-pi0:~ $ apt-get install -y hostapd bridge-utils …

Raspberry PiのAP化(スタンドアロン運用)

スタンドアロン運用APの手順を記載していきます。 internet (PC USB) or (Wi-Fi AP) Raspberry Pi(usb0 or wlan0) Raspberry Pi(ap0) iPhone ※以下参考にさせていただきました。 www.mikan-tech.net 必要パッケージインストール。 taogya@taogya-pi0:~ $ sud…