2024年11月24日星期日 下午8:04:42

Track Home/Away Status for Your Household Using Their Smart Phones and Home Assistant - input_select

2 年 前
#14403 引用
Track Home/Away Status for Your Household Using Their Smart Phones and Home Assistant - input_select

国外人回家判断思路

https://bbs.hassbian.com/thread-3349-1-5.html

https://philhawthorne.com/making-home-assistants-presence-detection-not-so-binary/

Adding New States To Home Assistant

The next example shows an input_select integration。

configuration.yaml

input_select:
  phil_status_dropdown:
    name: Phil
    options:
      - Home
      - Just Arrived
      - Just Left
      - Away
      - Extended Away
    initial: Home
0
2 年 前
#14404 引用
input_select
0
2 年 前
#14405 引用

input_boolean:


input_select:
  input_select_husband_status_dropdown:
    name: input_select_husband
    options:
      - Home
      - Just Arrived
      - Just Left
      - Away
      - Extended Away
    initial: Home




0