feat: création classe abstraite capteur

This commit is contained in:
2023-05-02 10:40:02 +02:00
parent 17b344732f
commit 4cafc40d61
2 changed files with 82 additions and 0 deletions

View File

@ -0,0 +1,17 @@
#include "../include/Capteur.h"
Capteur::Capteur(String type, String fullVall){
this->type = type;
this->fullVall = fullVall;
}
bool Capteur::tar(int val){
return true;
}
bool Capteur::isFull(){
return this->full;
}