mirror of
https://github.com/azaion/autopilot.git
synced 2026-04-22 21:46:33 +00:00
2b9bda1ff0
Fixed issue with target altitude calculation.
15 lines
168 B
C++
15 lines
168 B
C++
#pragma once
|
|
|
|
#include <QObject>
|
|
|
|
class LocalControl : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
LocalControl(QObject *parent = nullptr);
|
|
|
|
private:
|
|
void run();
|
|
};
|