Error condition or in automation

I have a problem since I want to use conditions or but I get an error and from what I have been able to see to be with hassbian if possible. That means that in hass.io they are not compatible or how I could do it to work

Show us the code?

The code that I am using is:

id: atardecer
** alias: Atardecer**
** trigger:**
** - event: sunset**
** offset: -00:45:00**
** platform: sun**
** condition:**
** - condition: zone**
** entity_id: device_tracker.raul_honor8**
** zone: zone.home**
** - condition: zone**
** entity_id: device_tracker.rocio_note4**
** zone: zone.home**
** action:**
** - alias: ‘’**
** data:**
** message: Se han encendido las luces de la lámpara de pie del salón**
** title: Luces Encendidas**
** service: notify.html5**
** - data:**
** brightness: 94**
** entity_id:**
** - light.salon**
** rgb_color:**
** - 255**
** - 210**
** - 129**
** service: light.turn_on**

According to him understood the actions will be carried out if the two conditions are met but I would like them to be carried out if any of the two mobile phones was found at home, with what an O clause can be used and I do not know exactly how to do it

Try…

- id: atardecer
  alias: Atardecer
  trigger:
    platform: sun
    event: sunset
    offset: -00:45:00
  condition:
    condition: or 
    conditions:
      - condition: zone
        entity_id: device_tracker.raul_honor8
        zone: zone.home
      - condition: zone
        entity_id: device_tracker.rocio_note4
        zone: zone.home
  action:
    - service: notify.html5
      data:
        title: Luces Encendidas
        message: Se han encendido las luces de la lámpara de pie del salón
    - service: light.turn_on
      data:
        entity_id: light.salon
        brightness: 94
        rgb_color: [ 255 , 210 , 129 ] 
1 Like

thank you very much for answering so fast … I have loaded it and it indicates me unsupported condition: or

you’re like the configuration whisperer… even when there is no formatting!

1 Like

esto me indica:

error

I don’t recognise that screen, but if it’s something to do with the automation ui then I think this is a known issue, you’ll have to put the code in manually.

:laughing: