From f6c461a96e4911a2008a64c6c0a5d3b8490e483a Mon Sep 17 00:00:00 2001 From: simonox Date: Tue, 20 Dec 2022 17:15:12 +0100 Subject: [PATCH] made it nicer --- first-webserver/first-webserver.ino | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/first-webserver/first-webserver.ino b/first-webserver/first-webserver.ino index d12dcc5..6c0e944 100644 --- a/first-webserver/first-webserver.ino +++ b/first-webserver/first-webserver.ino @@ -96,13 +96,13 @@ void loop(){ client.println(".button2 {background-color: #555555;}"); // Web Page Heading - client.println("

ESP32

"); - + client.println("

Pflanzensensor

"); + client.println("
"); // Display current state, and ON/OFF buttons for GPIO 26 - client.println("

Temperature "); + client.println("

Temperature: "); client.println(tempC); client.println("°C

"); - client.println("

Moisture value "); + client.println("

Moisture value: "); client.println(soil); client.println("

"); client.println("");