mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-06 19:46:54 +03:00
Bug-fixing
This commit is contained in:
@@ -42,6 +42,8 @@ If you would like to support the developer with a cup of coffee you can do that
|
|||||||
##### Rolling - (2021-01-01)
|
##### Rolling - (2021-01-01)
|
||||||
|
|
||||||
* Increased stability (internal image handling)
|
* Increased stability (internal image handling)
|
||||||
|
* Disabled `CheckDigitIncreaseConsistency` in default configuration - must now be explicit enabled if needed
|
||||||
|
* Bug fixing: `message`-directory was missing on SD card, html: minor bug in edit digital/analog
|
||||||
|
|
||||||
2020-12-31
|
2020-12-31
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
const char* GIT_REV="ce2f1bc";
|
const char* GIT_REV="8a06825";
|
||||||
const char* GIT_TAG="";
|
const char* GIT_TAG="";
|
||||||
const char* GIT_BRANCH="rolling";
|
const char* GIT_BRANCH="rolling";
|
||||||
const char* BUILD_TIME="2021-01-01 10:44";
|
const char* BUILD_TIME="2021-01-01 13:40";
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
const char* GIT_REV="ce2f1bc";
|
const char* GIT_REV="8a06825";
|
||||||
const char* GIT_TAG="";
|
const char* GIT_TAG="";
|
||||||
const char* GIT_BRANCH="rolling";
|
const char* GIT_BRANCH="rolling";
|
||||||
const char* BUILD_TIME="2021-01-01 10:44";
|
const char* BUILD_TIME="2021-01-01 13:40";
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -39,13 +39,13 @@ PreValueAgeStartup = 720
|
|||||||
AllowNegativeRates = false
|
AllowNegativeRates = false
|
||||||
MaxRateValue = 0.1
|
MaxRateValue = 0.1
|
||||||
ErrorMessage = true
|
ErrorMessage = true
|
||||||
CheckDigitIncreaseConsistency = true
|
CheckDigitIncreaseConsistency = false
|
||||||
|
|
||||||
[MQTT]
|
[MQTT]
|
||||||
Uri = mqtt://IP-ADRESS:1883
|
;Uri = mqtt://IP-ADRESS:1883
|
||||||
Topic = wasserzaehler/zaehlerstand
|
;Topic = wasserzaehler/zaehlerstand
|
||||||
TopicError = wasserzaehler/error
|
;TopicError = wasserzaehler/error
|
||||||
ClientID = wasser
|
;ClientID = wasser
|
||||||
;user = USERNAME
|
;user = USERNAME
|
||||||
;password = PASSWORD
|
;password = PASSWORD
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ function getbasepath(){
|
|||||||
var host = window.location.hostname;
|
var host = window.location.hostname;
|
||||||
if ((host == "127.0.0.1") || (host == "localhost"))
|
if ((host == "127.0.0.1") || (host == "localhost"))
|
||||||
{
|
{
|
||||||
host = "http://192.168.2.124"; // jomjol interner test
|
host = "http://192.168.2.118"; // jomjol interner test
|
||||||
// host = "http://192.168.178.26"; // jomjol interner test
|
// host = "http://192.168.178.26"; // jomjol interner test
|
||||||
// host = "http://192.168.178.22"; // jomjol interner Real
|
// host = "http://192.168.178.22"; // jomjol interner Real
|
||||||
// host = "."; // jomjol interner localhost
|
// host = "."; // jomjol interner localhost
|
||||||
|
|||||||
@@ -350,7 +350,7 @@ function GetReferenceSize(name){
|
|||||||
function ZerlegeZeile(input)
|
function ZerlegeZeile(input)
|
||||||
{
|
{
|
||||||
var Output = Array(0);
|
var Output = Array(0);
|
||||||
delimiter = " =,";
|
delimiter = " =,\r";
|
||||||
|
|
||||||
input = trim(input, delimiter);
|
input = trim(input, delimiter);
|
||||||
var pos = findDelimiterPos(input, delimiter);
|
var pos = findDelimiterPos(input, delimiter);
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
4.0.0
|
4.0.1
|
||||||
|
|||||||
0
sd-card/log/message/leer.txt
Normal file
0
sd-card/log/message/leer.txt
Normal file
@@ -4,9 +4,9 @@ hostname = "watermeter"
|
|||||||
;hostname is optional
|
;hostname is optional
|
||||||
|
|
||||||
;if you want to use a fixed IP you need to specify the following 3 parameters (ip, gateway, netmask) with IP4-Addresses "123.456.789.012"
|
;if you want to use a fixed IP you need to specify the following 3 parameters (ip, gateway, netmask) with IP4-Addresses "123.456.789.012"
|
||||||
ip = "IP4-ADDRESS"
|
;ip = "IP4-ADDRESS"
|
||||||
gateway = "IP4-ADDRESS"
|
;gateway = "IP4-ADDRESS"
|
||||||
netmask = "255.255.255.0"
|
;netmask = "255.255.255.0"
|
||||||
|
|
||||||
;in some cases you want to specify the DNS server as well (especially, if it is not identical to the gateway - this is optional for a fixed IP
|
;in some cases you want to specify the DNS server as well (especially, if it is not identical to the gateway - this is optional for a fixed IP
|
||||||
dns = "IP4-ADDRESS"
|
;dns = "IP4-ADDRESS"
|
||||||
Reference in New Issue
Block a user