From 4fbfb0011416585bcba939ae07c5f1080b80bb51 Mon Sep 17 00:00:00 2001 From: simonox Date: Tue, 20 Dec 2022 17:29:01 +0100 Subject: [PATCH] added missing value --- first-webserver/first-webserver.ino | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/first-webserver/first-webserver.ino b/first-webserver/first-webserver.ino index 6c0e944..f02faf6 100644 --- a/first-webserver/first-webserver.ino +++ b/first-webserver/first-webserver.ino @@ -102,7 +102,10 @@ void loop(){ client.println("

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

"); - client.println("

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

Humidity: "); + client.println(humi); + client.println(" %

"); + client.println("

Soil moisture value: "); client.println(soil); client.println("

"); client.println("");