From 71e27fd06a15f8d6765546903267ce963477e05f Mon Sep 17 00:00:00 2001 From: Michael Clemens // DK1MI Date: Tue, 30 May 2023 21:12:32 +0000 Subject: [PATCH] =?UTF-8?q?=E2=80=9Ewt32pamon.ino=E2=80=9C=20=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- wt32pamon.ino | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/wt32pamon.ino b/wt32pamon.ino index c11e64b..914e819 100644 --- a/wt32pamon.ino +++ b/wt32pamon.ino @@ -28,7 +28,7 @@ #include "FS.h" #include "SPIFFS.h" -String version = "0.9.2"; +String version = "0.9.3"; Preferences config; Preferences global_config; @@ -388,7 +388,8 @@ void handleDATA() { output += String(ref_oob) + ";"; // data[16]: Is the REF voltage out of bounds? (true/false) output += config.getString(String("b_show_led_fwd").c_str()) + ";"; // data[17]: Show the FWD LED bar graph? (true/false) output += config.getString(String("b_show_led_ref").c_str()) + ";"; // data[18]: Show the REF LED bar graph? (true/false) - output += config.getString(String("b_show_led_vswr").c_str()); // data[19]: Show the VSWR LED bar graph? (true/false) + output += config.getString(String("b_show_led_vswr").c_str()) + ";"; // data[19]: Show the VSWR LED bar graph? (true/false) + output += version; // data[20]: program version server.send(200, "text/plane", output); } @@ -431,7 +432,7 @@ void handleCONFIG() { conf_content += conf_config_table; conf_content += ""; conf_content += "
"; - conf_content += "
- Version: " + version+ "
"; + conf_content += "
- Version: " + version + "
"; conf_content += "
"; conf_content += ""; conf_content += "";