Compare commits

...

3 Commits

Author SHA1 Message Date
jomjol
8e8897c70d v10.0.2 2022-01-01 08:57:07 +01:00
jomjol
eac513411e v10.0.2 2022-01-01 08:53:55 +01:00
jomjol
98f9274085 V10.0.1 2021-12-31 09:02:59 +01:00
7 changed files with 19 additions and 8 deletions

View File

@@ -52,11 +52,16 @@ In other cases you can contact the developer via email: <img src="https://raw.gi
------
##### 10.0.0 - Stability Increase (2021-12-30)
##### 10.0.2 - Stability Increase (2022-01-01)
- NEW v10.0.2: Corrected JSON error
- Updated compiler toolchain to ESP-IDF 4.3
- Removal of memory leak
- Improved error handling during startup (check PSRAM and camera with remark in logfile)
- MQTT: implemented raw value additionally, removal of regex contrain
- Normalized Parameter ``MaxRateValue`` to "change per minute"

View File

@@ -192,9 +192,15 @@ bool ClassFlowMQTT::doFlow(string zwtime)
MQTTPublish(zw, resulttimestamp);
std::string json="{\"value\":"+result;
std::string json = "";
if (result.length() > 0)
json += "{\"value\":"+result;
else
json += "{\"value\":\"\"";
json += ",\"raw\":\""+resultraw;
json += ",\"error\":\""+resulterror;
json += "\",\"error\":\""+resulterror;
if (resultrate.length() > 0)
json += "\",\"rate\":"+resultrate;
else

View File

@@ -1,4 +1,4 @@
const char* GIT_REV="04c5649";
const char* GIT_REV="eac5134";
const char* GIT_TAG="";
const char* GIT_BRANCH="master";
const char* BUILD_TIME="2021-12-30 18:32";
const char* BUILD_TIME="2022-01-01 08:54";

View File

@@ -13,7 +13,7 @@ extern "C"
#include "Helper.h"
#include <fstream>
const char* GIT_BASE_BRANCH = "master - v10.0.0 - 2021-12-30";
const char* GIT_BASE_BRANCH = "master - v10.0.2 - 2022-01-01";
const char* git_base_branch(void)

View File

@@ -1,4 +1,4 @@
const char* GIT_REV="04c5649";
const char* GIT_REV="eac5134";
const char* GIT_TAG="";
const char* GIT_BRANCH="master";
const char* BUILD_TIME="2021-12-30 18:32";
const char* BUILD_TIME="2022-01-01 08:54";

Binary file not shown.

Binary file not shown.