<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>AeroQuad Forums</title>
		<link>http://aeroquad.com/</link>
		<description>This is a discussion forum powered by vBulletin. To find out about vBulletin, go to http://www.vbulletin.com/ .</description>
		<language>en</language>
		<lastBuildDate>Fri, 03 Sep 2010 15:37:41 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.aeroquad.com/images/misc/rss.png</url>
			<title>AeroQuad Forums</title>
			<link>http://aeroquad.com/</link>
		</image>
		<item>
			<title>Another impressive kk-multicopter Video</title>
			<link>http://aeroquad.com/showthread.php?974-Another-impressive-kk-multicopter-Video&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 12:34:18 GMT</pubDate>
			<description>http://vimeo.com/14604109 
 
They´re using only 3 HK401B gyros on their Boards!!</description>
			<content:encoded><![CDATA[<div>
<object class="restrain" type="application/x-shockwave-flash" width="640" height="360" data="http://vimeo.com/moogaloop.swf?clip_id=14604109">
	<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=14604109" />
	<param name="wmode" value="transparent" />
</object>
 <br />
<br />
They´re using only 3 HK401B gyros on their Boards!!</div>

 ]]></content:encoded>
			<category domain="http://aeroquad.com/forumdisplay.php?12-Flight-Videos">Flight Videos</category>
			<dc:creator>Hamburg</dc:creator>
			<guid isPermaLink="true">http://aeroquad.com/showthread.php?974-Another-impressive-kk-multicopter-Video</guid>
		</item>
		<item>
			<title>Quad ESC Design</title>
			<link>http://aeroquad.com/showthread.php?973-Quad-ESC-Design&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 02:55:59 GMT</pubDate>
			<description>Guys,  
 
