Sonoff Switch Automation problems

Hey Everyone I managed to setup most of my automations and they are up and running but i have 3 switches that seem to be ready in automation configurator , made them there also but I dont see them running anyone wanna take a look and tell me what he saw?

number 1 :

- id: '1561742432806'
  alias: Irrigation turn on, then off 10 minutes later
  trigger:
  - event: sunset
    platform: sun
  condition:
  - condition: state
    entity_id: calendar.summer_automations
    state: 'on'
  - condition: or
    conditions:
  - condition: state
    entity_id: weather.dark_sky
    state: clear
  - condition: state
    entity_id: weather.dark_sky
    state: cloudy
  - condition: state
    entity_id: weather.dark_sky
    state: partlycloudy
  action:
  - data:
      entity_id: switch.sonoff_10004115ce
    service: switch.turn_on
  - delay: 00:10:00
  - data:
      entity_id: switch.sonoff_10004115ce
    service: switch.turn_off

number 2 :

- id: '1561720526293'
  alias: Livingroom Table Lamp On
  trigger:
  - event: sunset
    platform: sun
  condition: []
  action:
  - delay: 'minutes: 10'
  - data:
      entity_id: switch.sonoff_1000412685
    service: switch.turn_on

and number 3 :

- id: '1561727021804'
  alias: Summer Shadow 3 up turn on, then off 3 minutes later
  trigger:
  - above: '35'
    below: '36'
    entity_id: sun.sun
    platform: numeric_state
    value_template: '{{state.attributes.elevation}}'
  condition:
  - condition: state
    entity_id: calendar.summer_automations
    state: 'on'
  - after: '16:30:00'
    condition: time
  action:
  - data:
      entity_id: switch.sonoff_10005b7999_4
    service: switch.turn_on
  - delay: 00:02:00
  - data:
      entity_id: switch.sonoff_10005b7999_4
    service: switch.turn_off

to most of my automation delay actions seems to work , so is the sunset , should I write offset? calendar condition works also for most of my automations I just dont get it , maybe the switches doesnt work with that?

It would be of help if you could describe in natural language what you except each of the automations to do,

no1 triggers a garden sprinkler at sunset the conditions are working with the help of google calendar that defines from what month to start till what month to finish at clear weather or cloudy or partly cloudy

no2 triggers a desktop lamp at sunset with 10 minutes delay

no3 triigers an awning with sun elevation between 36-35 with google calendar condition turns on the switch then delays and turns off the switch but I see that Homeassistant cant handle to command too many instances at the same time so i might need to change the times that each triggers

Your conditions for the sprinkler automation are not indented correctly. Have another look at the way I formatted it in your original post about this.

  condition:
  - condition: state
    entity_id: calendar.summer_automations
    state: 'on'
  - condition: or
    conditions:
      - condition: state
        entity_id: weather.dark_sky
        state: clear
      - condition: state
        entity_id: weather.dark_sky
        state: cloudy
      - condition: state
        entity_id: weather.dark_sky
        state: partlycloudy