allow configure query interval via web server

This commit is contained in:
technyon
2022-03-27 12:15:09 +02:00
parent ba864e0b67
commit a8ce3fc44c
7 changed files with 80 additions and 48 deletions

View File

@@ -5,8 +5,10 @@
enum class TokenType
{
NONE,
MQTT_SERVER,
None,
MqttServer,
QueryIntervalLockstate,
QueryIntervalBattery,
};
class WebCfgServer
@@ -21,6 +23,7 @@ public:
private:
void serveHtml(WiFiClient& client);
TokenType getParameterType(char*& token);
WiFiServer _wifiServer;