<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.paparazziuav.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Russell</id>
	<title>PaparazziUAV - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.paparazziuav.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Russell"/>
	<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/wiki/Special:Contributions/Russell"/>
	<updated>2026-05-22T00:26:08Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.1</generator>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Settings&amp;diff=20350</id>
		<title>Settings</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Settings&amp;diff=20350"/>
		<updated>2015-09-03T11:31:32Z</updated>

		<summary type="html">&lt;p&gt;Russell: Updated some links to point at github&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The grammar of the setting file is described in &amp;lt;tt&amp;gt;conf/settings/settings.dtd&amp;lt;/tt&amp;gt;. It is a tree of named variables. Each variable is associated with a &amp;lt;tt&amp;gt;min&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;max&amp;lt;/tt&amp;gt; and &amp;lt;tt&amp;gt;step&amp;lt;/tt&amp;gt; attributes. These attributes are used to build the graphical interface of the settings page in the [[GCS]]. A simple entry looks like&lt;br /&gt;
 &amp;lt;tt&amp;gt;&amp;lt;dl_setting MAX=&amp;quot;2&amp;quot; MIN=&amp;quot;0&amp;quot; STEP=&amp;quot;1&amp;quot; VAR=&amp;quot;pprz_mode&amp;quot;&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
More attributes may be added:&lt;br /&gt;
* &amp;lt;tt&amp;gt;shortname=&amp;quot;s&amp;quot;&amp;lt;/tt&amp;gt; : &amp;lt;tt&amp;gt;s&amp;lt;/tt&amp;gt; will replace the variable name for the label in the [[GCS]]&lt;br /&gt;
* &amp;lt;tt&amp;gt;module=&amp;quot;m&amp;quot;&amp;lt;/tt&amp;gt; : It specifies the file where the variable is coming from. A corresponding &amp;lt;tt&amp;gt;#include &amp;quot;m.h&amp;quot;&amp;lt;/tt&amp;gt; will be generated in the corresponding C code.&lt;br /&gt;
* &amp;lt;tt&amp;gt;handler=&amp;quot;h&amp;quot;&amp;lt;/tt&amp;gt; : Specifies a macro to be called to do the setting. Associated with a module &amp;lt;tt&amp;gt;m&amp;lt;/tt&amp;gt; the macro actually must be named &amp;lt;tt&amp;gt;m_h()&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Buttons, packed in the strip in the [[GCS]], may be associated to variables. They are described as &amp;lt;tt&amp;gt;strip&amp;lt;/tt&amp;gt; children elements of a &amp;lt;tt&amp;gt;dl_setting&amp;lt;/tt&amp;gt; element.&lt;br /&gt;
 &amp;lt;tt&amp;gt;&amp;lt;dl_setting MAX=&amp;quot;1&amp;quot; MIN=&amp;quot;0.0&amp;quot; STEP=&amp;quot;0.05&amp;quot; VAR=&amp;quot;v_ctl_auto_throttle_cruise_throttle&amp;quot; shortname=&amp;quot;cruise throttle&amp;quot; module=&amp;quot;fw_v_ctl&amp;quot; handler=&amp;quot;SetCruiseThrottle&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;strip_button name=&amp;quot;Dash&amp;quot; value=&amp;quot;1&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;strip_button name=&amp;quot;Loiter&amp;quot; value=&amp;quot;0.1&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;strip_button name=&amp;quot;Cruise&amp;quot; value=&amp;quot;0&amp;quot;/&amp;gt;&lt;br /&gt;
 &amp;lt;/dl_setting&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For a prettier strip, an icon can be used for a strip button:&lt;br /&gt;
 &amp;lt;tt&amp;gt;&amp;lt;dl_setting MAX=&amp;quot;200&amp;quot; MIN=&amp;quot;-200&amp;quot; STEP=&amp;quot;10&amp;quot; VAR=&amp;quot;nav_radius&amp;quot; module=&amp;quot;nav&amp;quot; handler=&amp;quot;SetNavRadius&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;strip_button icon=&amp;quot;circle-right.png&amp;quot; name=&amp;quot;Circle right&amp;quot; value=&amp;quot;1&amp;quot;/&amp;gt;        &lt;br /&gt;
  &amp;lt;strip_button icon=&amp;quot;circle-left.png&amp;quot; name=&amp;quot;Circle left&amp;quot; value=&amp;quot;-1&amp;quot;/&amp;gt;        &lt;br /&gt;
 &amp;lt;/dl_setting&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
