tidy up HA config

This commit is contained in:
Paul
2019-07-19 00:05:04 +02:00
parent 3b986c2e28
commit e2da47afc7
2 changed files with 6 additions and 3 deletions

View File

@@ -5,7 +5,7 @@ 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).
## [1.8.1dev] 2019-07-08 ## [1.8.1dev] 2019-07-19
### Added ### Added
@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added tx_mode back with options 0,1 and 2 until we've fixed option 2 that works for everyone and doesn't reset ESP - Added tx_mode back with options 0,1 and 2 until we've fixed option 2 that works for everyone and doesn't reset ESP
- More solar module data captured, thanks to @Vuego123 - More solar module data captured, thanks to @Vuego123
- -DDEFAULT_NO_SERIAL option added to determine if the Serial port should be enabled on fresh installs - -DDEFAULT_NO_SERIAL option added to determine if the Serial port should be enabled on fresh installs
- Detect thermostat mode for EMS+ RC300/Moduline 3000
### Fixed ### Fixed
@@ -29,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `publish_wait` renamed to `publish_time`, a value of 0 means disabling all MQTT sending - `publish_wait` renamed to `publish_time`, a value of 0 means disabling all MQTT sending
- How signed shorts are handled such as the current and setpoint temps on RC300s - How signed shorts are handled such as the current and setpoint temps on RC300s
- Stopped automatic refresh of web page, which causes crashes/memory loss after a short time - Stopped automatic refresh of web page, which causes crashes/memory loss after a short time
- Support HA 0.96 climate component changes
## [1.8.0] 2019-06-15 ## [1.8.0] 2019-06-15

View File

@@ -21,8 +21,8 @@
- platform: mqtt - platform: mqtt
name: boiler name: boiler
modes: modes:
- "auto" - "auto"
- "off" - "off"
min_temp: 40 min_temp: 40
max_temp: 60 max_temp: 60
temp_step: 1 temp_step: 1
@@ -34,3 +34,4 @@
mode_state_template: "{% if value_json.wWActivated == 'off' %} off {% else %} auto {% endif %}" mode_state_template: "{% if value_json.wWActivated == 'off' %} off {% else %} auto {% endif %}"
mode_state_topic: "home/ems-esp/boiler_data" mode_state_topic: "home/ems-esp/boiler_data"
mode_command_topic: "home/ems-esp/wwactivated" mode_command_topic: "home/ems-esp/wwactivated"