mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-14 11:50:20 +03:00
1.5.7b
This commit is contained in:
268
CHANGELOG.md
268
CHANGELOG.md
@@ -1,32 +1,280 @@
|
||||
# EMS-ESP-Boiler Changelog
|
||||
# EMS-ESP Changelog
|
||||
|
||||
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/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
## [1.5.6] 2019-03-09
|
||||
|
||||
### Added
|
||||
|
||||
- Setting the mode and setpoint temperature on a RC35
|
||||
- test_mode option
|
||||
|
||||
### Changed
|
||||
|
||||
- upgraded MyESP library
|
||||
- minor changes
|
||||
|
||||
|
||||
## [1.5.5] 2019-03-07
|
||||
|
||||
### Fixed
|
||||
- Support the latest ArduinoJson v6 and espressif8266 2.0.4 libraries (in PlatformIO do a `pio lib update` and `pio update`)
|
||||
|
||||
### Changed
|
||||
|
||||
- MQTT keep alive to 2 minutes (60 seconds was just too short for slower networks)
|
||||
- Improved MQTT startup time
|
||||
- Setting wifi or mqtt settings are immediate, no need to restart the ESP
|
||||
- Text changes in the help
|
||||
|
||||
### Added
|
||||
- Show if MQTT is connected
|
||||
- Show version of MyESP (the custom MQTT, Wifi, OTA, MDNS, Telnet library)
|
||||
- EMS-OT OpenTherm connector
|
||||
|
||||
## [1.5.4] 2019-03-03
|
||||
|
||||
### Changed
|
||||
|
||||
- MQTT keep alive changed from 5 minutes to 1 minute
|
||||
|
||||
### Added
|
||||
- Callback for OTA. This is used to disable EMS bus during a firmware OTA update, which caused problems with the latest ESP89266 core libraries
|
||||
- Added rough estimate of WiFi signal strength to info page
|
||||
- Added the build time & date to the info page (optional in platformio.ini)
|
||||
|
||||
## [1.5.3] 2019-02-22
|
||||
|
||||
### Changed
|
||||
|
||||
- Support for latest esp8266 arduino core version [2.5.0](https://github.com/esp8266/Arduino/releases/tag/2.5.0) and platform espressif8266 version 2.0.0
|
||||
- Added board type to the info screen
|
||||
|
||||
### Added
|
||||
|
||||
- Improved MQTT LWT (Last Will Testament). Uses payload called 'online' and 'offline'. See https://github.com/proddy/EMS-ESP/issues/57
|
||||
- Added ESP32 support to MyESP library
|
||||
- Added Bosch Easy thermostat, Buderus Logamax U122
|
||||
- Support for changing boiler wwtemp via MQTT (merge #58 from egrekov). thanks!
|
||||
|
||||
### Removed
|
||||
|
||||
- Custom MDNS support. Now handled much better in the new esp core under OTA
|
||||
|
||||
## [1.5.2] 2019-02-04
|
||||
|
||||
### Changed
|
||||
|
||||
- Change wifi settings using the `set wifi <ssid> <password>` command
|
||||
|
||||
### Added
|
||||
|
||||
- Added incoming MQTT "TOPIC_BOILER_WWACTIVATED" to set the warm water on/off. Payload is 1 or 0. See [issue](https://github.com/proddy/EMS-ESP/issues/46#issuecomment-460375689).
|
||||
- Added the list of all MQTT topics to the README file
|
||||
|
||||
## [1.5.1] 2019-02-03
|
||||
|
||||
### Fixed
|
||||
|
||||
- issue with Serial monitoring conflicting with UART when both running
|
||||
- Fixed typo with -D settings in the example platformio.ini
|
||||
|
||||
### Changed
|
||||
|
||||
- `thermostat temp` now except floats (e.g. 20.5). Some thermostats may round up or down if they use 0.5 intervals.
|
||||
|
||||
## [1.5.0] 2019-02-03
|
||||
|
||||
### Added
|
||||
|
||||
- Support for RC10 thermostat
|
||||
- New command `set serial`
|
||||
|
||||
### Changed
|
||||
|
||||
- Improved Tx logic. Retries are more efficient and startup is faster and less error prone.
|
||||
- "# Rx telegrams" and "# Tx telegrams" show number of successful Reads and Writes initiated by the user or automatically by the code. This makes it easy to see if the Tx is working.
|
||||
- Some refactoring in preparation for the EMS+ support coming soon
|
||||
|
||||
### Removed
|
||||
|
||||
- Removed the `poll` and `tx` commands
|
||||
- `DEBUG_SUPPORT`. Now controlled with the 'set serial' command
|
||||
- removed MQTT and WIFI settings from my_config.h. These have to be set either within the application (using set) or hardcoded in platformio.ini You can now check in `my_config.h` without everyone seeing your passwords!
|
||||
- TxCapable removed from `info`
|
||||
|
||||
## [1.4.1] 2019-01-29
|
||||
|
||||
### Added
|
||||
|
||||
- The led pin, dallas pin and both thermostat and boiler type IDs can be set with the application, and stored.
|
||||
|
||||
### Changed
|
||||
|
||||
- some minor improvements to autodetect
|
||||
|
||||
## [1.4.0] 2019-01-27
|
||||
|
||||
### Changed
|
||||
|
||||
- last will MQTT topic prefixed with a header like the rest of the topics
|
||||
- All double and float numbers rendered to 2 decimal places (precision = 2)
|
||||
- Default logging set to None when starting a telnet session
|
||||
|
||||
### Added
|
||||
|
||||
- Added support for external Dallas sensors (DS1822, DS18S20, DS18B20, DS1825). See readme
|
||||
- Added UBAParametersMessage type to fetch boiler modulation min & max values
|
||||
- Report shows system load average
|
||||
|
||||
## [1.3.2] 2019-01-23
|
||||
|
||||
### Fixed
|
||||
|
||||
- Handle thermostats that don't have builtin temperature sensors when showing current temperature (https://github.com/proddy/EMS-ESP/issues/18#issuecomment-451012963)
|
||||
|
||||
### Changed
|
||||
|
||||
- Improved way to identify if the EMS bus is connected
|
||||
- Improved 'types' command to show more details
|
||||
- Improved auto detect of thermostat types
|
||||
|
||||
### Added
|
||||
|
||||
- Some more devices like the Nefit Topline & RC310 thermostat recognition
|
||||
- Added a check to see Tx is possible. See 'Tx Capable' under the 'info' screen
|
||||
|
||||
### Removed
|
||||
|
||||
- Removed `MY_BOILER_MODELID` from `my_config.h`. It's always hardcoded.
|
||||
|
||||
## [1.3.1] 2019-01-12
|
||||
|
||||
### Fixed
|
||||
|
||||
- telnet commands with set are no longer forced to lower case
|
||||
|
||||
### Changed
|
||||
|
||||
- Custom settings (e.g set led) moved outside MyESP
|
||||
- Moved all MQTT to my_config.h making it independent from Home Assistant
|
||||
|
||||
### Added
|
||||
|
||||
- MQTT keep alive, last will testament and other settings all configurable in my_config.h
|
||||
- RC35: MQTT day/night/auto mode; sets setpoint temperature in type 0x3D depends on current night/day Mode (@SpaceTeddy) [#33](https://github.com/proddy/EMS-ESP/pull/33)
|
||||
|
||||
## [1.3.0] 2019-01-09
|
||||
|
||||
### Changed
|
||||
|
||||
- Renamed project from EMS-ESP-Boiler to EMS-ESP since it's kinda EMS generic now
|
||||
- Support for RC20F and RFM20 (https://github.com/proddy/EMS-ESP/issues/18)
|
||||
- Moved all EMS device information into a separate file `ems_devices.h` so no longer need to touch `ems.h`
|
||||
- Telnet commands can be strings now and output is suspended when typing
|
||||
|
||||
### Removed
|
||||
|
||||
- Removed SHOWER_TEST
|
||||
- Removed WIFI and MQTT credentials from the platformio.ini file
|
||||
|
||||
### Added
|
||||
|
||||
- Settings are saved and loaded from the ESP8266's file system (SPIFFS). Can be set using the 'set' command
|
||||
- Improved support when in Access Point mode (192.168.4.1)
|
||||
- pre-built firmwares are back
|
||||
|
||||
## [1.2.4] 2019-01-04
|
||||
|
||||
### Changed
|
||||
|
||||
- Scanning known EMS Devices now ignores duplicates (https://github.com/proddy/EMS-ESP/pull/30)
|
||||
- ServiceCode stored as a two byte char
|
||||
- Support for RC20F and RFM20 (https://github.com/proddy/EMS-ESP/issues/18)
|
||||
|
||||
## [1.2.3] 2019-01-03
|
||||
|
||||
### Fixed
|
||||
|
||||
- Can now hardcode Boiler and Thermostat types in my_config.h to bypass auto-detection
|
||||
- Fixed MQTT subscribing to Heating and Hot Water active topics
|
||||
- Fixed for listening to incoming MQTT topics (https://github.com/proddy/EMS-ESP/issues/27)
|
||||
- Fixed handling of current temperature on an RC35-type thermostat that doesn't have a sensor (https://github.com/proddy/EMS-ESP/issues/18)
|
||||
|
||||
## [1.2.2] 2019-01-02
|
||||
|
||||
### Fixed
|
||||
|
||||
- Issues in 1.2.1 (see https://github.com/proddy/EMS-ESP/issues/25)
|
||||
- Logic for determining if there is activity on the EMS bus and using the onboard LEDs properly
|
||||
|
||||
## [1.2.1] 2019-01-02
|
||||
|
||||
### Fixed
|
||||
|
||||
- Only process broadcast messages if the offset (byte 4) is 0. (https://github.com/proddy/EMS-ESP/issues/23)
|
||||
- Improved checking for duplicate sent Tx telegrams by comparing CRCs
|
||||
- Removed distiquishing between noise on the line and corrupt telegrams (https://github.com/proddy/EMS-ESP/issues/24)
|
||||
|
||||
## [1.2.0] 2019-01-01
|
||||
|
||||
### Fixed
|
||||
|
||||
- Incorrect indenting in `climate.yaml` (thanks @mrfixit1)
|
||||
- Improved support for slower WiFi connections
|
||||
- Fixed issue with OTA not always giving back a completion response to platformio
|
||||
- Fixed issue with repeating reads after a raw mode send
|
||||
- Fixed handling of long integers (thanks @SpaceTeddy)
|
||||
|
||||
### Added
|
||||
|
||||
- added 'dout' flashmode to platformio.ini so OTA works now when uploading to a Wemos D1 Pro's or any other board with larger flash's
|
||||
- added un tested supporting RC35 type of thermostats
|
||||
- Try and discover and set Boiler and Thermostat types automatically
|
||||
- Fetch UBATotalUptimeMessage from Boiler to get total working minutes
|
||||
- Added check to see if bus is connected. Shown in stats page
|
||||
- If no Wifi connection can be made, start up as a WiFi Access Point (AP)
|
||||
- Report out service codes and water-flow [pull-request](https://github.com/proddy/EMS-ESP/pull/20/files). Thanks @Bonusbartus
|
||||
|
||||
### Changed
|
||||
|
||||
- Build option is called `DEBUG_SUPPORT` (was `USE_SERIAL`)
|
||||
- Replaced old **ESPHelper** with my own **MyESP** library to handle Wifi, MQTT, MDNS and Telnet handlers. Supports asynchronous TCP and has smaller memory footprint. And moved to libs directory.
|
||||
- Simplified LED error checking. If enabled (by default), solid means connected and flashing means error. Uses either an external pull-up or the onboard ESP8266 LED.
|
||||
- Improved Telnet debugging which uses TelnetSpy to keep a buffer of previous output
|
||||
- Optimized memory usage & heap conflicts, removing nasty things like strcpy, sprintf where possible
|
||||
- Improved checking for tap water on/off (thanks @Bonusbartus)
|
||||
|
||||
### Removed
|
||||
|
||||
- Time and TimeLib's. Not used in code.
|
||||
- Removed build option `MQTT_MAX_PACKAGE_SIZE` as not using the PubSubClient library any more
|
||||
- Removed all of Espurna's pre-built firmwares and instructions to build. Keeping it simple.
|
||||
|
||||
## [1.1.1] 2018-12-23
|
||||
|
||||
### Removed
|
||||
|
||||
- Espurna build notes and ready made firmware
|
||||
|
||||
## [1.1.0] 2018-12-22
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fixed handling of negative flaoting point values (like outdoor temp)
|
||||
- Fixed handling of negative floating point values (like outdoor temp)
|
||||
- Fixed handling of auto & manual mode on an RC30
|
||||
- [Fixed condition where all telegram types were processed, instead of only broadcasts or our own reads](https://github.com/proddy/EMS-ESP-Boiler/issues/15)
|
||||
- [Fixed condition where all telegram types were processed, instead of only broadcasts or our own reads](https://github.com/proddy/EMS-ESP/issues/15)
|
||||
|
||||
### Added
|
||||
|
||||
- Created this CHANGELOG.md file!
|
||||
- [Added support for the Nefit Easy thermostat, reading of temperature values only](https://github.com/proddy/EMS-ESP-Boiler/issues/9) - note *read only* (big thanks @**kroon040** for lending me an Easy device)
|
||||
- [Added support for RC35/Moduline 400](https://github.com/proddy/EMS-ESP-Boiler/issues/14) - *read only*
|
||||
- [New raw logging mode for logging](https://github.com/proddy/EMS-ESP-Boiler/issues/11)
|
||||
- [New 'r'command to send raw data to EMS](https://github.com/proddy/EMS-ESP-Boiler/issues/11)
|
||||
- [Added MQTT messages for hot water on and heating on](https://github.com/proddy/EMS-ESP-Boiler/issues/10)
|
||||
- [Added support for the Nefit Easy thermostat, reading of temperature values only](https://github.com/proddy/EMS-ESP/issues/9) - note *read only* (big thanks @**kroon040** for lending me an Easy device)
|
||||
- [Added support for RC35/Moduline 400](https://github.com/proddy/EMS-ESP/issues/14) - *read only*
|
||||
- [New raw logging mode for logging](https://github.com/proddy/EMS-ESP/issues/11)
|
||||
- [New 'r'command to send raw data to EMS](https://github.com/proddy/EMS-ESP/issues/11)
|
||||
- [Added MQTT messages for hot water on and heating on](https://github.com/proddy/EMS-ESP/issues/10)
|
||||
- Implemented FIFO circular buffer queue for up to 20 Tx messages (Q command to show queue)
|
||||
- Toggle Tx transmission via telnet (use 'X' command)
|
||||
- Show thermostat type in help stats (use 's' command)
|
||||
|
||||
Reference in New Issue
Block a user