<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>加热 - Sigalou Domotique</title>
	<atom:link href="https://www.sigalou-domotique.fr/zh/tag/chauffage/feed" rel="self" type="application/rss+xml" />
	<link href="">https://www.sigalou-domotique.fr/zh</link>
	<description>网络安全，家庭助理，365...</description>
	<lastbuilddate>Sun, 14 Jun 2026 11:09:16 +0000</lastbuilddate>
	<language>ZH - 汉斯</language>
	<sy:updateperiod>
	小时 小时	</sy:updateperiod>
	<sy:updatefrequency>
	1	</sy:updatefrequency>
	<generator>https://wordpress.org/?v=7.1.1</generator>

<image>
	<url>https://www.sigalou-domotique.fr/wp-content/uploads/2026/04/cropped-sigalou-carre-32x32.png</url>
	<title>加热 - Sigalou Domotique</title>
	<link href="">https://www.sigalou-domotique.fr/zh</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>我通过 Home Assistant 的 input_select 控制加热导线的继电器</title>
		<link href="">https://www.sigalou-domotique.fr/zh/je-pilote-les-relais-du-fil-pilote-de-mon-chauffage-avec-des-input_select-de-home-assistant</link>
		
		<dc:creator><![CDATA[Sigalou]]></dc:creator>
		<pubdate>弗里，2023年9月1日 17:51:17 + 0000</pubdate>
				<category><![CDATA[Domotique]]></category>
		<category><![CDATA[Home Assistant]]></category>
		<category><![CDATA[Retex]]></category>
		<category><![CDATA[Chauffage]]></category>
		<category><![CDATA[Développement]]></category>
		<guid ispermalink="false">https://www.sigalou-domotique.fr/?p=4917</guid>

					<description><![CDATA[&#160; Comme je l&#8217;ai expliqué dans : Commander son chauffage avec un Sonoff 4CH Pro R2 en multi-zones Je pilote mon chauffage sur deux zones grâce à des fils pilotes. Dans le cadre de la bascule de Jeedom vers Home Assistant, il faut donc que j&#8217;arrive à piloter ces relais avec Home Assistant. Pour l&#8217;instant [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>&nbsp;</p>
<p><span style="color: initial; font-size: revert;">Comme je l&rsquo;ai expliqué dans :</span></p>
<ul>
<li><a href="https://www.sigalou-domotique.fr/commander-chauffage-fil-pilote-avec-sonoff-4ch-pro-r2-multi-zones" target="_blank" rel="noopener">Commander son chauffage avec un Sonoff 4CH Pro R2 en multi-zones</a></li>
</ul>
<p>Je pilote mon chauffage sur deux zones grâce à des fils pilotes. Dans le cadre de la bascule de Jeedom vers Home Assistant, il faut donc que j&rsquo;arrive à piloter ces relais avec Home Assistant.</p>
<p><a href="https://www.sigalou-domotique.fr/wp-content/uploads/2018/03/filpiloteprincipe.jpg"><img fetchpriority="high" decoding="async" class="alignnone  wp-image-40" src="https://www.sigalou-domotique.fr/wp-content/uploads/2018/03/filpiloteprincipe.jpg" alt="filpiloteprincipe" width="294" height="248" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2018/03/filpiloteprincipe.jpg 597w, https://www.sigalou-domotique.fr/wp-content/uploads/2018/03/filpiloteprincipe-300x253.jpg 300w" sizes="(max-width: 294px) 100vw, 294px" /></a><span id="more-4917"></span></p>
<p>Pour l&rsquo;instant le Sonoff 4CH Pro est piloté par ESP Easy, je le basculerai bientôt sur ESP Home, mais pour l&rsquo;instant, ESP Easy permet de s&rsquo;interfacer avec Jeedom ET Home Assistant via MQTT.</p>
<p>Pour la configuration, je me réfère à ce Retex :</p>
<ul>
<li><a href="https://www.sigalou-domotique.fr/migration-jeedom-vers-home-assistant-le-lien-des-esp-sous-esp-easy-vers-ha" target="_blank" rel="noopener">Migration Jeedom vers Home Assistant, le lien des ESP sous ESP-Easy vers HA</a></li>
</ul>
<h3>Je pilote des relais via MQTT</h3>
<p>Comme expliqué dans le <a href="https://www.sigalou-domotique.fr/migration-jeedom-vers-home-assistant-le-lien-des-esp-sous-esp-easy-vers-ha" target="_blank" rel="noopener">Retex ci dessus</a>, il est nécessaire de configurer les entités qui vont permettre de récupérer les relais dans Home Assistant, cela se réalise dans le fichier mqtt.yaml</p>
<pre class="EnlighterJSRAW" data-enlighter-language="yaml">- name: "Relais 1 Chauffage"
  unique_id: switch.chauffage.relais1
  command_topic: "Chauffage/gpio/12"
  state_topic: "Chauffage/Relais1/Relais1"
  payload_on: "1"
  payload_off: "0"
  retain: true
  device_class: outlet
  device:
      name: "Chauffage"
      identifiers: "chauffage" 
      
      
- name: "Relais 2 Chauffage"
  unique_id: switch.chauffage.relais2
  command_topic: "Chauffage/gpio/5"
  state_topic: "Chauffage/Relais2/Relais2"
  payload_on: "1"
  payload_off: "0"
  retain: true
  device_class: outlet
  device:
      name: "Chauffage"
      identifiers: "chauffage" 
      
      
- name: "Relais 3 Chauffage"
  unique_id: switch.chauffage.relais3
  command_topic: "Chauffage/gpio/4"
  state_topic: "Chauffage/Relais3/Relais3"
  payload_on: "1"
  payload_off: "0"
  retain: true
  device_class: outlet
  device:
      name: "Chauffage"
      identifiers: "chauffage" 
      
      
- name: "Relais 4 Chauffage"
  unique_id: switch.chauffage.relais4
  command_topic: "Chauffage/gpio/15"
  state_topic: "Chauffage/Relais4/Relais4"
  payload_on: "1"
  payload_off: "0"
  retain: true
  device_class: outlet
  device:
      name: "Chauffage"
      identifiers: "chauffage" 
</pre>
<p>Dans HA, ces 4 entités sont facilement récupérées </p>
<p><a href="https://www.sigalou-domotique.fr/wp-content/uploads/2023/09/chauffage1.png"><img decoding="async" class="alignnone size-full wp-image-4924" src="https://www.sigalou-domotique.fr/wp-content/uploads/2023/09/chauffage1.png" alt="" width="508" height="231" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2023/09/chauffage1.png 508w, https://www.sigalou-domotique.fr/wp-content/uploads/2023/09/chauffage1-300x136.png 300w" sizes="(max-width: 508px) 100vw, 508px" /></a></p>
<h3>Je crée des input_select</h3>
<p>C&rsquo;est dans le fichier configuration.yaml que je déclare les deux entités des zones en leur permettant d&rsquo;avoir 4 états possibles.</p>
<pre class="EnlighterJSRAW" data-enlighter-language="yaml">input_select:
  chauffage_etage_mode:
    name: Chauffage Zone Etage - Mode
    options:
      - "Confort"
      - "Eco"
      - "Hors Gel"
      - "Off"
    icon: mdi:help-circle-outline
    
  chauffage_rdc_mode:
    name: Chauffage Zone Rez de chaussée - Mode
    options:
      - "Confort"
      - "Eco"
      - "Hors Gel"
      - "Off"
    icon: mdi:help-circle-outline</pre>
<p>Cela m&rsquo;ajoute les deux entités :</p>
<ul>
<li>input_select.chauffage_rdc_mode</li>
<li>input_select.chauffage_etage_mode</li>
</ul>
<h3>Je personnalise des input_select</h3>
<p>Je tente toujours de rendre agréable visuellement les tuiles du dasboard, pour cela, mettre de la couleur et mettre des beaux icones qui correspondent aux états semble indispensable.</p>
<p>La personnalisation se réalise en ajoutant ces lignes dans customize.yaml</p>
<pre class="EnlighterJSRAW" data-enlighter-language="yaml">input_select.chauffage_etage_mode:
  templates:
    icon: &gt;
      if (state == 'Confort') return 'mdi:fire';
      if (state == 'Eco') return 'mdi:leaf';
      if (state == 'Hors Gel') return 'mdi:snowflake-thermometer';
      if (state == 'Off') return 'mdi:power';
      return 'mdi:help-circle-outline';  
    icon_color: &gt;
      if (state == 'Confort') return 'yellow';
      if (state == 'Eco') return 'green';
      if (state == 'Hors Gel') return '#2196f3';
      if (state == 'Off') return 'red';      
      
input_select.chauffage_rdc_mode:
  templates:
    icon: &gt;
      if (state == 'Confort') return 'mdi:fire';
      if (state == 'Eco') return 'mdi:leaf';
      if (state == 'Hors Gel') return 'mdi:snowflake-thermometer';
      if (state == 'Off') return 'mdi:power';
      return 'mdi:help-circle-outline';  
    icon_color: &gt;
      if (state == 'Confort') return 'yellow';
      if (state == 'Eco') return 'green';
      if (state == 'Hors Gel') return '#2196f3';
      if (state == 'Off') return 'red';    </pre>
<h3>Je pilote les relais depuis les input_select</h3>
<p>La correspondance entre les Zones (Etage et Rez de Chaussée) doit se faire dans Home Assistant, le choix des relais pour commander le mode des zones doit être transparent pour l&rsquo;utilisateur.</p>
<p><a href="https://www.sigalou-domotique.fr/wp-content/uploads/2023/09/chauffage2.png"><img decoding="async" class="alignnone size-full wp-image-4927" src="https://www.sigalou-domotique.fr/wp-content/uploads/2023/09/chauffage2.png" alt="" width="728" height="281" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2023/09/chauffage2.png 728w, https://www.sigalou-domotique.fr/wp-content/uploads/2023/09/chauffage2-600x232.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2023/09/chauffage2-300x116.png 300w" sizes="(max-width: 728px) 100vw, 728px" /></a></p>
<p>Pour cela, une automatisation va être déclenchée par un changement d&rsquo;état de input_select.chauffage_rdc_mode et une autre par input_select.chauffage_etage_mode.</p>
<p>Cette automatisation va modifier l&rsquo;état des relais afin d&rsquo;envoyer l&rsquo;ordre qui correspond au codage du fil pilote. Cela est expliqué <a href="https://www.sigalou-domotique.fr/commander-chauffage-fil-pilote-avec-sonoff-4ch-pro-r2-multi-zones#scenarii" target="_blank" rel="noopener">ici</a>.</p>
<h4>Automatisation Pilotage Chauffage Rez de Chaussée</h4>
<pre class="EnlighterJSRAW" data-enlighter-language="yaml">alias: Pilotage Chauffage Rez de Chaussée
description: ""
trigger:
  - platform: state
    entity_id:
      - input_select.chauffage_rdc_mode
condition: []
action:
  - if:
      - condition: state
        entity_id: input_select.chauffage_rdc_mode
        state: Confort
    then:
      - service: switch.turn_off
        data: {}
        entity_id:
          - switch.chauffage_relais_3_chauffage
          - switch.chauffage_relais_4_chauffage
      - stop: ""
  - if:
      - condition: state
        entity_id: input_select.chauffage_rdc_mode
        state: Eco
    then:
      - service: switch.turn_on
        data: {}
        entity_id:
          - switch.chauffage_relais_3_chauffage
          - switch.chauffage_relais_4_chauffage
      - stop: ""
  - if:
      - condition: state
        entity_id: input_select.chauffage_rdc_mode
        state: Hors Gel
    then:
      - service: switch.turn_off
        data: {}
        entity_id:
          - switch.chauffage_relais_4_chauffage
      - service: switch.turn_on
        data: {}
        entity_id:
          - switch.chauffage_relais_3_chauffage
      - stop: ""
  - if:
      - condition: state
        entity_id: input_select.chauffage_rdc_mode
        state: "Off"
    then:
      - service: switch.turn_off
        data: {}
        entity_id:
          - switch.chauffage_relais_3_chauffage
      - service: switch.turn_on
        data: {}
        entity_id:
          - switch.chauffage_relais_4_chauffage
      - stop: ""
mode: single
</pre>
<h4>Automatisation Pilotage Chauffage Etage</h4>
<pre class="EnlighterJSRAW" data-enlighter-language="yaml">alias: Pilotage Chauffage Etage
description: ""
trigger:
  - platform: state
    entity_id:
      - input_select.chauffage_etage_mode
condition: []
action:
  - if:
      - condition: state
        entity_id: input_select.chauffage_etage_mode
        state: Confort
    then:
      - service: switch.turn_off
        data: {}
        entity_id:
          - switch.chauffage_relais_2_chauffage
          - switch.chauffage_relais_1_chauffage
      - stop: ""
  - if:
      - condition: state
        entity_id: input_select.chauffage_etage_mode
        state: Eco
    then:
      - service: switch.turn_on
        data: {}
        entity_id:
          - switch.chauffage_relais_2_chauffage
          - switch.chauffage_relais_1_chauffage
      - stop: ""
  - if:
      - condition: state
        entity_id: input_select.chauffage_etage_mode
        state: Hors Gel
    then:
      - service: switch.turn_off
        data: {}
        entity_id:
          - switch.chauffage_relais_2_chauffage
      - service: switch.turn_on
        data: {}
        entity_id:
          - switch.chauffage_relais_1_chauffage
      - stop: ""
  - if:
      - condition: state
        entity_id: input_select.chauffage_etage_mode
        state: "Off"
    then:
      - service: switch.turn_off
        data: {}
        entity_id:
          - switch.chauffage_relais_1_chauffage
      - service: switch.turn_on
        data: {}
        entity_id:
          - switch.chauffage_relais_2_chauffage
      - stop: ""
mode: single</pre>
<h3>Je réalise une jolie carte pour le dashboard</h3>
<p>Voici le résultat de ce que je souhaite comme carte :</p>
<p><a href="https://www.sigalou-domotique.fr/wp-content/uploads/2023/09/chauffage3.png"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4930" src="https://www.sigalou-domotique.fr/wp-content/uploads/2023/09/chauffage3.png" alt="" width="506" height="270" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2023/09/chauffage3.png 506w, https://www.sigalou-domotique.fr/wp-content/uploads/2023/09/chauffage3-300x160.png 300w" sizes="auto, (max-width: 506px) 100vw, 506px" /></a></p>
<p>A ce stade, je ne sais pas si je garderai la liste déroulante ou les boutons / sélecteurs, les deux fonctionnent.</p>
<h4>Code de la carte pour la zone Rez de chaussée </h4>
<pre class="EnlighterJSRAW" data-enlighter-language="yaml">type: custom:stack-in-card
mode: vertical
cards:
  - type: custom:auto-entities
    show_empty: false
    card:
      type: custom:mushroom-chips-card
      view_layout:
        grid-area: chips
      alignment: center
    card_param: chips
    filter:
      template: &gt;
        {% set ns =
        namespace(select=[],entity="input_select.chauffage_rdc_mode") %} {% for
        opt in state_attr(ns.entity, 'options') %}
          {% set icon = iif(opt== 'Confort', 'mdi:fire', icon) %}
          {% set icon_color_select = iif(opt== 'Confort', 'yellow', icon_color_select) %}
          {% set icon = iif(opt== 'Off', 'mdi:power', icon) %}
          {% set icon_color_select = iif(opt== 'Off', 'red', icon_color_select) %}
          {% set icon = iif(opt== 'Eco', 'mdi:leaf', icon) %}
          {% set icon_color_select = iif(opt== 'Eco', 'green', icon_color_select) %}
          {% set icon = iif(opt== 'Hors Gel', 'mdi:snowflake-thermometer', icon) %}
          {% set icon_color_select = iif(opt== 'Hors Gel', 'blue', icon_color_select) %}
                {% set ns.select = ns.select + [
            {
              "type": "template",
              "icon": icon,
              "entity": ns.entity,

              "icon_color": '{{ iif(is_state("' ~ ns.entity ~ '", "' ~ opt ~ '"), "' ~ icon_color_select ~ '", "disabled") }}',
              "tap_action": {
                "action": "call-service",
                "service": "input_select.select_option",
                "service_data": {
                  "entity_id": ns.entity,
                  "option": opt
                }
              },
              "card_mod": {
                "style": 'ha-card {
                
                    {% if is_state( "' ~ ns.entity ~ '" , "' ~ opt ~ '" ) %}
                      --chip-background: rgba(var(--rgb-grey), 0.1);
                    {% else %}
                      --chip-background: rgba(var(--mush-rgb-state-entity), 0.3);
                    {% endif %}
                    
                  }'
              }
            }
          ] %}
        {% endfor %} {{ ns.select }}
  - type: entities
    entities:
      - entity: input_select.chauffage_rdc_mode
</pre>
<h4>Code de la carte pour la zone de l&rsquo;Etage</h4>
<pre class="EnlighterJSRAW" data-enlighter-language="yaml">type: custom:stack-in-card
mode: vertical
cards:
  - type: custom:auto-entities
    show_empty: false
    card:
      type: custom:mushroom-chips-card
      view_layout:
        grid-area: chips
      alignment: center
    card_param: chips
    filter:
      template: &gt;
        {% set ns =
        namespace(select=[],entity="input_select.chauffage_etage_mode") %} {%
        for opt in state_attr(ns.entity, 'options') %}
          {% set icon = iif(opt== 'Confort', 'mdi:fire', icon) %}
          {% set icon_color_select = iif(opt== 'Confort', 'yellow', icon_color_select) %}
          {% set icon = iif(opt== 'Off', 'mdi:power', icon) %}
          {% set icon_color_select = iif(opt== 'Off', 'red', icon_color_select) %}
          {% set icon = iif(opt== 'Eco', 'mdi:leaf', icon) %}
          {% set icon_color_select = iif(opt== 'Eco', 'green', icon_color_select) %}
          {% set icon = iif(opt== 'Hors Gel', 'mdi:snowflake-thermometer', icon) %}
          {% set icon_color_select = iif(opt== 'Hors Gel', 'blue', icon_color_select) %}
                {% set ns.select = ns.select + [
            {
              "type": "template",
              "icon": icon,
              "entity": ns.entity,

              "icon_color": '{{ iif(is_state("' ~ ns.entity ~ '", "' ~ opt ~ '"), "' ~ icon_color_select ~ '", "disabled") }}',
              "tap_action": {
                "action": "call-service",
                "service": "input_select.select_option",
                "service_data": {
                  "entity_id": ns.entity,
                  "option": opt
                }
              },
              "card_mod": {
                "style": 'ha-card {
                
                    {% if is_state( "' ~ ns.entity ~ '" , "' ~ opt ~ '" ) %}
                      --chip-background: rgba(var(--rgb-grey), 0.1);
                    {% else %}
                      --chip-background: rgba(var(--mush-rgb-state-entity), 0.3);
                    {% endif %}
                    
                  }'
              }
            }
          ] %}
        {% endfor %} {{ ns.select }}
  - type: entities
    entities:
      - entity: input_select.chauffage_etage_mode
