From 7c5351f15f69de04b54c2d79b40dd00f1235de91 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Mon, 6 Oct 2025 18:28:14 +0200 Subject: [PATCH] add Greenstar 2000 boiler #2645 --- CHANGELOG_LATEST.md | 9 +++++++-- src/core/device_library.h | 1 + 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG_LATEST.md b/CHANGELOG_LATEST.md index 4b7a95412..e4b753d59 100644 --- a/CHANGELOG_LATEST.md +++ b/CHANGELOG_LATEST.md @@ -21,9 +21,12 @@ For more details go to [docs.emsesp.org](https://docs.emsesp.org/). - set set climate action cooling/heating in HA [#2583](https://github.com/emsesp/EMS-ESP32/issues/2583) - Internal sensors of E32V2_2 - FW200 display options [#2610](https://github.com/emsesp/EMS-ESP32/discussions/2610) -- CR11 mode settings OFF/MANUAL depends on selTemp [#2437](https://github.com/emsesp/EMS-ESP32/issues/3437) +- CR11 mode settings OFF/MANUAL depends on selTemp [#2437](https://github.com/emsesp/EMS-ESP32/issues/2437) - Fuse settings for BBQKees boards -- Analogsensors for pulse output [#2624](https://github.com/emsesp/EMS-ESP32/discussions/2624) and frequency input [#2631](https://github.com/emsesp/EMS-ESP32/discussions/2631) +- Analogsensors for pulse output [#2624](https://github.com/emsesp/EMS-ESP32/discussions/2624) +- Analogsensors frequency input [#2631](https://github.com/emsesp/EMS-ESP32/discussions/2631) +- SRC plus thermostats [#2636](https://github.com/emsesp/EMS-ESP32/issues/2636) +- Greenstar 2000 [#2645](https://github.com/emsesp/EMS-ESP32/issues/2645) ## Fixed @@ -41,9 +44,11 @@ For more details go to [docs.emsesp.org](https://docs.emsesp.org/). - fix missing long 10-second press of Button to perform a factory reset - fix wwMaxPower on Junkers ZBS14 [#2609](https://github.com/emsesp/EMS-ESP32/issues/2609) - ventilation bypass state from telegram 0x55C [#1197](https://github.com/emsesp/EMS-ESP32/issues/1197) +- set selflowtemp for ems+ boilers [#2641](https://github.com/emsesp/EMS-ESP32/discussions/2641) ## Changed - show console log with ISO date/time [#2533](https://github.com/emsesp/EMS-ESP32/discussions/2533) - remove ESP32 CPU temperature - updated core libraries like AsyncTCP, AsyncWebServer and Modbus +- remove command `scan deep` diff --git a/src/core/device_library.h b/src/core/device_library.h index 1d5fc2e77..917b9f6ae 100644 --- a/src/core/device_library.h +++ b/src/core/device_library.h @@ -25,6 +25,7 @@ // Boilers - 0x08 { 8, DeviceType::BOILER, "CS5800i, CS6800i, WLW176i, WLW186i", DeviceFlags::EMS_DEVICE_FLAG_CS6800}, +{ 11, DeviceType::BOILER, "Greenstar 2000", DeviceFlags::EMS_DEVICE_FLAG_NONE}, { 12, DeviceType::BOILER, "C1200W", DeviceFlags::EMS_DEVICE_FLAG_NONE}, { 16, DeviceType::BOILER, "CS5800iG", DeviceFlags::EMS_DEVICE_FLAG_NONE}, { 64, DeviceType::BOILER, "BK13/BK15, Smartline, GB1*2", DeviceFlags::EMS_DEVICE_FLAG_NONE},