-
-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' of https://github.com/emsesp/EMS-ESP32 into dev2
- Loading branch information
Showing
6 changed files
with
40 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,22 @@ | ||
# Changelog | ||
|
||
# [3.6.1] | ||
## [3.6.1] | ||
|
||
## **IMPORTANT! BREAKING CHANGES** | ||
|
||
- shower_data MQTT topic shows duration is seconds (was previously an English string) | ||
- `shower_data` MQTT topic shows duration is seconds (was previously a full english sentence) | ||
|
||
## Added | ||
|
||
- rssi in Network Status Page | ||
- boiler nominal power from telegram 0x04 | ||
- boiler energy for heating and dhw stored in nvs | ||
- analogsensor counter value stored in nvs | ||
- show WiFi rssi in Network Status Page | ||
|
||
## Fixed | ||
|
||
- issue in espMqttClient on low mem | ||
- mqtt subscription to scheduler and custom | ||
- HA configuration for scheduler and custom | ||
- Issue in espMqttClient causing a memory leak when MQTT broker is disconnected due to network unavailability [#1264](https://github.com/emsesp/EMS-ESP32/issues/1264) | ||
- Using MQTT enum values correctly formatted in MQTT Discovery [#1280](https://github.com/emsesp/EMS-ESP32/issues/1280) | ||
|
||
## Changed | ||
|
||
- mqtt free mem check 60k | ||
- mqtt free mem check set to 60 kb | ||
- small cosmetic changes to Searching in Customization web page | ||
- update to [email protected] | ||
- updated to [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ default_envs = esp32_4M | |
; default_envs = esp32_16M | ||
; default_envs = lolin_s3 | ||
; default_envs = standalone | ||
; default_envs = debug | ||
|
||
[env:esp32_4M] | ||
; if using OTA enter your details below | ||
|
@@ -33,6 +34,8 @@ upload_port = /dev/ttyUSB* | |
; override arduino espressif core | ||
platform = espressif32 ; take latest | ||
; platform = [email protected] | ||
; platform = [email protected] | ||
; platform = [email protected] | ||
|
||
extra_scripts = | ||
pre:scripts/build_interface.py ; comment out if you don't want to re-build the WebUI each time | ||
|
@@ -52,13 +55,21 @@ extra_scripts = | |
; options for debugging are: EMSESP_DEBUG EMSESP_UART_DEBUG EMSESP_DEBUG_SENSOR | ||
[env:debug] | ||
board = esp32dev | ||
framework = arduino | ||
platform = espressif32 | ||
board_build.partitions = esp32_partition_debug.csv | ||
; board_build.partitions = esp32_partition_4M.csv | ||
board_upload.flash_size = 4MB | ||
board_build.filesystem = littlefs | ||
upload_protocol = esptool | ||
build_type = debug | ||
monitor_raw = no | ||
monitor_filters = esp32_exception_decoder | ||
debug_tool = esp-prog | ||
debug_init_break = tbreak setup | ||
build_flags = ${factory_settings.build_flags} -DONEWIRE_CRC16=0 -DNO_GLOBAL_ARDUINOOTA -DARDUINOJSON_ENABLE_STD_STRING=1 -DESP32=1 -DARDUINO_ARCH_ESP32=1 | ||
extra_scripts = pre:scripts/build_interface.py | ||
build_flags = ${factory_settings.build_flags} -DEMSESP_EN_ONLY -DCORE_DEBUG_LEVEL=5 -DONEWIRE_CRC16=0 -DNO_GLOBAL_ARDUINOOTA -DARDUINOJSON_ENABLE_STD_STRING=1 -DESP32=1 -DARDUINO_ARCH_ESP32=1 | ||
upload_port = /dev/ttyUSB0 | ||
extra_scripts = | ||
; pre:scripts/build_interface.py ; comment out if you don't want to re-build the WebUI each time | ||
scripts/rename_fw.py | ||
; post:scripts/app-tls-size.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
#define EMSESP_APP_VERSION "3.6.1-dev.1a" | ||
#define EMSESP_APP_VERSION "3.6.1-dev.2" |