diff --git a/README-fr.md b/README-fr.md
index 1e97679..a5b0f0c 100644
--- a/README-fr.md
+++ b/README-fr.md
@@ -75,6 +75,7 @@
- [Dépannages](#dépannages)
- [Utilisation d'un Heatzy](#utilisation-dun-heatzy)
- [Utilisation d'un radiateur avec un fil pilote](#utilisation-dun-radiateur-avec-un-fil-pilote)
+ - [Utilisation d'un radiateur avec un fil pilote](#utilisation-dun-radiateur-avec-un-fil-pilote-1)
- [Seul le premier radiateur chauffe](#seul-le-premier-radiateur-chauffe)
- [Le radiateur chauffe alors que la température de consigne est dépassée ou ne chauffe pas alors que la température de la pièce est bien en-dessous de la consigne](#le-radiateur-chauffe-alors-que-la-température-de-consigne-est-dépassée-ou-ne-chauffe-pas-alors-que-la-température-de-la-pièce-est-bien-en-dessous-de-la-consigne)
- [Type `over_switch` ou `over_valve`](#type-over_switch-ou-over_valve)
@@ -1497,6 +1498,43 @@ Exemple :
+
+Utilisation d'un radiateur avec un module Nodon
+
+## Utilisation d'un radiateur avec un fil pilote
+Comme pour le Heatzy ci-dessus vous pouvez utiliser un switch virtuel qui va changer le preset de votre radiateur en fonction de l'état d'allumage du VTherm.
+Exemple :
+```
+- platform: template
+ switches:
+ chauffage_chb_parents:
+ unique_id: chauffage_chb_parents
+ friendly_name: Chauffage chambre parents
+ value_template: "{{ is_state('select.fp_chb_parents_pilot_wire_mode', 'comfort') }}"
+ icon_template: >-
+ {% if is_state('select.fp_chb_parents_pilot_wire_mode', 'comfort') %}
+ mdi:radiator
+ {% elif is_state('select.fp_chb_parents_pilot_wire_mode', 'frost_protection') %}
+ mdi:snowflake
+ {% else %}
+ mdi:radiator-disabled
+ {% endif %}
+ turn_on:
+ service: select.select_option
+ target:
+ entity_id: select.fp_chb_parents_pilot_wire_mode
+ data:
+ option: comfort
+ turn_off:
+ service: select.select_option
+ target:
+ entity_id: select.fp_chb_parents_pilot_wire_mode
+ data:
+ option: eco
+```
+
+
+
Seul le premier radiateur chauffe
diff --git a/README.md b/README.md
index 7b36bbc..ba1cc38 100644
--- a/README.md
+++ b/README.md
@@ -76,6 +76,7 @@
- [Troubleshooting](#troubleshooting)
- [Using a Heatzy](#using-a-heatzy)
- [Using a Heatsink with a Pilot Wire](#using-a-heatsink-with-a-pilot-wire)
+ - [Using a heater with a Nodon module](#using-a-heater-with-a-nodon-module)
- [Only the first radiator heats](#only-the-first-radiator-heats)
- [The radiator heats up even though the setpoint temperature is exceeded or does not heat up even though the room temperature is well below the setpoint](#the-radiator-heats-up-even-though-the-setpoint-temperature-is-exceeded-or-does-not-heat-up-even-though-the-room-temperature-is-well-below-the-setpoint)
- [Type `over_switch` or `over_valve`](#type-over_switch-or-over_valve)
@@ -1488,6 +1489,43 @@ Example :
```
+
+Using a heater with a Nodon
+
+## Using a heater with a Nodon module
+As for the heatzy module above you can use a virtual switch which will change the preset of your heater depending of the state of the VTherm.
+Example :
+```
+- platform: template
+ switches:
+ chauffage_chb_parents:
+ unique_id: chauffage_chb_parents
+ friendly_name: Chauffage chambre parents
+ value_template: "{{ is_state('select.fp_chb_parents_pilot_wire_mode', 'comfort') }}"
+ icon_template: >-
+ {% if is_state('select.fp_chb_parents_pilot_wire_mode', 'comfort') %}
+ mdi:radiator
+ {% elif is_state('select.fp_chb_parents_pilot_wire_mode', 'frost_protection') %}
+ mdi:snowflake
+ {% else %}
+ mdi:radiator-disabled
+ {% endif %}
+ turn_on:
+ service: select.select_option
+ target:
+ entity_id: select.fp_chb_parents_pilot_wire_mode
+ data:
+ option: comfort
+ turn_off:
+ service: select.select_option
+ target:
+ entity_id: select.fp_chb_parents_pilot_wire_mode
+ data:
+ option: eco
+```
+
+
+
Only the first radiator heats