- RC35: sets setpoint temperature in type 0x3D depends on current

This commit is contained in:
Christian Weithe
2019-01-10 22:29:45 +01:00
parent 7d0f3a458c
commit 5cda8a5444
2 changed files with 6 additions and 5 deletions

View File

@@ -7,7 +7,7 @@
#include "ems.h" #include "ems.h"
/* /*
* Boiler... * Boiler...
*/ */
#define EMS_TYPE_UBAMonitorFast 0x18 // is an automatic monitor broadcast #define EMS_TYPE_UBAMonitorFast 0x18 // is an automatic monitor broadcast
@@ -27,7 +27,7 @@
#define EMS_VALUE_UBAParameterWW_wwComfort_Comfort 0x00 // the value for comfort #define EMS_VALUE_UBAParameterWW_wwComfort_Comfort 0x00 // the value for comfort
#define EMS_VALUE_UBAParameterWW_wwComfort_Eco 0xD8 // the value for eco #define EMS_VALUE_UBAParameterWW_wwComfort_Eco 0xD8 // the value for eco
/* /*
* Thermostat... * Thermostat...
*/ */
@@ -59,6 +59,7 @@
#define EMS_OFFSET_RC35Set_mode 7 // position of thermostat mode #define EMS_OFFSET_RC35Set_mode 7 // position of thermostat mode
#define EMS_OFFSET_RC35Set_temp_day 2 // position of thermostat setpoint temperature for day time #define EMS_OFFSET_RC35Set_temp_day 2 // position of thermostat setpoint temperature for day time
#define EMS_OFFSET_RC35Set_temp_night 1 // position of thermostat setpoint temperature for night time #define EMS_OFFSET_RC35Set_temp_night 1 // position of thermostat setpoint temperature for night time
#define EMS_OFFSET_RC35Get_mode_day 1 // position of thermostat day mode
// Easy specific // Easy specific
#define EMS_TYPE_EasyStatusMessage 0x0A // reading values on an Easy Thermostat #define EMS_TYPE_EasyStatusMessage 0x0A // reading values on an Easy Thermostat
@@ -117,7 +118,7 @@ const _Model_Type Model_Types[] = {
{EMS_MODEL_EASY, 202, 0x18, "TC100 (e.g. Nefit Easy or CT100)"} {EMS_MODEL_EASY, 202, 0x18, "TC100 (e.g. Nefit Easy or CT100)"}
}; };
/* /*
* Known thermostat types and their abilities * Known thermostat types and their abilities
*/ */
const _Thermostat_Type Thermostat_Types[] = { const _Thermostat_Type Thermostat_Types[] = {

View File

@@ -1,8 +1,8 @@
/* /*
* my_config.h * my_config.h
* *
* All configurations and customization's go here * All configurations and customization's go here
* *
* Paul Derbyshire - https://github.com/proddy/EMS-ESP * Paul Derbyshire - https://github.com/proddy/EMS-ESP
*/ */