mirror of
https://codeberg.org/mclemens/wt32powermeter.git
synced 2025-01-03 07:56:45 -05:00
„wt32pamon.ino“ ändern
This commit is contained in:
parent
4cd4fc6893
commit
71e27fd06a
@ -28,7 +28,7 @@
|
|||||||
#include "FS.h"
|
#include "FS.h"
|
||||||
#include "SPIFFS.h"
|
#include "SPIFFS.h"
|
||||||
|
|
||||||
String version = "0.9.2";
|
String version = "0.9.3";
|
||||||
|
|
||||||
Preferences config;
|
Preferences config;
|
||||||
Preferences global_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 += 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_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_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);
|
server.send(200, "text/plane", output);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user