From b533cd8d83f77fad934858c746fdce4735375cbf Mon Sep 17 00:00:00 2001 From: Joe Tretter Date: Sat, 1 Oct 2022 06:02:16 -0500 Subject: [PATCH] Change the web output to show the freq. in H1 --- src/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index dc4bb40..5e84f0b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -63,10 +63,10 @@ void setup(void) { server.on("/", HTTP_GET, [](AsyncWebServerRequest* request) { request->send( 200, "text/html", - "Hi! This is the Wine-Sensor. Last bubble frequency: every " + - String(bubbleFreqSec) + " Seconds. [" + String(millis()) + "/" + - String(lastMillis) + "/" + String(isBubbleFirstContact) + "/" + - String(bVal) + + "Hi! This is the Wine-Sensor. Last bubble frequency: every

" + + String(bubbleFreqSec) + "

Seconds. [" + String(millis()) + + "/" + String(lastMillis) + "/" + String(isBubbleFirstContact) + + "/" + String(bVal) + "]" "");