<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
<link rel="self" type="application/atom+xml" href="http://forum.robosavvy.com/feed.php?f=17&amp;t=5616" />

<title>RoboSavvy Forum</title>
<subtitle>Robosavvy Forum: The largest online community of Humanoid Robot Builders</subtitle>
<link href="http://forum.robosavvy.com/index.php" />
<updated>2010-01-15T13:59:31+01:00</updated>

<author><name><![CDATA[RoboSavvy Forum]]></name></author>
<id>http://forum.robosavvy.com/feed.php?f=17&amp;t=5616</id>
<entry>
<author><name><![CDATA[copperclad]]></name></author>
<updated>2010-01-15T13:59:31+01:00</updated>
<published>2010-01-15T13:59:31+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=5616&amp;p=24753#p24753</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=5616&amp;p=24753#p24753"/>
<title type="html"><![CDATA[Sending 17 PWM at once cause Roboard reboot?]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=5616&amp;p=24753#p24753"><![CDATA[
Hi Tsai<br />thanks for posting . cool solution for the servos startup surge  <img src="http://forum.robosavvy.com/images/smilies/icon_biggrin.gif" alt=":D" title="Very Happy" /> <br /><br />.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1822">copperclad</a> — Fri Jan 15, 2010 1:59 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Tsai Sung Yang]]></name></author>
<updated>2010-01-14T19:59:57+01:00</updated>
<published>2010-01-14T19:59:57+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=5616&amp;p=24733#p24733</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=5616&amp;p=24733#p24733"/>
<title type="html"><![CDATA[Sending 17 PWM at once cause Roboard reboot?]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=5616&amp;p=24733#p24733"><![CDATA[
<dl class="codebox"><dt>Code: </dt><dd><code>//you need to change this function for Linux and DOS<br />private: System::Void wait_ms&#40;unsigned long ms&#41; <br />&#123;<br />  unsigned long nowtime = GetTickCount&#40;&#41;;<br />  while &#40;&#40;GetTickCount&#40;&#41; - nowtime&#41; &lt;= ms&#41;;<br />&#125;<br /><br />for &#40;int ch = 0; ch &lt; 21; ch++&#41; <br />&#123; <br />    if &#40;ch==4||ch==8||ch==9||ch==15&#41; // Unused Channel <br />        continue; <br /><br />    rcservo_SendPWMPulses&#40;ch, PWM_period, PWM_duty&#91;ch&#93;, count&#41;; <br />    delay_ms&#40;1&#41;;<br />&#125; <br /><br /></code></dd></dl><br /><br />This is a little trick I come through with not enough amphere.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1767">Tsai Sung Yang</a> — Thu Jan 14, 2010 7:59 pm</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[PaulL]]></name></author>
<updated>2010-01-14T11:46:58+01:00</updated>
<published>2010-01-14T11:46:58+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=5616&amp;p=24727#p24727</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=5616&amp;p=24727#p24727"/>
<title type="html"><![CDATA[Sending 17 PWM at once cause Roboard reboot?]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=5616&amp;p=24727#p24727"><![CDATA[
I would guess not enough amperes. To verify, you can try the code without the servos attached. I would think that you need more than 4 amperes to run 17 servos. The roboard uses about 500 mA, so you have 3.5A for servos, that's around 200 mA per servo. You could also try moving fewer servos at one time to test.<br /><br />You can also try a lower voltage that would induce lower amp draw.<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=741">PaulL</a> — Thu Jan 14, 2010 11:46 am</p><hr />
]]></content>
</entry>
<entry>
<author><name><![CDATA[Tsai Sung Yang]]></name></author>
<updated>2010-01-14T09:33:38+01:00</updated>
<published>2010-01-14T09:33:38+01:00</published>
<id>http://forum.robosavvy.com/viewtopic.php?t=5616&amp;p=24726#p24726</id>
<link href="http://forum.robosavvy.com/viewtopic.php?t=5616&amp;p=24726#p24726"/>
<title type="html"><![CDATA[Sending 17 PWM at once cause Roboard reboot?]]></title>

<content type="html" xml:base="http://forum.robosavvy.com/viewtopic.php?t=5616&amp;p=24726#p24726"><![CDATA[
<dl class="codebox"><dt>Code: </dt><dd><code>for &#40;int ch = 0; ch &lt; 21; ch++&#41;<br />&#123;<br />    if &#40;ch==4||ch==8||ch==9||ch==15&#41; // Unused Channel <br />        continue;<br /><br />    rcservo_SendPWMPulses&#40;ch, PWM_period, PWM_duty&#91;ch&#93;, count&#41;;<br />&#125;<br /></code></dd></dl><br /><br />I sent 17 PWM channels at once to control my KONDO KHR-2HV, but it cause Roboard often automatically reboot. I used 9V 4A adapter. <br />Is that due to not enough Ampere?<p>Statistics: Posted by <a href="http://forum.robosavvy.com/memberlist.php?mode=viewprofile&amp;u=1767">Tsai Sung Yang</a> — Thu Jan 14, 2010 9:33 am</p><hr />
]]></content>
</entry>
</feed>