Files
autopilot/misc/camera/a8/localControl.hpp
T
Nffj84 2b9bda1ff0 Added new target location algorithm.
Fixed issue with target altitude calculation.
2024-07-16 18:15:10 +03:00

15 lines
168 B
C++

#pragma once
#include <QObject>
class LocalControl : public QObject
{
Q_OBJECT
public:
LocalControl(QObject *parent = nullptr);
private:
void run();
};