[
自宅サーバー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-15
|
List
Search
Recent
Help
Back to page
History
Referer
Print
Source of
ミンティア[MINTIA] で WiFi 6ボタンスイッチを作った
Source of
UsersWiki
:
nao-pon
/
blog
/
2021-06-15
View the
diff
.
Go to
nao-pon/blog/2021-06-15
.
#navi RIGHT:&rsslink(../); #boxdate * ミンティア[MINTIA] で WiFi 6ボタンスイッチを作った :-D [#i7d337be] RIGHT:&tag(WiFi,ESP-32,DIY,HomeAssistant,Hass.io,ESPHome); Google Home や Alexa と HomeAssistant を統合しているので、声で大体のことはできる・・・けど。 声を発声して、アシスタントに認識させるのが、面倒くさいと感じる。なんてわがままな! :lol: だって、正しく認識してくれないと、もう一度言い直したり、見当違いのスイッチを ON/OFF されたり・・・ そこで、やっぱり物理ボタンですよ! ちょうど手元にミンティアとESP-32が転がっていて・・・。ん?これ入るんじゃね?って思ったところ。 おぉー!やっぱりピッタリじゃないですか!厚みが若干きついけど。 で、結果こうなりました。やっぱりボタンで操作できるのは快適です。USB電源はいるけどね。 &ref(site://modules/xelfinder/index.php/view/10/DSC_3857.JPG,left,mw:180,mh:180);&ref(site://modules/xelfinder/index.php/view/8/DSC_3856.JPG,left,mh:180); #clear ボタンの穴あけを少し失敗したけど、今度作るときはもう少しきちんと作ろう! ボタンを押すと青いLEDが光ります。 ** いるもの ((価格は購入時のもの)) [#ibd9ea71] - [[ESP-32 モジュール:https://ja.aliexpress.com/item/32823593448.html]] 474円 ((Aliexpress で買ったけど、技適マークはついていました。)) - [[タクトスイッチ:https://www.marutsu.co.jp/pc/i/599871/]] 10円 × 6 - ミンティアの空き容器 - 適当なユニバーサル基板 - 2mmポリウレタン銅線 適宜 ** ESPHome の設定 [#j6fe7996] esp32_ble_tracker は、手元に Qmote-S があったので、うまく使えないかな?と思って試してみたけど、検知範囲が狭くてほぼ使えなかった。残念。 #code(yaml){{ substitutions: devicename: switch_box_11 esphome: name: $devicename platform: ESP32 board: wemos_d1_mini32 on_boot: - priority: 1000 then: - while: condition: not: api.connected: then: - switch.turn_on: led - delay: 500ms - switch.turn_off: led - delay: 500ms wifi: networks: !include common/wifi.networks.yaml # Enable fallback hotspot (captive portal) in case wifi connection fails ap: !include common/wifi.ap.yaml manual_ip: static_ip: 192.168.1.xx gateway: 192.168.1.1 subnet: 255.255.255.0 captive_portal: # Enable logging logger: # Enable Home Assistant API api: ota: esp32_ble_tracker: id: ble_tracker on_ble_manufacturer_data_advertise: - mac_address: 88:4A:XX:XX:DE:52 manufacturer_id: 004C then: - lambda: |- if (id(qmote_de52_click).state == false) { id(qmote_de52_click).publish_state(true); id(qmote_de52_click).publish_state(false); } - mac_address: 88:4A:XX:XX:99:BB manufacturer_id: 004C then: - lambda: |- if (id(qmote_99bb_click).state == false) { id(qmote_99bb_click).publish_state(true); id(qmote_99bb_click).publish_state(false); } - mac_address: 88:4A:XX:XX:9F:03 manufacturer_id: 004C then: - lambda: |- if (id(qmote_9f03_click).state == false) { id(qmote_9f03_click).publish_state(true); id(qmote_9f03_click).publish_state(false); } binary_sensor: - platform: gpio pin: number: GPIO23 inverted: True mode: INPUT_PULLUP name: "$devicename btn1" on_press: then: - switch.turn_on: led on_release: then: - switch.turn_off: led - platform: gpio pin: number: GPIO19 inverted: True mode: INPUT_PULLUP name: "$devicename btn2" on_press: then: - switch.turn_on: led on_release: then: - switch.turn_off: led - platform: gpio pin: number: GPIO18 inverted: True mode: INPUT_PULLUP name: "$devicename btn3" on_press: then: - switch.turn_on: led on_release: then: - switch.turn_off: led - platform: gpio pin: number: GPIO33 inverted: True mode: INPUT_PULLUP name: "$devicename btn4" on_press: then: - switch.turn_on: led on_release: then: - switch.turn_off: led - platform: gpio pin: number: GPIO05 inverted: True mode: INPUT_PULLUP name: "$devicename btn5" on_press: then: - switch.turn_on: led on_release: then: - switch.turn_off: led - platform: gpio pin: number: GPIO26 inverted: True mode: INPUT_PULLUP name: "$devicename btn6" on_press: then: - switch.turn_on: led on_release: then: - switch.turn_off: led - platform: template id: qmote_de52_click name: "$devicename Qmote de52 Click" filters: delayed_off: 800ms on_press: then: - switch.turn_on: led on_release: then: - switch.turn_off: led - platform: template id: qmote_99bb_click name: "$devicename Qmote 99bb Click" filters: delayed_off: 800ms on_press: then: - switch.turn_on: led on_release: then: - switch.turn_off: led - platform: template id: qmote_9f03_click name: "$devicename Qmote 9f03 Click" filters: delayed_off: 800ms on_press: then: - switch.turn_on: led on_release: then: - switch.turn_off: led sensor: - platform: wifi_signal name: "$devicename WiFi" update_interval: 60s unit_of_measurement: "%" filters: - lambda: x = 2 * (x + 100); if (x < 0) {x = 0;} else if (x > 100) {x = 100;} return x; switch: - platform: restart name: "$devicename Restart" - platform: gpio pin: number: GPIO2 name: "$devicename LED" id: led }} RIGHT:&font(90%){&page_comments;}; #navi
Backup source of nao-pon/blog/2021-06-15(No. All)
Cur: 2021-06-15 (Tue) 11:06:01
nao-pon
Page Info
Page Name :
nao-pon/blog/2021-06-15
Page aliases :
None
Page owner :
nao-pon
Can Read
Groups :
All visitors
Users :
All visitors
Can Edit
Groups :
No one
Users :
ゲスト
Counter: 1656, today: 1, yesterday: 1
メインメニュー
ホーム
価格比較 百貨
UsersWiki
新規ページ作成
最新ページ一覧
全ページ一覧
全コメント一覧
ヘルプ
» 関連ページ
» 記述を見る
» 変更点を見る
» バックアップ一覧
» 添付ファイル一覧
» リンク元一覧
xpwiki
お問い合わせ
ファイルマネージャー
ログイン
ユーザー名:
パスワード:
パスワード紛失
|
新規登録
最近の更新
recent(20)
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
/
Tasmota を 9.4.0 から 9.5.0 へアップデート
2021-06-15
nao-pon/blog/2021-06-15
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 で三菱エアコンを完全コントロール
2021-01-27
nao-pon
/
blog
/
ラトック RS-WFIREX4 用の HomeAssistant カスタムコンポーネントを作った
2020-12-28
nao-pon
/
blog
/
ESPHome の CCS811 コンポーネントで Baseline 値センサーを追加
オンライン状況
256 人のユーザが現在オンラインです。 (2 人のユーザが UsersWiki を参照しています。)
登録ユーザ: 0
ゲスト: 256
もっと...
サイト情報