This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: Door Open Notify | |
description: While door open, keep send notification after specific times. | |
domain: automation | |
input: | |
door_entity: | |
name: Door Sensor | |
selector: | |
entity: | |
domain: binary_sensor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: 門開時發通知 | |
description: 當門持續開啟與間隔多久及門關上時,發送通知提醒 | |
domain: automation | |
input: | |
door_entity: | |
name: 門的實體 | |
selector: | |
entity: | |
domain: binary_sensor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
esphome: | |
name: ikea-pm25 | |
platform: ESP8266 | |
board: d1_mini | |
# Enable logging | |
logger: | |
# Enable Home Assistant API | |
api: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- id: smart_light_offline_autorestart | |
alias: "燈斷線超過時間自動重開" | |
description: "當智慧燈具斷線超過設定的時間,將自動重新開關一次牆壁開關,並透過Line發送通知執行結果" | |
initial_state: true | |
trigger: | |
- platform: state | |
entity_id: | |
- light.room | |
to: 'unavailable' | |
for: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: IKEA遙控器控制智慧風扇 | |
description: 可控制開關/擺頭/風速增減,遙控器中間鈕為開關鍵 | |
domain: automation | |
input: | |
fan_entity: | |
name: 風扇實體 | |
selector: | |
entity: | |
domain: fan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: 用耗電量來偵測電器已完成任務 | |
description: > | |
使用任何的耗電量感測器來偵測電器(如洗衣機、烘衣機、洗碗機) | |
This is Chinese version of blueprint was original created by: [sbyx](https://gist.github.com/sbyx/6d8344d3575c9865657ac51915684696) | |
domain: automation | |
input: | |
power_sensor: | |
name: 電量感測器 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
substitutions: | |
devicename: dehumidifier | |
upper_devicename: "dehumidifier" | |
tx_pin_io: GPIO17 | |
rx_pin_io: GPIO16 | |
esphome: | |
name: $devicename | |
friendly_name: ${upper_devicename} | |
comment: $upper_devicename for Hitachi RD-22FC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: 空調關閉先定時送風再關機 | |
description: > | |
### 當空調要關機後<經過20秒>,會先切成"送風模式",並持續一定時間再關機 | |
只要空調從"非"送風或暖氣模式變為"關閉"就會觸發此自動化 | |
請注意!在送風期間HA請勿重啟或重新載入自動化,不然將無法自動關閉空調唷!! | |
**版本: V24.7.12** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
blueprint: | |
name: 空調關閉定時送風再關機(計時器版) | |
description: > | |
### 當空調要關機後<等待20秒>,會先切成"送風模式",並持續一定時間再關機 | |
### 請先至設定>裝置與服務>助手>新增計時器>記得勾選"回復"並填上想要送風多久的時間再來新增此自動化! | |
只要空調從"非"送風或暖氣模式變為"關閉"就會觸發此自動化,轉為送風並開始倒數 | |
當倒數結束就會關閉空調,如果在倒數期間切換其他模式,將停止倒數不會繼續 |