You’re right, let me unwrap the visual editor:
alias: Notifica Telegram - Tapparelle aperte
description: ""
trigger:
- platform: numeric_state
entity_id: cover.rolling_shutter_switch_4_window_covering
attribute: current_position
above: 5
- platform: numeric_state
entity_id: cover.rolling_shutter_switch_6_window_covering
attribute: current_position
above: 5
- platform: numeric_state
entity_id: cover.rolling_shutter_switch_5_window_covering
attribute: current_position
above: 5
- platform: numeric_state
entity_id: cover.rolling_shutter_switch_2_window_covering
attribute: current_position
above: 5
- platform: numeric_state
entity_id: cover.rolling_shutter_switch_1_window_covering
attribute: current_position
above: 5
- platform: numeric_state
entity_id: cover.rolling_shutter_switch_3_window_covering
attribute: current_position
above: 5
condition:
- condition: time
after: "00:00:00"
before: "00:00:10"
action:
- service: telegram_bot.send_message
data:
message: >
{{states.sensor | selectattr('entity_id', 'search',
'cover.rolling_shutter_switch_1_window_covering')
| map(attribute='current_position')
| map('int', 101)
| select('lt', 100)
| list}}
mode: single
The message section is still wip, I’m still figuring out how to send the message telling me which shutters have been left opened.
Thanks! 