Irrigation Unlimited - Water pump start and stop

Hi there.

I’m still trying to understand how can I start/stop the water pump every time a zone irrigation sequence is triggered.

I’ve defined sequences for summer, winter, and sprint/autumn, but still missing the part that needs to start the water pump right after the valve opens and turn it off right before it closes :thinking:

Here’s my configuration.yaml

irrigation_unlimited:
  controllers:
    zones:
      - name: "Zona 1"
        entity_id: "switch.riego_zona_1"
      - name: "Zona 2"
        entity_id: "switch.riego_zona_2"
    sequences:
      - name: "Summer"
        duration: "00:15"
        delay: "00:10"
        schedules:
          - time: "02:00"
            month: [dec, jan, feb]
        zones:
          - zone_id: 1
          - zone_id: 2
      - name: "Spring and Autumn"
        duration: "00:12"
        delay: "00:05"
        schedules:
          - name: "At sunrise spring / autumn"
          - time:
              sun: "sunrise"
            day:
              every_n_days: 2
            month: [mar, apr, may, sep, oct, nov]
        zones:
          - zone_id: 1
          - zone_id: 2
      - name: "Winter"
        duration: "00:10"
        delay: "00:01"
        schedules:
          - name: "At sunrise in winter"
          - time:
              sun: "sunrise"
            day:
              every_n_days: 4
            month: [jun, jul, aug]
        zones:
          - zone_id: 1
          - zone_id: 2

TIA