是这意思不,看代码:
#关电视-------------------------------------------------------
- alias: '关电视'
trigger:
- platform: state
entity_id: switch.phicomm_dc2_switch2 #开关2为高清播放机x99box,开关3为电视机
to: 'off'
- platform: state
entity_id: media_player.x99box_2 #开关2为高清播放机x99box,开关3为电视机
from: 'standby'
to: 'off'
condition:
condition: and
conditions:
- condition: numeric_state
entity_id: sensor.phicomm_dc2_power
below: 150
action:
service: switch.turn_off
entity_id: switch.phicomm_dc2_switch3, switch.phicomm_dc2_switch2
|