refactor, added akku menu, finished autopilot menu
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
/**
|
||||
* @file menuDriveMode.h
|
||||
* @author Alexander Klein (alex@kleiax.de)
|
||||
* @brief
|
||||
* @version 0.1
|
||||
* @date 2022-01-31
|
||||
*
|
||||
* @copyright Copyright (c) 2022
|
||||
*
|
||||
*/
|
||||
#ifndef MENU_DRIVE_MODI_H
|
||||
#define MENU_DRIVE_MODI_H
|
||||
|
||||
#include "menuControl.h"
|
||||
#include "driveModi/driveManager.h"
|
||||
|
||||
class MenuDriveMode : public MenuControl {
|
||||
public:
|
||||
MenuDriveMode(DriveManager* driveManager);
|
||||
|
||||
void down(){}
|
||||
void up(){}
|
||||
void right(){}
|
||||
void left();
|
||||
void no();
|
||||
void yes(){}
|
||||
|
||||
virtual void printMenu() = 0;
|
||||
void update(){}
|
||||
|
||||
protected:
|
||||
DriveManager* driveManager;
|
||||
bool firstPrint = true;
|
||||
};
|
||||
|
||||
#endif // MENU_DRIVE_MODI_H
|
||||
Reference in New Issue
Block a user