Boas,
tenho uma automação apenas para uma lampada yeelight , mas cria que a automação fosse para as duas lampadas .
A outra coisa era que quando eu as ligo manualmente , elas não se desligassem ao fim do tempo que está na automação.
as entidades são as seguintes
light.table_light
light.table_2_light
- alias: ligar luz sala
initial_state: 'true'
trigger:
- platform: state
entity_id: binary_sensor.sensor_porta_entrada_contact
from: 'off'
to: 'on'
condition:
- condition: sun
after: 'sunset'
action:
- service: light.turn_on
entity_id: light.table_light
- service: notify.telegram
data:
message: Ligou a luz da sala de estar porque chegou a casa
- service: notify.alexa_media
data:
data:
type: announce
target:
- media_player.sotao_echo_dot
message: Turn on living room light because you arrive at home and is night
- alias: desligar luz sala off
initial_state: 'true'
trigger:
- platform: state
entity_id: binary_sensor.sensor_porta_entrada_contact
from: 'on'
to: 'off'
for:
minutes: 5
condition:
- condition: sun
after: 'sunset'
action:
- service: light.turn_off
entity_id: light.table_light
- service: notify.telegram
data:
message: Desligou a luz da sala de estar porque chegou a casa há 5 minutos
- service: notify.alexa_media
data:
data:
type: announce
target:
- media_player.sotao_echo_dot
message: Turn off living room light because you arrive at home and is night ```
Obrigado.