rearrange the folder structure

This commit is contained in:
2021-05-10 15:40:01 +02:00
parent 455439f2a9
commit 4c2cdcb040
13 changed files with 7 additions and 7 deletions
View File
+20
View File
@@ -0,0 +1,20 @@
#ifndef AUTOPILOT_H
#define AUTOPILOT_H
#include <TinyGPS++.h>
#include "route.h"
#include "moveControl.h"
class Autopilot {
public:
Autopilot();
private:
Route *route;
MoveControl *moveControl;
TinyGPSPlus *gps;
};
#endif // AUTOPILOT_H
View File
View File