The image file must be located in the &amp;lt;tt&amp;gt;data/pictures/gcs_icons&amp;lt;/tt&amp;gt; directory.&lt;br /&gt;
&lt;br /&gt;
Key accelerators can also be specified (using the GTK syntax to specify the keysym):&lt;br /&gt;
 &amp;lt;tt&amp;gt;&amp;lt;dl_setting MAX=&amp;quot;200&amp;quot; MIN=&amp;quot;-200&amp;quot; STEP=&amp;quot;10&amp;quot; VAR=&amp;quot;nav_radius&amp;quot; module=&amp;quot;nav&amp;quot; handler=&amp;quot;SetNavRadius&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;key_press key=&amp;quot;greater&amp;quot; value=&amp;quot;1&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;key_press key=&amp;quot;less&amp;quot; value=&amp;quot;-1&amp;quot;/&amp;gt;&lt;br /&gt;
  &amp;lt;key_press key=&amp;quot;F10&amp;quot; value=&amp;quot;100&amp;quot;/&amp;gt;&lt;br /&gt;
 &amp;lt;/dl_setting&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Some examples of settings files can be found in &amp;lt;tt&amp;gt;conf/settings&amp;lt;/tt&amp;gt; ([https://github.com/paparazzi/paparazzi/blob/master/conf/settings/rotorcraft_basic.xml rotocraft_basic.xml] and [https://github.com/paparazzi/paparazzi/blob/master/conf/settings/fixedwing_basic.xml fixedwing_basic.xml]).&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]] [[Category:User_Documentation]]&lt;/div&gt;</summary>
		<author><name>Russell</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Get_Hardware&amp;diff=20294</id>
		<title>Get Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Get_Hardware&amp;diff=20294"/>
		<updated>2015-08-27T21:50:53Z</updated>

		<summary type="html">&lt;p&gt;Russell: /* Autopilots */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As an open-source project, all source code and hardware plans are [https://github.com/paparazzi/paparazzi-hardware freely available on GitHub] or directly from the [[Autopilots|hardware Wiki pages]] for anyone to produce, use, modify, and redistribute in accordance with the [http://www.gnu.org/licenses/gpl.txt GPL License Agreement] which requires only that the open-source nature of the project be maintained by all who redistribute it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Autopilots=&lt;br /&gt;
&lt;br /&gt;
== [[File:1bitsquared_logo.png|100px|link=http://1bitsquared.com]] 1 BIT SQUARED ==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Paparazzi UAV, development, production and consulting company. Manufacturers and distributors of [[Lisa/S]] nano autopilot.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
== [[File:Ppzuav.jpg|100px|link=https://www.ppzuav.com/osc]] PPZUAV ==&lt;br /&gt;
[[Image:ApogeeV1_img01sm.JPG|thumb|100px|ApogeeV1]]&lt;br /&gt;
&amp;lt;p&amp;gt;Assembling hardware for Paparazzi based projects since 2007.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;We are a USA based company that makes the Open Sourced Paparazzi Hardware available around the World. If you need fully assembled or just PCBs we can help.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;If you do not see what you need please do not hesitate to contact us via eMail to: sales@ppzuav.com for details.&lt;br /&gt;
Visit the [https://www.ppzuav.com/osc Web Store] to see the latest offerings.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
NOTE: PPZUAV will be closed for vacation Sept 2014 to Jan 2015. &lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
== [[File:Drotek.png|100px|link=http://www.drotek.fr]] Drotek ==&lt;br /&gt;
&lt;br /&gt;
[http://www.drotek.fr Drotek] is currently capable of producing [[Apogee/v1.00|Apogee v1.0]] boards on demand. It will be available on the webstore soon.&lt;br /&gt;
&lt;br /&gt;
Other parts such as GPS, IMU or Magnetometer breakout boards are also available.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
== [http://transition-robotics.com [[Image:Transition_Robotics_Logo.png|100px]] Transition Robotics Inc.] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:LisaM_V2_0_TopView.JPG|thumb|Lisa/M V2.0 top view]][[Image:LisaM_V2_0_BottomView.JPG|thumb|Lisa/M V2.0 bottom view]]&lt;br /&gt;
&lt;br /&gt;
Transition Robotics Inc. is a young company developing new solutions for and with the Paparazzi UAV platform. Their core product is the [[Image:Quadshot_Logo.jpg|100px|link=http://thequadshot.com|Quadshot]], a VTOL transitioning aircraft.&lt;br /&gt;
&lt;br /&gt;
Beside the Quadshot itself they develop and provide hardware and software that is especially optimized for Paparazzi, such as the Lisa Autopilots, Aspirin IMUs and associated accessories.&lt;br /&gt;
&lt;br /&gt;
They have a shop on their [http://transition-robotics.com Quadshot product page].&lt;br /&gt;
&lt;br /&gt;
As of February 2012, Transition Robotics, Inc. has acquired all IP and Paparazzi related inventory from Joby Robotics. We are thankful to Joby Robotics for their important and faithful support of Paparazzi related hardware projects, and hope to carry on this tradition. Hardware formerly supplied by Joby Robotics may now be purchased at the [http://transition-robotics.com/collections/all Transition Robotics/Quadshot webstore.]&lt;br /&gt;
&lt;br /&gt;
The [http://transition-robotics.com/collections/all TRI/Quadshot Webstore] also stocks pre-crimped Molex Picoblade wires and connector housings.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
== [[File:Luftfotos24.jpg|250px|link=http://www.luftfotos24.de/de/]] Luftfotos24 ==&lt;br /&gt;
&amp;lt;p&amp;gt;We produce ready-to-fly paparazzi systems for everyone.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;We are a company based in germany and deliver around the world. We create our own hardware and a groundstation that includes the rc transmitter and video rx. Complete paparazzi systems are available at: [http://shop.luftfotos24.de Shop Luftfotos24]&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[File:Droneeasy_logo.gif|link=http://www.droneasy.com/]] Droneasy ==&lt;br /&gt;
&lt;br /&gt;
They produce both the Apogee and the older Lisa M V2.0 w/Aspirin V2.1 Sensor&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
==[http://www.sparkfun.com Sparkfun]==&lt;br /&gt;
Sparkfun is a great source of miscellaneous electronics like:&lt;br /&gt;
* Development boards&lt;br /&gt;
* GPS&lt;br /&gt;
* Gyros&lt;br /&gt;
* Accelerometers&lt;br /&gt;
* Pressure sensors&lt;br /&gt;
* Ultrasonic distance sensors&lt;br /&gt;
* Temperature/humidity sensors&lt;br /&gt;
* USB to Serial converters (XBEE adapter)&lt;br /&gt;
* LEDs&lt;br /&gt;
* Etc.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Sparkfun distributors in Europe'''&lt;br /&gt;
&lt;br /&gt;
Incomplete list.&lt;br /&gt;
*http://www.lipoly.de/index.php?main_page=index&amp;amp;cPath=880_883&amp;amp;language=en&lt;br /&gt;
*http://www.watterott.com/en/SparkFun&lt;br /&gt;
&lt;br /&gt;
==Mouser==&lt;br /&gt;
&lt;br /&gt;
Electronic distributor, sells all kinds of electronic parts or modules.&lt;br /&gt;
Free shipping as of 60€.&lt;br /&gt;
&lt;br /&gt;
== [https://store.diydrones.com/ DIYDrones] ==&lt;br /&gt;
Mainly focused on ArduPilot hardware. But carries Paparazzi compatible Telemetry and sensor boards.&lt;br /&gt;
&lt;br /&gt;
'''DIYDrones distributors in Europe'''&lt;br /&gt;
*http://www.lipoly.de/index.php?main_page=index&amp;amp;cPath=880_1912 [DE]&lt;br /&gt;
*http://www.unmannedtechshop.co.uk/ [UK]&lt;br /&gt;
*http://www.buildyourowndrone.co.uk/ [UK]&lt;br /&gt;
&lt;br /&gt;
==u-Blox GPS receivers==&lt;br /&gt;
&lt;br /&gt;
* [http://www.navilock.de/produkte/gruppen/13/Boards_und_Module navilock.de] (also available on [http://www.amazon.de Amazon.de])&lt;br /&gt;
* [http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/Antaris-4-Modules.asp rfdesign.co.za] (Also [http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/u-blox-5-Modules.asp u-blox 5] and [http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/u-blox-6-Modules.asp u-blox 6] modules avialable)&lt;br /&gt;
* [http://www.expedienttech.com/ expedittech.com]&lt;br /&gt;
* [http://www.csgshop.com/category.php?id_category=16 csgshop.com US UBLOX MAX-6Q] ( Lithuania )&lt;br /&gt;
* [https://www.ppzuav.com/osc/product_info.php?cPath=13&amp;amp;products_id=75 ppzuav.com GPS13] (USA)&lt;br /&gt;
* [http://www.hobbyking.com/hobbyking/store/__31135__neo_6m_gps_module.html hobbyking.com NEO-6M] 18$ / 14€&lt;br /&gt;
&lt;br /&gt;
==Airspeed Sensors==&lt;br /&gt;
&lt;br /&gt;
Eagle Tree Systems makes a small standalone airspeed sensor that can be connected via i2c. They also sell pitot tubes standalone for other differential pressure sensors.&lt;br /&gt;
*[http://www.eagletreesystems.com/Standalone/standalone.htm Eagle Tree Systems] (Also available from a number of distributors)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== DIGI XBee telemetry modules ==&lt;br /&gt;
For detailed shopping guide see [Modems]&lt;br /&gt;
*http://www.watterott.com/en/Digi (DE EU)&lt;br /&gt;
*https://store.diydrones.com/ (US See above for local distributors)&lt;br /&gt;
*http://unmannedtechshop.co.uk/UAV-Components/UAV-telemetry (UK)&lt;br /&gt;
*http://mouser.com/ (AU and other regions)&lt;br /&gt;
&lt;br /&gt;
=PCB=&lt;br /&gt;
==[https://www.ppzuav.com/osc/index.php?cPath=1 PPZUAV]==&lt;br /&gt;
Paparazzi specific bare and already assembled PCB's.&lt;br /&gt;
&lt;br /&gt;
==[http://www.seeedstudio.com/service/index.php?r=site/pcbService Seeedstudio Fusion PCB]==&lt;br /&gt;
Very cheap 1, 2 and 4 layer boards from china. (perfect for bigger volumes and a low price)&amp;lt;br/&amp;gt;&lt;br /&gt;
Shipping from china takes some time. Minimum order is 5 pcs.&lt;br /&gt;
&lt;br /&gt;
==[http://oshpark.com/ OSH Park]==&lt;br /&gt;
Fast high quality 2 and 4 layer boards.(perfect for high requirements, but they're not the cheapest)&amp;lt;br/&amp;gt;&lt;br /&gt;
Free worldwide shipping. Minimum order is 3 pcs.&lt;br /&gt;
&lt;br /&gt;
==[http://PCBShopper.com/ PCBShopper]==&lt;br /&gt;
A hobbyist-created site for finding the cheapest PCB manufacturer. Enter the size, layers, and quantity of the board you designed, and PCBShopper will give you prices and delivery time from several different manufacturers.&lt;br /&gt;
&lt;br /&gt;
= Old vendors =&lt;br /&gt;
&lt;br /&gt;
Here is a list of former paparazzi hardware vendors for reference. They were providing a great service to the Paparazzi community.&lt;br /&gt;
&lt;br /&gt;
* [http://chebuzz.com/paparazzi Chebuzz Pprz] had to move back to US and close his store, [http://aerofu.com/ AeroFu] is carrying on his business.&lt;br /&gt;
* [http://jobyrobotics.com Joby Robotics] stock and IP was bought by [http://transition-robotics.com Transition Robotics] that is carrying on their business.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]] [[Category:User_Documentation]]&lt;/div&gt;</summary>
		<author><name>Russell</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=Get_Hardware&amp;diff=20293</id>
		<title>Get Hardware</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=Get_Hardware&amp;diff=20293"/>
		<updated>2015-08-27T21:48:20Z</updated>

		<summary type="html">&lt;p&gt;Russell: /* Autopilots */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As an open-source project, all source code and hardware plans are [https://github.com/paparazzi/paparazzi-hardware freely available on GitHub] or directly from the [[Autopilots|hardware Wiki pages]] for anyone to produce, use, modify, and redistribute in accordance with the [http://www.gnu.org/licenses/gpl.txt GPL License Agreement] which requires only that the open-source nature of the project be maintained by all who redistribute it.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Autopilots=&lt;br /&gt;
&lt;br /&gt;
== [[File:1bitsquared_logo.png|100px|link=http://1bitsquared.com]] 1 BIT SQUARED ==&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Paparazzi UAV, development, production and consulting company. Manufacturers and distributors of [[Lisa/S]] nano autopilot.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
== [[File:Ppzuav.jpg|100px|link=https://www.ppzuav.com/osc]] PPZUAV ==&lt;br /&gt;
[[Image:ApogeeV1_img01sm.JPG|thumb|100px|ApogeeV1]]&lt;br /&gt;
&amp;lt;p&amp;gt;Assembling hardware for Paparazzi based projects since 2007.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;We are a USA based company that makes the Open Sourced Paparazzi Hardware available around the World. If you need fully assembled or just PCBs we can help.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;If you do not see what you need please do not hesitate to contact us via eMail to: sales@ppzuav.com for details.&lt;br /&gt;
Visit the [https://www.ppzuav.com/osc Web Store] to see the latest offerings.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
NOTE: PPZUAV will be closed for vacation Sept 2014 to Jan 2015. &lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
== [[File:Drotek.png|100px|link=http://www.drotek.fr]] Drotek ==&lt;br /&gt;
&lt;br /&gt;
[http://www.drotek.fr Drotek] is currently capable of producing [[Apogee/v1.00|Apogee v1.0]] boards on demand. It will be available on the webstore soon.&lt;br /&gt;
&lt;br /&gt;
Other parts such as GPS, IMU or Magnetometer breakout boards are also available.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
== [http://transition-robotics.com [[Image:Transition_Robotics_Logo.png|100px]] Transition Robotics Inc.] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:LisaM_V2_0_TopView.JPG|thumb|Lisa/M V2.0 top view]][[Image:LisaM_V2_0_BottomView.JPG|thumb|Lisa/M V2.0 bottom view]]&lt;br /&gt;
&lt;br /&gt;
Transition Robotics Inc. is a young company developing new solutions for and with the Paparazzi UAV platform. Their core product is the [[Image:Quadshot_Logo.jpg|100px|link=http://thequadshot.com|Quadshot]], a VTOL transitioning aircraft.&lt;br /&gt;
&lt;br /&gt;
Beside the Quadshot itself they develop and provide hardware and software that is especially optimized for Paparazzi, such as the Lisa Autopilots, Aspirin IMUs and associated accessories.&lt;br /&gt;
&lt;br /&gt;
They have a shop on their [http://transition-robotics.com Quadshot product page].&lt;br /&gt;
&lt;br /&gt;
As of February 2012, Transition Robotics, Inc. has acquired all IP and Paparazzi related inventory from Joby Robotics. We are thankful to Joby Robotics for their important and faithful support of Paparazzi related hardware projects, and hope to carry on this tradition. Hardware formerly supplied by Joby Robotics may now be purchased at the [http://transition-robotics.com/collections/all Transition Robotics/Quadshot webstore.]&lt;br /&gt;
&lt;br /&gt;
The [http://transition-robotics.com/collections/all TRI/Quadshot Webstore] also stocks pre-crimped Molex Picoblade wires and connector housings.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
== [[File:Luftfotos24.jpg|250px|link=http://www.luftfotos24.de/de/]] Luftfotos24 ==&lt;br /&gt;
&amp;lt;p&amp;gt;We produce ready-to-fly paparazzi systems for everyone.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;We are a company based in germany and deliver around the world. We create our own hardware and a groundstation that includes the rc transmitter and video rx. Complete paparazzi systems are available at: [http://shop.luftfotos24.de Shop Luftfotos24]&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
== [[File:Droneeasy_logo.gif|http://www.droneasy.com/]]==&lt;br /&gt;
&lt;br /&gt;
They produce both the Apogee and the older Lisa M V2.0 w/Aspirin V2.1 Sensor&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Other =&lt;br /&gt;
&lt;br /&gt;
==[http://www.sparkfun.com Sparkfun]==&lt;br /&gt;
Sparkfun is a great source of miscellaneous electronics like:&lt;br /&gt;
* Development boards&lt;br /&gt;
* GPS&lt;br /&gt;
* Gyros&lt;br /&gt;
* Accelerometers&lt;br /&gt;
* Pressure sensors&lt;br /&gt;
* Ultrasonic distance sensors&lt;br /&gt;
* Temperature/humidity sensors&lt;br /&gt;
* USB to Serial converters (XBEE adapter)&lt;br /&gt;
* LEDs&lt;br /&gt;
* Etc.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Sparkfun distributors in Europe'''&lt;br /&gt;
&lt;br /&gt;
Incomplete list.&lt;br /&gt;
*http://www.lipoly.de/index.php?main_page=index&amp;amp;cPath=880_883&amp;amp;language=en&lt;br /&gt;
*http://www.watterott.com/en/SparkFun&lt;br /&gt;
&lt;br /&gt;
==Mouser==&lt;br /&gt;
&lt;br /&gt;
Electronic distributor, sells all kinds of electronic parts or modules.&lt;br /&gt;
Free shipping as of 60€.&lt;br /&gt;
&lt;br /&gt;
== [https://store.diydrones.com/ DIYDrones] ==&lt;br /&gt;
Mainly focused on ArduPilot hardware. But carries Paparazzi compatible Telemetry and sensor boards.&lt;br /&gt;
&lt;br /&gt;
'''DIYDrones distributors in Europe'''&lt;br /&gt;
*http://www.lipoly.de/index.php?main_page=index&amp;amp;cPath=880_1912 [DE]&lt;br /&gt;
*http://www.unmannedtechshop.co.uk/ [UK]&lt;br /&gt;
*http://www.buildyourowndrone.co.uk/ [UK]&lt;br /&gt;
&lt;br /&gt;
==u-Blox GPS receivers==&lt;br /&gt;
&lt;br /&gt;
* [http://www.navilock.de/produkte/gruppen/13/Boards_und_Module navilock.de] (also available on [http://www.amazon.de Amazon.de])&lt;br /&gt;
* [http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/Antaris-4-Modules.asp rfdesign.co.za] (Also [http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/u-blox-5-Modules.asp u-blox 5] and [http://www.rfdesign.co.za/pages/5645456/Products/GPS-Products/u-blox-6-Modules.asp u-blox 6] modules avialable)&lt;br /&gt;
* [http://www.expedienttech.com/ expedittech.com]&lt;br /&gt;
* [http://www.csgshop.com/category.php?id_category=16 csgshop.com US UBLOX MAX-6Q] ( Lithuania )&lt;br /&gt;
* [https://www.ppzuav.com/osc/product_info.php?cPath=13&amp;amp;products_id=75 ppzuav.com GPS13] (USA)&lt;br /&gt;
* [http://www.hobbyking.com/hobbyking/store/__31135__neo_6m_gps_module.html hobbyking.com NEO-6M] 18$ / 14€&lt;br /&gt;
&lt;br /&gt;
==Airspeed Sensors==&lt;br /&gt;
&lt;br /&gt;
Eagle Tree Systems makes a small standalone airspeed sensor that can be connected via i2c. They also sell pitot tubes standalone for other differential pressure sensors.&lt;br /&gt;
*[http://www.eagletreesystems.com/Standalone/standalone.htm Eagle Tree Systems] (Also available from a number of distributors)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== DIGI XBee telemetry modules ==&lt;br /&gt;
For detailed shopping guide see [Modems]&lt;br /&gt;
*http://www.watterott.com/en/Digi (DE EU)&lt;br /&gt;
*https://store.diydrones.com/ (US See above for local distributors)&lt;br /&gt;
*http://unmannedtechshop.co.uk/UAV-Components/UAV-telemetry (UK)&lt;br /&gt;
*http://mouser.com/ (AU and other regions)&lt;br /&gt;
&lt;br /&gt;
=PCB=&lt;br /&gt;
==[https://www.ppzuav.com/osc/index.php?cPath=1 PPZUAV]==&lt;br /&gt;
Paparazzi specific bare and already assembled PCB's.&lt;br /&gt;
&lt;br /&gt;
==[http://www.seeedstudio.com/service/index.php?r=site/pcbService Seeedstudio Fusion PCB]==&lt;br /&gt;
Very cheap 1, 2 and 4 layer boards from china. (perfect for bigger volumes and a low price)&amp;lt;br/&amp;gt;&lt;br /&gt;
Shipping from china takes some time. Minimum order is 5 pcs.&lt;br /&gt;
&lt;br /&gt;
==[http://oshpark.com/ OSH Park]==&lt;br /&gt;
Fast high quality 2 and 4 layer boards.(perfect for high requirements, but they're not the cheapest)&amp;lt;br/&amp;gt;&lt;br /&gt;
Free worldwide shipping. Minimum order is 3 pcs.&lt;br /&gt;
&lt;br /&gt;
==[http://PCBShopper.com/ PCBShopper]==&lt;br /&gt;
A hobbyist-created site for finding the cheapest PCB manufacturer. Enter the size, layers, and quantity of the board you designed, and PCBShopper will give you prices and delivery time from several different manufacturers.&lt;br /&gt;
&lt;br /&gt;
= Old vendors =&lt;br /&gt;
&lt;br /&gt;
Here is a list of former paparazzi hardware vendors for reference. They were providing a great service to the Paparazzi community.&lt;br /&gt;
&lt;br /&gt;
* [http://chebuzz.com/paparazzi Chebuzz Pprz] had to move back to US and close his store, [http://aerofu.com/ AeroFu] is carrying on his business.&lt;br /&gt;
* [http://jobyrobotics.com Joby Robotics] stock and IP was bought by [http://transition-robotics.com Transition Robotics] that is carrying on their business.&lt;br /&gt;
&lt;br /&gt;
[[Category:Hardware]] [[Category:User_Documentation]]&lt;/div&gt;</summary>
		<author><name>Russell</name></author>
	</entry>
	<entry>
		<id>http://wiki.paparazziuav.org/w/index.php?title=File:Droneeasy_logo.gif&amp;diff=20292</id>
		<title>File:Droneeasy logo.gif</title>
		<link rel="alternate" type="text/html" href="http://wiki.paparazziuav.org/w/index.php?title=File:Droneeasy_logo.gif&amp;diff=20292"/>
		<updated>2015-08-27T21:45:40Z</updated>

		<summary type="html">&lt;p&gt;Russell: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Russell</name></author>
	</entry>
</feed>