diff --git a/README.md b/README.md
index d5788fff..b6023e58 100644
--- a/README.md
+++ b/README.md
@@ -41,6 +41,11 @@ If you would like to support the developer with a cup of coffee you can do that
+##### Rolling - (2021-03-21)
+
+* Bug fixing in `html.zip`
+* based on v6.4.0
+
##### 6.4.0 Image Processing in Memory - (2021-03-20)
* Additional alignment marks for settings the ROIs (analog and digit)
diff --git a/firmware/html.zip b/firmware/html.zip
index 571419e4..51092955 100644
Binary files a/firmware/html.zip and b/firmware/html.zip differ
diff --git a/sd-card/html/edit_config_param.html b/sd-card/html/edit_config_param.html
index c9d2c43c..4a501ca0 100644
--- a/sd-card/html/edit_config_param.html
+++ b/sd-card/html/edit_config_param.html
@@ -61,7 +61,7 @@ textarea {
-
+
LogImageLocation
@@ -75,7 +75,7 @@ textarea {
-
+
LogfileRetentionInDays
@@ -223,7 +223,7 @@ textarea {
-
+
AlignmentAlgo
@@ -260,7 +260,7 @@ textarea {
-
+
LogImageLocation
@@ -274,7 +274,7 @@ textarea {
-
+
LogfileRetentionInDays
@@ -313,7 +313,7 @@ textarea {
-
+
LogImageLocation
@@ -321,7 +321,7 @@ textarea {
-
+
LogfileRetentionInDays
@@ -330,7 +330,7 @@ textarea {
-
+
ExtendedResolution
@@ -364,7 +364,7 @@ textarea {
-
+
DecimalShift
@@ -378,7 +378,7 @@ textarea {
-
+
PreValueUse
@@ -395,7 +395,7 @@ textarea {
-
+
PreValueAgeStartup
@@ -409,7 +409,7 @@ textarea {
-
+
AllowNegativeRates
@@ -426,7 +426,7 @@ textarea {
-
+
MaxRateValue
@@ -440,7 +440,7 @@ textarea {
-
+
ErrorMessage
@@ -457,7 +457,7 @@ textarea {
-
+
CheckDigitIncreaseConsistency
@@ -478,7 +478,7 @@ textarea {
-
+
Uri
@@ -492,7 +492,7 @@ textarea {
-
+
Topic
@@ -506,7 +506,7 @@ textarea {
-
+
TopicError
@@ -520,7 +520,7 @@ textarea {
-
+
ClientID
@@ -534,7 +534,7 @@ textarea {
-
+
user
@@ -548,7 +548,7 @@ textarea {
-
+
password
@@ -566,7 +566,6 @@ textarea {
-
AutoStart
@@ -583,7 +582,6 @@ textarea {
-
Intervall
@@ -601,7 +599,7 @@ textarea {
-
+
Logfile
@@ -618,7 +616,7 @@ textarea {
-
+
LogfileRetentionInDays
@@ -636,7 +634,7 @@ textarea {
-
+
TimeZone
@@ -650,7 +648,7 @@ textarea {
-
+
TimeServer
@@ -664,7 +662,7 @@ textarea {
-
+
Hostname
@@ -768,6 +766,33 @@ function WriteParameter(_param, _category, _cat, _name, _optional, _select = fal
EnDisableItem(_category[_cat]["enabled"], _param, _category, _cat, _name, _optional);
}
+function InvertEnableItem(_cat, _param)
+{
+ _zw = _cat + "_" + _param + "_enabled";
+ _isOn = document.getElementById(_zw).checked;
+
+ _color = "color:lightgrey;";
+ if (_isOn) {
+ _color = "color:black;";
+ }
+
+ _zw = _cat + "_" + _param + "_text";
+ document.getElementById(_zw).disabled = !_isOn;
+ document.getElementById(_zw).style = _color;
+
+ if (param[_cat][_param]["anzParam"] == 2) {
+ _color = "width: 30px;" + _color;
+ }
+
+ for (var j = 1; j <= param[_cat][_param]["anzParam"]; ++j) {
+ document.getElementById(_cat+"_"+_param+"_value"+j).disabled = !_isOn;
+ document.getElementById(_cat+"_"+_param+"_value"+j).style=_color;
+ }
+
+
+
+}
+
function EnDisableItem(_status, _param, _category, _cat, _name, _optional)
{
_status = _param[_cat][_name]["found"] && _category[_cat]["enabled"];
@@ -864,8 +889,8 @@ function UpdateInput() {
WriteParameter(param, category, "MQTT", "user", true);
WriteParameter(param, category, "MQTT", "password", true);
- WriteParameter(param, category, "AutoTimer", "AutoStart", true, true);
- WriteParameter(param, category, "AutoTimer", "Intervall", true);
+ WriteParameter(param, category, "AutoTimer", "AutoStart", false, true);
+ WriteParameter(param, category, "AutoTimer", "Intervall", false);
WriteParameter(param, category, "Debug", "Logfile", true, true);
WriteParameter(param, category, "Debug", "LogfileRetentionInDays", true);
@@ -921,8 +946,8 @@ function ReadParameterAll()
ReadParameter(param, "MQTT", "user", true);
ReadParameter(param, "MQTT", "password", true);
- ReadParameter(param, "AutoTimer", "AutoStart", true, true);
- ReadParameter(param, "AutoTimer", "Intervall", true);
+ ReadParameter(param, "AutoTimer", "AutoStart", false, true);
+ ReadParameter(param, "AutoTimer", "Intervall", false);
ReadParameter(param, "Debug", "Logfile", true, true);
ReadParameter(param, "Debug", "LogfileRetentionInDays", true);
diff --git a/sd-card/html/gethost.js b/sd-card/html/gethost.js
index 40a7c87a..a3e80ee6 100644
--- a/sd-card/html/gethost.js
+++ b/sd-card/html/gethost.js
@@ -9,7 +9,7 @@ function getbasepath(){
{
// host = "http://192.168.2.118"; // 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.26"; // jomjol interner Real
// host = "."; // jomjol interner localhost
}
diff --git a/sd-card/html/version.txt b/sd-card/html/version.txt
index 19b860c1..4c77920f 100644
--- a/sd-card/html/version.txt
+++ b/sd-card/html/version.txt
@@ -1 +1 @@
-6.4.0
+6.4.1