From 6582ba6317589dd6f9a1e25b57cf9023ef511e28 Mon Sep 17 00:00:00 2001 From: Proddy Date: Sun, 17 Oct 2021 21:40:26 +0200 Subject: [PATCH] added another Buderus RC10 - #160 --- CHANGELOG_LATEST.md | 1 + src/device_library.h | 1 + src/version.h | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG_LATEST.md b/CHANGELOG_LATEST.md index 28e24a5fc..0707d9fea 100644 --- a/CHANGELOG_LATEST.md +++ b/CHANGELOG_LATEST.md @@ -13,6 +13,7 @@ - Home Assistant `state_class` attribute for Wh, kWh, W and KW [#129](https://github.com/emsesp/EMS-ESP32/issues/129) - Add current room influence for RC300[#136] - Added Home Assistant device_class to sensor entities +- Added another Buderus RC10 thermostat with Product ID 65 [#160](https://github.com/emsesp/EMS-ESP32/issues/160) ## Fixed diff --git a/src/device_library.h b/src/device_library.h index a9ed2bf65..4ef33184e 100644 --- a/src/device_library.h +++ b/src/device_library.h @@ -70,6 +70,7 @@ {203, DeviceType::THERMOSTAT, F("EasyControl CT200"), DeviceFlags::EMS_DEVICE_FLAG_EASY | DeviceFlags::EMS_DEVICE_FLAG_NO_WRITE}, // 0x18, cannot write // Thermostat - Buderus/Nefit/Bosch specific - 0x17 / 0x10 / 0x18 / 0x19 / 0x38 +{ 65, DeviceType::THERMOSTAT, F("RC10"), DeviceFlags::EMS_DEVICE_FLAG_RC10},// 0x17 { 67, DeviceType::THERMOSTAT, F("RC30"), DeviceFlags::EMS_DEVICE_FLAG_RC30_N},// 0x10 - based on RC35 { 77, DeviceType::THERMOSTAT, F("RC20/Moduline 300"), DeviceFlags::EMS_DEVICE_FLAG_RC20},// 0x17 { 78, DeviceType::THERMOSTAT, F("Moduline 400"), DeviceFlags::EMS_DEVICE_FLAG_RC30}, // 0x10 diff --git a/src/version.h b/src/version.h index a726d7b37..9aa872702 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define EMSESP_APP_VERSION "3.2.2b11" +#define EMSESP_APP_VERSION "3.2.2b12"