From e3b68f5527dd2c95ea29668f4ccd64da293f86cc Mon Sep 17 00:00:00 2001 From: ocogeclub Date: Sun, 28 Nov 2021 11:42:33 +0900 Subject: [PATCH] =?UTF-8?q?[fix]=20=E3=83=96=E3=83=A9=E3=83=B3=E3=83=81?= =?UTF-8?q?=E9=96=93=E3=81=AE=E3=82=B3=E3=83=B3=E3=83=95=E3=83=AA=E3=82=AF?= =?UTF-8?q?=E3=83=88=E3=82=92=E8=A7=A3=E6=B1=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- index_elutil.js | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9e00d2a..2e95770 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # ocoge "大岩産 Code Generator" は、Google Blockly ライブラリを使用した、Raspberry Pi 上で動作するブロックプログラム開発・実行環境です。 -インストール方法・操作・サンプルなどは、今後『[おこげ倶楽部](https://ocoge.club)』にて公開予定です。 +インストール方法・操作・サンプルなどは、『[おこげ倶楽部](https://ocoge.club)』または『[おこげはてな倶楽部](https://ocogeclub.hatenablog.jp)』にて公開予定です。 ### 免責 このアプリケーションは特定の環境下で使用する目的で、専門知識を持たない日曜プログラマによって無計画に開発されています。アドバイス・ご意見・ご要望は有難く承りますが、対応の保証はいたしかねます。 diff --git a/index_elutil.js b/index_elutil.js index cd34d61..bdae0ed 100644 --- a/index_elutil.js +++ b/index_elutil.js @@ -13,7 +13,7 @@ const ugj_const = { error_ja_all: 'エラーが発生しました。\n『おこげ倶楽部』までお問い合わせください。', pig: 'pigpio', lg: 'lgpio', // 対応未定 - i2c_defbus: '6', // 文字列リテラルで指定 + i2c_defbus: '1', // 文字列リテラルで指定 dev_hash: '4e9205f9b7e571bec1aa52ab7871f420684fcf96149672a4d550a95863d6b072' } @@ -213,7 +213,8 @@ class elUtil { 'saveFilepath': this.saveFilepath, 'wsChanged': wc, 'mascotFilePath': this.mascotFilePath, - 'doc_current': this.doc_current + 'doc_current': this.doc_current, + 'i2c_bus': this.i2c_bus }; let s = JSON.stringify(o); localStorage.setItem(ugj_const.localStorage_fname, s); @@ -229,6 +230,7 @@ class elUtil { else this.setWsChanged(true); if (o.mascotFilePath) this.setMascotFilePath(o.mascotFilePath); if (o.doc_current) this.doc_current = o.doc_current; + if (o.i2c_bus) this.i2c_bus = o.i2c_bus; } }