21 lines
358 B
C++
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
|