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
2 changed files with 7 additions and 0 deletions
Showing only changes of commit db3ce5025b - Show all commits

View File

@ -39,6 +39,8 @@ virtual String read() = 0;
*/
bool isFull();
String getValType();
protected:
/**

View File

@ -15,3 +15,8 @@ bool Capteur::tar(int val){
bool Capteur::isFull(){
return this->full;
}
String Capteur::getValType(){
return this->type;
}