Files
Bachelorarbeit-Rover/src/driveModi/consolControl.h
T
2021-11-08 11:23:51 +01:00

21 lines
358 B
C++

#ifndef CONSOL_CONTROL_H
#define CONSOL_CONTROL_H
#include "moveControl.h"
#include "debugMqtt.h"
class ConsolControl {
public:
ConsolControl();
void init(MoveControl *moveControl);
void run();
private:
void printManual();
MoveControl *moveControl;
DebugMqtt *debug;
};
#endif // CONSOL_CONTROL_H