From e0e9e5ef8cbb688cafacaaa0c314447d476ba1f1 Mon Sep 17 00:00:00 2001 From: Paul Date: Sat, 5 Oct 2019 14:18:53 +0200 Subject: [PATCH] prep for 1.9.1 to master --- CHANGELOG.md | 6 ++++-- src/ems-esp.cpp | 3 +-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cd36dc06..6cf4b01c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [1.9.1 beta] 2019-09-30 +## [1.9.1] 2019-10-05 ### Added @@ -18,7 +18,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - fixed zero values (0.0) for setpoint temperature with the RC35 thermostat when in Auto mode - https://github.com/proddy/EMS-ESP/issues/180 -- added check for corrupted event log +- added check for corrupted event log, which could happen due to SPIFFS writing while UART is active +- made Junkers work again (broke in 1.9.0) ### Changed @@ -27,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixes to the default HA climate component .yaml file to support latest Home Assistance ('heat' added) - Update documentation in Wiki on MQTT and troubleshooting - Slowed down firmware upload via the Web to prevent users rebooting too early +- Change way WiFi is intialized to prevent dual AP and Client ### Removed diff --git a/src/ems-esp.cpp b/src/ems-esp.cpp index 3fa8174b5..1a60851c1 100644 --- a/src/ems-esp.cpp +++ b/src/ems-esp.cpp @@ -1854,8 +1854,7 @@ void WebCallback(JsonObject root) { item["productid"] = (it)->product_id; char buffer[10]; - // copy of my _hextoa() function from ems.cpp - // to convert device_id into a 0xXX hex value string + // copy of my _hextoa() function from ems.cpp, to convert device_id into a 0xNN hex value string char * p = buffer; byte nib1 = ((it)->device_id >> 4) & 0x0F; byte nib2 = ((it)->device_id >> 0) & 0x0F;