mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-08 20:46:52 +03:00
Preparation for v10.6.0
This commit is contained in:
@@ -16,8 +16,6 @@ ____
|
|||||||
* Use the standardized Home Protocol for the Mqtt binding
|
* Use the standardized Home Protocol for the Mqtt binding
|
||||||
* https://homieiot.github.io/
|
* https://homieiot.github.io/
|
||||||
|
|
||||||
|
|
||||||
=======
|
|
||||||
#### #26 Changes behaviour for "N" replacement
|
#### #26 Changes behaviour for "N" replacement
|
||||||
|
|
||||||
* in case the higher digits has already increased by minium 1 - don't set the "N" to the last value, but to "0"
|
* in case the higher digits has already increased by minium 1 - don't set the "N" to the last value, but to "0"
|
||||||
@@ -72,12 +70,9 @@ ____
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
#### #17 Direct InfluxDB connection
|
#### ~~#17 Direct InfluxDB connection~~
|
||||||
|
|
||||||
* https://github.com/jomjol/AI-on-the-edge-device/issues/534
|
* ~~Done in v10.6.0~~
|
||||||
* Direct interface to a InfluxDB data base
|
|
||||||
* Integrate InfluxDB interface in firmware
|
|
||||||
* Adapt html web page for configuration
|
|
||||||
|
|
||||||
|
|
||||||
#### #16 Serial Communication
|
#### #16 Serial Communication
|
||||||
|
|||||||
56
README.md
56
README.md
@@ -52,53 +52,27 @@ In other cases you can contact the developer via email: <img src="https://raw.gi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
##### Rolling (2022-07-16)
|
##### 10.6.0 - Stability Increase (2022-07-17)
|
||||||
|
|
||||||
- TFMicro/Lite: Update (espressif Version 20220716)
|
|
||||||
- Updated esp32cam (v20220716)
|
|
||||||
- Integrated new analog classificational CNN (from @haverland)
|
|
||||||
- Bugfix: Postprocessing
|
|
||||||
|
|
||||||
##### Rolling (2022-07-01)
|
|
||||||
|
|
||||||
- Updated analog neural network file (`ana1000s2.tflite`)
|
|
||||||
- Updated digital neural network file (`dig1400s2q.tflite`)
|
|
||||||
|
|
||||||
##### Rolling (2022-06-26)
|
|
||||||
|
|
||||||
- Internal update (Neural Network Algo)
|
|
||||||
|
|
||||||
Rolling (2022-06-18)
|
|
||||||
|
|
||||||
- Internal update (Neural Network Algo)
|
|
||||||
|
|
||||||
Rolling (2022-05-09)
|
|
||||||
|
|
||||||
- Bug Fix: absolute value always had value "0"
|
|
||||||
|
|
||||||
Rolling (2022-04-26)
|
|
||||||
|
|
||||||
- Extended MQTT with absolute Change (in addition to rate)
|
|
||||||
- Internal optimization, removal of modelfile from `config.ini` (is now read out of the cnn file directly)
|
|
||||||
|
|
||||||
- TFMicro/Lite: Update (espressif Version 20220417)
|
|
||||||
- ESP-IDF: Update to 4.3.0
|
|
||||||
|
|
||||||
Rolling (2022-04-17)
|
|
||||||
|
|
||||||
- Internal preparation for new neural network type (digits with subdigit values)
|
|
||||||
|
|
||||||
Rolling (2022-04-15)
|
|
||||||
|
|
||||||
- IndluxDB: direct injection into InfluxDB - thanks to **[wetneb](https://github.com/wetneb)**
|
- IndluxDB: direct injection into InfluxDB - thanks to **[wetneb](https://github.com/wetneb)**
|
||||||
|
|
||||||
Rolling (2022-03-22)
|
- MQTT: implemented "Retain Flag" and extend with absolute Change (in addition to rate)
|
||||||
|
|
||||||
- Bug Fix: no time with fixed IP
|
- `config.ini`: removal of modelsize (readout from tflite)
|
||||||
|
|
||||||
Rolling (2022-03-20)
|
- Updated analog neural network file (`ana1000s2.tflite`) & digital neural network file (`dig1400s2q.tflite`)
|
||||||
|
|
||||||
- MQTT: implemented "Retain Flag" - not tested in detail yet
|
- TFMicro/Lite: Update (espressif Version 20220716)
|
||||||
|
|
||||||
|
- Updated esp32cam (v20220716)
|
||||||
|
|
||||||
|
- ESP-IDF: Update to 4.4
|
||||||
|
|
||||||
|
- Internal update (CNN algorithm optimizations, reparation for new neural network type)
|
||||||
|
|
||||||
|
- Bug Fix: no time with fixed IP, Postprocessing, MQTT
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
##### 10.5.2 - Stability Increase (2022-02-22)
|
##### 10.5.2 - Stability Increase (2022-02-22)
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
const char* GIT_REV="0b039e8";
|
const char* GIT_REV="17fd0f9";
|
||||||
const char* GIT_TAG="";
|
const char* GIT_TAG="";
|
||||||
const char* GIT_BRANCH="espressif-latest";
|
const char* GIT_BRANCH="rolling";
|
||||||
const char* BUILD_TIME="2022-07-16 20:42";
|
const char* BUILD_TIME="2022-07-17 08:55";
|
||||||
@@ -13,7 +13,7 @@ extern "C"
|
|||||||
#include "Helper.h"
|
#include "Helper.h"
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
|
||||||
const char* GIT_BASE_BRANCH = "master - v10.5.2 - 2022-02-22";
|
const char* GIT_BASE_BRANCH = "master - v10.6.0 - 2022-07-17";
|
||||||
|
|
||||||
|
|
||||||
const char* git_base_branch(void)
|
const char* git_base_branch(void)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
const char* GIT_REV="0b039e8";
|
const char* GIT_REV="17fd0f9";
|
||||||
const char* GIT_TAG="";
|
const char* GIT_TAG="";
|
||||||
const char* GIT_BRANCH="espressif-latest";
|
const char* GIT_BRANCH="rolling";
|
||||||
const char* BUILD_TIME="2022-07-16 20:42";
|
const char* BUILD_TIME="2022-07-17 08:55";
|
||||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user