program
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
* program [#j52ed0e7]
**platformio [#de3baaa2]
[[https://platformio.org/]]
***install [#f617f2b1]
- VSCodeのプラグインから入れる場合~
必要なパッケージを入れておく~
[[https://github.com/platformio/platformio-vscode-ide/iss...
sudo apt-get install python3-distutils
VSCodeのインストール
curl https://packages.microsoft.com/keys/microsoft.asc |...
sudo install -o root -g root -m 644 packages.microsoft.g...
sudo sh -c 'echo "deb [arch=amd64 signed-by=/usr/share/k...
sudo apt-get install apt-transport-https
sudo apt-get update
sudo apt-get install code # or code-insiders
その後VSCodeの拡張機能でplatformioを検索してinstallする。
バイナリは
~/.platformio/penv/bin/platformio または pio
にあるのでコマンドラインからこれが使える。
***プロジェクト作成 [#j17d282b]
pio init -b esp32dev
など。
srcフォルダにmain.cppなどを作って置く。
pio run
でコンパイル。書き込みまでする場合は
pio run -t upload
***platformio.ini [#ob6b6485]
init後の追加分
upload_port = /dev/ttyUSB0
monitor_speed = 115200 (標準は9600)
***シリアル接続 [#i369a128]
screen /dev/ttyUSB0 115200
など
**github [#f4639f1d]
***fork元の変更をマージ [#v5937a94]
[[https://help.github.com/ja/github/collaborating-with-is...
[[https://help.github.com/ja/github/collaborating-with-is...
git remote add upstream https://github.com/ORIGINAL_OWNE...
git fetch upstream
git checkout master
git merge upstream/master
* Node-Red [#wa47e611]
[[https://nodered.jp/]]
[[esp-idf]]
終了行:
* program [#j52ed0e7]
**platformio [#de3baaa2]
[[https://platformio.org/]]
***install [#f617f2b1]
- VSCodeのプラグインから入れる場合~
必要なパッケージを入れておく~
[[https://github.com/platformio/platformio-vscode-ide/iss...
sudo apt-get install python3-distutils
VSCodeのインストール
curl https://packages.microsoft.com/keys/microsoft.asc |...
sudo install -o root -g root -m 644 packages.microsoft.g...
sudo sh -c 'echo "deb [arch=amd64 signed-by=/usr/share/k...
sudo apt-get install apt-transport-https
sudo apt-get update
sudo apt-get install code # or code-insiders
その後VSCodeの拡張機能でplatformioを検索してinstallする。
バイナリは
~/.platformio/penv/bin/platformio または pio
にあるのでコマンドラインからこれが使える。
***プロジェクト作成 [#j17d282b]
pio init -b esp32dev
など。
srcフォルダにmain.cppなどを作って置く。
pio run
でコンパイル。書き込みまでする場合は
pio run -t upload
***platformio.ini [#ob6b6485]
init後の追加分
upload_port = /dev/ttyUSB0
monitor_speed = 115200 (標準は9600)
***シリアル接続 [#i369a128]
screen /dev/ttyUSB0 115200
など
**github [#f4639f1d]
***fork元の変更をマージ [#v5937a94]
[[https://help.github.com/ja/github/collaborating-with-is...
[[https://help.github.com/ja/github/collaborating-with-is...
git remote add upstream https://github.com/ORIGINAL_OWNE...
git fetch upstream
git checkout master
git merge upstream/master
* Node-Red [#wa47e611]
[[https://nodered.jp/]]
[[esp-idf]]
ページ名: