Added consolControl & PID

This commit is contained in:
2021-07-26 20:19:33 +02:00
parent 70f6566365
commit 084c046e8c
9 changed files with 202 additions and 153 deletions
+24
View File
@@ -0,0 +1,24 @@
#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;
PID *left_pid;
PID *right_pid;
};
#endif // CONSOL_CONTROL_H