</pre>
<h3>Conclusion</h3>
<p>Je termine ici une étape importante de l&rsquo;intégration de mon chauffage à Home Assistant. Je vais maintenant m&rsquo;attaquer au pilotage de ce chauffage en fonction des personnes présentes ou pas, des heures, des jours et des périodes d&rsquo;absence (vacances&#8230;)</p>
<p><a href="https://www.sigalou-domotique.fr/wp-content/uploads/2023/09/chauffage.gif"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-4918" src="https://www.sigalou-domotique.fr/wp-content/uploads/2023/09/chauffage.gif" alt="" width="502" height="244" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>控制你的浴室供暖由Jeedom V2控制（基本R3）</title>
		<link href="">https://www.sigalou-domotique.fr/zh/domotiser-son-chauffage-de-salle-de-bains-controle-par-jeedom-v2-avec-basicr3</link>
					<comments>https://www.sigalou-domotique.fr/zh/domotiser-son-chauffage-de-salle-de-bains-controle-par-jeedom-v2-avec-basicr3#respond</comments>
		
		<dc:creator><![CDATA[Sigalou]]></dc:creator>
		<pubdate>Tue, 01 Feb 2022 20:14:38 +0000</pubdate>
				<category><![CDATA[Domotique]]></category>
		<category><![CDATA[Jeedom]]></category>
		<category><![CDATA[Chauffage]]></category>
		<guid ispermalink="false">http://jeedom.sigalou-domotique.fr/?p=2908</guid>

					<description><![CDATA[Nota V1 et V2 La première version de ce tuto était réalisé avec un Sonoff Basic R2, la seconde version a été réalisée avec un Sonoff Basic R3. Objectifs : A moindre cout (dans les 10€) + le prix du chauffage (16€), j&#8217;ai voulu domotiser le chauffage de la salle de bains pour : Pouvoir [&#8230;]]]></description>
										<content:encoded><![CDATA[<h2><img loading="lazy" decoding="async" class=" size-full wp-image-326" src="http://jeedom.sigalou-domotique.fr/wp-content/uploads/2020/02/20200223_182855.jpg" alt="20200223 182855" width="800" height="450" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2020/02/20200223_182855.jpg 800w, https://www.sigalou-domotique.fr/wp-content/uploads/2020/02/20200223_182855-600x338.jpg 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2020/02/20200223_182855-300x169.jpg 300w, https://www.sigalou-domotique.fr/wp-content/uploads/2020/02/20200223_182855-768x432.jpg 768w" sizes="auto, (max-width: 800px) 100vw, 800px" /></h2>
<h2>Nota V1 et V2</h2>
<p><em>La <a href="http://jeedom.sigalou-domotique.fr/domotiser-son-chauffage-de-salle-de-bains-controle-par-jeedom">première version de ce tuto</a> était réalisé avec un Sonoff Basic R2, la seconde version a été réalisée avec un <a href="http://jeedom.sigalou-domotique.fr/sonoff-diy-basic-r3" target="_blank" rel="noopener">Sonoff Basic R3</a>.</em></p>
<p><img loading="lazy" decoding="async" class="alignnone  wp-image-2896" src="http://jeedom.sigalou-domotique.fr/wp-content/uploads/2022/01/sonoffbasicr3.png" alt="" width="157" height="80"></p>
<h2>Objectifs :</h2>
<p>A moindre cout (dans les 10€) + le prix du chauffage (16€), j&rsquo;ai voulu domotiser le chauffage de la salle de bains pour :</p>
<ul>
<li>Pouvoir déclencher (ou stopper) le chauffage via Jeedom (et donc commandable par Google Home, Alexa, Ecran tactile, Téléphone&#8230;)</li>
<li>Pouvoir déclencher (ou stopper) le chauffage depuis le bouton situé sur le Sonoff</li>
<li>Stopper automatiquement le chauffage à une certaine température et prévenir Jeedom pour déclencher une information</li>
<li>Stopper automatiquement le chauffage au bout d&rsquo;une certaine durée et prévenir Jeedom pour déclencher une information</li>
<li>Essayer au maximum de rendre le chauffage autonome (qu&rsquo;il fonctionne même sans wifi ou sans jeedom)</li>
</ul>
<p><span id="more-2908"></span></p>
<h2>Equipements nécessaires :</h2>
<ul>
<li>Un chauffage qui démarre à la mise sous tension, j&rsquo;ai commandé <a href="https://amzn.to/38RjsHn" target="_self" rel="noopener noreferrer">celui ci</a> (<strong><em>15.99€</em></strong>)</li>
</ul>
<p><a href="https://amzn.to/38RjsHn" target="_self" rel="noopener noreferrer"><img loading="lazy" decoding="async" class=" size-full wp-image-327" src="http://jeedom.sigalou-domotique.fr/wp-content/uploads/2020/02/Screenshot_2020-02-23_D%C3%A9tails_des_commandes.png" alt="Screenshot 2020 02 23 Détails des commandes" width="401" height="102"></a></p>
<ul>
<li>Un <a href="http://jeedom.sigalou-domotique.fr/sonoff-diy-basic-r3">Sonoff Basic R3</a>,</li>
<li>Une Sonde Température/Humidité, j&rsquo;ai utilisé une AM2301 en stock mais vous pouvez utiliser une DTH 11 ou 12 ou 22 ou une AM2301 ou encore une SI7021.</li>
<li>De quoi Flasher le Sonoff et y installer EspEasy</li>
<li>Jeedom/plugin ESPEasy</li>
</ul>
<h1></h1>
<h1>Mise en oeuvre</h1>
<h2></h2>
<h2>Etape 1 : Flashage</h2>
<p>Flasher le Sonoff, pour cela, il existe des centaines de tutos, je ne vais pas en faire un de plus pour cela. Le seul détail à signaler est qu&rsquo;il faut utiliser le fichier ESP_Easy_mega-20200222_normal_ESP8285_1M.bin lors du Flashage car le module Sonoff utilisé est équipé d&rsquo;un ESP8285.</p>
<p>Pour vous aider, vous pouvez regarder <a href="http://jeedom.sigalou-domotique.fr/flasher-le-sonoff-basic-r3-avec-esp-easy">ce tuto.</a></p>
<h2></h2>
<h2>Etape 2 : Connecter le Sonoff en wifi</h2>
<p>Connecter <a href="http://jeedom.sigalou-domotique.fr/flash-sonoff-reseau-wifi-flashage">le Sonoff au réseau local, puis l&rsquo;intégrer dans Jeedom</a></p>
<h2></h2>
<h2>Etape 3 : Souder la sonde de température</h2>
<ul>
<li>Borne Ground (noire) sur Ground</li>
<li>Borne Vc (rouge) sur Vc</li>
<li>Borne Data (jaune) sur Tx (pour utiliser GPIO1-D10) ou Rx pour utiliser GPIO3-D9)</li>
</ul>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2899" src="http://jeedom.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-31-at-21-20-31-Flashing-Sonoff-Basic-R3-·-Issue-5921-·-arendst-Tasmota.png" alt="" width="456" height="366" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-31-at-21-20-31-Flashing-Sonoff-Basic-R3-·-Issue-5921-·-arendst-Tasmota.png 456w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-31-at-21-20-31-Flashing-Sonoff-Basic-R3-·-Issue-5921-·-arendst-Tasmota-300x241.png 300w" sizes="auto, (max-width: 456px) 100vw, 456px" /></p>
<h2></h2>
<h2>Etape 4 : Désactiver le port série</h2>
<p>Pour cela, désactivez le port série dans la config d&rsquo;ESPEasy,&nbsp; cela permet de récupérer les bornes Rx et Tx</p>
<h2><img loading="lazy" decoding="async" class=" size-full wp-image-329" src="http://jeedom.sigalou-domotique.fr/wp-content/uploads/2020/02/Screenshot_2020-02-23_Espeasy_-_Jeedom.png" alt="Screenshot 2020 02 23 Espeasy Jeedom" width="321" height="102" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2020/02/Screenshot_2020-02-23_Espeasy_-_Jeedom.png 321w, https://www.sigalou-domotique.fr/wp-content/uploads/2020/02/Screenshot_2020-02-23_Espeasy_-_Jeedom-300x95.png 300w" sizes="auto, (max-width: 321px) 100vw, 321px" /></h2>
<h2></h2>
<h2>Etape 5 : Configurer les devices ESPEasy</h2>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2909" src="http://jeedom.sigalou-domotique.fr/wp-content/uploads/2022/02/Screenshot-2022-02-01-at-21-13-00-ESP_Easy.png" alt="" width="1069" height="221" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/02/Screenshot-2022-02-01-at-21-13-00-ESP_Easy.png 1069w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/02/Screenshot-2022-02-01-at-21-13-00-ESP_Easy-600x124.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/02/Screenshot-2022-02-01-at-21-13-00-ESP_Easy-300x62.png 300w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/02/Screenshot-2022-02-01-at-21-13-00-ESP_Easy-1024x212.png 1024w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/02/Screenshot-2022-02-01-at-21-13-00-ESP_Easy-768x159.png 768w" sizes="auto, (max-width: 1069px) 100vw, 1069px" /></p>
<h2>Etape 6 : Configurer les règles</h2>
<p>Pour cette étape, vous pouvez mettre vos valeurs de température (25°c dans exemple) ou de timer (1h=3600s dans exemple)</p>
<p><samp>on Sonde#Temperature do</samp><br />
<samp> if [Sonde#Temperature]&gt;25 do</samp><br />
<samp> if [jus#jus]=1</samp><br />
<samp> gpio,13,1</samp><br />
<samp> gpio,12,0</samp><br />
<samp> timerSet,1,0</samp><br />
<samp> endif</samp><br />
<samp> endif</samp><br />
<samp>endon</samp></p>
<p><samp>on button#button do</samp><br />
<samp> if [button#button]=1</samp><br />
<samp> gpio,12,1</samp><br />
<samp> timerSet,1,3600</samp><br />
<samp> else</samp><br />
<samp> gpio,12,0</samp><br />
<samp> timerSet,1,0</samp><br />
<samp> endif</samp><br />
<samp>endon</samp></p>
<p><samp>on jus#jus do</samp><br />
<samp> if [jus#jus]=1</samp><br />
<samp> gpio,13,0</samp><br />
<samp> timerSet,1,3600</samp><br />
<samp> else</samp><br />
<samp> gpio,13,1</samp><br />
<samp> timerSet,1,0</samp><br />
<samp> endif</samp><br />
<samp>endon</samp></p>
<p><samp>on System#Boot do</samp><br />
<samp> gpio,12,0</samp><br />
<samp> gpio,13,1</samp><br />
<samp>endon</samp></p>
<p><samp>On Rules#Timer=1 do </samp><br />
<samp> gpio,13,1</samp><br />
<samp> gpio,12,0</samp><br />
<samp>endon</samp></p>
<h2>Etape 7 : Configurer Jeedom</h2>
<p>Dans Jeedom, dans le plugin ESPEasy, vous pouvez récupérer les informations de température, l&rsquo;état de votre relais et ajouter une commande on/off pour commander le relais.</p>
<p><img loading="lazy" decoding="async" class=" size-full wp-image-331" src="http://jeedom.sigalou-domotique.fr/wp-content/uploads/2020/02/Screenshot_2020-02-23_Espeasy_-_Jeedom1.png" alt="Screenshot 2020 02 23 Espeasy Jeedom1" width="797" height="352" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2020/02/Screenshot_2020-02-23_Espeasy_-_Jeedom1.png 797w, https://www.sigalou-domotique.fr/wp-content/uploads/2020/02/Screenshot_2020-02-23_Espeasy_-_Jeedom1-600x265.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2020/02/Screenshot_2020-02-23_Espeasy_-_Jeedom1-300x132.png 300w, https://www.sigalou-domotique.fr/wp-content/uploads/2020/02/Screenshot_2020-02-23_Espeasy_-_Jeedom1-768x339.png 768w" sizes="auto, (max-width: 797px) 100vw, 797px" /></p>
<h2>Opération terminée</h2>
<p>Utilisez <a href="https://community.jeedom.com/t/tuto-domotiser-le-chauffage-de-sa-salle-de-bains/18648" target="_self" rel="noopener noreferrer">cette discussion</a> pour tout demande de précision, de support ou d&rsquo;aide:</p>
<p><a href="https://community.jeedom.com/t/tuto-domotiser-le-chauffage-de-sa-salle-de-bains/18648">https://community.jeedom.com/t/tuto-domotiser-le-chauffage-de-sa-salle-de-bains/18648<br />
</a></p>
<h2>Liens intéressants :</h2>
<ul>
<li>Tuto de Seb sur <a href="https://domotic-hobby.com/tutotial-1-thermostat-for-small-radiator">https://domotic-hobby.com/tutotial-1-thermostat-for-small-radiator</a></li>
</ul>
]]></content:encoded>
					
					<wfw:commentrss>https://www.sigalou-domotique.fr/zh/domotiser-son-chauffage-de-salle-de-bains-controle-par-jeedom-v2-avec-basicr3/feed</wfw:commentrss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Domotiser 儿子 Chauffe Eau 与 Sonoff POW R3</title>
		<link href="">https://www.sigalou-domotique.fr/zh/domotiser-son-chauffe-eau-avec-sonoff-pow-r3</link>
					<comments>https://www.sigalou-domotique.fr/zh/domotiser-son-chauffe-eau-avec-sonoff-pow-r3#respond</comments>
		
		<dc:creator><![CDATA[Sigalou]]></dc:creator>
		<pubdate>Sun, 09 Jan 2022 20:25:58 +0000</pubdate>
				<category><![CDATA[Domotique]]></category>
		<category><![CDATA[Jeedom]]></category>
		<category><![CDATA[Chauffage]]></category>
		<category><![CDATA[Eau]]></category>
		<guid ispermalink="false">http://jeedom.sigalou-domotique.fr/?p=2575</guid>

					<description><![CDATA[L&#8217;arrivée sur le marché du Sonoff POW R3 qui accepte 25A me donne l&#8217;idée de me lancer dans le contrôle/pilotage de mon chauffe-eau. Jusqu&#8217;à présent, les faibles charges des équipements précédents m&#8217;avaient fait reculer.Composition du circuit d&#8217;alimentation du Chauffe-eau Dans mon circuit, commandé par un jour/nuit Enedis, j&#8217;ai (de gauche à droite) : Le compteur [&#8230;]]]></description>
										<content:encoded><![CDATA[<p><a href="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/chaffeeau-sonoff-pow-r3v2.png"><img loading="lazy" decoding="async" class="alignnone size-full wp-image-5072" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/chaffeeau-sonoff-pow-r3v2.png" alt="" width="892" height="433" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/chaffeeau-sonoff-pow-r3v2.png 892w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/chaffeeau-sonoff-pow-r3v2-600x291.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/chaffeeau-sonoff-pow-r3v2-300x146.png 300w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/chaffeeau-sonoff-pow-r3v2-768x373.png 768w" sizes="auto, (max-width: 892px) 100vw, 892px" /></a></p>
<p>L&rsquo;arrivée sur le marché du Sonoff POW R3 qui accepte 25A me donne l&rsquo;idée de me lancer dans le contrôle/pilotage de mon chauffe-eau. Jusqu&rsquo;à présent, les faibles charges des équipements précédents m&rsquo;avaient fait reculer.<span id="more-2575"></span>Composition du circuit d&rsquo;alimentation du Chauffe-eau</p>
<p>Dans mon circuit, commandé par un jour/nuit Enedis, j&rsquo;ai (de gauche à droite) :</p>
<ul>
<li>Le compteur électrique qui fournit sur deux bornes C1 et C2 l&rsquo;information Jour/Nuit</li>
<li>Une protection de la ligne pilote 2A (20724)</li>
<li>Un disjoncteur 16A/20A de protection du circuit (20726)</li>
<li>Un contacteur Heures Creuses 20A (16736)</li>
<li>Un Sonoff POW R3</li>
<li>Le Chauffe eau</li>
</ul>
<h4>Objectif recherché</h4>
<p>En intégrant un Sonoff POW R3 dans le circuit, on souhaite atteindre deux objectifs :</p>
<ul>
<li>Mesurer la consommation du chauffe-eau, en effet la fonctionnalité POW de cet équipement est intéressant.</li>
<li>Couper l&rsquo;alimentation du chauffe-eau si l&rsquo;eau est suffisamment chaude</li>
</ul>
<h4>Préparation du Sonoff POW R3</h4>
<p>Cet équipement n&rsquo;intégrant malheureusement pas le mode DIY de Sonoff, on ne peut utiliser le <a href="https://www.sigalou-domotique.fr/plugin-sonoff-diy-documentation">plugin Sonoff-DIY</a> pour le relier à Jeedom.</p>
<ul>
<li>Il faut donc le <a href="https://www.sigalou-domotique.fr/flasher-le-sonoff-pow-r3">flasher avec ESP Easy</a> puis utiliser le plugin ESPEasy</li>
<li>Une fois flasher, il faut le <a href="https://www.sigalou-domotique.fr/flash-sonoff-reseau-wifi-flashage">raccorder au réseau WIFI et mettre un lien avec Jeedom</a></li>
</ul>
<h4>Où acheter cet équipement ?</h4>
<p>Voici le lien vers sa page dédiée au <a href="https://www.sigalou-domotique.fr/produit/powr3" target="_blank" rel="noopener">POWR3</a>. J&rsquo;y ai référencé les vendeurs et les prix.</p>
<h4>Configuration d&rsquo;ESP Easy</h4>
<p>Il faut donc se rendre dans ESP Easy installé au paragraphe précédent pour le configurer pour notre chauffe-eau.</p>
<p>Je mets ici une série de copie d&rsquo;écran, cela peut suffire pour comprendre.  J&rsquo;ajouterai des commentaires si vous me posez des questions ou cela semble nécessaire pour la compréhension.</p>
<p>Dans tous les exemples, remplacez 192.168.1.100 par l&rsquo;IP de votre Jeedom</p>
<h5>Onglet Controllers</h5>
<p>C&rsquo;est le lien entre ESPEsay et Jeedom, toutes les informations nécessaires sont données dans l&rsquo;écran de config du plugin</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2788" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-08-32-ESPeasy-Jeedom.png" alt="" width="768" height="129" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-08-32-ESPeasy-Jeedom.png 768w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-08-32-ESPeasy-Jeedom-600x101.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-08-32-ESPeasy-Jeedom-300x50.png 300w" sizes="auto, (max-width: 768px) 100vw, 768px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2785" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-05-10-ChauffeEau.png" alt="" width="973" height="232" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-05-10-ChauffeEau.png 973w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-05-10-ChauffeEau-600x143.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-05-10-ChauffeEau-300x72.png 300w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-05-10-ChauffeEau-768x183.png 768w" sizes="auto, (max-width: 973px) 100vw, 973px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2786" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-06-36-ChauffeEau.png" alt="" width="784" height="308" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-06-36-ChauffeEau.png 784w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-06-36-ChauffeEau-600x236.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-06-36-ChauffeEau-300x118.png 300w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-06-36-ChauffeEau-768x302.png 768w" sizes="auto, (max-width: 784px) 100vw, 784px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2787" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-07-25-ChauffeEau.png" alt="" width="753" height="97" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-07-25-ChauffeEau.png 753w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-07-25-ChauffeEau-600x77.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-07-25-ChauffeEau-300x39.png 300w" sizes="auto, (max-width: 753px) 100vw, 753px" /></p>
<h5>Onglet Devices</h5>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2789" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-09-58-ChauffeEau.png" alt="" width="972" height="419" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-09-58-ChauffeEau.png 972w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-09-58-ChauffeEau-600x259.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-09-58-ChauffeEau-300x129.png 300w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-09-58-ChauffeEau-768x331.png 768w" sizes="auto, (max-width: 972px) 100vw, 972px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2791" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-10-46-ChauffeEau.png" alt="" width="755" height="499" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-10-46-ChauffeEau.png 755w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-10-46-ChauffeEau-600x397.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-10-46-ChauffeEau-300x198.png 300w" sizes="auto, (max-width: 755px) 100vw, 755px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2790" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-10-59-ChauffeEau.png" alt="" width="606" height="320" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-10-59-ChauffeEau.png 606w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-10-59-ChauffeEau-600x317.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-10-59-ChauffeEau-300x158.png 300w" sizes="auto, (max-width: 606px) 100vw, 606px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2792" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-12-13-ChauffeEau.png" alt="" width="809" height="540" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-12-13-ChauffeEau.png 809w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-12-13-ChauffeEau-600x400.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-12-13-ChauffeEau-300x200.png 300w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-12-13-ChauffeEau-768x513.png 768w" sizes="auto, (max-width: 809px) 100vw, 809px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2793" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-12-38-ChauffeEau.png" alt="" width="613" height="330" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-12-38-ChauffeEau.png 613w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-12-38-ChauffeEau-600x323.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-12-38-ChauffeEau-300x162.png 300w" sizes="auto, (max-width: 613px) 100vw, 613px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2794" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-13-05-ChauffeEau.png" alt="" width="777" height="530" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-13-05-ChauffeEau.png 777w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-13-05-ChauffeEau-600x409.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-13-05-ChauffeEau-300x205.png 300w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-13-05-ChauffeEau-768x524.png 768w" sizes="auto, (max-width: 777px) 100vw, 777px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2795" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-13-28-ChauffeEau.png" alt="" width="598" height="346" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-13-28-ChauffeEau.png 598w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-13-28-ChauffeEau-300x174.png 300w" sizes="auto, (max-width: 598px) 100vw, 598px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2797" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-14-30-ChauffeEau.png" alt="" width="884" height="716" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-14-30-ChauffeEau.png 884w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-14-30-ChauffeEau-600x486.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-14-30-ChauffeEau-300x243.png 300w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-14-30-ChauffeEau-768x622.png 768w" sizes="auto, (max-width: 884px) 100vw, 884px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2798" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-14-57-ChauffeEau.png" alt="" width="961" height="327" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-14-57-ChauffeEau.png 961w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-14-57-ChauffeEau-600x204.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-14-57-ChauffeEau-300x102.png 300w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-14-57-ChauffeEau-768x261.png 768w" sizes="auto, (max-width: 961px) 100vw, 961px" /></p>
<p><em>Nota pour ce device, j&rsquo;ai remarqué que si on ne spécifiait pas une valeur dans <strong>Interval</strong>, les données ne remontaient pas dans Jeedom (10s c&rsquo;est pour les tests, 60s peut convenir en prod)</em></p>
<h5>Onglet Rules</h5>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2800" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-16-12-ChauffeEau.png" alt="" width="513" height="574" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-16-12-ChauffeEau.png 513w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-16-12-ChauffeEau-268x300.png 268w" sizes="auto, (max-width: 513px) 100vw, 513px" /></p>
<p>on Bouton#Bouton do<br />
if [Bouton#Bouton]=1<br />
gpio,12,0<br />
else<br />
gpio,12,1<br />
endif<br />
endon</p>
<p>on Jus#Jus do<br />
if [Jus#Jus]=1<br />
gpio,13,0<br />
else<br />
gpio,13,1<br />
endif<br />
endon</p>
<p>on System#Boot do<br />
gpio,12,0<br />
gpio,13,1<br />
endon</p>
<h5>Onglet Tools/Advanced</h5>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2802" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-17-14-ChauffeEau.png" alt="" width="736" height="455" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-17-14-ChauffeEau.png 736w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-17-14-ChauffeEau-600x371.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-17-14-ChauffeEau-300x185.png 300w" sizes="auto, (max-width: 736px) 100vw, 736px" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2803" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-17-37-ChauffeEau.png" alt="" width="777" height="521" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-17-37-ChauffeEau.png 777w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-17-37-ChauffeEau-600x402.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-17-37-ChauffeEau-300x201.png 300w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-17-37-ChauffeEau-768x515.png 768w" sizes="auto, (max-width: 777px) 100vw, 777px" /></p>
<h4>Configuration dans Jeedom</h4>
<h5>Dans ESPEasy</h5>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2808" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-23-44-ESPeasy-Jeedom.png" alt="" width="117" height="146" /></p>
<p>Le device est ajouté dans EspEasy</p>
<p>Les commandes info remontent automatiquement.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2809" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-25-33-ESPeasy-Jeedom.png" alt="" width="494" height="348" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-25-33-ESPeasy-Jeedom.png 494w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-25-33-ESPeasy-Jeedom-300x211.png 300w" sizes="auto, (max-width: 494px) 100vw, 494px" /></p>
<p>Il faut ajouter manuellement les deux commandes <strong>jus on</strong> et <strong>jus off</strong></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2810" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-26-46-ESPeasy-Jeedom.png" alt="" width="688" height="137" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-26-46-ESPeasy-Jeedom.png 688w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-26-46-ESPeasy-Jeedom-600x119.png 600w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-26-46-ESPeasy-Jeedom-300x60.png 300w" sizes="auto, (max-width: 688px) 100vw, 688px" /></p>
<h5>Dans Virtuel (option)</h5>
<p>Pour pouvoir désactiver la gestion automatique du Chauffe-eau, j&rsquo;ai un virtuel qui est prévu pour cela</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2817" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-36-20-Dashboard-Jeedom.png" alt="" width="120" height="54" /></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2816" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-35-12-Virtual-Jeedom.png" alt="" width="441" height="165" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-35-12-Virtual-Jeedom.png 441w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-35-12-Virtual-Jeedom-300x112.png 300w" sizes="auto, (max-width: 441px) 100vw, 441px" /></p>
<h5>Dans les scénarios</h5>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2812" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-28-09-Scenarios-Jeedom.png" alt="" width="149" height="128" /></p>
<p>Ce scénario est déclenché par le changement de température de l&rsquo;eau chaude</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2814" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-28-57-Chauffe-Eau-Jeedom.png" alt="" width="326" height="70" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-28-57-Chauffe-Eau-Jeedom.png 326w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-28-57-Chauffe-Eau-Jeedom-300x64.png 300w" sizes="auto, (max-width: 326px) 100vw, 326px" /></p>
<p>Le scénario et les consignes utilisées sont à adapter chez chacun</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2815" src="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-31-25-Chauffe-Eau-Jeedom.png" alt="" width="552" height="196" srcset="https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-31-25-Chauffe-Eau-Jeedom.png 552w, https://www.sigalou-domotique.fr/wp-content/uploads/2022/01/Screenshot-2022-01-22-at-12-31-25-Chauffe-Eau-Jeedom-300x107.png 300w" sizes="auto, (max-width: 552px) 100vw, 552px" /></p>
<p><em>Article en cours de rédaction et de tests</em></p>
]]></content:encoded>
					
					<wfw:commentrss>https://www.sigalou-domotique.fr/zh/domotiser-son-chauffe-eau-avec-sonoff-pow-r3/feed</wfw:commentrss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>