feat: création classe abstraite capteur #44

Merged
Clement merged 37 commits from refactor/class-abstraite-capteur into master 2023-05-13 10:58:51 +00:00
Showing only changes of commit c89b6d1479 - Show all commits

View File

@ -14,9 +14,9 @@ String HumiTemp::read(){
//valeur pour un élevage d'astico de pèche selon chatGPT //valeur pour un élevage d'astico de pèche selon chatGPT
if((temp > 20 && temp < 30) && (hum > 60 && hum < 80)){ if((temp > 20 && temp < 30) && (hum > 60 && hum < 80)){
this->full = true this->full = true;
}else{ }else{
this->full = false this->full = false;
} }
sortie += String(hum); sortie += String(hum);