<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Rover &#8211; Maker Projects</title>
	<atom:link href="https://makerprojekte.de/en/category/rover-en/feed/" rel="self" type="application/rss+xml" />
	<link>https://makerprojekte.de/en/</link>
	<description>A blog for makers</description>
	<lastBuildDate>Mon, 01 Sep 2025 09:54:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>

<image>
	<url>https://makerprojekte.de/wp-content/uploads/2025/12/makerprojects-100x100.png</url>
	<title>Rover &#8211; Maker Projects</title>
	<link>https://makerprojekte.de/en/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>DiddyBorg with QGroundControl &#8211; remote control joystick</title>
		<link>https://makerprojekte.de/en/diddyborg-with-qgroundcontrol-joystick-remote-control/</link>
					<comments>https://makerprojekte.de/en/diddyborg-with-qgroundcontrol-joystick-remote-control/#respond</comments>
		
		<dc:creator><![CDATA[Gregor]]></dc:creator>
		<pubDate>Sun, 04 Sep 2022 13:02:43 +0000</pubDate>
				<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[RC]]></category>
		<category><![CDATA[Roboter]]></category>
		<category><![CDATA[Rover]]></category>
		<category><![CDATA[UGV]]></category>
		<guid isPermaLink="false">https://makerprojekte.de/diddyborg-with-qgroundcontrol-joystick-remote-control/</guid>

					<description><![CDATA[In this blog I describe how I evolved the joystick / gamepad remote control of my RPI-controlled DiddyBorg to QGroundControl and MAVLink as communication protocol. This has given me the basis to process more sensors in a standard environment in the future and to plan and execute missions for the DiddyBorg. Software installation on the &#8230; <a href="https://makerprojekte.de/en/diddyborg-with-qgroundcontrol-joystick-remote-control/" class="more-link">Continue reading<span class="screen-reader-text"> "DiddyBorg with QGroundControl &#8211; remote control joystick"</span></a>]]></description>
										<content:encoded><![CDATA[
<p>In this blog I describe how I evolved the <a href="https://makerprojekte.de/en/remote-control-diddyborg-with-gamepad-or-joystick/">joystick / gamepad remote control of</a> my RPI-controlled DiddyBorg to <a href="http://qgroundcontrol.com/">QGroundControl</a> and <a href="https://mavlink.io/en/">MAVLink</a> as communication protocol.  </p>
<p>This has given me the basis to process more sensors in a standard environment in the future and to plan and execute missions for the DiddyBorg.</p>
<h3>Software installation on the Raspberry Pi (RPi)</h3>
<p>On the RPi, first install <a href="https://pypi.org/project/pymavlink/">pymavlink</a>, the Python version of the MAVLink libraries. The easiest way to do this is with PIP:</p>
<pre lang="bash">pip install pymavlink</pre>
<p>Then create a directory, e.g. diddy2QGC, into which you copy the Python modules diddy2QGroundControl.py and ThunderBorg3.py from the <a href="https://github.com/makerprojects/diddy2QGC">Github repository of this project</a>. In this directory you then start the Python script later with:</p>
<pre> python diddy2QGroundControl.py</pre>
<h3>Software installation on the desktop</h3>
<p>Install <a href="https://docs.qgroundcontrol.com/master/en/qgc-user-guide/getting_started/download_and_install.html">QGroundControl</a> on your desktop.</p>
<h3>Starting the applications</h3>
<p>Make sure the RPi and your desktop are on the same network and run QGroundControl (QGC) and the Python script (the order is irrelevant).  </p>
<p>The DiddyBorg sends heartbeat messages, which are recognized and answered by QGC. After exchanging a few more messages (please do not be confused by the error messages), the connection is established and you will then find the option to teach in your joystick in the vehicle settings.  Please note that diddy2QGroundControl.py in mode 2 uses the roll channel for right/left control and the inverted value of the pitch channel for motor control.</p>
<p> </p>

<p> </p>
<p> </p>
]]></content:encoded>
					
					<wfw:commentRss>https://makerprojekte.de/en/diddyborg-with-qgroundcontrol-joystick-remote-control/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Remote control DiddyBorg with gamepad or joystick</title>
		<link>https://makerprojekte.de/en/remote-control-diddyborg-with-gamepad-or-joystick/</link>
					<comments>https://makerprojekte.de/en/remote-control-diddyborg-with-gamepad-or-joystick/#respond</comments>
		
		<dc:creator><![CDATA[Gregor]]></dc:creator>
		<pubDate>Tue, 02 Aug 2022 19:22:42 +0000</pubDate>
				<category><![CDATA[Raspberry Pi]]></category>
		<category><![CDATA[Roboter]]></category>
		<category><![CDATA[Rover]]></category>
		<category><![CDATA[UAV]]></category>
		<category><![CDATA[UGV]]></category>
		<guid isPermaLink="false">https://makerprojekte.de/?p=1646</guid>

					<description><![CDATA[In this blog I present my Windows app JoystickRC4DiddyBorg for remote control of the DiddyBorg (from PiBorg) with a joystick or gamepad. The DiddyBorg sample programs published by the manufacturer PiBorg also include a Python remote control script with joystick, but it uses Bluetooth and therefore has a rather limited range. The app presented here &#8230; <a href="https://makerprojekte.de/en/remote-control-diddyborg-with-gamepad-or-joystick/" class="more-link">Continue reading<span class="screen-reader-text"> "Remote control DiddyBorg with gamepad or joystick"</span></a>]]></description>
										<content:encoded><![CDATA[
<p>In this blog I present my Windows app <em>JoystickRC4DiddyBorg </em>for remote control of the DiddyBorg (from PiBorg) with a joystick or gamepad.</p>
<p>The DiddyBorg sample programs published by the manufacturer PiBorg also include a Python remote control script with joystick, but it uses Bluetooth and therefore has a rather limited range.</p>
<p>The app presented here uses the existing WLAN and UDP as protocol to ensure sufficient agility of the remote control. For safety reasons, the time-out logic of the ThunderBorg motor controller is activated.</p>
<h2>Software installation</h2>
<p>The DiddyBorg needs a Python script <em>JoystickRC4DiddyBorg</em> as receiver, which you can find on <a href="https://github.com/makerprojects/JoystickRC4DiddyBorg">github.com</a>. In addition to the receiver program, you will also find a version of the ThunderBorg &#8211; Library for Python 3.x in the repository (the sample programs for the DiddyBorg are still based on Python 2.x).</p>
<p>The easiest way is to copy the two files additionally into the directory with the examples &#8211; then the script should work without further adjustments of path names.</p>
<p>On the PC side, install the Windows app <em>JoystickRC4DiddyBorg of</em> the same name, which you can get for free from the <a href="https://apps.microsoft.com/store/detail/joystickrc4diddyborg/9P6L5F7GF1L1?hl=EN-us&amp;gl=en">Microsoft App Store</a>.</p>
<h2>Operation</h2>
<p>First start the Python script on the DiddyBorg. If you have a screen connected, then the program will log in and indicate that it is waiting for a client.</p>
<p>When you start the PC app, it will automatically search for a DiddyBorg with an active and compatible receiver on the local WLAN (to which both the DiddyBorg and the PC being used must be connected). If no connection can be established, a corresponding error message is displayed.</p>
<p>After the connection has been successfully established, the channels can be assigned to the various joystick axes and keys. Channels 3 and 4 are used as push buttons and allow for example fast / slow rotation (the function of the push buttons can be traced in the Python script).</p>
<p>The assignment of the channels is saved and restored at the next program start.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://makerprojekte.de/en/remote-control-diddyborg-with-gamepad-or-joystick/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Joystick model remote control with iRangeX multiprotocol module and Android smart device &#8211; even more compact!</title>
		<link>https://makerprojekte.de/en/joystick-model-remote-control-with-irangex-multiprotocol-module-and-android-smart-device-even-more-compact/</link>
					<comments>https://makerprojekte.de/en/joystick-model-remote-control-with-irangex-multiprotocol-module-and-android-smart-device-even-more-compact/#respond</comments>
		
		<dc:creator><![CDATA[Gregor]]></dc:creator>
		<pubDate>Fri, 01 Oct 2021 16:08:37 +0000</pubDate>
				<category><![CDATA[RC]]></category>
		<category><![CDATA[Rover]]></category>
		<category><![CDATA[UAV]]></category>
		<category><![CDATA[UGV]]></category>
		<guid isPermaLink="false">https://makerprojekte.de/?p=1383</guid>

					<description><![CDATA[The previous blog described how the originally used remote control transmitter can be replaced by an iRangeX multi-protocol module and how the entire setup can be simplified. In this blog, an even more compact structure is described in which the USB hub, the USB2PPM PiKoder and the multi-protocol module are mechanically combined into one unit, &#8230; <a href="https://makerprojekte.de/en/joystick-model-remote-control-with-irangex-multiprotocol-module-and-android-smart-device-even-more-compact/" class="more-link">Continue reading<span class="screen-reader-text"> "Joystick model remote control with iRangeX multiprotocol module and Android smart device &#8211; even more compact!"</span></a>]]></description>
										<content:encoded><![CDATA[
<p>The previous blog described how the originally used remote control transmitter can be replaced by an iRangeX multi-protocol module and how the entire setup can be simplified.</p>
<p>In this blog, an even more compact structure is described in which the USB hub, the USB2PPM PiKoder and the multi-protocol module are mechanically combined into one unit, which then only needs to be connected to the smart device and the joystick.</p>
<p>The following steps are required for the implementation:</p>
<ol>
<li style="list-style-type: none;">
<ol>
<li>Extend the USB hub cable</li>
<li>Modify USB2PPM PiKoder with USB connector</li>
<li>Realize mechanical rack</li>
<li>Assemble and wire modules</li>
</ol>
</li>
</ol>
<h2>Extend the USB hub cable</h2>
<p>The common USB OTG hubs (on the go) usually have a very short connection cable (0.1 &#8211; 0.15 m). In practical use, this results in restrictions, since the hub must always be close to the smart device and possibly hangs in the air next to the holder and so a &#8220;rigid connection&#8221; with the PiKoder is not possible.</p>
<p>The extension of the connection cable is not a problem. It is only to be noted that an OTG connector with the corresponding coding (see picture) is still used as the connector, because otherwise the hub will not be recognized and will not be supplied with voltage.</p>
<p><a href="https://makerprojekte.de/wp-content/uploads/2021/09/usb-otg-schema.jpg"><img fetchpriority="high" decoding="async" class="size-full wp-image-1457 aligncenter" src="https://makerprojekte.de/wp-content/uploads/2021/09/usb-otg-schema.jpg" alt="" width="600" height="310" srcset="https://makerprojekte.de/wp-content/uploads/2021/09/usb-otg-schema.jpg 600w, https://makerprojekte.de/wp-content/uploads/2021/09/usb-otg-schema-400x207.jpg 400w, https://makerprojekte.de/wp-content/uploads/2021/09/usb-otg-schema-300x155.jpg 300w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 600px" /></a></p>
<p>The easiest way to extend the extension is to solder a piece of USB cable of the desired length to the hub board and attach the existing plug with the short cable end to the other end and fix it with shrink tubing. </p>
<h2>Modify USB2PPM PiKoder with USB connector</h2>
<p><img decoding="async" class="wp-image-1451 size-medium alignright" src="https://makerprojekte.de/wp-content/uploads/2021/09/USB-Stecker-300x211.jpg" alt="" width="300" height="211" srcset="https://makerprojekte.de/wp-content/uploads/2021/09/USB-Stecker-300x211.jpg 300w, https://makerprojekte.de/wp-content/uploads/2021/09/USB-Stecker-400x282.jpg 400w, https://makerprojekte.de/wp-content/uploads/2021/09/USB-Stecker-768x541.jpg 768w, https://makerprojekte.de/wp-content/uploads/2021/09/USB-Stecker.jpg 788w" sizes="(max-width: 300px) 85vw, 300px" />For the direct connection between the USB hub and the PiKoder, the USB2PPM requires a USB plug (see picture on the right) instead of the normal USB micro socket. So that the connector can be installed, saw the circuit board in order to then be able to push through the fastening straps. In addition, a hole is required in order to be able to wire the connection cables of the plug (see picture below).</p>
<p><a href="https://makerprojekte.de/wp-content/uploads/2021/09/Leiterplatte-USB2PPM-prepared-for-USB-Stecker.jpg"><img decoding="async" class="aligncenter wp-image-1449" src="https://makerprojekte.de/wp-content/uploads/2021/09/Leiterplatte-USB2PPM-prepared-for-USB-Stecker.jpg" alt="" width="640" height="299" srcset="https://makerprojekte.de/wp-content/uploads/2021/09/Leiterplatte-USB2PPM-prepared-for-USB-Stecker.jpg 1556w, https://makerprojekte.de/wp-content/uploads/2021/09/Leiterplatte-USB2PPM-prepared-for-USB-Stecker-400x187.jpg 400w, https://makerprojekte.de/wp-content/uploads/2021/09/Leiterplatte-USB2PPM-prepared-for-USB-Stecker-300x140.jpg 300w, https://makerprojekte.de/wp-content/uploads/2021/09/Leiterplatte-USB2PPM-prepared-for-USB-Stecker-1024x478.jpg 1024w, https://makerprojekte.de/wp-content/uploads/2021/09/Leiterplatte-USB2PPM-prepared-for-USB-Stecker-768x358.jpg 768w, https://makerprojekte.de/wp-content/uploads/2021/09/Leiterplatte-USB2PPM-prepared-for-USB-Stecker-1536x717.jpg 1536w, https://makerprojekte.de/wp-content/uploads/2021/09/Leiterplatte-USB2PPM-prepared-for-USB-Stecker-1200x560.jpg 1200w" sizes="(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 600px" /></a>Then stick the connector to the circuit board with two-component adhesive and equip the circuit board with the remaining components (see pictures below).<strong> Note:</strong> In the further course of the project I replaced the three-pin header with a Molex connector. </p>
<p><a href="https://makerprojekte.de/wp-content/uploads/2021/09/Bestueckung-Leiterplatte.png"><img loading="lazy" decoding="async" class="aligncenter wp-image-1487 size-full" src="https://makerprojekte.de/wp-content/uploads/2021/09/Bestueckung-Leiterplatte.png" alt="" width="831" height="509" srcset="https://makerprojekte.de/wp-content/uploads/2021/09/Bestueckung-Leiterplatte.png 831w, https://makerprojekte.de/wp-content/uploads/2021/09/Bestueckung-Leiterplatte-400x245.png 400w, https://makerprojekte.de/wp-content/uploads/2021/09/Bestueckung-Leiterplatte-300x184.png 300w, https://makerprojekte.de/wp-content/uploads/2021/09/Bestueckung-Leiterplatte-768x470.png 768w" sizes="auto, (max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 600px" /></a></p>
<p> </p>
<p style="text-align: left;">Finally connect the pins of the USB connector with the corresponding PiKoder pins; a thin, insulated wire is used for this. The following pictures show the schematic connection and then you can see the actual wiring on the underside of the circuit board.</p>
<p style="text-align: left;"><a href="https://makerprojekte.de/wp-content/uploads/2021/09/Faedelverbindungen-Overview.png"><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-1489" src="https://makerprojekte.de/wp-content/uploads/2021/09/Faedelverbindungen-Overview-1024x474.png" alt="" width="840" height="389" srcset="https://makerprojekte.de/wp-content/uploads/2021/09/Faedelverbindungen-Overview-1024x474.png 1024w, https://makerprojekte.de/wp-content/uploads/2021/09/Faedelverbindungen-Overview-400x185.png 400w, https://makerprojekte.de/wp-content/uploads/2021/09/Faedelverbindungen-Overview-300x139.png 300w, https://makerprojekte.de/wp-content/uploads/2021/09/Faedelverbindungen-Overview-768x356.png 768w, https://makerprojekte.de/wp-content/uploads/2021/09/Faedelverbindungen-Overview.png 1028w" sizes="auto, (max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" /></a> </p>
<h2>Realize mechanical rack</h2>
<p>The subrack consists of a simple angled wooden structure. The square base plate with a side length of 85 mm accommodates the hub and the USB2PPM Pikoder. The multi-protocol module is clamped in the vertical fork. To improve the appearance of the cable routing, I drilled a corresponding channel.</p>
<p><a href="https://makerprojekte.de/wp-content/uploads/2021/09/Aufbau-Traeger.png"><img loading="lazy" decoding="async" class="aligncenter wp-image-1493" src="https://makerprojekte.de/wp-content/uploads/2021/09/Aufbau-Traeger.png" alt="" width="640" height="417" srcset="https://makerprojekte.de/wp-content/uploads/2021/09/Aufbau-Traeger.png 890w, https://makerprojekte.de/wp-content/uploads/2021/09/Aufbau-Traeger-400x261.png 400w, https://makerprojekte.de/wp-content/uploads/2021/09/Aufbau-Traeger-300x196.png 300w, https://makerprojekte.de/wp-content/uploads/2021/09/Aufbau-Traeger-768x500.png 768w" sizes="auto, (max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 600px" /></a></p>
<h2>Assemble and wire modules</h2>
<p>You can see the complete setup in the following pictures. The hub is fixed with double-sided adhesive tape, the USB2PPM PiKoder is plugged in and fixed with screws through the two front mounting holes. It is best to use some washers as spacers so that the circuit board does not bend.</p>
<p><a href="https://makerprojekte.de/wp-content/uploads/2021/09/Kompakt-TX.png"><img loading="lazy" decoding="async" class="aligncenter wp-image-1499" src="https://makerprojekte.de/wp-content/uploads/2021/09/Kompakt-TX.png" alt="" width="640" height="413" srcset="https://makerprojekte.de/wp-content/uploads/2021/09/Kompakt-TX.png 859w, https://makerprojekte.de/wp-content/uploads/2021/09/Kompakt-TX-400x258.png 400w, https://makerprojekte.de/wp-content/uploads/2021/09/Kompakt-TX-300x193.png 300w, https://makerprojekte.de/wp-content/uploads/2021/09/Kompakt-TX-768x495.png 768w" sizes="auto, (max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 600px" /></a></p>
<p>With the micro USB connector, the &#8220;compact transmitter&#8221; is initially intended for connection to an Android device. With a small adapter, e.g. from Micro USB to USB C plug, the transmitter can of course be easily connected to a Surface Notebook. </p>
<p> </p>
]]></content:encoded>
					
					<wfw:commentRss>https://makerprojekte.de/en/joystick-model-remote-control-with-irangex-multiprotocol-module-and-android-smart-device-even-more-compact/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Joystick model remote control with multi-protocol TX module iRangeX IRX4 +</title>
		<link>https://makerprojekte.de/en/joystick-model-remote-control-with-multiprotocol-tx-module-irangex-irx4/</link>
					<comments>https://makerprojekte.de/en/joystick-model-remote-control-with-multiprotocol-tx-module-irangex-irx4/#respond</comments>
		
		<dc:creator><![CDATA[Gregor]]></dc:creator>
		<pubDate>Sat, 11 Sep 2021 11:31:29 +0000</pubDate>
				<category><![CDATA[RC]]></category>
		<category><![CDATA[Roboter]]></category>
		<category><![CDATA[Rover]]></category>
		<category><![CDATA[UAV]]></category>
		<category><![CDATA[UGV]]></category>
		<guid isPermaLink="false">https://makerprojekte.de/?p=1438</guid>

					<description><![CDATA[In the two previous articles on model remote control with joystick, a &#8220;completely normal&#8221; remote control transmitter was used to transmit commands. The control sticks and various switches of the transmitter were not needed because the control itself is done by the joystick. The overall structure can therefore be simplified by using a multi-protocol TX &#8230; <a href="https://makerprojekte.de/en/joystick-model-remote-control-with-multiprotocol-tx-module-irangex-irx4/" class="more-link">Continue reading<span class="screen-reader-text"> "Joystick model remote control with multi-protocol TX module iRangeX IRX4 +"</span></a>]]></description>
										<content:encoded><![CDATA[
<p>In the two previous articles on model remote control with joystick, a &#8220;completely normal&#8221; remote control transmitter was used to transmit commands. The control sticks and various switches of the transmitter were not needed because the control itself is done by the joystick.</p>
<p>The overall structure can therefore be simplified by using a multi-protocol TX module such as the iRangeX iRX4 + instead of the complete remote control transmitter.</p>
<p>The module can &#8211; just like the remote control transmitter &#8211; be controlled directly via the PPM signal from the USB2PPM &#8211; PiKoder. Since the iRangeX already operates with an operating voltage of 5 volts, the power supply is also provided via the USB2PPM PiKoder and no additional battery is required. </p>
<h2>Setup </h2>
<p>The <a href="https://pikoder.de/PiKoder_USB_Kit.html">USB2PPM PiKoder</a> is set up according to the instructions. Even if you have only equipped one cynch socket so far, the three-pin header can be retrofitted without any problems.</p>
<p><a href="https://makerprojekte.de/wp-content/uploads/2021/09/USB2PPM-rotated.jpg"><img loading="lazy" decoding="async" class="aligncenter wp-image-1427" src="https://makerprojekte.de/wp-content/uploads/2021/09/USB2PPM-rotated.jpg" alt="" width="640" height="316" srcset="https://makerprojekte.de/wp-content/uploads/2021/09/USB2PPM-rotated.jpg 1014w, https://makerprojekte.de/wp-content/uploads/2021/09/USB2PPM-rotated-400x198.jpg 400w, https://makerprojekte.de/wp-content/uploads/2021/09/USB2PPM-300x148.jpg 300w, https://makerprojekte.de/wp-content/uploads/2021/09/USB2PPM-768x379.jpg 768w" sizes="auto, (max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 984px) 61vw, (max-width: 1362px) 45vw, 600px" /></a></p>
<p>The connection between the iRX4 + module is made via a three-wire cable (Vcc, PPM and Gnd) (see picture below left). At one end of the cable there is a three-pin socket for plugging into the corresponding pin header of the USB2PPM, on the other side the five sockets of the module are adapted &#8211; you can see the pin assignment that the module expects in the picture on the right. </p>
<p><a href="https://makerprojekte.de/wp-content/uploads/2021/09/Verbindungskabel-Multiprotokoll-Modul.jpg"><img loading="lazy" decoding="async" class="alignleft wp-image-1419 size-medium" src="https://makerprojekte.de/wp-content/uploads/2021/09/Verbindungskabel-Multiprotokoll-Modul-289x300.jpg" alt="" width="289" height="300" srcset="https://makerprojekte.de/wp-content/uploads/2021/09/Verbindungskabel-Multiprotokoll-Modul-289x300.jpg 289w, https://makerprojekte.de/wp-content/uploads/2021/09/Verbindungskabel-Multiprotokoll-Modul-400x415.jpg 400w, https://makerprojekte.de/wp-content/uploads/2021/09/Verbindungskabel-Multiprotokoll-Modul-986x1024.jpg 986w, https://makerprojekte.de/wp-content/uploads/2021/09/Verbindungskabel-Multiprotokoll-Modul-768x797.jpg 768w, https://makerprojekte.de/wp-content/uploads/2021/09/Verbindungskabel-Multiprotokoll-Modul.jpg 1024w" sizes="auto, (max-width: 289px) 85vw, 289px" /></a></p>
<p><a href="https://makerprojekte.de/wp-content/uploads/2021/09/Pinout.jpg"><img loading="lazy" decoding="async" class="wp-image-1432 size-medium alignright" src="https://makerprojekte.de/wp-content/uploads/2021/09/Pinout-191x300.jpg" alt="" width="191" height="300" srcset="https://makerprojekte.de/wp-content/uploads/2021/09/Pinout-191x300.jpg 191w, https://makerprojekte.de/wp-content/uploads/2021/09/Pinout-400x630.jpg 400w, https://makerprojekte.de/wp-content/uploads/2021/09/Pinout.jpg 475w" sizes="auto, (max-width: 191px) 85vw, 191px" /></a></p>
<p>  </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p>No further adjustments or changes are required. </p>
<p>And the structure described here can of course also be used in connection with a Windows notebook.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://makerprojekte.de/en/joystick-model-remote-control-with-multiprotocol-tx-module-irangex-irx4/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Joystick model remote control with Spektrum DXe (2)</title>
		<link>https://makerprojekte.de/en/joystick-model-remote-control-with-spektrum-dxe-2/</link>
					<comments>https://makerprojekte.de/en/joystick-model-remote-control-with-spektrum-dxe-2/#respond</comments>
		
		<dc:creator><![CDATA[Gregor]]></dc:creator>
		<pubDate>Sun, 29 Aug 2021 12:48:49 +0000</pubDate>
				<category><![CDATA[RC]]></category>
		<category><![CDATA[Roboter]]></category>
		<category><![CDATA[Rover]]></category>
		<category><![CDATA[UAV]]></category>
		<category><![CDATA[UGV]]></category>
		<guid isPermaLink="false">https://makerprojekte.de/?p=1409</guid>

					<description><![CDATA[The first entry in this series used a notebook to translate the joystick inputs into commands for the USB2PPM. Alternatively, an Android (TM) smart device with a corresponding app can be used for selected joysticks. The hardware structure in the title picture is the same as the configuration in the Part 1 Except for the &#8230; <a href="https://makerprojekte.de/en/joystick-model-remote-control-with-spektrum-dxe-2/" class="more-link">Continue reading<span class="screen-reader-text"> "Joystick model remote control with Spektrum DXe (2)"</span></a>]]></description>
										<content:encoded><![CDATA[
<p>The first entry in this series used a notebook to translate the joystick inputs into commands for the USB2PPM. Alternatively, an Android (TM) smart device with a corresponding app can be used for selected joysticks.</p>
<p>The hardware structure in the title picture is the same as the configuration in the<a href="https://makerprojekte.de/en/joystick-model-remote-control-with-spectrum-dxe/"> Part 1</a> Except for the computer, which is replaced by the smart device, and the hub: a USB OTG hub must be used in conjunction with the smart device.</p>
<p>With regard to the preparation of the remote control transmitter, the same considerations for ergonomics apply and it is advisable to expand the remote control with a switch as described in Part 1.</p>
<p>With regard to the app itself, you can choose between the free app<a href="https://play.google.com/store/apps/details?id=com.pikoder.Joystick2PPM&amp;hl=en_US"> Joystick2PPM</a> and a special app for quadrocopters<a href="https://play.google.com/store/apps/details?id=com.pikoder.Joystick4UAV&amp;hl=en_US"> Joystick4UAV</a> (see below); you can find both apps in the Google Play Store.</p>
<h2>Joystick2PPM (Android App)</h2>
<p>The user interface of the app largely corresponds to the Windows implementation and is intuitive and easy to understand. The joystick controls are on the left and the servo channels are mapped to the right with drop-down boxes.</p>
<p><a href="https://makerprojekte.de/wp-content/uploads/2021/08/Joystick2PPM_main-a.png"><img loading="lazy" decoding="async" class="alignnone size-large wp-image-1398" src="https://makerprojekte.de/wp-content/uploads/2021/08/Joystick2PPM_main-a-1024x547.png" alt="" width="840" height="449" srcset="https://makerprojekte.de/wp-content/uploads/2021/08/Joystick2PPM_main-a-1024x547.png 1024w, https://makerprojekte.de/wp-content/uploads/2021/08/Joystick2PPM_main-a-400x214.png 400w, https://makerprojekte.de/wp-content/uploads/2021/08/Joystick2PPM_main-a-300x160.png 300w, https://makerprojekte.de/wp-content/uploads/2021/08/Joystick2PPM_main-a-768x410.png 768w, https://makerprojekte.de/wp-content/uploads/2021/08/Joystick2PPM_main-a-1200x641.png 1200w, https://makerprojekte.de/wp-content/uploads/2021/08/Joystick2PPM_main-a.png 1343w" sizes="auto, (max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" /></a></p>
<p>The joystick and the USB2PPM are automatically recognized after starting the APP. When using the application for the first time, the user must enable access to the corresponding USB interfaces.</p>
<p>Please note that the app currently only supports a limited number of joysticks and other operating devices. The current list of the compatible devices can be found in the Playstore at any time.</p>
<h2>Joystick4UAV (Android App)</h2>
<p>The Joystick4UAV app is an advanced version of the Joystick2PPM application, which is geared towards the needs of remote control of quadrocopters or other vehicles (UGV) and boats (USV) with a flight controller.</p>
<p>The basic structure of the Joystick4UAV corresponds to the apps already described. The four joystick axes are mapped to the remote control channels 1-4 according to the usual assignment for flight controllers. You can of course adapt this assignment within the four channels according to your preferences. All channels can be inverted by checking the associated box.</p>
<p><a href="https://makerprojekte.de/wp-content/uploads/2021/08/Screen_Joystick4UAV.png"><img loading="lazy" decoding="async" class="alignnone size-large wp-image-1405" src="https://makerprojekte.de/wp-content/uploads/2021/08/Screen_Joystick4UAV-1024x549.png" alt="" width="840" height="450" srcset="https://makerprojekte.de/wp-content/uploads/2021/08/Screen_Joystick4UAV-1024x549.png 1024w, https://makerprojekte.de/wp-content/uploads/2021/08/Screen_Joystick4UAV-400x214.png 400w, https://makerprojekte.de/wp-content/uploads/2021/08/Screen_Joystick4UAV-300x161.png 300w, https://makerprojekte.de/wp-content/uploads/2021/08/Screen_Joystick4UAV-768x412.png 768w, https://makerprojekte.de/wp-content/uploads/2021/08/Screen_Joystick4UAV-1200x643.png 1200w, https://makerprojekte.de/wp-content/uploads/2021/08/Screen_Joystick4UAV.png 1343w" sizes="auto, (max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px" /></a></p>
<p>The flight mode is coded in channel 5. There are six modes available. The flight mode selection takes place by pushing the joystick buttons 7-12 (see figure below right), where button 7 sets flight mode &#8220;1&#8221; and button 12 sets flight mode &#8220;6&#8221;. The selected flight mode is displayed numerically (&#8220;1&#8221; in the picture above) and the bar corresponds to the transmitted channel value. <a href="https://makerprojekte.de/wp-content/uploads/2021/08/Logitech-3D-PRO-Schalter.jpg"><img loading="lazy" decoding="async" class="size-medium wp-image-1403 alignright" src="https://makerprojekte.de/wp-content/uploads/2021/08/Logitech-3D-PRO-Schalter-300x300.jpg" alt="" width="300" height="300" srcset="https://makerprojekte.de/wp-content/uploads/2021/08/Logitech-3D-PRO-Schalter-300x300.jpg 300w, https://makerprojekte.de/wp-content/uploads/2021/08/Logitech-3D-PRO-Schalter-100x100.jpg 100w, https://makerprojekte.de/wp-content/uploads/2021/08/Logitech-3D-PRO-Schalter-400x400.jpg 400w, https://makerprojekte.de/wp-content/uploads/2021/08/Logitech-3D-PRO-Schalter-150x150.jpg 150w, https://makerprojekte.de/wp-content/uploads/2021/08/Logitech-3D-PRO-Schalter.jpg 500w" sizes="auto, (max-width: 300px) 85vw, 300px" /></a></p>
<p>The remaining buttons 1-6 (button<i> B1 .. B6</i> in the upper area) and the hat switch are available for special functions and can be assigned to channels 6-8 as required. If the box belonging to the channel is activated, the button behaves as a switch.</p>
<p><strong>Please note that only the Logitech Extreme 3D Pro joystick is currently supported in the app.</strong></p>
]]></content:encoded>
					
					<wfw:commentRss>https://makerprojekte.de/en/joystick-model-remote-control-with-spektrum-dxe-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Control your Ardupilot Mega Rover with your Android Smartphone (III)</title>
		<link>https://makerprojekte.de/en/control-your-ardupilot-mega-rover-with-your-android-smartphone-iii/</link>
					<comments>https://makerprojekte.de/en/control-your-ardupilot-mega-rover-with-your-android-smartphone-iii/#respond</comments>
		
		<dc:creator><![CDATA[Gregor]]></dc:creator>
		<pubDate>Fri, 01 Nov 2019 12:15:45 +0000</pubDate>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Ardupilot]]></category>
		<category><![CDATA[ESP8266]]></category>
		<category><![CDATA[RC]]></category>
		<category><![CDATA[Rover]]></category>
		<category><![CDATA[UGV]]></category>
		<guid isPermaLink="false">https://makerprojekte.de/control-your-ardupilot-mega-rover-with-your-android-smartphone-iii/</guid>

					<description><![CDATA[Overview The Ardupilot Mega (APM) and other flight controllers are frequently controlled by a PPM stream rather than the parallel input per channel which I described in part 1 of this blog. The new PiKoder/PPM wRX receiver with its PPM frame output brings this capability to you. The connection between the receiver and the flight &#8230; <a href="https://makerprojekte.de/en/control-your-ardupilot-mega-rover-with-your-android-smartphone-iii/" class="more-link">Continue reading<span class="screen-reader-text"> "Control your Ardupilot Mega Rover with your Android Smartphone (III)"</span></a>]]></description>
										<content:encoded><![CDATA[<h1>Overview</h1>
<p>The Ardupilot Mega (APM) and other flight controllers are frequently controlled by a PPM stream rather than the parallel input per channel which I described in <a href="https://makerprojekte.de/en/control-your-ardupilot-mega-rover-with-your-android-smartphone/">part 1</a> of this blog. The new <a href="https://www.pikoder.de/WLAN_PPM_EN.html">PiKoder/PPM wRX</a> receiver with its PPM frame output brings this capability to you. The connection between the receiver and the flight controller is reduced to a single 3 strand cable as shown in the featured image.</p>
<h1>Description</h1>
<p>The PiKoder/PPM wRX receiver will be controlled by the udpRC4UGV App as described in <a href="https://makerprojekte.de/en/control-your-ardupilot-mega-rover-with-your-android-smartphone-ii/">part 2</a> of this blog.</p>
<p>The feature set of the app has been extended to allow you to freely determine the position of the direction and throttle channel within the PPM frame through the app preferences.</p>
<p><a href="https://makerprojekte.de/wp-content/uploads/2018/11/udpRC_PPM_Preferences.png"><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-608" src="https://makerprojekte.de/wp-content/uploads/2018/11/udpRC_PPM_Preferences-193x300.png" alt="" width="193" height="300" srcset="https://makerprojekte.de/wp-content/uploads/2018/11/udpRC_PPM_Preferences-193x300.png 193w, https://makerprojekte.de/wp-content/uploads/2018/11/udpRC_PPM_Preferences-400x623.png 400w, https://makerprojekte.de/wp-content/uploads/2018/11/udpRC_PPM_Preferences-768x1196.png 768w, https://makerprojekte.de/wp-content/uploads/2018/11/udpRC_PPM_Preferences-658x1024.png 658w, https://makerprojekte.de/wp-content/uploads/2018/11/udpRC_PPM_Preferences.png 1200w" sizes="auto, (max-width: 193px) 85vw, 193px" /></a></p>
<p>To change the channel setting please select the respective preference and enter the channel number (1 .. 8). E.g. the APM Rover configuration features direction on channel 1 and throttle on channel 3.</p>
<p>Please note that setting the APM’s input mode from parallel to PPM requires a jumper between channel 2 and channel 3 input as shown below.</p>
<p><a href="https://makerprojekte.de/wp-content/uploads/2018/11/Jumperposition-APM.jpg"><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-606" src="https://makerprojekte.de/wp-content/uploads/2018/11/Jumperposition-APM-300x177.jpg" alt="" width="300" height="177" srcset="https://makerprojekte.de/wp-content/uploads/2018/11/Jumperposition-APM-300x177.jpg 300w, https://makerprojekte.de/wp-content/uploads/2018/11/Jumperposition-APM-400x236.jpg 400w, https://makerprojekte.de/wp-content/uploads/2018/11/Jumperposition-APM-768x453.jpg 768w, https://makerprojekte.de/wp-content/uploads/2018/11/Jumperposition-APM-rotated.jpg 923w" sizes="auto, (max-width: 300px) 85vw, 300px" /></a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://makerprojekte.de/en/control-your-ardupilot-mega-rover-with-your-android-smartphone-iii/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Control your Ardupilot Mega Rover with your Android Smartphone (II)</title>
		<link>https://makerprojekte.de/en/control-your-ardupilot-mega-rover-with-your-android-smartphone-ii/</link>
					<comments>https://makerprojekte.de/en/control-your-ardupilot-mega-rover-with-your-android-smartphone-ii/#respond</comments>
		
		<dc:creator><![CDATA[Gregor]]></dc:creator>
		<pubDate>Fri, 01 Nov 2019 12:10:13 +0000</pubDate>
				<category><![CDATA[Ardupilot]]></category>
		<category><![CDATA[ESP8266]]></category>
		<category><![CDATA[RC]]></category>
		<category><![CDATA[Rover]]></category>
		<category><![CDATA[UGV]]></category>
		<guid isPermaLink="false">https://makerprojekte.de/control-your-ardupilot-mega-rover-with-your-android-smartphone-ii/</guid>

					<description><![CDATA[Overview As already indicated in the previous blog on the topic &#8220;Ardupilot Mega Rover with the smartphone remote control&#8220;, now, after some further work on the topic, a new Android(TM) app &#8220;udpRC4UGV&#8221; with rover-specific functions is available. The most important enhancements are the selection of the flight mode and the toggling of channel 7 making &#8230; <a href="https://makerprojekte.de/en/control-your-ardupilot-mega-rover-with-your-android-smartphone-ii/" class="more-link">Continue reading<span class="screen-reader-text"> "Control your Ardupilot Mega Rover with your Android Smartphone (II)"</span></a>]]></description>
										<content:encoded><![CDATA[<h2>Overview</h2>
<p>As already indicated in the previous blog on the topic &#8220;<a href="https://makerprojekte.de/en/control-your-ardupilot-mega-rover-with-your-android-smartphone/">Ardupilot Mega Rover with the smartphone remote control</a>&#8220;, now, after some further work on the topic, a new Android(TM) app &#8220;udpRC4UGV&#8221; with rover-specific functions is available. The most important enhancements are the selection of the flight mode and the toggling of channel 7 making a number of APM special functions available.</p>
<h2>Description</h2>
<p>As outlined in the previous blog a PiKoder/SSC wRX receiver replaces the standard RC receiver in the rover. The smartphone RC uses WLAN for command transmission: the PiKoder does offer an access point (AP) to which the smartphone will connect.</p>
<p>The remote control app offers a variety of user interfaces: from simple key control to a virtual joystick to an accelerometer-based option.</p>
<p><a href="https://makerprojekte.de/wp-content/uploads/2017/10/udpRC4UGV-Main-activity.png"><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-438" src="https://makerprojekte.de/wp-content/uploads/2017/10/udpRC4UGV-Main-activity-300x157.png" alt="" width="300" height="157" srcset="https://makerprojekte.de/wp-content/uploads/2017/10/udpRC4UGV-Main-activity-300x157.png 300w, https://makerprojekte.de/wp-content/uploads/2017/10/udpRC4UGV-Main-activity-400x209.png 400w, https://makerprojekte.de/wp-content/uploads/2017/10/udpRC4UGV-Main-activity-768x402.png 768w, https://makerprojekte.de/wp-content/uploads/2017/10/udpRC4UGV-Main-activity-1024x536.png 1024w, https://makerprojekte.de/wp-content/uploads/2017/10/udpRC4UGV-Main-activity-1200x628.png 1200w, https://makerprojekte.de/wp-content/uploads/2017/10/udpRC4UGV-Main-activity.png 1280w" sizes="auto, (max-width: 300px) 85vw, 300px" /></a></p>
<p>In addition to the general controls for remote control, each user interface also offers the possibility to choose the flight mode. In addition, channel 7 can be triggered via the &#8220;CH7&#8221; button (for example, in LEARNING mode, the current position is saved as a waypoint).</p>
<p><a href="https://makerprojekte.de/wp-content/uploads/2017/10/udpRC4UGV-Button-control.png"><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-439" src="https://makerprojekte.de/wp-content/uploads/2017/10/udpRC4UGV-Button-control-300x157.png" alt="" width="300" height="157" srcset="https://makerprojekte.de/wp-content/uploads/2017/10/udpRC4UGV-Button-control-300x157.png 300w, https://makerprojekte.de/wp-content/uploads/2017/10/udpRC4UGV-Button-control-400x209.png 400w, https://makerprojekte.de/wp-content/uploads/2017/10/udpRC4UGV-Button-control-768x402.png 768w, https://makerprojekte.de/wp-content/uploads/2017/10/udpRC4UGV-Button-control-1024x536.png 1024w, https://makerprojekte.de/wp-content/uploads/2017/10/udpRC4UGV-Button-control-1200x628.png 1200w, https://makerprojekte.de/wp-content/uploads/2017/10/udpRC4UGV-Button-control.png 1280w" sizes="auto, (max-width: 300px) 85vw, 300px" /></a></p>
<p>The app is available free of charge from the <a href="https://play.google.com/store/apps/details?id=com.udprc4ugv">Google Play Store</a>. The User Manual can be downloaded from the <a href="https://www.pikoder.de/udpRC4UGV_App_EN.html">PiKoder website</a>; it describes not only the program operation in detail, but also the hardware setup.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://makerprojekte.de/en/control-your-ardupilot-mega-rover-with-your-android-smartphone-ii/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Ardupilot Mega Rover remotely controlled with smartphone</title>
		<link>https://makerprojekte.de/en/control-your-ardupilot-mega-rover-with-your-android-smartphone/</link>
					<comments>https://makerprojekte.de/en/control-your-ardupilot-mega-rover-with-your-android-smartphone/#respond</comments>
		
		<dc:creator><![CDATA[Gregor]]></dc:creator>
		<pubDate>Thu, 31 Oct 2019 13:24:32 +0000</pubDate>
				<category><![CDATA[Ardupilot]]></category>
		<category><![CDATA[RC]]></category>
		<category><![CDATA[Rover]]></category>
		<category><![CDATA[UAV]]></category>
		<guid isPermaLink="false">https://makerprojekte.de/control-your-ardupilot-mega-rover-with-your-android-smartphone/</guid>

					<description><![CDATA[Overview In the standard setup of the Ardupilot Mega (APM) for Rovers you would deploy a conventional RC for manual control: the RC receiver feeds the input channels of the APM with PWM signals for Rover movement and for executing special functions such as switching flight modes. If you replace the conventional remote control receiver &#8230; <a href="https://makerprojekte.de/en/control-your-ardupilot-mega-rover-with-your-android-smartphone/" class="more-link">Continue reading<span class="screen-reader-text"> "Ardupilot Mega Rover remotely controlled with smartphone"</span></a>]]></description>
										<content:encoded><![CDATA[<h1>Overview</h1>
<p>In the standard setup of the Ardupilot Mega (APM) for Rovers you would deploy a conventional RC for manual control: the RC receiver feeds the input channels of the APM with PWM signals for Rover movement and for executing special functions such as switching flight modes.</p>
<p>If you replace the conventional remote control receiver with a PiKoder receiver &#8211; either WLAN- (<a href="http://www.pikoder.de/WLAN_RC_EN.html">PiKoder/SSC wRX</a> or Bluetooth -communication <a href="https://pikoder.de/Bluetooth_RC_EN.htm">(PiKoder/SSC RX),</a> then the Ardupilot can be controlled via an Android based smartphone or tablet using the remote control apps <a href="https://play.google.com/store/apps/details?id=com.udprc&amp;hl=de">udpRC</a> or respectively <a href="https://play.google.com/store/apps/details?id=com.btRC.app">btRC</a>.</p>
<h1>Setting up the rover</h1>
<p>First, the APM is loaded with the Mission Planner with the ROVER configuration; a further adjustment of the parameters was not necessary in my case.</p>
<p>The following image shows the very simple hardware setup.</p>
<p><a href="https://makerprojekte.de/wp-content/uploads/2017/07/Anschl%C3%BCsse.jpg"><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-370" src="https://makerprojekte.de/wp-content/uploads/2017/07/Anschlüsse-300x225.jpg" alt="" width="300" height="225" srcset="https://makerprojekte.de/wp-content/uploads/2017/07/Anschlüsse-300x225.jpg 300w, https://makerprojekte.de/wp-content/uploads/2017/07/Anschlüsse-250x188.jpg 250w, https://makerprojekte.de/wp-content/uploads/2017/07/Anschlüsse-400x300.jpg 400w, https://makerprojekte.de/wp-content/uploads/2017/07/Anschlüsse-768x576.jpg 768w, https://makerprojekte.de/wp-content/uploads/2017/07/Anschlüsse-1024x768.jpg 1024w, https://makerprojekte.de/wp-content/uploads/2017/07/Anschlüsse-1200x900.jpg 1200w" sizes="auto, (max-width: 300px) 85vw, 300px" /></a></p>
<p>The PiKoder &#8211; channel 1 is connected to the APM input 1 (steering) and the PiKoder &#8211; channel 2 to the input 3 (throttle). The standard rover wiring is used at the output side (steering servo on channel 1, ESC with BEC on channel 3). In this configuration, the Ardupilot takes over the power supply of the receiver.</p>
<p>The Ardupilot does not respond to PWM signals that are below or exceeding the typical range of approx. 1,000 &#8211; 2,000 µs. Therefore, the minimum and maximum values of the pulse values of the PiKoder/SSC have to be adjusted, as shown in the following figure.</p>
<p><a href="https://makerprojekte.de/wp-content/uploads/2017/08/PiKoder-SSC-Parameter-f%C3%BCr-APM-Ansteuerung.jpg"><img loading="lazy" decoding="async" class="alignnone size-medium wp-image-383" src="https://makerprojekte.de/wp-content/uploads/2017/08/PiKoder-SSC-Parameter-für-APM-Ansteuerung-300x188.jpg" alt="" width="300" height="188" srcset="https://makerprojekte.de/wp-content/uploads/2017/08/PiKoder-SSC-Parameter-für-APM-Ansteuerung-300x188.jpg 300w, https://makerprojekte.de/wp-content/uploads/2017/08/PiKoder-SSC-Parameter-für-APM-Ansteuerung-400x250.jpg 400w, https://makerprojekte.de/wp-content/uploads/2017/08/PiKoder-SSC-Parameter-für-APM-Ansteuerung-768x480.jpg 768w, https://makerprojekte.de/wp-content/uploads/2017/08/PiKoder-SSC-Parameter-für-APM-Ansteuerung.jpg 904w" sizes="auto, (max-width: 300px) 85vw, 300px" /></a></p>
<p>For this purpose, the PiKoder Control Center (PCC) is used as described in the User&#8217;s Manual for the <a href="http://www.pikoder.de/WLAN_RC_EN.html">PiKoder/SSC wRX</a>.</p>
<p>This completes the set up; the function of the apps is described in the user manuals.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://makerprojekte.de/en/control-your-ardupilot-mega-rover-with-your-android-smartphone/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
