<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Walking robot - Project Corner				            </title>
            <link>https://forum.dronebotworkshop.com/project-help/walking-robot/</link>
            <description>Discussion board for Robotics, Arduino, Raspberry Pi and other DIY electronics and modules. Join us today!</description>
            <language>en-US</language>
            <lastBuildDate>Sun, 12 Apr 2026 20:09:43 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Walking robot</title>
                        <link>https://forum.dronebotworkshop.com/project-help/walking-robot/#post-12055</link>
                        <pubDate>Tue, 07 Jul 2020 04:17:58 +0000</pubDate>
                        <description><![CDATA[@spyder
 
Thanks, I found a light rubber, I will use it soon and update you with the results.]]></description>
                        <content:encoded><![CDATA[<p>@spyder</p>
<p> </p>
<p>Thanks, I found a light rubber, I will use it soon and update you with the results.</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/project-help/">Project Corner</category>                        <dc:creator>Wolfsbane</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/project-help/walking-robot/#post-12055</guid>
                    </item>
				                    <item>
                        <title>RE: Walking robot</title>
                        <link>https://forum.dronebotworkshop.com/project-help/walking-robot/#post-12054</link>
                        <pubDate>Tue, 07 Jul 2020 04:16:42 +0000</pubDate>
                        <description><![CDATA[@robotbuilder
 
Hi, sorry for the late reply, this is the code:
 
#include &lt;Wire.h&gt;#include &lt;Adafruit_PWMServoDriver.h&gt;Adafruit_PWMServoDriver pwm = Adafruit_PWMServoDriver()...]]></description>
                        <content:encoded><![CDATA[<p>@robotbuilder</p>
<p> </p>
<p>Hi, sorry for the late reply, this is the code:</p>
<p> </p>
<p>#include &lt;Wire.h&gt;<br />#include &lt;Adafruit_PWMServoDriver.h&gt;<br />Adafruit_PWMServoDriver pwm = Adafruit_PWMServoDriver();</p>
<p>#define FREQUENCY 50<br />int servoMidPosition=295;<br />int stanUpAngelHip=430;<br />int standUpKnee=95;</p>
<p><br />void setup() {</p>
<p>pwm.begin();<br />pwm.setPWMFreq(FREQUENCY);</p>
<p>}</p>
<p><br />void zeroServoPosition(int servo1,int servo2,int servo3,int servo4,int servo5,int servo6,int servo7,int servo8,int servo9,int servo10,int servo11, int servo12,int servo13,int servo14,int servo15,int servo16)<br />{<br />pwm.setPWM(servo1, 0, servoMidPosition);<br />pwm.setPWM(servo2, 0, servoMidPosition);<br />pwm.setPWM(servo3, 0, servoMidPosition);<br />pwm.setPWM(servo4, 0, servoMidPosition);<br />pwm.setPWM(servo5, 0, servoMidPosition);<br />pwm.setPWM(servo6, 0, servoMidPosition);<br />pwm.setPWM(servo7, 0, servoMidPosition);<br />pwm.setPWM(servo8, 0, servoMidPosition);<br />pwm.setPWM(servo9, 0, servoMidPosition);<br />pwm.setPWM(servo10, 0, servoMidPosition);<br />pwm.setPWM(servo11, 0, servoMidPosition);<br />pwm.setPWM(servo12, 0, servoMidPosition);<br />pwm.setPWM(servo13, 0, servoMidPosition);<br />pwm.setPWM(servo14, 0, servoMidPosition);<br />pwm.setPWM(servo15, 0, servoMidPosition);<br />pwm.setPWM(servo16, 0, servoMidPosition);<br />}</p>
<p>void stanUp(int servo0,int servo3,int servo4,int servo7, int servo8,int servo11,int servo12,int servo15)<br />{<br />pwm.setPWM(servo0, 0, 227);<br />pwm.setPWM(servo3, 0, 410);<br />pwm.setPWM(servo4, 0, 420);<br />pwm.setPWM(servo7, 0, 210);<br />pwm.setPWM(servo8, 0, 227);<br />pwm.setPWM(servo11, 0, 410);<br />pwm.setPWM(servo12, 0, 420);<br />pwm.setPWM(servo15, 0, 210);</p>
<p>}</p>
<p>void stepForward(int servo0,int servo3,int servo4,int servo7, int servo8,int servo11,int servo12,int servo15)<br />{<br />pwm.setPWM(servo0, 0, 251);<br />pwm.setPWM(servo3, 0, 400);<br />pwm.setPWM(servo4, 0, 410);<br />pwm.setPWM(servo7, 0, 210);<br />pwm.setPWM(servo8, 0, 217);<br />pwm.setPWM(servo11, 0, 410);<br />pwm.setPWM(servo12, 0, 396);<br />pwm.setPWM(servo15, 0, 200);<br />}</p>
<p><br />void stepTrue(int servo0,int servo3,int servo4,int servo7, int servo8,int servo11,int servo12,int servo15)<br />{<br />pwm.setPWM(servo0, 0, 300);<br />pwm.setPWM(servo3, 0, 410);<br />pwm.setPWM(servo4, 0, 420);<br />pwm.setPWM(servo7, 0, 210);<br />pwm.setPWM(servo8, 0, 227);<br />pwm.setPWM(servo11, 0, 410);<br />pwm.setPWM(servo12, 0, 347);<br />pwm.setPWM(servo15, 0, 265);<br />}</p>
<p>void secondStepForward(int servo0,int servo3,int servo4,int servo7, int servo8,int servo11,int servo12,int servo15)<br />{<br />pwm.setPWM(servo0, 0, 300);<br />pwm.setPWM(servo3, 0, 400);<br />pwm.setPWM(servo4, 0, 370);//<br />pwm.setPWM(servo7, 0, 200);//<br />pwm.setPWM(servo8, 0, 258);//<br />pwm.setPWM(servo11, 0, 420);//<br />pwm.setPWM(servo12, 0, 347);<br />pwm.setPWM(servo15, 0, 275);<br />}</p>
<p>void secondStepTrue(int servo0,int servo3,int servo4,int servo7, int servo8,int servo11,int servo12,int servo15)<br />{<br />pwm.setPWM(servo0, 0, 300);<br />pwm.setPWM(servo3, 0, 410);<br />pwm.setPWM(servo4, 0, 270);//<br />pwm.setPWM(servo7, 0, 320);//<br />pwm.setPWM(servo8, 0, 320);//<br />pwm.setPWM(servo11, 0, 310);//<br />pwm.setPWM(servo12, 0, 347);<br />pwm.setPWM(servo15, 0, 265);<br />}<br />void loop() {<br />//zeroServoPosition(0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15);<br />// stanUp(0,3,4,7,8,11,12,15);<br />stanUp(0,3,4,7,8,11,12,15);<br />delay (330);<br />stepForward(0,3,4,7,8,11,12,15);<br />delay (330);<br />stepTrue(0,3,4,7,8,11,12,15);<br />delay (330);<br />secondStepForward(0,3,4,7,8,11,12,15);<br />delay (330);<br />secondStepTrue(0,3,4,7,8,11,12,15);<br />delay (330);<br />}</p>
<p> </p>
<p> </p>
<p>The <span>slippage is not important, even I would like to avoid it, I think I need to have angels instead of straight legs.</span></p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/project-help/">Project Corner</category>                        <dc:creator>Wolfsbane</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/project-help/walking-robot/#post-12054</guid>
                    </item>
				                    <item>
                        <title>RE: Walking robot</title>
                        <link>https://forum.dronebotworkshop.com/project-help/walking-robot/#post-11985</link>
                        <pubDate>Sun, 28 Jun 2020 04:59:00 +0000</pubDate>
                        <description><![CDATA[@wolfsbane
What about using old compact discs for the feet. I like the idea of making it out of all recycled materials.]]></description>
                        <content:encoded><![CDATA[<p><span>@wolfsbane</span></p>
<p>What about using old compact discs for the feet. I like the idea of making it out of all recycled materials.</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/project-help/">Project Corner</category>                        <dc:creator>Jonnyr</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/project-help/walking-robot/#post-11985</guid>
                    </item>
				                    <item>
                        <title>RE: Walking robot</title>
                        <link>https://forum.dronebotworkshop.com/project-help/walking-robot/#post-11977</link>
                        <pubDate>Fri, 26 Jun 2020 19:24:22 +0000</pubDate>
                        <description><![CDATA[Can you post your code?
It seems to work by suddenly flicking a leg forward to overcome friction in which case slippage would be essential?]]></description>
                        <content:encoded><![CDATA[<p>Can you post your code?</p>
<p>It seems to work by suddenly flicking a leg forward to overcome friction in which case slippage would be essential?</p>
<p> </p>
<p> </p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/project-help/">Project Corner</category>                        <dc:creator>robotBuilder</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/project-help/walking-robot/#post-11977</guid>
                    </item>
				                    <item>
                        <title>RE: Walking robot</title>
                        <link>https://forum.dronebotworkshop.com/project-help/walking-robot/#post-11974</link>
                        <pubDate>Fri, 26 Jun 2020 17:36:27 +0000</pubDate>
                        <description><![CDATA[@wolfsbane
Maybe something from the tool department ?
Like maybe that stuff they use in the bottoms of tool box drawers ?
Or maybe a piece of those gel pads that you set your cell phone o...]]></description>
                        <content:encoded><![CDATA[<p>@wolfsbane</p>
<p>Maybe something from the tool department ?</p>
<p>Like maybe that stuff they use in the bottoms of tool box drawers ?</p>
<p>Or maybe a piece of those gel pads that you set your cell phone on so it doesn't slide around the dash board of your car</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/project-help/">Project Corner</category>                        <dc:creator>Spyder</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/project-help/walking-robot/#post-11974</guid>
                    </item>
				                    <item>
                        <title>RE: Walking robot</title>
                        <link>https://forum.dronebotworkshop.com/project-help/walking-robot/#post-11971</link>
                        <pubDate>Fri, 26 Jun 2020 15:29:03 +0000</pubDate>
                        <description><![CDATA[@spyder
Yes, I went to Home Depot and I couldn&#039;t find something can replace the feet.]]></description>
                        <content:encoded><![CDATA[<p>@spyder</p>
<p>Yes, I went to Home Depot and I couldn't find something can replace the feet.</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/project-help/">Project Corner</category>                        <dc:creator>Wolfsbane</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/project-help/walking-robot/#post-11971</guid>
                    </item>
				                    <item>
                        <title>RE: Walking robot</title>
                        <link>https://forum.dronebotworkshop.com/project-help/walking-robot/#post-11944</link>
                        <pubDate>Wed, 24 Jun 2020 22:43:28 +0000</pubDate>
                        <description><![CDATA[@wolfsbane
Very nice indeed !
 
Have you considered a bit of rubber on the bottoms of the feet to give it some traction ?]]></description>
                        <content:encoded><![CDATA[<p>@wolfsbane</p>
<p>Very nice indeed !</p>
<p> </p>
<p>Have you considered a bit of rubber on the bottoms of the feet to give it some traction ?</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/project-help/">Project Corner</category>                        <dc:creator>Spyder</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/project-help/walking-robot/#post-11944</guid>
                    </item>
				                    <item>
                        <title>RE: Walking robot</title>
                        <link>https://forum.dronebotworkshop.com/project-help/walking-robot/#post-11938</link>
                        <pubDate>Tue, 23 Jun 2020 15:28:18 +0000</pubDate>
                        <description><![CDATA[Glad you like it, thanks.🙂]]></description>
                        <content:encoded><![CDATA[<p>Glad you like it, thanks.🙂</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/project-help/">Project Corner</category>                        <dc:creator>Wolfsbane</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/project-help/walking-robot/#post-11938</guid>
                    </item>
				                    <item>
                        <title>RE: Walking robot</title>
                        <link>https://forum.dronebotworkshop.com/project-help/walking-robot/#post-11937</link>
                        <pubDate>Tue, 23 Jun 2020 15:06:14 +0000</pubDate>
                        <description><![CDATA[Nice!]]></description>
                        <content:encoded><![CDATA[<p>Nice!</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/project-help/">Project Corner</category>                        <dc:creator>hstaam</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/project-help/walking-robot/#post-11937</guid>
                    </item>
				                    <item>
                        <title>Walking robot</title>
                        <link>https://forum.dronebotworkshop.com/project-help/walking-robot/#post-11928</link>
                        <pubDate>Mon, 22 Jun 2020 16:31:18 +0000</pubDate>
                        <description><![CDATA[Hi,
 
I am working on a walking robot and till now I was able to build 4 legs funny robot, I learned a lot while programming the walking harmony of that robot, unfortunately, I used delay ...]]></description>
                        <content:encoded><![CDATA[<p>Hi,</p>
<p> </p>
<p>I am working on a walking robot and till now I was able to build 4 legs funny robot, I learned a lot while programming the walking harmony of that robot, unfortunately, I used delay function but soon in future I will replace all delays by mills(), I have some questions in mind I would like to share it with you guys:</p>
<ul>
<li>I saw online that advanced walking robots used Brushless Motors, but as per my limited information I know that servo motors are the best for accuracy, is there Brushless servo Motors? and what is your advice for a cheap strong motors used for accurate walking robots?</li>
<li>Any idea what is the motors that used in Boston robotics? I am really confused regarding the motors types out in the market and the information online is there any guide tells you what is the best motors for arms and legs and how to drive them?</li>
<li>Also, I have an old question in my mind, do you know how to convert a PC motherboard to robot brian with GPIO? I need this to be able to drive a robot with a board that has i7 CPU in the future?</li>
</ul>
<p>Here is the link for my walking robot and thanks in advance for your comments:</p>
<p> </p>
<p>https://youtu.be/y3sxGoD0I2s</p>]]></content:encoded>
						                            <category domain="https://forum.dronebotworkshop.com/project-help/">Project Corner</category>                        <dc:creator>Wolfsbane</dc:creator>
                        <guid isPermaLink="true">https://forum.dronebotworkshop.com/project-help/walking-robot/#post-11928</guid>
                    </item>
							        </channel>
        </rss>
		