In the past I have seen posts of people wanting to build their own Quad ESCs (one device to control four brushless motors at the same...</description>
			<content:encoded><![CDATA[<div>Guys, <br />
<br />
In the past I have seen posts of people wanting to build their own Quad ESCs (one device to control four brushless motors at the same time), but I haven't run across someone that has actually done it. Can anyone tell me where I might find a design to review/consider?<br />
<br />
Thx, <b>VR4</b><font color="red">GUID</font></div>

 ]]></content:encoded>
			<category domain="http://aeroquad.com/forumdisplay.php?16-General-Discussion">General Discussion</category>
			<dc:creator>VR4GUID</dc:creator>
			<guid isPermaLink="true">http://aeroquad.com/showthread.php?973-Quad-ESC-Design</guid>
		</item>
		<item>
			<title>heading hold with gyro only</title>
			<link>http://aeroquad.com/showthread.php?972-heading-hold-with-gyro-only&amp;goto=newpost</link>
			<pubDate>Fri, 03 Sep 2010 00:51:20 GMT</pubDate>
			<description><![CDATA[I'm trying to understand if you try and how get the absolute angle using only gyroscope. 
I've take a look at the code, but c++ still a little...]]></description>
			<content:encoded><![CDATA[<div>I'm trying to understand if you try and how get the absolute angle using only gyroscope.<br />
I've take a look at the code, but c++ still a little confusing to me (it's my first time with c++)<br />
<br />
I'm using some analogue gyro (hacked from HK401B), and I'm still trying to get absolute angle (heading hold, call it as you want ;D)<br />
First of all:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">gyroADC[axis] = analogRead(gyroChannel[axis]) - gyroZero[axis];<br />
&nbsp; &nbsp; &nbsp; gyroData[axis] = smooth(gyroADC[axis], gyroData[axis], smoothFactor);</code><hr />
</div> Ok, you're reading the value and sub the zero value, but from my test seems that the zero value change over time, specially after some &quot;shake&quot; of the gyroscope.<br />
I'm trying to use a dynamic zero value calculating the mid over the last 250/500 values, a great optimization of results, but I'm still working on...<br />
I see now you have a autoZero() function, but when you call it? and I can't find findMode() (lol)<br />
<br />
As I can understand, your smooth() is a &quot;pass high filter&quot;:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">float smooth(float currentData, float previousData, float smoothFactor) {<br />
&nbsp; return (previousData * (1.0 - smoothFactor) + (currentData * smoothFactor));<br />
}</code><hr />
</div> first of all IMHO it's a little tricky, parenthesis for the second multiplication but not for the first. better or no parenthesis on multiplication:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code"> return (previousData * (1.0 - smoothFactor) + currentData * smoothFactor);</code><hr />
</div> or to all:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code"> return ( (previousData * (1.0 - smoothFactor)) + (currentData * smoothFactor) );</code><hr />
</div> I can't understand how you get the smoothFactor, just testing?<br />
<br />
<br />
Well writing this post have put in my mind some new ideas... For dynamic mid I can try to use a weight mid over the last X values, with a lower weight when values are away from current mid..<br />
I want also try your smooth filter, with the last value but also with the mid of last 10/20 values<br />
do you have any suggestion?</div>

 ]]></content:encoded>
			<category domain="http://aeroquad.com/forumdisplay.php?7-AeroQuad-Flight-Software">AeroQuad Flight Software</category>
			<dc:creator>lesto</dc:creator>
			<guid isPermaLink="true">http://aeroquad.com/showthread.php?972-heading-hold-with-gyro-only</guid>
		</item>
		<item>
			<title>Mac / RealStudio / Arduino / Serial Comms</title>
			<link>http://aeroquad.com/showthread.php?971-Mac-RealStudio-Arduino-Serial-Comms&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 23:07:42 GMT</pubDate>
			<description><![CDATA[This may be a wee bit "off topic" but for those who want to dabble in programming some type of front end app on a Mac (or PC, or Linux, RS cross...]]></description>
			<content:encoded><![CDATA[<div>This may be a wee bit &quot;off topic&quot; but for those who want to dabble in programming some type of front end app on a Mac (or PC, or Linux, RS cross compiles very nicely) which communicates with the Aeroquad sketch (or any other app where you want two way comms with the Arduino) I wrote a generalized Arduino sketch and RS program to demonstrate how to go about it. I couldn't find anything online demonstrating how to handle the serial stream with no handshaking protocol on the Mac which was very frustrating and it took me some head scratching.<br />
<br />
RS (RealStudio) is a very nice OO programming environment which runs extremely well on the Mac and cross compiles to PC and Linux. [ <a href="http://www.realsoftware.com" target="_blank">www.realsoftware.com</a> ] Disclaimer: I don't get any kick-backs I just like it.<br />
<br />
.zip file attached</div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/zip.gif" alt="File Type: zip" />
	<a href="http://aeroquad.com/attachment.php?attachmentid=1395&amp;d=1283468395">Two Way Communications.zip</a> 
(15.8 KB)
</li> 
			</ul>
		</fieldset>
	

	</div>
 ]]></content:encoded>
			<category domain="http://aeroquad.com/forumdisplay.php?7-AeroQuad-Flight-Software">AeroQuad Flight Software</category>
			<dc:creator>kjinx</dc:creator>
			<guid isPermaLink="true">http://aeroquad.com/showthread.php?971-Mac-RealStudio-Arduino-Serial-Comms</guid>
		</item>
		<item>
			<title>Parts list for quadcopter...</title>
			<link>http://aeroquad.com/showthread.php?970-Parts-list-for-quadcopter...&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 20:01:13 GMT</pubDate>
			<description>Hello, I am looking at making a quadcopter.  Below is a parts list I have made.  Before I ordered everything, I just wanted to put it up here to see...</description>
			<content:encoded><![CDATA[<div>Hello, I am looking at making a quadcopter.  Below is a parts list I have made.  Before I ordered everything, I just wanted to put it up here to see if I could get any feedback about the quality and compatibility of everything.  Could you please post any comments or suggestions?<br />
<br />
Sorry for the messy formatting - its copied from a spreadsheet (I have attached that if its easier to view that way) :)<br />
<br />
<br />
<font size="3">ITEM  |  Qty  |  Unit Price  |  Sub Price</font><br />
<br />
<b>Arduino Mega</b>	                                     1  	$64.95    $64.95          <a href="http://www.sparkfun.com/commerce/product_info.php?products_id=9152" target="_blank">http://www.sparkfun.com/commerce/pro...oducts_id=9152</a><br />
<b>Triple axis accelerometer</b>	                     1	        $29.95          $29.95	        <a href="http://carancho.com/AeroQuad/store/index.php?main_page=product_info&amp;cPath=4&amp;products_id=55" target="_blank">http://carancho.com/AeroQuad/store/i...products_id=55</a><br />
<b>Triple axis gyro ITG 3200</b>	                     1	        $49.95	    $49.95   	<a href="http://carancho.com/AeroQuad/store/index.php?main_page=product_info&amp;cPath=4&amp;products_id=54" target="_blank">http://carancho.com/AeroQuad/store/i...products_id=54</a>	<br />
<b>AeroQuad shield v2.0</b>	                             1	        $29.95	    $29.95    	<a href="http://carancho.com/AeroQuad/store/index.php?main_page=product_info&amp;cPath=2&amp;products_id=63&amp;zenid=0cq53ppfbq1jlq96ubnt2neut0" target="_blank">http://carancho.com/AeroQuad/store/i...lq96ubnt2neut0</a>	<br />
<b>Stackable female headers	 </b>                    1	        $4.95	    $4.95     	<a href="http://carancho.com/AeroQuad/store/index.php?main_page=product_info&amp;products_id=13" target="_blank">http://carancho.com/AeroQuad/store/i...products_id=13</a>		<br />
<b>Breakout pins</b>	                                     2         $2.50             $5.00      	<a href="http://carancho.com/AeroQuad/store/index.php?main_page=product_info&amp;cPath=6&amp;products_id=14" target="_blank">http://carancho.com/AeroQuad/store/i...products_id=14</a><br />
<b>BP A2217-9 Brushless Outrunner Motor   </b>  4	        $20.00	    $80.00     	<a href="http://carancho.com/AeroQuad/store/index.php?main_page=product_info&amp;products_id=49&amp;zenid=kpirjuoi0fa873gml2uhmu2m92" target="_blank">http://carancho.com/AeroQuad/store/i...73gml2uhmu2m92</a>	<br />
<b>PhiFUN I2C 18 AMP ESC (4 Different)</b>	     4	        $37.95	    $151.80 	<a href="http://carancho.com/AeroQuad/store/index.php?main_page=product_info&amp;cPath=11&amp;products_id=67" target="_blank">http://carancho.com/AeroQuad/store/i...products_id=67</a><br />
<b>ZIPPY Flightmax 4400mAh 3S1P 15C</b>	     2         $26.79	    $53.58    	<a href="http://hobbycity.com/hobbycity/store/uh_viewItem.asp?idproduct=6504" target="_blank">http://hobbycity.com/hobbycity/store...idproduct=6504</a><br />
<b>APC 10x4.7 Slow Flyer Propellers	 </b>            4	        $2.93	    $11.72    	<a href="http://www.apcprop.com/ProductDetails.asp?ProductCode=LP10047" target="_blank">http://www.apcprop.com/ProductDetail...ctCode=LP10047</a>		<br />
<b>APC 10x4.7 Slow Flyer Pusher Propellers</b>   4	$	4.39$	17.56	<a href="http://www.apcprop.com/ProductDetails.asp?ProductCode=LP10047" target="_blank">http://www.apcprop.com/ProductDetail...ctCode=LP10047</a><br />
<b>DX7 7-Chan. Air Tran. Only MD2 by Spektrum</b>	1	$	229.99 $	229.99 <a href="http://www.toddsmodels.com/SPMR7700_DX7_7_Channel_Air_Transmitter_Only_MD2_p/spmr7700.htm" target="_blank">http://www.toddsmodels.com/SPMR7700_...p/spmr7700.htm</a><br />
<b>DSM2 AR6200 6-Channel Receiver Ultralite</b>	1	$	79.99	$	79.99	<a href="http://www.toddsmodels.com/SPMAR6200_Spektrum_DSM2_AR6200_6_Channel_Receiver_p/spmar6200.htm" target="_blank">http://www.toddsmodels.com/SPMAR6200.../spmar6200.htm</a><br />
<b>Turnigy Accucel-6 50W 6A Balancer/Charger w/ accessories</b>	1	$	22.99	$	22.99	<a href="http://hobbycity.com/hobbycity/store/uh_viewItem.asp?idproduct=7028" target="_blank">http://hobbycity.com/hobbycity/store...idproduct=7028</a><br />
<b>12V 5A 110/240V 50/60Hz Power Supply</b>	1	$	9.99	$	9.99	<a href="http://hobbycity.com/hobbycity/store/uh_viewItem.asp?idProduct=6256" target="_blank">http://hobbycity.com/hobbycity/store...idProduct=6256</a><br />
<b>Battery Alarm</b>	1	$	3.99	$	3.99	<a href="http://hobbycity.com/hobbycity/store/uh_viewItem.asp?idproduct=7223" target="_blank">http://hobbycity.com/hobbycity/store...idproduct=7223</a><br />
<b>Rhino 610mAh 2S 7.4v 20C Lipoly Pack</b>	1	$	3.92	$	3.92	<a href="http://hobbycity.com/hobbycity/store/uh_viewItem.asp?idproduct=7305" target="_blank">http://hobbycity.com/hobbycity/store...idproduct=7305</a><br />
<b>Receiver Cables</b>	1	$	9.95	$	9.95	<a href="http://carancho.com/AeroQuad/store/index.php?main_page=product_info&amp;cPath=7&amp;products_id=25" target="_blank">http://carancho.com/AeroQuad/store/i...products_id=25</a><br />
	<br />
						<br />
<b>Wireless Camera</b>	1	$	81.71	$	81.71	<a href="http://www.sunsky-online.com/view/13082/2.4GHz+12+Channels+1000mW+Wireless+Receiver+%26+Transmitter.htm" target="_blank">http://www.sunsky-online.com/view/13...ransmitter.htm</a><br />
<b>Tail Boom</b>	1	$	12.99	$	12.99	<a href="http://www.rcplanet.com/Align_Tail_Boom_600N_p/agnhn6031.htm" target="_blank">http://www.rcplanet.com/Align_Tail_B.../agnhn6031.htm</a>	.	<br />
						<br />
Motors and escs for quadcopters &lt;2 kg ~ 4.4 lbs				<br />
TOTAL	35		$	954.93<br />
<br />
<br />
Thanks,<br />
<br />
Aedhan</div>


	<div style="padding:10px">

	

	

	

	
		<fieldset class="fieldset">
			<legend>Attached Files</legend>
			<ul>
			<li>
	<img class="inlineimg" src="/pdf.gif" alt="File Type: pdf" />
	<a href="http://aeroquad.com/attachment.php?attachmentid=1393&amp;d=1283457451">QuadCopter Materials.pdf</a> 
(55.3 KB)
</li> 
			</ul>
		</fieldset>
	

	</div>
 ]]></content:encoded>
			<category domain="http://aeroquad.com/forumdisplay.php?10-Quadrocopter-Designs">Quadrocopter Designs</category>
			<dc:creator>1394</dc:creator>
			<guid isPermaLink="true">http://aeroquad.com/showthread.php?970-Parts-list-for-quadcopter...</guid>
		</item>
		<item>
			<title>I2c?</title>
			<link>http://aeroquad.com/showthread.php?969-I2c&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 19:30:36 GMT</pubDate>
			<description>Hello, I am new to QuadCopters, but not as new to electronics and programing.  I have been looking around this site and have come across the I2C...</description>
			<content:encoded><![CDATA[<div>Hello, I am new to QuadCopters, but not as new to electronics and programing.  I have been looking around this site and have come across the I2C communication protocol.  Not knowing what it is, I looked it up on Wikipedia, only to find a very broad description with nothing specifically discussing ESCs, etc...<br />
<br />
I also am considering buying the new I2C ESCs from the store as there is only one BESC left in stock, and none left at hobbyking. While they are more expensive, they are in stock and I assume there is something better about them? <br />
<br />
Could someone please explain what I2C is and how it is useful to Quadcopters?<br />
<br />
Thanks,<br />
<br />
Aedhan</div>

 ]]></content:encoded>
			<category domain="http://aeroquad.com/forumdisplay.php?16-General-Discussion">General Discussion</category>
			<dc:creator>1394</dc:creator>
			<guid isPermaLink="true">http://aeroquad.com/showthread.php?969-I2c</guid>
		</item>
		<item>
			<title>Questions about V2.0 Shield for Arduino MEGA</title>
			<link>http://aeroquad.com/showthread.php?968-Questions-about-V2.0-Shield-for-Arduino-MEGA&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 19:16:44 GMT</pubDate>
			<description>Hello, I am kind of new to QuadCopters.  I was looking at buying the new 2.0 shield for the Arduino MEGA, but before I do I have a few questions. 
...</description>
			<content:encoded><![CDATA[<div>Hello, I am kind of new to QuadCopters.  I was looking at buying the new 2.0 shield for the Arduino MEGA, but before I do I have a few questions.<br />
<br />
I see that only the Gyro (ITG 3200) is required to fly a QuadCopter and assume it will work with the latest software release.  Is this correct?<br />
<br />
I was going to start with buying the Gryo breakout board and the Accelerometer breakout board.  Will this give me reliable and stable flight?<br />
<br />
I also saw that a few other sensors/ peripherals will be written into the code in the near future (12.2010) I understand the extent of use of some i.e. the barometer is used to determine altitude - not a whole lot more, etc... but I was wondering to what extent the GPS will be used in the future software releases? location logging?  altitude determination? or full autopilot?  <br />
<br />
I would be most interested in full autopilot and would love to use the AeroQuad platform to do this, since I like the platform and the accessibility of the website and store... lots of great information and a great place to start.  I also like how it is arduino based.<br />
<br />
As i build my QuadCopter i plan to document the build and post it to this site as a resource to others.<br />
<br />
Thanks in advance<br />
<br />
Aedhan</div>

 ]]></content:encoded>
			<category domain="http://aeroquad.com/forumdisplay.php?7-AeroQuad-Flight-Software">AeroQuad Flight Software</category>
			<dc:creator>1394</dc:creator>
			<guid isPermaLink="true">http://aeroquad.com/showthread.php?968-Questions-about-V2.0-Shield-for-Arduino-MEGA</guid>
		</item>
		<item>
			<title>Yooo..Gonna build a copter!!</title>
			<link>http://aeroquad.com/showthread.php?967-Yooo..Gonna-build-a-copter!!&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 18:54:44 GMT</pubDate>
			<description>Since last may I have been searching for good information and I found this forum(actually I found it in first attempt only). I have finally decided...</description>
			<content:encoded><![CDATA[<div>Since last may I have been searching for good information and I found this forum(actually I found it in first attempt only). I have finally decided to build my own copter.<br />
<br />
Can anyone tell me flow according to which I will have to proceed. Shipping price is too high from abroad to India and hence I can not buy it from your store,is there any alternatives available? I am fairly new to RC world, though I know much about things but no communication part as yet and want to get introduced step by step. <br />
<br />
If you suggest some books, websites through which I will get more help, then I will be very thankful to you guys. I am really fascinated. I think excitation is making my thread more and more lengthy. Hope you understand what i need.<br />
<br />
Shortlist: (I am a fast learner so please help)<ol class="decimal"><li>Introduction to RC world.</li>
<li>Step by step involvement into RC Aeroquad.</li>
<li>Alternative parts (Especially adruino board as I don't know much about it, help would be appreciated) :)</li>
<li> Some guidance in the future.</li>
</ol></div>

 ]]></content:encoded>
			<category domain="http://aeroquad.com/forumdisplay.php?10-Quadrocopter-Designs">Quadrocopter Designs</category>
			<dc:creator>Electronicsdevil</dc:creator>
			<guid isPermaLink="true">http://aeroquad.com/showthread.php?967-Yooo..Gonna-build-a-copter!!</guid>
		</item>
		<item>
			<title>Need Help</title>
			<link>http://aeroquad.com/showthread.php?966-Need-Help&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 17:52:05 GMT</pubDate>
			<description>Im using the the combo IDG500 gyro and ADXL335 accelerometer with IZX500 and Im not geting response with the configurator, Im using a custom shield...</description>
			<content:encoded><![CDATA[<div>Im using the the combo IDG500 gyro and ADXL335 accelerometer with IZX500 and Im not geting response with the configurator, Im using a custom shield similar to shield1.7.<br />
Any sugestions?<br />
And i have another doubt about motors, wich they have run on clokwise and counterclockwise, and wich I have to put propeller pusher?<br />
Im not found this os forum so hope there is someone can help me.<br />
thanks.</div>

 ]]></content:encoded>
			<category domain="http://aeroquad.com/forumdisplay.php?14-AeroQuad-Tutorials">AeroQuad Tutorials</category>
			<dc:creator>alexprata</dc:creator>
			<guid isPermaLink="true">http://aeroquad.com/showthread.php?966-Need-Help</guid>
		</item>
		<item>
			<title>Angle compensation SHARP IR</title>
			<link>http://aeroquad.com/showthread.php?965-Angle-compensation-SHARP-IR&amp;goto=newpost</link>
			<pubDate>Thu, 02 Sep 2010 03:21:59 GMT</pubDate>
			<description>Tonight I realized my 4th big frame was too weak too handle the motor vibrations so I continued work on my small toy quad instead. It has a SHARP IR...</description>
			<content:encoded><![CDATA[<div>Tonight I realized my 4th big frame was too weak too handle the motor vibrations so I continued work on my small toy quad instead. It has a SHARP IR sensor on it (1.5m range, the one they used on the Ardu IMU quad around it).<br />
<br />
Difference is that I didn't buy 4, I have one mounted under it for altitude hold/regulation. After having played around with them for a while I noticed they give a REALLY good measure of absolute distance whatever angle to the object they measure to supposed that object is fairly rough to reflect light in a 180 degree arc. Such materials are my walls and my floor fortunately.<br />
<br />
Then I thought: if I was to hold altitude from that, the quad would move around like if it was tied to a stick put on the ground, like in an arc. <br />
<br />
Tonight it came to my mind that since we have very accurate relative-to-calibrated horizon angles. The good flightAngle variable accessible for both roll and pitch can then be used to compensate for this virtual arc by simple trigonometry. I did this with the SHARP IR sensor and got extremely good results! I could tilt the quad around to whatever angles I wanted compared to ground and it would still read the same distance to ground if I held it at the same height, which is exactly what I wanted.<br />
<br />
I think this can be effectively used to compensate for angles to walls too if having them mounted viewing horizontally, which would give more accurate readings although maybe not as crucial for obstacle avoidance.<br />
<br />
The code is quite simple (reading the sensor and getting centimeters and filtering first):<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">float readFilteredSHARP () {<br />
&nbsp; proxSens = analogRead(PROXSENSPIN);&nbsp; <br />
&nbsp; <br />
&nbsp; voltage = (float)proxSens * VOLTS_PER_UNIT; // (&quot;proxSens&quot; is from analog read)<br />
&nbsp; inches = 23.897 * pow(voltage,-1.1907); //calc inches using &quot;power&quot; trend line from Excel<br />
&nbsp; rawDist = 60.495 * pow(voltage,-1.1904);&nbsp; &nbsp;  // same in cm<br />
&nbsp; if (voltage &lt; .2) inches = -1.0;&nbsp; &nbsp; &nbsp; &nbsp; // out of range<br />
&nbsp;<br />
&nbsp; rawDist = constrain(rawDist, 20, 150); //cm<br />
&nbsp; <br />
&nbsp; filteredDist += ((rawDist - filteredDist) / SHARPFILTERGAIN);&nbsp; &nbsp; //gain = 2, super IIR filter<br />
&nbsp;<br />
&nbsp; return (filteredDist);&nbsp; //cm<br />
}<br />
<br />
compDist = ( ( (cos (radians(flightAngle[ROLL]))) + (cos (radians(flightAngle[PITCH]))) )&nbsp; / 2 ) * filteredDist;</code><hr />
</div> If only the small quad I have wouldn't have a bad motor I think this would be a very good regulation value.<br />
<br />
Good night!</div>

 ]]></content:encoded>
			<category domain="http://aeroquad.com/forumdisplay.php?7-AeroQuad-Flight-Software">AeroQuad Flight Software</category>
			<dc:creator>Honk</dc:creator>
			<guid isPermaLink="true">http://aeroquad.com/showthread.php?965-Angle-compensation-SHARP-IR</guid>
		</item>
		<item>
			<title>No Counter rotating props.... Anyone tried this?</title>
			<link>http://aeroquad.com/showthread.php?964-No-Counter-rotating-props....-Anyone-tried-this&amp;goto=newpost</link>
			<pubDate>Wed, 01 Sep 2010 18:45:29 GMT</pubDate>
			<description>It occurs to me that if I put in an offset angle on the #1 and #3 motors, I should in theory be able to drive them in the same rotation as #2 and #4....</description>
			<content:encoded><![CDATA[<div>It occurs to me that if I put in an offset angle on the #1 and #3 motors, I should in theory be able to drive them in the same rotation as #2 and #4. Tricopters all run CCW and they compensate for yaw by vectoring thrust on one (tail) boom. If #1 and #3 have a built in thrust vector, then speeding them up should cause yaw in the direction of the thrust offset, so the software would work the same.<br />
<br />
Thoughts?<br />
<br />
Yes, I am this irritated by difficult to get counter-rotating props.</div>

 ]]></content:encoded>
			<category domain="http://aeroquad.com/forumdisplay.php?9-Quad-Frame-Design">Quad Frame Design</category>
			<dc:creator>joshuahynes</dc:creator>
			<guid isPermaLink="true">http://aeroquad.com/showthread.php?964-No-Counter-rotating-props....-Anyone-tried-this</guid>
		</item>
		<item>
			<title>I2C ESC advantage over PWM</title>
			<link>http://aeroquad.com/showthread.php?963-I2C-ESC-advantage-over-PWM&amp;goto=newpost</link>
			<pubDate>Wed, 01 Sep 2010 14:43:13 GMT</pubDate>
			<description><![CDATA[Don't know if I'm in the right section... so, feel free to move it in that case! 
 
Just see that there is some I2C ESC in the store and they are...]]></description>
			<content:encoded><![CDATA[<div>Don't know if I'm in the right section... so, feel free to move it in that case!<br />
<br />
Just see that there is some I2C ESC in the store and they are kind of expensive. Just wondering what is the benefit/advantage of the I2C ESC? otherwise of the pin availability?</div>

 ]]></content:encoded>
			<category domain="http://aeroquad.com/forumdisplay.php?11-AeroQuad-Shield">AeroQuad Shield</category>
			<dc:creator>Kenny9999</dc:creator>
			<guid isPermaLink="true">http://aeroquad.com/showthread.php?963-I2C-ESC-advantage-over-PWM</guid>
		</item>
		<item>
			<title>Aux channel not responding?</title>
			<link>http://aeroquad.com/showthread.php?962-Aux-channel-not-responding&amp;goto=newpost</link>
			<pubDate>Wed, 01 Sep 2010 07:55:52 GMT</pubDate>
			<description>Hi, 
While doing the transmitter calibration all the other channels show movement except the Aux. 
What could be the problem? 
I am using the DX 6i,...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
While doing the transmitter calibration all the other channels show movement except the Aux.<br />
What could be the problem?<br />
I am using the DX 6i, AR6200<br />
Ardunio Duemilanove<br />
Flight software V 1.7</div>

 ]]></content:encoded>
			<category domain="http://aeroquad.com/forumdisplay.php?8-AeroQuad-Configurator">AeroQuad Configurator</category>
			<dc:creator>cheongkitweng</dc:creator>
			<guid isPermaLink="true">http://aeroquad.com/showthread.php?962-Aux-channel-not-responding</guid>
		</item>
		<item>
			<title>Tedrocopter vs. Geese</title>
			<link>http://aeroquad.com/showthread.php?961-Tedrocopter-vs.-Geese&amp;goto=newpost</link>
			<pubDate>Wed, 01 Sep 2010 00:37:15 GMT</pubDate>
			<description><![CDATA[I didn't realize ganders would hate so bad on the Tedrocopter. I guess they saw it as a more dominate flying bird that could possibly steal their...]]></description>
			<content:encoded><![CDATA[<div>I didn't realize ganders would hate so bad on the Tedrocopter. I guess they saw it as a more dominate flying bird that could possibly steal their geese and eat all their grass. I'll have to try again in better lighting...<br />
<br />
 
<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/Q7kZ8MpV0dE">
	<param name="movie" value="http://www.youtube.com/v/Q7kZ8MpV0dE" />
	<param name="wmode" value="transparent" />
</object>
 <br />
<br />
Round 2<br />
<br />

<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/x24abIP76Jw">
	<param name="movie" value="http://www.youtube.com/v/x24abIP76Jw" />
	<param name="wmode" value="transparent" />
</object>
 </div>

 ]]></content:encoded>
			<category domain="http://aeroquad.com/forumdisplay.php?12-Flight-Videos">Flight Videos</category>
			<dc:creator>Tedro</dc:creator>
			<guid isPermaLink="true">http://aeroquad.com/showthread.php?961-Tedrocopter-vs.-Geese</guid>
		</item>
		<item>
			<title>Flips - how do I configure PID settings?</title>
			<link>http://aeroquad.com/showthread.php?960-Flips-how-do-I-configure-PID-settings&amp;goto=newpost</link>
			<pubDate>Tue, 31 Aug 2010 23:19:38 GMT</pubDate>
			<description><![CDATA[Now that I'm getting better at flying... I want to soon attempt flips, but how are you pros setting up the PID values to do nice flips?]]></description>
			<content:encoded><![CDATA[<div>Now that I'm getting better at flying... I want to soon attempt flips, but how are you pros setting up the PID values to do nice flips?</div>

 ]]></content:encoded>
			<category domain="http://aeroquad.com/forumdisplay.php?16-General-Discussion">General Discussion</category>
			<dc:creator>Tedro</dc:creator>
			<guid isPermaLink="true">http://aeroquad.com/showthread.php?960-Flips-how-do-I-configure-PID-settings</guid>
		</item>
	</channel>
</rss>
