Finish documention until someone change something

This commit is contained in:
2022-02-15 20:12:50 +01:00
parent 3a2e51713b
commit c8e3344b27
50 changed files with 991 additions and 223 deletions
+14 -1
View File
@@ -14,11 +14,24 @@
#include <Ps3Controller.h>
/**
* @brief Baseclass to build DriveModi
*
* This class must be inherited by other classes which want to be
* act as a DriveModi, because the DriveModi structure uses polymorphism.
*/
class DriveModi {
public:
DriveModi(){}
virtual ~DriveModi(){}
/**
* @brief This function is called by the DriveManager
*
* All actions from a DriveMode have to called from
* this function or the PS3-Controller
*/
virtual void loop() = 0;
};
#endif // DRIVEMODI_H
#endif // DRIVEMODI_H