mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-10 09:49:54 +03:00
3.2.1
This commit is contained in:
19
CHANGELOG.md
19
CHANGELOG.md
@@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
# [3.2.1] August 8 2021
|
||||||
|
|
||||||
|
## Added
|
||||||
|
|
||||||
|
- json body in API can now take device, name, cmd, hc and id
|
||||||
|
- added example of how to use API directly to control values from Home Assistant
|
||||||
|
- API calls are shown in debug log (For troubleshooting)
|
||||||
|
|
||||||
|
## Fixed
|
||||||
|
|
||||||
|
- fixed issue with Home Assistant entity naming where boiler's ww was duplicated in entity name
|
||||||
|
- fixed issue where wwSetTemp was written too instead of wwSelTemp
|
||||||
|
|
||||||
|
## Changed
|
||||||
|
|
||||||
|
- fixed case on mqtt names, like 'wwtankmiddletemp'
|
||||||
|
- renamed Product ID to 'EMS Product ID' in Home Assistant
|
||||||
|
- removed brackets around tags, e.g. (hc1) selected room temperature" is now just "hc1 selected room temperature"
|
||||||
|
|
||||||
# [3.2.0] August 6 2021
|
# [3.2.0] August 6 2021
|
||||||
|
|
||||||
## Added
|
## Added
|
||||||
|
|||||||
@@ -2,16 +2,6 @@
|
|||||||
|
|
||||||
## Added
|
## Added
|
||||||
|
|
||||||
- json body in API can now take device, name, cmd, hc and id
|
|
||||||
- added example of how to use API directly to control values from Home Assistant
|
|
||||||
- API calls are shown in debug log (For troubleshooting)
|
|
||||||
|
|
||||||
## Fixed
|
## Fixed
|
||||||
|
|
||||||
- fixed issue with Home Assistant entity naming where boiler's ww was duplicated in entity name
|
|
||||||
|
|
||||||
## Changed
|
## Changed
|
||||||
|
|
||||||
- fixed case on mqtt names, like 'wwtankmiddletemp'
|
|
||||||
- renamed Product ID to 'EMS Product ID' in Home Assistant
|
|
||||||
- removed brackets around tags, e.g. (hc1) selected room temperature" is now just "hc1 selected room temperature"
|
|
||||||
|
|||||||
@@ -764,7 +764,6 @@ void Boiler::process_UBAMaintenanceData(std::shared_ptr<const Telegram> telegram
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Set the warm water temperature 0x33/0x35 or 0xEA
|
// Set the warm water temperature 0x33/0x35 or 0xEA
|
||||||
// TODO
|
|
||||||
bool Boiler::set_warmwater_temp(const char * value, const int8_t id) {
|
bool Boiler::set_warmwater_temp(const char * value, const int8_t id) {
|
||||||
int v = 0;
|
int v = 0;
|
||||||
if (!Helpers::value2number(value, v)) {
|
if (!Helpers::value2number(value, v)) {
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
#define EMSESP_APP_VERSION "3.2.1b0"
|
#define EMSESP_APP_VERSION "3.2.2"
|
||||||
|
|||||||
Reference in New Issue
Block a user