[
自宅サーバーWebRing
┃
前
|ID=54
前後5表示
|
次
┃
乱移動
|
サイト一覧
]
このサイト内
書籍 DVD CD
Google(日本語)
Google(Web全体)
Google(イメージ)
Google(キャッシュ)
Yahoo! JAPAN
goo 英和
goo 和英
goo 国語
goo 新語
サイトマップ
リンク集
ダウンロード
フォーラム
Users Wiki
最新情報
TOP
»
UsersWiki
»
nao-pon
»
blog
» Source of nao-pon/blog/2021-06-20
|
List
Search
Recent
Help
Back to page
History
Referer
Print
Source of
Tasmota を 9.4.0 から 9.5.0 へアップデート
Source of
UsersWiki
:
nao-pon
/
blog
/
2021-06-20
View the
diff
.
Go to
nao-pon/blog/2021-06-20
.
« Prev
#navi RIGHT:&rsslink(../); #boxdate * Tasmota を 9.4.0 から 9.5.0 へアップデート [#y5d45058] RIGHT:&tag(家IoT,Tasmota); #ref(site://modules/xelfinder/index.php/view/34/210620-214752.png,around,right,mw:300,mh:400) エアコンのWiFi化は、Tasmota をカスタマイズした独自ビルドを使っているけど、Tasmota 9.5.0 がリリースされたので、アップデートした。 次に実行するときは、多分忘れているだろうから、自分用の覚書を書いておく。 ** 自前 GitHub リポジトリ [#i8b619bf] - [[IRremoteESP8266:https://github.com/nao-pon/IRremoteESP8266]] IRremoteESP8266 は、とにかく最新版を使うようにしている。 master ブランチは upstream の master を参照している。 #code(){{ git diff master > _diff1.txt git checkout master git pull git checkout mitsu_pana_custom git rebase master git diff master > _diff2.txt }} で、_diff1.txt と _diff2.txt を比較して、問題なくカスタマイズ分が反映されているか確認する。 diff _diff1.txt _diff2.txt > _diff3.txt #code(diff){{ 2c2 < index f194430..9284250 100644 --- > index 316d756..4a05193 100644 75c75 < @@ -1375,12 +1429,13 @@ void IRac::midea(IRMideaAC *ac, --- > @@ -1367,12 +1421,13 @@ void IRac::midea(IRMideaAC *ac, 90c90 < @@ -1394,10 +1449,12 @@ void IRac::mitsubishi(IRMitsubishiAC *ac, --- > @@ -1386,10 +1441,12 @@ void IRac::mitsubishi(IRMitsubishiAC *ac, 105c105 < @@ -1613,8 +1670,8 @@ void IRac::panasonic(IRPanasonicAc *ac, const panasonic_ac_remote_model_t model, --- > @@ -1605,8 +1662,8 @@ void IRac::panasonic(IRPanasonicAc *ac, const panasonic_ac_remote_model_t model, 116c116 < @@ -1626,6 +1683,11 @@ void IRac::panasonic(IRPanasonicAc *ac, const panasonic_ac_remote_model_t model, --- > @@ -1618,6 +1675,11 @@ void IRac::panasonic(IRPanasonicAc *ac, const panasonic_ac_remote_model_t model, 128c128 < @@ -2304,11 +2366,11 @@ bool IRac::sendAc(const decode_type_t vendor, const int16_t model, --- > @@ -2296,11 +2358,11 @@ bool IRac::sendAc(const decode_type_t vendor, const int16_t model, 142c142 < @@ -2609,7 +2671,7 @@ bool IRac::sendAc(const stdAc::state_t desired, const stdAc::state_t *prev) { --- > @@ -2601,7 +2663,7 @@ bool IRac::sendAc(const stdAc::state_t desired, const stdAc::state_t *prev) { 151c151 < @@ -2665,7 +2727,7 @@ bool IRac::sendAc(const stdAc::state_t desired, const stdAc::state_t *prev) { --- > @@ -2657,7 +2719,7 @@ bool IRac::sendAc(const stdAc::state_t desired, const stdAc::state_t *prev) { 160c160 < @@ -2827,7 +2889,7 @@ bool IRac::cmpStates(const stdAc::state_t a, const stdAc::state_t b) { --- > @@ -2819,7 +2881,7 @@ bool IRac::cmpStates(const stdAc::state_t a, const stdAc::state_t b) { 227c227 < index 99b103f..4cfb3d6 100644 --- > index 20fd7d0..0cbc259 100644 248c248 < index 3ec5303..523ebd0 100644 --- > index 5d16c85..acf57a5 100644 251c251 < @@ -551,6 +551,8 @@ namespace irutils { --- > @@ -552,6 +552,8 @@ namespace irutils { }} 問題ない。 - [[Tasmota:https://github.com/nao-pon/Tasmota]] #code(){{ git checkout development git pull git checkout irremote_full_custom git merge development }} %%今回は大丈夫だったけど、lib/lib_basic/IRremoteESP8266 でコンフリクトが生じるかも知れない。%% %%そんなときは、次のようにとりあえず development 側を適用しておけばいいかな。知らんけど。%% #code(bash){{ git checkout --theirs lib/lib_basic/IRremoteESP8266 git add lib/lib_basic/IRremoteESP8266 git commit }} 違った!そういえば、platformio_override.ini で lib_extra_dirs を違うディレクトリを指定してあり、IRremoteESP8266 の Git ディレクトリにシンボリックを張ってあった。 #code(ini){{ [env:tasmota-ircustom] build_flags = ${common.build_flags} ${irremoteesp_full.build_flags} -DFIRMWARE_IR_CUSTOM [env:ir_jema_bridge] extends = env:tasmota-ircustom lib_extra_dirs = lib/lib.bak [env:ir_jema_bridge_ccs811] extends = env:tasmota-ircustom lib_extra_dirs = lib/lib.bak, lib/lib_i2c ;build_flags = ${env:tasmota-ircustom.build_flags} -DUSE_CCS811_V2 ;build_flags = ${env:tasmota-ircustom.build_flags} -DUSE_CCS811_V2_10SEC build_flags = ${env:tasmota-ircustom.build_flags} -DUSE_CCS811_V2_60SEC }} xdrv_05_irremote_full.ino をカスタマイズした、xdrv_05_irremote_full_custom.ino をビルドに使っているので、内容を確認してカスタマイズ分が反映されているか確認する。 今回は Settings.param が Settings->param に変更になっていたので、それを WinMerge でさくっと修正した。 同様に、カスタマイズで使用している xsns_31_ccs811_v2_10sec.ino と xsns_31_ccs811_v2_60sec.ino も確認。 今回、こちらは大丈夫だった。 lib/lib_basic/IRremoteESP8266 を [[nao-pon/IRremoteESP8266 の mitsu_pana_custom:https://github.com/nao-pon/IRremoteESP8266]] で上書きする。 git commit これで OK かな。 とりあえず、 pio run でビルドしてみる、大丈夫っぽい。 OTA で更新可能にしてるので、試しに一台アップデートしてみたところ、問題ないようだったので全台アップデートした。 - OTA URL は下記で公開しています。よろしければ使ってください。ただし、自己責任でお願いします。 ~ Panasonic, Mitsubishi, Toshiba のエアコンが有効になっています。 ~ HomeAssistant との統合は、Tasmota-IRHVAC をこの拡張分に対応させた [[nao-pon/Tasmota-IRHVAC:https://github.com/nao-pon/Tasmota-IRHVAC]] を使用してください。 -- http://hypweb.net/tasmota/firmware/ir_jema_bridge.bin.gz -- http://hypweb.net/tasmota/firmware/ir_jema_bridge_ccs811.bin.gz (CCS811 1分間隔更新) RIGHT:&font(90%){&page_comments;}; #navi
« Prev
Backup list of nao-pon/blog/2021-06-20
Backup source of nao-pon/blog/2021-06-20(No. All)
1: 2021-06-20 (Sun) 16:45:00
nao-pon
Cur: 2021-06-20 (Sun) 21:49:44
nao-pon
Page Info
Page Name :
nao-pon/blog/2021-06-20
Page aliases :
None
Page owner :
nao-pon
Can Read
Groups :
All visitors
Users :
All visitors
Can Edit
Groups :
No one
Users :
ゲスト
Counter: 2945, today: 1, yesterday: 0
メインメニュー
ホーム
価格比較 百貨
UsersWiki
新規ページ作成
最新ページ一覧
全ページ一覧
全コメント一覧
ヘルプ
» 関連ページ
» 記述を見る
» 変更点を見る
» バックアップ一覧
» 添付ファイル一覧
» リンク元一覧
xpwiki
お問い合わせ
ファイルマネージャー
ログイン
ユーザー名:
パスワード:
パスワード紛失
|
新規登録
最近の更新
recent(20)
2023-05-14
nao-pon
/
gmap + gmap_street + gmap_insertmarker
nao-pon
/
googlemaps2
2023-03-22
PublicBlog
/
The Importance of QFP in PCB
2023-02-28
FrontPage
/
PCB terminology you must know
2023-01-20
nao-pon
/
blog
/
ESP8266 を壊してしまいました しかも続けて2回も
2022-09-22
nao-pon
/
blog
/
ESP32 + ESPHome の Bluetooth Proxy で SwitchBot Mater
2022-08-26
nao-pon
/
blog
/
独自ビルドの Tasmota を 12.1.1 へ
2022-08-19
nao-pon
/
blog
/
Zigbee + ZHA のメモ書き
2022-01-17
nao-pon
/
blog
/
HomeAssistant 統合の Tasmota-IRHVAC に貢献
2021-08-03
nao-pon
/
ファイル置き場
/
スペースサワダ
2021-07-01
nao-pon
/
blog
/
HomeAssistant 統合の Tasmota-IRHVAC の不具合修正
2021-06-20
nao-pon/blog/2021-06-20
2021-06-15
nao-pon
/
blog
/
ミンティア[MINTIA] で WiFi 6ボタンスイッチを作った
2021-04-27
PublicBlog
2021-03-17
nao-pon
/
blog
/
SwitchBot 温湿度計を ESP32 でモニタリング
2021-03-13
nao-pon
/
blog
/
東芝エアコンのエントリーモデルもWiFi化
2021-02-23
risoulaser
2021-02-18
nao-pon
/
blog
/
Panasonic (ナショナル) エアコンの 2008 年モデルも WiFi 化
2021-02-15
nao-pon
/
blog
/
Tasmota で HA 端子(JEM-A) 連携
2021-02-07
nao-pon
/
blog
/
Tasmota で三菱エアコンを完全コントロール
オンライン状況
958 人のユーザが現在オンラインです。 (10 人のユーザが UsersWiki を参照しています。)
登録ユーザ: 0
ゲスト: 958
もっと...
サイト情報