已经用上了,非常赞,感觉比在线的还好用.
顺便补一下,自动化如果需要同时控制多个,entity_id可以一次写多个
automation:
- alias: m1_day
#hide_entity: True
trigger:
platform: time
at: '7:30:00'
action:
- service: input_select.select_option
data:
entity_id:
- input_select.brightness_m1a
- input_select.brightness_m1b
- input_select.brightness_m1c
option: "白天"
- alias: m1_night
# hide_entity: True
trigger:
platform: time
at: '23:00:00'
action:
- service: input_select.select_option
data:
entity_id:
- input_select.brightness_m1a
- input_select.brightness_m1b
- input_select.brightness_m1c
option: "夜间"
|