diff --git a/WimaDok/main.aux b/WimaDok/main.aux index e75917cffced9af573f253936f8a29ca9727458c..ff1e60033538954a61cabc269d6094f75c01b623 100644 --- a/WimaDok/main.aux +++ b/WimaDok/main.aux @@ -1,6 +1,8 @@ \relax \@writefile{toc}{\contentsline {section}{\numberline {1}Introduction}{1}} \@writefile{toc}{\contentsline {section}{\numberline {2}Documentation}{1}} -\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Structure of QGroundControl}{1}} -\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Detail view of the QQC window, which appears after start-up. Marked in red is the button for switching to the plan view window, green indicates the flight view button (current window) and marked in magenta is the button for switching to the WiMA main window.}}{2}} +\@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Structure of QGroundControl with WiMA-Extension}{1}} +\@writefile{lof}{\contentsline {figure}{\numberline {1}{\ignorespaces Detail view of the QGC window, which appears after start-up. Marked in red is the button for switching to the plan view window, green indicates the flight view button (current window) and marked in magenta is the button for switching to the WiMA main window.}}{2}} \newlabel{fig:QGCMainButtonExplain}{{1}{2}} +\@writefile{toc}{\contentsline {section}{\numberline {3}WiMA Main Window}{2}} +\@writefile{toc}{\contentsline {section}{\numberline {4}ArduPilot Simulator}{2}} diff --git a/WimaDok/main.pdf b/WimaDok/main.pdf index df52e3ced40abfe72477874b8004399046072e5f..99e11f9cc71da5fc13d4c663e319c9054ce41cf3 100644 Binary files a/WimaDok/main.pdf and b/WimaDok/main.pdf differ diff --git a/WimaDok/main.synctex.gz b/WimaDok/main.synctex.gz index fb424749f33fb1b4426d16a33256e9a99e5ccc34..3396f1902d99a8e43cb3cf2411844b098e16d330 100644 Binary files a/WimaDok/main.synctex.gz and b/WimaDok/main.synctex.gz differ diff --git a/WimaDok/main.tex b/WimaDok/main.tex index 41237f3eaa90625c8514b58627e5ca43638a203f..2e299765e3d819bd0ec8f92f3cbd8fe8490037bd 100644 --- a/WimaDok/main.tex +++ b/WimaDok/main.tex @@ -6,6 +6,11 @@ \usepackage[utf8]{inputenc} \usepackage{a4wide} \usepackage{multicol} +\usepackage{url} +\usepackage{xcolor} +\usepackage{framed} + +\definecolor{shadecolor}{rgb}{0.9,0.9,0.9} %opening \title{Documentation of the QGroundControl WiMA-Extension} @@ -15,7 +20,7 @@ \maketitle \section{Introduction} -Wima is a abbreviation for Wireless Measurement Application. +WiMA is a abbreviation for \textbf{Wi}reless \textbf{M}easurement \textbf{A}pplication. Dieses Dokument soll einerseits die Funktionen der WiMA-Erweiterung dokumentieren und andererseits den Leser dazu anregen Fehler im Programm zu finden. Das Dokument ist in zwei abschnitte unterteilt. Die eigentliche Dokumentation und Vorschläge welche Funktionen getestet werden sollen. Da die WiMA-Erweiterung noch weiterentwickelt wird, können die Funktionen und das Aussehen des Programms von der in dieser Dokumentation dargestellten Inhalten abweichen. Der Ordner deploy enthält eine unter Linux ausführbare Datei des Programms, mit dem nahmen "QGroundControl.AppImage". @@ -24,12 +29,49 @@ Der Ordner deploy enthält eine unter Linux ausführbare Datei des Programms, mi \subsection{Structure of QGroundControl with WiMA-Extension} Figure \ref{fig:QGCMainButtonExplain} shows a detail view of the QGC main window. Relevant for this documentation are the flight view, the plan view and the WiMA main window. Their function will now be briefly summarized. -The \textbf{plan view window} is -\begin{figure} +The \textbf{plan view window} is used to create flight plans. They can be stored as .plan files or directly be uploaded to a vehicle (either a real one or a simulated one). Flight plans consist of waypoints. Each waypoint stores, amongst others, a coordinate (latitude, longitude, altitude) and a command (take off, land, wait for x seconds, etc.). To define a sensible flight plan a sequence of waypoints should begin with a take off command and end with a land command. Besides waypoints more complex patterns can be defined, which is done by inserting a Survey, a Circular Survey, a Structure Scan or a Corridor Scan. Just try them out! Using the simulator can be very helpful. + +The \textbf{flight view window} comes in necessary as soon as you want a vehicle to get in action. Once the vehicle established a connection (serial, TCP, UDP, etc.) QGroundControl starts to communicate automatically with it automatically in most cases. If not, check the settings menu of QGroundControl. A red arrow will appear on the map showing the vehicles position and orientation. On the top indicator strip telemetry data will be published. At the left edge a tool strip will be activated, which can be used to command the vehicle. + +The \textbf{WiMA main window} is used to automatically generate flight paths on the base of minimal user input. The user can define a Measurement Area, a Service Area (for take off, land, supply tasks, etc.) and a Corridor, which connects the previos two areas. Below the WiMA main window will be described in more detail. + +\begin{figure}[h!] \includegraphics[width=\textwidth]{pics/QGCMainWindowCroppedRect} \centering - \caption{Detail view of the QQC window, which appears after start-up. Marked in red is the button for switching to the plan view window, green indicates the flight view button (current window) and marked in magenta is the button for switching to the WiMA main window.} + \caption{Detail view of the QGC window, which appears after start-up. Marked in red is the button for switching to the plan view window, green indicates the flight view button (current window) and marked in magenta is the button for switching to the WiMA main window.} \label{fig:QGCMainButtonExplain} \end{figure} + +\section{WiMA Main Window} +\section{ArduPilot Simulator} +For tasks like debugging, program verification or flight plan testing a simulated vehicle can be very useful. It can save time, money and prevent you from any excessive sunburns, if you forgot that you are actually outside, starring on your screen, exposed to the hot summer sun. + +For this task the ArduPilot simulator can be used. It simulates a vehicle runnig the ArduPilot flight stack (firmware) on your local machine. Data is beeing published by the simulator via UDP and should ideally connect to QGroundControl without any further tweaks. + +The simulator is part of the ArduPilot project, which can be downloaded from Github: \url{https://github.com/ArduPilot/ardupilot}. +It is recommanded to fork the repository. After cloning the repository, the submodules must be initialized and updated. Execute the following code to do this. +\begin{shaded*} + \begin{verbatim} + git clone https://github.com/ArduPilot/ardupilot + cd ardupilot + git submodule init + git submodule update + \end{verbatim} +\end{shaded*} +The simulator is launched by a Python script, thus Python must be installed on your machine. The simulator is now ready to run, it can be launched from your ArduPilot root directory with the following command. +\begin{shaded*} + \begin{verbatim} + ./Tools/autotest/sim_vehicle.py -v ArduCopter + \end{verbatim} + +\end{shaded*} +Thereby the \verb|-v| option specifies the vehicle type. The \verb|-l| option can be used to define a custom start location. See the \verb|sim_vehicle.py --help| option for further information. +After launching, the vehicle should appear inside QGC. + + + + + + \end{document} diff --git a/src/PlanView/CircularSurveyItemEditor.qml b/src/PlanView/CircularSurveyItemEditor.qml index 2f36ee910f4456bd2dad081336cd2dacd0aa7933..118674d9290a19e2017c67198882277f64cfa1a3 100644 --- a/src/PlanView/CircularSurveyItemEditor.qml +++ b/src/PlanView/CircularSurveyItemEditor.qml @@ -79,12 +79,12 @@ Rectangle { //onUpdated: rSlider.value = missionItem.deltaR.value } -// QGCLabel { text: qsTr("Delta R") } -// FactTextField { -// fact: missionItem.deltaR -// Layout.fillWidth: true -// //onUpdated: rSlider.value = missionItem.deltaR.value -// } + QGCLabel { text: qsTr("Delta R") } + FactTextField { + fact: missionItem.deltaR + Layout.fillWidth: true + //onUpdated: rSlider.value = missionItem.deltaR.value + } /*QGCSlider { id: rSlider