Open venetian blinds at a certain wind speed

Hey friends, got some questions.
Is there someone that got a solution for venitian Blinds? Just to open up the blinds at a certain speed of wind.

Because they can get bend by the wind.

This will help me a lot.

Thank you all

Just got my new venitian blinds this week. So i’ve create an automation, triggered by my wind sensor and then depending on which cover is open it will close it.

If this will help you, here is the code of my automation. Can also try to create a blueprint if this is the same what you want to achive.

Please note that i didn’t had time to test it, so i’m still not 100% sure if this will work like i thought :smiley:

alias: Raffstore - OPEN All - Wind
description: Open all Raffstores if Wind Speed is > 16 m/s
trigger:
  - platform: numeric_state
    entity_id: sensor.gw2000a_v2_1_8_wind_speed
    for:
      hours: 0
      minutes: 0
      seconds: 20
    above: 16
    alias: Check Windspeed > 16.0 m/s
condition:
  - condition: or
    conditions:
      - condition: numeric_state
        entity_id: cover.raffstore_buero
        attribute: current_position
        below: 100
        alias: Buero Check
      - condition: numeric_state
        entity_id: cover.raffstore_kinderzimmer
        attribute: current_position
        below: 100
        alias: Kinderzimmer Check
      - condition: numeric_state
        entity_id: cover.raffstore_schlafzimmer_fenste
        alias: SZ Fenster Check
        attribute: current_position
        below: 100
      - condition: numeric_state
        entity_id: cover.raffstore_schlafzimmer
        attribute: current_position
        alias: SZ Check
        below: 100
    alias: Check if any Raffstore is closed
action:
  - parallel:
      - choose:
          - conditions:
              - condition: numeric_state
                entity_id: cover.raffstore_buero
                attribute: current_position
                below: 100
            sequence:
              - service: cover.open_cover
                data: {}
                target:
                  entity_id: cover.raffstore_buero
        alias: Buero Action
      - choose:
          - conditions:
              - condition: numeric_state
                entity_id: cover.raffstore_kinderzimmer
                attribute: current_position
                below: 100
            sequence:
              - service: cover.open_cover
                data: {}
                target:
                  entity_id: cover.raffstore_kinderzimmer
        alias: Kinderzimmer Action
      - choose:
          - conditions:
              - condition: numeric_state
                entity_id: cover.raffstore_schlafzimmer_fenste
                attribute: current_position
                below: 100
            sequence:
              - service: cover.open_cover
                data: {}
                target:
                  entity_id: cover.raffstore_schlafzimmer_fenste
        alias: SZ Fenster Action
      - choose:
          - conditions:
              - condition: numeric_state
                entity_id: cover.raffstore_schlafzimmer
                attribute: current_position
                below: 100
            sequence:
              - service: cover.open_cover
                data: {}
                target:
                  entity_id: cover.raffstore_schlafzimmer
        alias: SZ Fenster
mode: single

Will give it a try, Danke :sunglasses: