Skip to content
Snippets Groups Projects
Commit 3dca24a1 authored by Manon MALIQUE's avatar Manon MALIQUE
Browse files

Correcting bugs

parent bd15c8b0
Branches
No related tags found
No related merge requests found
...@@ -96,7 +96,7 @@ class airquality : public base { ...@@ -96,7 +96,7 @@ class airquality : public base {
/* /*
* protected methods * protected methods
*/ */
float calibrate(uint8_t _sensor) override; float calibrate(uint8_t _sensor);
}; };
......
...@@ -103,12 +103,6 @@ class base { ...@@ -103,12 +103,6 @@ class base {
// analog value need to get sent // analog value need to get sent
boolean _trigger; boolean _trigger;
//Manon
/*
* public virtual functions
*/
virtual float calibrate(uint8_t _sensor) = 0;
private: private:
/* /*
* private methods * private methods
......
...@@ -97,7 +97,7 @@ class humidity : public base { ...@@ -97,7 +97,7 @@ class humidity : public base {
/* /*
* protected methods * protected methods
*/ */
float calibrate(uint8_t _sensor) override; float calibrate(uint8_t _sensor);
}; };
......
...@@ -100,7 +100,7 @@ class luminosity : public base { ...@@ -100,7 +100,7 @@ class luminosity : public base {
/* /*
* protected methods * protected methods
*/ */
float calibrate(uint8_t _sensor) override; float calibrate(uint8_t _sensor);
}; };
......
...@@ -101,7 +101,7 @@ class temperature : public base { ...@@ -101,7 +101,7 @@ class temperature : public base {
/* /*
* protected methods * protected methods
*/ */
float calibrate(uint8_t _sensor) override; float calibrate(uint8_t _sensor);
}; };
#endif /* _TEMPERATURE_H_ */ #endif /* _TEMPERATURE_H_ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment