diff --git a/vulpes/src/main.cpp b/vulpes/src/main.cpp index 09210a8..9c2b0f4 100644 --- a/vulpes/src/main.cpp +++ b/vulpes/src/main.cpp @@ -44,6 +44,7 @@ const char* PARAM_WPM = "inputWPM"; const char* PARAM_MSG = "inputMsg"; const char* PARAM_FLOAT = "inputFloat"; const char* PARAM_TIME = "inputTimeUnix"; +const char* PARAM_START = "inputStartTimeUnix"; // Global variables String yourInputString; @@ -53,6 +54,7 @@ int yourInputMsg; int yourInputMsg_old; // to save previous state and check changes float yourInputFloat; uint32_t yourInputTime; //to keep time +uint32_t yourInputStartTimeUnix; // HTML web page to handle 3 input fields (inputString, inputSend, inputFloat) const char index_html[] PROGMEM = R"rawliteral( @@ -65,8 +67,7 @@ const char index_html[] PROGMEM = R"rawliteral( };
+