mirror of
https://github.com/OSURoboticsClub/Rover_2017_2018.git
synced 2025-11-08 10:11:14 +00:00
Added rough draft of my tech review
This commit is contained in:
6347
cs_capstone_documents/tech_review/perrenc/IEEEtran.cls
Normal file
6347
cs_capstone_documents/tech_review/perrenc/IEEEtran.cls
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,5 @@
|
||||
@online{
|
||||
test,
|
||||
title="This is a test",
|
||||
author="Test"
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 13 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 45 KiB |
8802
cs_capstone_documents/tech_review/perrenc/latexmk.pl
Normal file
8802
cs_capstone_documents/tech_review/perrenc/latexmk.pl
Normal file
File diff suppressed because it is too large
Load Diff
31
cs_capstone_documents/tech_review/perrenc/latexmkrc
Normal file
31
cs_capstone_documents/tech_review/perrenc/latexmkrc
Normal file
@@ -0,0 +1,31 @@
|
||||
# This config is copied from overleaf so output there will match compiled output here
|
||||
|
||||
# support for the glossaries package:
|
||||
add_cus_dep('glo', 'gls', 0, 'makeglossaries');
|
||||
add_cus_dep('acn', 'acr', 0, 'makeglossaries');
|
||||
sub makeglossaries {
|
||||
system("makeglossaries \"$_[0]\"");
|
||||
}
|
||||
|
||||
# support for the nomencl package:
|
||||
add_cus_dep('nlo', 'nls', 0, 'makenlo2nls');
|
||||
sub makenlo2nls {
|
||||
system("makeindex -s nomencl.ist -o \"$_[0].nls\" \"$_[0].nlo\"");
|
||||
}
|
||||
|
||||
# from the documentation for V. 2.03 of asymptote:
|
||||
sub asy {return system("asy \"$_[0]\"");}
|
||||
add_cus_dep("asy","eps",0,"asy");
|
||||
add_cus_dep("asy","pdf",0,"asy");
|
||||
add_cus_dep("asy","tex",0,"asy");
|
||||
|
||||
# metapost rule from http://tex.stackexchange.com/questions/37134
|
||||
add_cus_dep('mp', '1', 0, 'mpost');
|
||||
sub mpost {
|
||||
my $file = $_[0];
|
||||
my ($name, $path) = fileparse($file);
|
||||
pushd($path);
|
||||
my $return = system "mpost $name";
|
||||
popd();
|
||||
return $return;
|
||||
}
|
||||
18
cs_capstone_documents/tech_review/perrenc/makefile
Normal file
18
cs_capstone_documents/tech_review/perrenc/makefile
Normal file
@@ -0,0 +1,18 @@
|
||||
# Makefile created by Corwin Perren
|
||||
# Generic makefile for all LaTeX projects downloaded from overleaf
|
||||
#
|
||||
# All this makefile does is call perl against latexmkrc, which is
|
||||
# the latex equivalent of make
|
||||
|
||||
LATEXMK_COMPILE_FLAGS = -pdf
|
||||
LATEXMK_CLEAN_FLAGS = -c
|
||||
|
||||
.DEFAULT_GOAL := all
|
||||
|
||||
all: latexmk_output clean
|
||||
|
||||
latexmk_output:
|
||||
perl latexmk.pl $(LATEXMK_COMPILE_FLAGS)
|
||||
|
||||
clean:
|
||||
perl latexmk.pl $(LATEXMK_CLEAN_FLAGS)
|
||||
319
cs_capstone_documents/tech_review/perrenc/tech_review.tex
Normal file
319
cs_capstone_documents/tech_review/perrenc/tech_review.tex
Normal file
@@ -0,0 +1,319 @@
|
||||
\documentclass[onecolumn, draftclsnofoot, 10pt, compsoc]{IEEEtran}
|
||||
\usepackage{graphicx}
|
||||
\graphicspath{{./figures/}}
|
||||
|
||||
\usepackage{url}
|
||||
\usepackage{setspace}
|
||||
\usepackage{multicol}
|
||||
|
||||
\usepackage{geometry}
|
||||
\geometry{textheight=9.5in, textwidth=7in}
|
||||
|
||||
\usepackage[style=ieee]{biblatex}
|
||||
\addbibresource{bibliography.bib}
|
||||
|
||||
|
||||
% \overfullrule=2in
|
||||
|
||||
% 1. Fill in these details
|
||||
\def \CapstoneTeamName{ Ground Station Software Team}
|
||||
\def \CapstoneTeamNumber{ 30}
|
||||
\def \GroupMemberOne{ }
|
||||
\def \GroupMemberTwo{ }
|
||||
\def \GroupMemberThree{ Corwin Perren}
|
||||
\def \CapstoneProjectName{ OSU Robotics Club\\Mars Rover Ground Station}
|
||||
\def \CapstoneSponsorCompany{ OSU Robotics Club}
|
||||
\def \CapstoneSponsorPerson{ Nick McComb}
|
||||
|
||||
% 2. Uncomment the appropriate line below so that the document type works
|
||||
\def \DocType{ %Problem Statement
|
||||
%Requirements Document
|
||||
Technology Review
|
||||
%Design Document
|
||||
%Progress Report
|
||||
}
|
||||
|
||||
\newcommand{\NameSigPair}[1]{
|
||||
\par
|
||||
\makebox[2.75in][r]{#1}
|
||||
\hfill
|
||||
\makebox[3.25in]{
|
||||
\makebox[2.25in]{\hrulefill}
|
||||
\hfill
|
||||
\makebox[.75in]{\hrulefill}
|
||||
}
|
||||
\par\vspace{-12pt}
|
||||
\textit{
|
||||
\tiny\noindent
|
||||
\makebox[2.75in]{}
|
||||
\hfill
|
||||
\makebox[3.25in]{
|
||||
\makebox[2.25in][r]{Signature}
|
||||
\hfill
|
||||
\makebox[.75in][r]{Date}
|
||||
}
|
||||
}
|
||||
}
|
||||
% 3. If the document is not to be signed, uncomment the command below
|
||||
\renewcommand{\NameSigPair}[1]{#1}
|
||||
|
||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||
\begin{document}
|
||||
\begin{titlepage}
|
||||
\pagenumbering{gobble}
|
||||
\begin{singlespace}
|
||||
% 4. If you have a logo, use this includegraphics command to put it on the coversheet.
|
||||
\begin{minipage}{7in}
|
||||
\centering
|
||||
\hspace*{-.7in}
|
||||
$\vcenter{\hbox{\includegraphics[height=4cm]{Oregon_State_College_of_Engineering_Logo}}}$
|
||||
\hspace*{.2in}
|
||||
$\vcenter{\hbox{\includegraphics[height=2.5cm]{OSURCLogoOrange}}}$
|
||||
\end{minipage}
|
||||
|
||||
\par\vspace{.35in}
|
||||
\centering
|
||||
\scshape{
|
||||
\huge CS Capstone \DocType \par
|
||||
{\large\today}\par
|
||||
\vspace{.5in}
|
||||
\textbf{\Huge\CapstoneProjectName}\par
|
||||
\vfill
|
||||
{\large Prepared for}\par
|
||||
\Huge \CapstoneSponsorCompany\par
|
||||
\vspace{5pt}
|
||||
{\Large\NameSigPair{\CapstoneSponsorPerson}\par}
|
||||
{\large Prepared by }\par
|
||||
%Group\CapstoneTeamNumber\par
|
||||
% 5. comment out the line below this one if you do not wish to name your team
|
||||
%\CapstoneTeamName\par
|
||||
\vspace{5pt}
|
||||
{\Large
|
||||
\NameSigPair{\GroupMemberOne}\par
|
||||
\NameSigPair{\GroupMemberTwo}\par
|
||||
\NameSigPair{\GroupMemberThree}\par
|
||||
}
|
||||
\vspace{20pt}
|
||||
\begin{abstract}
|
||||
% 6. Fill in your abstract
|
||||
This document will cover my personal team role in developing the OSU Robotics Club's Mars Rover Ground station software.
|
||||
Additionally, it will cover different options for robotics frameworks, radio systems, and joysticks that the Rover team and specifically the Ground Station software team may end up using to complete our software package.
|
||||
\end{abstract}
|
||||
}
|
||||
\end{singlespace}
|
||||
\end{titlepage}
|
||||
\newpage
|
||||
\pagenumbering{arabic}
|
||||
\tableofcontents
|
||||
\clearpage
|
||||
% My stuff here
|
||||
\section{Personal Role}
|
||||
My role in on the Mars Rover Ground Station team will primarily be as a programmer writing code to interface with the team's Mars Rover.
|
||||
As part of this interfacing, the software I help write will allow for remote control of the Rover, the showing of video streams broadcast from the Rover, and the showing of Rover status and mapping information.
|
||||
An additional role I will have will be as a bridge between the rest of our capstone team and the Mars Rover group, as needed.
|
||||
In the past, I've both been a member of the Mars Rover team and the electrical team lead, so my knowledge of the competition as well as those in charge of the Rover team will help facilitate easy communication.
|
||||
\section{Goals}
|
||||
The goals of the rest of this document are to cover three separate technological aspects of the Mars Rover Ground Station that have multiple viable solutions. Evaluation of three of these options will then culminate in choosing one of one to be used on the Ground Station.
|
||||
These first technology to be looked at will be the robotics framework the software will be interfacing with. As the Mars Rover is a complicated robot, choosing the right option here will affect how difficult it will be to interface with the Rover systems.
|
||||
The second technology will cover the radio system options the Ground Station could use to communicate to and from the Rover. Selection of this system will determine how much and how fast data can be transmitted between the Ground Station and Rover, both of which are major factors in how usable the Rover is during competition.
|
||||
The final technology will be the options for USB joysticks that are what will be used to drive the Rover remotely using this Ground Station software.
|
||||
|
||||
% Robotics Frameworks
|
||||
\section{Robotics Frameworks}
|
||||
\subsection{Overview}
|
||||
When working with large robotic systems there are often many sensors, actuators, computers, and cameras that all need to work in unison to make the platform perform its desired task.
|
||||
In order to facilitate this intercommunication most robots use off the shelf robotics frameworks so that programmers can focus on implementing higher level features. The result is that less time is spent on lower leveling coding for things like sending messages between robot system nodes and more time can be spend implementing features such as obstacle avoidance.
|
||||
As the Mars Rover Ground Station software is interfacing with a complicated robot, it is definitely important to consider different options for these frameworks to choose the one best suited to the project.
|
||||
|
||||
\subsection{Criteria}
|
||||
\begin{itemize}
|
||||
\item \textit{Feature Coverage}: Ideally the framework should take care of as many lower level tasks as possible including, but not limited to, inter-node communications, simplified computer vision, localization, motion-planning, and built-in simulators.
|
||||
\item \textit{Hardware Compatibility}: The framework would preferably have pre-built nodes/libraries/drivers for common hardware like GPS and cameras.
|
||||
\item \textit{Documentation}: In order to facilitate rapid development, ample and well-maintained documentation is a must.
|
||||
\item \textit{Community / Resource Availability}: To supplement official documentation, the framework should have a well-developed community to allow for easy answering of framework programming questions when encountered as well as example code when needed.
|
||||
\item \textit{Development Time}: Due to the limited time constraints, the framework used should allow for fast development of the software.
|
||||
This component will take into account all the previous criteria.
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Potential Options}
|
||||
\subsubsection{Custom Framework}
|
||||
This option involves writing a framework from scratch in-house.
|
||||
Due to its popularity within the Mars Rover team, Python would most likely be used as the language of choice to develop such a system.
|
||||
A custom framework would have to incorporate writing nodes for handling GPS localization, camera processing, computer-vision based obstacle avoidance, drive system control, arm system control, and many others with little to no starting code.
|
||||
And important aspect of this system, with respect to the ground control software, is that a custom system would need specialty sending and receiving nodes for handling transmission of control, status, and video data.
|
||||
|
||||
\begin{itemize}
|
||||
\item \textit{Feature Coverage}: Complete coverage is possible.
|
||||
\item \textit{Hardware Compatibility}: Complete hardware support is possible.
|
||||
\item \textit{Documentation}: Only pre-made documentation for libraries is available.
|
||||
\item \textit{Community / Resource Availability}: Reliant on availability for any libraries used.
|
||||
\item \textit{Development Time}: Development will take an incredibly long amount of time.
|
||||
\end{itemize}
|
||||
|
||||
\subsubsection{Mobile Robotics Programming Toolkit (MRPT)}
|
||||
The Mobile Robotics Programming Toolkit is a robotics framework developed to handle the difficult aspects of robot localization, mapping, computer vision, and motion planning.
|
||||
While this does not cover all of the modules needed for the Mars Rover team, nor the ground station, it would greatly simplify some of the design work for the more challenging aspects of the Rover.
|
||||
Custom nodes would still have to be made for drive and arm system control as well as custom messaging nodes.
|
||||
|
||||
\begin{itemize}
|
||||
\item \textit{Feature Coverage}: Partial coverage.
|
||||
Still requires writing complex nodes for some features.
|
||||
\item \textit{Hardware Compatibility}: Partial hardware support.
|
||||
Custom additions would be needed to support the rest of the robot hardware.
|
||||
\item \textit{Documentation}: A reasonable number of official tutorials are available.
|
||||
\item \textit{Community / Resource Availability}: Help can be found on stackoverflow.com with the search tag "mrpt".
|
||||
\item \textit{Development Time}: Development will take a moderate amount of time.
|
||||
This option still requires a significant amount of custom node development.
|
||||
\end{itemize}
|
||||
|
||||
|
||||
\subsubsection{Robot Operating System (ROS)}
|
||||
ROS is the most popular robotics framework in the world, and it shows in terms of the complete package it provides.
|
||||
Nodes can be found, both official and unofficial, for most features the Robotics Club's Mars Rover might need.
|
||||
If those nodes are not complete, they often provide a great
|
||||
This includes localization and mapping, computer-vision, obstacle avoidance, motion planning, arm and drive system nodes, and and robust messaging framework.
|
||||
|
||||
\begin{itemize}
|
||||
\item \textit{Feature Coverage}: Excellent coverage.
|
||||
Will require some modification of some feature nodes, but most are pre-built and ready to use.
|
||||
\item \textit{Hardware Compatibility}: Excellent hardware support.
|
||||
ROS comes with support for many robotic hardware tools, and abstracted nodes also for easy modification for custom hardware when needed.
|
||||
\item \textit{Documentation}: Excellent documentation and tutorials on ROS's website.
|
||||
\item \textit{Community / Resource Availability}: Many forums and sites provide help with ROS, as well as many Youtube video series dedicated to ROS.
|
||||
\item \textit{Development Time}: Development time will be greatly reduced due to pre-built nodes and great documentation.
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Discussion}
|
||||
In terms of feature coverage, ROS seems to be most complete. However, depending on how difficult implementing the remaining nodes might be, MRPT might not be too far off in terms of complexity. A custom solution has the benefit of having complete coverage once the code is written, but would take considerably longer to write overall.
|
||||
|
||||
With regards to hardware compatibility, it's a similar spread as with feature coverage. ROS is most compatible with the least amount of effort from the start. MRPT would require a fair bit of work to get working with a lot of the hardware that is not directly related to mapping, localization, and computer-vision. The custom solution again has the benefit of having complete hardware support once done, but could require a very large amount of time to get all hardware working.
|
||||
|
||||
Documentation-wise, the custom solution is the worst option. Any development will depend on general programming documentation for the language used, and any that exists for libraries in that language. MRPT has some documentation, but it's mostly limited to tutorials and provides less in-depth information for programmers wanting to adjust MRPT to a custom application. ROS, on the other hand, has excellent documentation and many tutorials.
|
||||
|
||||
The community and resource availability for the custom solution is essentially non-existent. Any community and resources would have to be internal to the Rover team or Ground Station software team. MRPT at least has a small community and is active on stackoverflow to answer questions when needed. ROS's community and availability is excellent by contrast. There are a multitude of forums, but official and unofficial providing support, and ample third party resources providing examples and videos.
|
||||
|
||||
Lastly, when it comes to development time ROS appears to win in this category. The combination of many pre-built nodes plus excellent documentation and community support helps make development much speedier than other options. MRPT is next best, with at least a starting framework to begin with and build off of. The custom solution would be a nightmare in terms of development time and would likely not be complete before competition.
|
||||
|
||||
\subsection{Conclusion}
|
||||
For the choice of a robotics framework it is easy to see that there is a clear winner, and that winner is ROS.
|
||||
ROS is better in every single category than MRPT or a custom solution.
|
||||
ROS has been actively developed for ten years and this shows in its mature and robust nodes and documentation that should allow the Rover team and our Ground Station software team to more quickly develop the application.
|
||||
|
||||
% Radio Systems
|
||||
\section{Radio System}
|
||||
\subsection{Overview}
|
||||
During the University Rover Challenge competition, most of the events that take place are remote control events where are user must remotely operate their Rover from a remote base station. During both the remotely operated and autonomous events, data will need to be sent back and forth between the Rover and its base station. As such, the radios used make a huge difference in how well the Rover performs. Here, we'll look into a few different options for radio systems.
|
||||
|
||||
\subsection{Criteria}
|
||||
\begin{itemize}
|
||||
\item \textit{Cost}: The radio must be as low cost as possible while providing good performance.
|
||||
\item \textit{URC Radio Rules}: The radio must meet the URC competition radio requirements.
|
||||
\item \textit{Data Throughput}: The radio must allow for high enough data throughput to allow for comfortable remote driving of the Rover.
|
||||
\item \textit{Range}: The radio must be able to reach at least 1km away per URC requirements.
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Potential Options}
|
||||
\subsubsection{RockBLOCK Mk2 Iridium SatComm}
|
||||
This satellite modem would allow for remote communications to and from the Rover anywhere where the Rover has line of sight to the open sky.
|
||||
|
||||
\begin{itemize}
|
||||
\item \textit{Cost}: The radio is expensive at \$250, and also has costs per message.
|
||||
\item \textit{URC Radio Rules}: This radio would meet URC requirements with prior approval.
|
||||
\item \textit{Data Throughput}: The data throughput of this radio would be abysmal at one message every 10 seconds.
|
||||
\item \textit{Range}: Range is essentially unlimited in the open desert of the competition area.
|
||||
\end{itemize}
|
||||
|
||||
\subsubsection{LoRa 433MHz Radio}
|
||||
These small serial radios are cheap and easy to use, but have low power output and require an amateur radio license to operate.
|
||||
|
||||
\begin{itemize}
|
||||
\item \textit{Cost}: The radio is incredibly cheap at \$20 each.
|
||||
\item \textit{URC Radio Rules}: This radio would meet URC requirements with prior approval and licensing.
|
||||
\item \textit{Data Throughput}: The data throughput of this radio would be quite slow at 19.2 kbaud per second, but enough to drive the Rover and receive status messages.
|
||||
\item \textit{Range}: Line of sight these radios are rated for 2km.
|
||||
\end{itemize}
|
||||
|
||||
\subsubsection{Ubiquity Rocket M2}
|
||||
The Rocket M2 radios are 2.4GHz long-range WiFi radios that provide a remote ethernet link between two stations.
|
||||
|
||||
\begin{itemize}
|
||||
\item \textit{Cost}: The radio is expensive at \$250 each.
|
||||
\item \textit{URC Radio Rules}: This radio would meet URC requirements as it's on the pre-approved list.
|
||||
\item \textit{Data Throughput}: The data throughput of these radios are up to 100MBit per second, enough to do control and status data as well as Rover video.
|
||||
\item \textit{Range}: Line of sight, these radios have been tested at up to 1.25km by Rover team members.
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Discussion}
|
||||
From a cost perspective, the LoRa radios definitely win out at a mere \$20. The Rocket M2 and RockBLOCK are matched in price, but barring being beyond the range limit of the M2 radios, the RockBLOCK is not a very good contender in terms of throughput for price.
|
||||
|
||||
All of these radios are valid by URC competition rules, although both the satellite radio and LoRa radio would require express prior permission from the URC judges.
|
||||
|
||||
In terms of data throughput, the Rocket M2 is an easy winner, especially when considering the fact that it's fast enough to also send video data over rather than having to have a second radio for video transmission. The LoRa radio would be reasonable if only control and status information was being sent, but the satellite RockBLOCK would basically be useless for remote operation. To use the RockBLOCK you'd have to send the Rover way-points and let the Rover drive on its own.
|
||||
|
||||
Range-wise the satellite modem is the best option, but honestly very overkill for what the requirements of the competition are. LoRa is the next best option with 2km line of sight, but it is worth noting that the M2 radios also have a range greater than what is needed during competition.
|
||||
|
||||
\subsection{Conclusion}
|
||||
Not surprisingly the RockBLOCK is not a reasonable option for this project. However, both the LoRa and M2 radios have enough data throughput and range to make it through the competition happily. With this in mind, the Rocket M2 radios are the optimal radio to use. While they are expensive at \$250, they have enough bandwidth to transmit video data as well as control data meaning the team can save the costs of a secondary radio system for video.
|
||||
|
||||
% Joysticks
|
||||
\section{Joysticks}
|
||||
\subsection{Overview}
|
||||
The ground station software's primary function is to allow for remote control of the Rover via the use of joysticks. Therefore, it is not surprising that the choice of joystick is important as it is the primary point of contact between a driver and the Rover itself. Below we'll compare a few different choices for USB joysticks.
|
||||
|
||||
\subsection{Criteria}
|
||||
\begin{itemize}
|
||||
\item \textit{Cost}: Due to cost restrictions imposed by the competition rules, keeping the cost as low as possible is a priority.
|
||||
\item \textit{Control Feature Set}: The joystick chosen should have pitch, roll, a four position hat, at least five buttons, and a throttle slider.
|
||||
\item \textit{Ambidextrous Grip}: As two joysticks will be bought, one to use with the left hand and one with the right, it must be one capable of being used with either hand from the factory.
|
||||
\item \textit{Reviews}: User reviews for the joystick must imply that the joystick is well-made and is unlikely to fail during competition.
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Potential Options}
|
||||
\subsubsection{Logitech Saitek X52}
|
||||
The Saitek X52 Flight Control joystick has a large airplane style throttle control as well as a normal ambidextrous joystick.
|
||||
The throttle unit and joystick are separate pieces that are connected via a cable.
|
||||
|
||||
\begin{itemize}
|
||||
\item \textit{Cost}: Expensive at \$142.
|
||||
\item \textit{Control Feature Set}: Exceeds minimum feature set.
|
||||
\item \textit{Ambidextrous Grip}: Yes
|
||||
\item \textit{Reviews}: This joystick has slightly better than average reviews, but complaints seem to focus on build quality issues where the joystick wears out prematurely.
|
||||
\end{itemize}
|
||||
|
||||
\subsubsection{Logitech Saitek Evo}
|
||||
The Saitek Evo joystick is a simple single-piece unit that has nine buttons, an 8-way POV hat, and a single throttle control. This is a pretty generic joystick.
|
||||
|
||||
\begin{itemize}
|
||||
\item \textit{Cost}: Very cheap at \$45.
|
||||
\item \textit{Control Feature Set}: Exceeds minimum feature set.
|
||||
\item \textit{Ambidextrous Grip}: Yes
|
||||
\item \textit{Reviews}: This joystick gets average reviews, with major complaints being issues with the joystick not staying centered as it gets worn in, causing small amounts of drift on the control axes.
|
||||
\end{itemize}
|
||||
|
||||
\subsubsection{Hercules Thrustmaster T16000M}
|
||||
The Hercules Thrustmaster T16000M is a plain looking, but fully featured joystick with 16 buttons, one 8-way POV hat, a throttle slider, and a special hall-effect axis sensor system that provides greater precision than standard analog joysticks.
|
||||
|
||||
\begin{itemize}
|
||||
\item \textit{Cost}: Low-mid cost at \$65.
|
||||
\item \textit{Control Feature Set}: Exceeds minimum feature set.
|
||||
\item \textit{Ambidextrous Grip}: Yes
|
||||
\item \textit{Reviews}: This joystick gets better than average reviews with most complaints focusing on the joystick feeling cheap while performing admirably.
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Discussion}
|
||||
From a cost perspective, the Saitek Evo wins out, but only barely. The Thrustmaster is a close second, while the X52 is overly expensive at the cost of both of the previous joysticks put together.
|
||||
|
||||
All of the joysticks exceed the needed feature sets and are all ambidextrous, so in these categories they're all on an even playing field.
|
||||
|
||||
When reviews are factored in, the Thrustmaster is well-regarded whereas the other two get average reviews that aren't too spectacular.
|
||||
|
||||
\subsection{Conclusion}
|
||||
Once you combine the excellent reviews with the reasonably cheap costs of the Thrustmaster T16000M, it comes out as the clear winner for the joystick category. It is definitely the best performance per dollar. The Saitek Evo is a close second, but the the X52 should not even be considered as an option.
|
||||
|
||||
%https://www.amazon.com/Hercules-2960706-Thrustmaster-T-16000M-Flight/dp/B001S0RTU0\\
|
||||
%https://www.amazon.com/Saitek-102989-Cyborg-Evo-Joystick/dp/B0000AW9P1\\
|
||||
%https://www.amazon.com/Logitech-Saitek-Flight-Control-System/dp/B01LY285ZH/ref=pd_day0_147_4?_encoding=UTF8&psc=1\refRID=050PFE0S4QS28T91V2J7
|
||||
\section{References}
|
||||
*Need to add references*
|
||||
\printbibliography[heading=none]
|
||||
\end{document}
|
||||
Reference in New Issue
Block a user