[fix] ブランチ間のコンフリクトを解決

This commit is contained in:
ocogeclub 2021-11-28 11:42:33 +09:00
parent f57006f252
commit e3b68f5527
2 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,6 @@
# ocoge
"大岩産 Code Generator" は、Google Blockly ライブラリを使用した、Raspberry Pi 上で動作するブロックプログラム開発・実行環境です。
インストール方法・操作・サンプルなどは、今後『[おこげ倶楽部](https://ocoge.club)』にて公開予定です。
インストール方法・操作・サンプルなどは、『[おこげ倶楽部](https://ocoge.club)』または『[おこげはてな倶楽部](https://ocogeclub.hatenablog.jp)』にて公開予定です。
### 免責
このアプリケーションは特定の環境下で使用する目的で、専門知識を持たない日曜プログラマによって無計画に開発されています。アドバイス・ご意見・ご要望は有難く承りますが、対応の保証はいたしかねます。

View File

@ -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;
}
}