This commit is contained in:
jomjol
2022-08-13 14:20:40 +02:00
parent 9695dba415
commit bfe8d3b37a
28 changed files with 1054 additions and 162 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -21,7 +21,8 @@ FlipImageSize = false
/config/ref1.jpg 442 142
[Digits]
Model = /config/dig1400s2q.tflite
Model = /config/dig-class11_1411_s2_q.tflite
CNNGoodThreshold = 0.5
;LogImageLocation = /log/digit
;LogfileRetentionInDays = 3
main.dig1 294 126 30 54
@@ -29,7 +30,8 @@ main.dig2 343 126 30 54
main.dig3 391 126 30 54
[Analog]
Model = /config/ana1000s2.tflite
Model = /config/ana-cont_1101_s2_q.tflite
CNNGoodThreshold = 0.5
;LogImageLocation = /log/analog
;LogfileRetentionInDays = 3
ExtendedResolution = true
@@ -56,6 +58,14 @@ CheckDigitIncreaseConsistency = false
;ClientID = wasser
;user = USERNAME
;password = PASSWORD
;SetRetainFlag = true
;[InfluxDB]
;Uri = undefined
;Database =
;Measurement = undefined
;user = undefined
;password = undefined
;[GPIO]
;MainTopicMQTT = wasserzaehler/GPIO

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -1866,6 +1866,7 @@ function UpdateInput() {
document.getElementById("Category_Digits_enabled").checked = category["Digits"]["enabled"];
document.getElementById("Category_MQTT_enabled").checked = category["MQTT"]["enabled"];
document.getElementById("Category_GPIO_enabled").checked = category["GPIO"]["enabled"];
document.getElementById("Category_InfluxDB_enabled").checked = category["InfluxDB"]["enabled"];
setVisible("GPIO_item", category["GPIO"]["enabled"]);
WriteParameter(param, category, "MakeImage", "LogImageLocation", true);
@@ -2058,6 +2059,9 @@ function UpdateAfterCategoryCheck() {
category["Analog"]["enabled"] = document.getElementById("Category_Analog_enabled").checked;
category["Digits"]["enabled"] = document.getElementById("Category_Digits_enabled").checked;
category["MQTT"]["enabled"] = document.getElementById("Category_MQTT_enabled").checked;
category["InfluxDB"]["enabled"] = document.getElementById("Category_InfluxDB_enabled").checked;
category["GPIO"]["enabled"] = document.getElementById("Category_GPIO_enabled").checked;
UpdateInput();
UpdateInputIndividual();
}

View File

@@ -1 +1 @@
14.2.2
14.3.0