mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-09 04:56:53 +03:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8e8897c70d | ||
|
|
eac513411e |
@@ -52,9 +52,9 @@ In other cases you can contact the developer via email: <img src="https://raw.gi
|
|||||||
|
|
||||||
------
|
------
|
||||||
|
|
||||||
##### 10.0.1 - Stability Increase (2021-12-31)
|
##### 10.0.2 - Stability Increase (2022-01-01)
|
||||||
|
|
||||||
- NEW: Correcte JSON error
|
- NEW v10.0.2: Corrected JSON error
|
||||||
|
|
||||||
- Updated compiler toolchain to ESP-IDF 4.3
|
- Updated compiler toolchain to ESP-IDF 4.3
|
||||||
|
|
||||||
|
|||||||
@@ -192,7 +192,13 @@ bool ClassFlowMQTT::doFlow(string zwtime)
|
|||||||
MQTTPublish(zw, resulttimestamp);
|
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 += ",\"raw\":\""+resultraw;
|
||||||
json += "\",\"error\":\""+resulterror;
|
json += "\",\"error\":\""+resulterror;
|
||||||
if (resultrate.length() > 0)
|
if (resultrate.length() > 0)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
const char* GIT_REV="884dd9f";
|
const char* GIT_REV="eac5134";
|
||||||
const char* GIT_TAG="";
|
const char* GIT_TAG="";
|
||||||
const char* GIT_BRANCH="master";
|
const char* GIT_BRANCH="master";
|
||||||
const char* BUILD_TIME="2021-12-31 08:56";
|
const char* BUILD_TIME="2022-01-01 08:54";
|
||||||
@@ -13,7 +13,7 @@ extern "C"
|
|||||||
#include "Helper.h"
|
#include "Helper.h"
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
|
||||||
const char* GIT_BASE_BRANCH = "master - v10.0.1 - 2021-12-31";
|
const char* GIT_BASE_BRANCH = "master - v10.0.2 - 2022-01-01";
|
||||||
|
|
||||||
|
|
||||||
const char* git_base_branch(void)
|
const char* git_base_branch(void)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
const char* GIT_REV="884dd9f";
|
const char* GIT_REV="eac5134";
|
||||||
const char* GIT_TAG="";
|
const char* GIT_TAG="";
|
||||||
const char* GIT_BRANCH="master";
|
const char* GIT_BRANCH="master";
|
||||||
const char* BUILD_TIME="2021-12-31 08:56";
|
const char* BUILD_TIME="2022-01-01 08:54";
|
||||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user