Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # 功用: 統計共有多少自動化及啟用的自動化
- # 用法: 1. 將以下code放在configuration.yaml內
- # 2. 至開發工具>YAML>檢查設定內容>沒有錯誤訊息>下方>點模板實體
- # 3. 即可在開發工具>狀態找到新增的template sensor
- # 補充: 把states.automation改為states.binary_sensor, sensor, script, switch等即可統計有多少數量
- template: #已有template要記得刪除這行,不能重複
- - sensor:
- #自動化總數
- - name: "total_automations"
- unique_id: total_automations
- icon: mdi:robot
- state: >
- {{ states.automation | count }}
- #啟用的自動化數量
- - name: "automations_on"
- unique_id: automations_on
- icon: mdi:robot
- state: >
- {{ states.automation | selectattr('state','eq','on') | list | count }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement