From c89b6d14799414e968dbf55bdc7f6bbe978bb78a Mon Sep 17 00:00:00 2001 From: Clement Date: Tue, 2 May 2023 13:45:05 +0200 Subject: [PATCH] typo: ";" --- IOT/lib/Capteur/src/HumiTemp.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IOT/lib/Capteur/src/HumiTemp.cpp b/IOT/lib/Capteur/src/HumiTemp.cpp index 65e0ac3..9ddc11c 100644 --- a/IOT/lib/Capteur/src/HumiTemp.cpp +++ b/IOT/lib/Capteur/src/HumiTemp.cpp @@ -14,9 +14,9 @@ String HumiTemp::read(){ //valeur pour un élevage d'astico de pèche selon chatGPT if((temp > 20 && temp < 30) && (hum > 60 && hum < 80)){ - this->full = true + this->full = true; }else{ - this->full = false + this->full = false; } sortie += String(hum);