Commit 61b2740a24066c8aca5d574f7424ca3919e7160c
1 parent
bb19ea7e
Minor textual changes
Showing
1 changed file
with
5 additions
and
4 deletions
examples/Advanced_Thermostat/Advanced_Thermostat.ino
| @@ -22,7 +22,7 @@ | @@ -22,7 +22,7 @@ | ||
| 22 | * (https://www.home-assistant.io/integrations/mqtt/). The MQTT broker should be reachable without | 22 | * (https://www.home-assistant.io/integrations/mqtt/). The MQTT broker should be reachable without |
| 23 | * using certificates (TLS). | 23 | * using certificates (TLS). |
| 24 | * - Change the WiFi credentials and MQTT credentials in this software | 24 | * - Change the WiFi credentials and MQTT credentials in this software |
| 25 | - * - Flash this software to a ESP mini, connect the ESP to the OpenTherm Adapter and connect the | 25 | + * - Flash this software to a ESP32-S2 mini, connect the ESP to the OpenTherm Adapter and connect the |
| 26 | * OpenTherm Adapter to the boiler with the two wires of your present thermostat (replace it) | 26 | * OpenTherm Adapter to the boiler with the two wires of your present thermostat (replace it) |
| 27 | * THAT'ALL, all integrations should automatically appear in Home Assistant and be active! | 27 | * THAT'ALL, all integrations should automatically appear in Home Assistant and be active! |
| 28 | 28 | ||
| @@ -57,11 +57,12 @@ | @@ -57,11 +57,12 @@ | ||
| 57 | * update topic. | 57 | * update topic. |
| 58 | * | 58 | * |
| 59 | * Unlike other examples on the internet, MQTT_Advanced_Thermostat already is a fully functional | 59 | * Unlike other examples on the internet, MQTT_Advanced_Thermostat already is a fully functional |
| 60 | - * thermostat: just configure it once change the room temperature setpoint any time you want to. | 60 | + * thermostat: just configure it once change, regularly publish teh room temperature and update the the |
| 61 | + * room temperature setpoint any time your boiler to heat up the room to that setpoint. | ||
| 61 | * | 62 | * |
| 62 | * Use your home automation system, like Home Assistant or Domoticz, to create e.g. schedules | 63 | * Use your home automation system, like Home Assistant or Domoticz, to create e.g. schedules |
| 63 | * and geo fencing, and have this program control your boiler by just setting the room | 64 | * and geo fencing, and have this program control your boiler by just setting the room |
| 64 | - * temperature setpoint (and switching it on and off if the boiler supports cooling) | 65 | + * temperature setpoint. |
| 65 | * | 66 | * |
| 66 | * Please note that after a reboot or a power cycle the thermostat starts in 'OFF' mode. This | 67 | * Please note that after a reboot or a power cycle the thermostat starts in 'OFF' mode. This |
| 67 | * means that it will never activate the boiler after such an event. An 'ON' request is needed to | 68 | * means that it will never activate the boiler after such an event. An 'ON' request is needed to |
| @@ -151,7 +152,7 @@ const char * mqtt_password = "YOUR MQTT PASSWORD"; | @@ -151,7 +152,7 @@ const char * mqtt_password = "YOUR MQTT PASSWORD"; | ||
| 151 | 152 | ||
| 152 | 153 | ||
| 153 | // Your time zone, used to display times correctly (and needed for WiFiClientSecure TLS certificate validation, if used) | 154 | // Your time zone, used to display times correctly (and needed for WiFiClientSecure TLS certificate validation, if used) |
| 154 | -#define TZ_Europe_Amsterdam "CET-1CEST,M3.5.0,M10.5.0/3" | 155 | +#define TZ_Europe_Amsterdam "CET-1CEST-2,M3.5.0,M10.5.0/3" |
| 155 | #define TIME_ZONE TZ_Europe_Amsterdam | 156 | #define TIME_ZONE TZ_Europe_Amsterdam |
| 156 | 157 | ||
| 157 | 158 |