electronique:domotique:homeassistant_volets_roulants
Différences
Ci-dessous, les différences entre deux révisions de la page.
Prochaine révision | Révision précédente | ||
electronique:domotique:homeassistant_volets_roulants [2025/03/16 12:44] – créée florian | electronique:domotique:homeassistant_volets_roulants [2025/03/16 13:21] (Version actuelle) – [Contexte / Objectif] florian | ||
---|---|---|---|
Ligne 1: | Ligne 1: | ||
- | ====== Volets | + | ====== Volets |
===== Contexte / Objectif ===== | ===== Contexte / Objectif ===== | ||
- | Toujours ces volets roulants Legrand et le protocole | + | Toujours ces volets roulants Legrand, et voilà des petits nouveaux dans l' |
+ | On fait le point : | ||
+ | |||
+ | * Legrand et son In One complètement fermé | ||
+ | * Simu qui a fait Hz puis BHz | ||
+ | * in ne nous manque plus que Somfy RTS puis IO (qui a racheté Simu) ... | ||
+ | |||
+ | Et ben ça sera toujours sans moi. On démonte et on soude un esp8266 qui pilotera les boutons d’émetteurs Legrand et Simu. | ||
+ | |||
+ | Sauf qu'à présent, exit [[: | ||
+ | |||
+ | ===== Réalisation ===== | ||
+ | |||
+ | ==== Electronique ==== | ||
+ | |||
+ | {{: | ||
+ | |||
+ | Commande centralisée Legrand à gauche et commande centralisée Simu à droite. | ||
+ | |||
+ | |||
+ | ==== Code ESPHome ==== | ||
+ | |||
+ | <code yaml> | ||
+ | esphome: | ||
+ | name: " | ||
+ | friendly_name: | ||
+ | |||
+ | esp8266: | ||
+ | board: esp01_1m | ||
+ | |||
+ | # Enable logger | ||
+ | logger: | ||
+ | level: NONE | ||
+ | |||
+ | # Enable Home Assistant API | ||
+ | api: | ||
+ | encryption: | ||
+ | key: " | ||
+ | |||
+ | ota: | ||
+ | - platform: esphome | ||
+ | password: " | ||
+ | |||
+ | wifi: | ||
+ | ssid: !secret wifi_ssid | ||
+ | password: !secret wifi_password | ||
+ | fast_connect: | ||
+ | manual_ip: | ||
+ | static_ip: 192.168.0.76 | ||
+ | gateway: 192.168.0.1 | ||
+ | subnet: 255.255.255.0 | ||
+ | |||
+ | substitutions: | ||
+ | # GPIO https:// | ||
+ | device_1_name: | ||
+ | device_1_gpio_up: | ||
+ | device_1_gpio_stop: | ||
+ | device_1_gpio_down: | ||
+ | device_2_name: | ||
+ | device_2_gpio_up: | ||
+ | device_2_gpio_stop: | ||
+ | device_2_gpio_down: | ||
+ | |||
+ | switch: | ||
+ | # Cover 1 | ||
+ | - platform: gpio | ||
+ | id: cover1_up | ||
+ | name: " | ||
+ | pin: | ||
+ | number: " | ||
+ | inverted: true | ||
+ | mode: | ||
+ | output: true | ||
+ | interlock: [cover1_stop, | ||
+ | internal: true | ||
+ | on_turn_on: | ||
+ | - delay: 100ms | ||
+ | - switch.turn_off: | ||
+ | |||
+ | - platform: gpio | ||
+ | id: cover1_stop | ||
+ | name: " | ||
+ | pin: | ||
+ | number: " | ||
+ | inverted: true | ||
+ | mode: | ||
+ | output: true | ||
+ | interlock: [cover1_up, cover1_down] | ||
+ | internal: true | ||
+ | on_turn_on: | ||
+ | - delay: 100ms | ||
+ | - switch.turn_off: | ||
+ | |||
+ | - platform: gpio | ||
+ | id: cover1_down | ||
+ | name: " | ||
+ | pin: | ||
+ | number: " | ||
+ | inverted: true | ||
+ | mode: | ||
+ | output: true | ||
+ | interlock: [cover1_stop, | ||
+ | internal: true | ||
+ | on_turn_on: | ||
+ | - delay: 100ms | ||
+ | - switch.turn_off: | ||
+ | |||
+ | # Cover 2 | ||
+ | - platform: gpio | ||
+ | id: cover2_up | ||
+ | name: " | ||
+ | pin: | ||
+ | number: " | ||
+ | inverted: true | ||
+ | mode: | ||
+ | output: true | ||
+ | interlock: [cover2_stop, | ||
+ | internal: true | ||
+ | on_turn_on: | ||
+ | - delay: 100ms | ||
+ | - switch.turn_off: | ||
+ | |||
+ | - platform: gpio | ||
+ | id: cover2_stop | ||
+ | name: " | ||
+ | pin: | ||
+ | number: " | ||
+ | inverted: true | ||
+ | mode: | ||
+ | output: true | ||
+ | interlock: [cover2_up, cover2_down] | ||
+ | internal: true | ||
+ | on_turn_on: | ||
+ | - delay: 100ms | ||
+ | - switch.turn_off: | ||
+ | |||
+ | - platform: gpio | ||
+ | id: cover2_down | ||
+ | name: " | ||
+ | pin: | ||
+ | number: " | ||
+ | inverted: true | ||
+ | mode: | ||
+ | output: true | ||
+ | interlock: [cover2_stop, | ||
+ | internal: true | ||
+ | on_turn_on: | ||
+ | - delay: 100ms | ||
+ | - switch.turn_off: | ||
+ | |||
+ | cover: | ||
+ | # Cover 1 | ||
+ | - platform: time_based | ||
+ | id: cover1 | ||
+ | device_class: | ||
+ | name: " | ||
+ | assumed_state: | ||
+ | open_action: | ||
+ | - switch.turn_on: | ||
+ | open_duration: | ||
+ | close_action: | ||
+ | - switch.turn_on: | ||
+ | close_duration: | ||
+ | stop_action: | ||
+ | - switch.turn_on: | ||
+ | # Replace : | ||
+ | #on_open: | ||
+ | # then: | ||
+ | # - delay: 1s | ||
+ | # - switch.turn_on: | ||
+ | #on_closed: | ||
+ | # then: | ||
+ | # - delay: 1s | ||
+ | # - switch.turn_on: | ||
+ | # By : | ||
+ | has_built_in_endstop: | ||
+ | |||
+ | # Cover 2 | ||
+ | - platform: time_based | ||
+ | id: cover2 | ||
+ | device_class: | ||
+ | name: " | ||
+ | assumed_state: | ||
+ | has_built_in_endstop: | ||
+ | open_action: | ||
+ | - switch.turn_on: | ||
+ | open_duration: | ||
+ | close_action: | ||
+ | - switch.turn_on: | ||
+ | close_duration: | ||
+ | stop_action: | ||
+ | - switch.turn_on: | ||
+ | |||
+ | </ | ||
+ | |||
+ | Y'a plus qu'à se faire un petit dashboard home assistant sympa :\\ | ||
+ | {{: | ||
+ | |||
+ | Déroutant de simplicité ... | ||
electronique/domotique/homeassistant_volets_roulants.1742129070.txt.gz · Dernière modification : 2025/03/16 12:44 de florian