<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Stepper motor alternative ?</title>
        <description>I dont have any stepper motors, but i have a lot of something similar, BLDC motors. BrushLess DC motors are cheap, light, powerful, and i have some.
 
An example of a motor, 130W power, 80g heavy, 12$:
http://www.hobbyking.com/hobbyking/store/__6246__hexTronik_DT700_Brushless_Outrunner_700kv.html
The electronics for it, 20A, 15V 7$:
http://www.hobbyking.com/hobbyking/store/__15202__Hobby_King_20A_ESC_3A_UBEC.html

Now there are some problems. Those motors rev more than 10&#039;000 rpm and dont deliver much torque. They are made for turning and not able to go to an exact position. 

The solution for the torque / rpm is a gearbox, gears are plenty and cheap, example here:
http://www.hobbyking.com/hobbyking/store/__11497__HK450V2_Main_Gear_Assembly.html

The solution for the positionning is more complicated. A BLDC motor is quite similar to a stepper motor. But is has 3 wires instead of 4, it has a different number of coils than a stepper, and the coils are wired up differently. BLDC have a multiple of 3 coils, and are wired a star. The motor above is a 14 magnets, 12 coils motor. This motor, driven trough the 3 wires has 42 steps per revolution. That is 7 repetitions of 6 steps. The ESC (driving electronic above) has 3 half H bridges made with mosfets, is good up to 20 amps current, and has a atmega8 controller inside. 

Now BLDC motors do need a position feedback to know when to commutate the coils. This is made with back-emf and does not work at very slow rpm&#039;s. I have to run the BLDC motors like steppers and cant use the position feedback. This works, but not with the original firmware in the ESC&#039;s. 

What i have done is to hook the h-bridges up to an arduino to test the motor. I can control its position, rotate it CW or CCW wise, speed up or slow down, just like a stepper. Once i have it all figured out, and its complicated, i could burn new firmware on the controller and use it as stepper.

Does this have enough torque to drive an extruder? Does it have enough power to drive the XYZ position system?  What u guys think ?</description>
        <link>https://reprap.org/forum/read.php?2,195140,195140#msg-195140</link>
        <lastBuildDate>Wed, 13 May 2026 21:46:43 -0400</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,456370#msg-456370</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,456370#msg-456370</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>691175002</strong><br />
[What measurable advantages does a DIY servo have over a stepper motor?  All I'm seeing is additional cost and complexity.</div></blockquote>
<br />
Advantages (for me) are one and one only - exploring DC + Encoder motor control with parts I have laying around.  I only had two steppers on hand (for my Z and E powder axes) , so I cobbled something together from what was in my parts bin.<br />
<br />
Although it is fun watching the DC motors whip along to their destinations during a G0 move ... then wait for the steppers to slowly show up.<br />
<br />
For G1 moves, it's terrible. DC motors just don't have enough stopping force to hold a position without active feedback, and even then it's easy to perturb them. Hence why they are not on my 'anti-gravity' Z and E axes.<br />
<br />
However, I'm a powder bed system - the carriage axis only moves slowly, and in one direction at a time (almost no acceleration to speak of) and the printhead axis is a constant velocity system (the spray changes, but the head keeps moving).<br />
<br />
So DC + Encoder is fine for my application on those axes, and it allows me to learn new motor control techniques.<br />
<br />
For a RepRap FDM? Nah, I'd use steppers all the way.]]></description>
            <dc:creator>Ezrec</dc:creator>
            <category>Developers</category>
            <pubDate>Fri, 16 Jan 2015 14:56:22 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,455993#msg-455993</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,455993#msg-455993</link>
            <description><![CDATA[ Just saw some one <a href="https://www.youtube.com/watch?v=L-_5KsAOVko" target="_blank"  rel="nofollow">did it nicely on a Prusai3</a>]]></description>
            <dc:creator>vn</dc:creator>
            <category>Developers</category>
            <pubDate>Thu, 15 Jan 2015 21:09:52 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,455801#msg-455801</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,455801#msg-455801</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>691175002</strong><br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong>Ezrec</strong><br />
Yes, and optical encoders and a good control system takes all that backlash out.<br />
<br />
I have a gear motor with a rubber grommet driving a fishing line belt system, and I get 250 micro resolution on that axis without even trying hard - it's all about the encoder when working with DC motors.</div></blockquote>
<br />
Even though your system will maintain positional accuracy when moving in a single direction, the motor must take up the slop for every direction change.  This gets reflected as a pause in motion which screws up circles and curves.<br />
<br />
Furthermore, you cannot move the encoder from the motor shaft to the (non-rigidly coupled) load and expect a stable system.  Your gains become very sloppy, completely defeating the point of using a servo in the first place.<br />
<br />
Commercial systems <u>always</u> use dual loop control in such situations ( [<a href="http://granitedevices.com/wiki/Dual-loop_feedback_position_control" target="_blank"  rel="nofollow">granitedevices.com</a>] ) which requires two encoders:  One on the motor shaft, and one on the load.<br />
<br />
Your system "works" because the rubber grommet provides so much friction the system does not oscillate when stopped.  That does not mean that it is closely following the setpoint or providing smooth motion under load.  It will also fail catastrophically if there is an intermittent force backdriving the load.<br />
<br />
<br />
Frankly, unless you show me plots of commanded vs actual position (as measured by a higher resolution non-feedback encoder) I will never believe a hacked together servo is superior to a 5$ stepper motor.<br />
<br />
I'm sure your system appears to print fine, but stepper motors print fine as well.  Assuming "250 micro resolution" means 250 steps per revolution, that is inferior to a stepper motor taking half-steps (and you probably have many encoder counts of following error on top of that).<br />
I suspect acceleration is poor as well due to the use of cheap motors through a gearbox.<br />
<br />
What measurable advantages does a DIY servo have over a stepper motor?  All I'm seeing is additional cost and complexity.</div></blockquote>
<br />
Speed... BLDC motors can run faster, but as people have said before... the x/y speed isn't currently the limiting factor of 3D printer speeds... so right now they don't really have any advantage...<br />
<br />
Commercial systems "always" using duel loop feedback is debatable. Zero backlash lead screws or planetary gearboxes are used in CNC applications all the time... with the encoder mounted directly to the shaft of the motor... I've also worked with systems positioning multi-ton machinery within 1/8'' using encoders and squirrel cage induction motors... But duel loop feedback is not uncommon for machines with lots of slop requiring very high positional accuracy]]></description>
            <dc:creator>MachineHum</dc:creator>
            <category>Developers</category>
            <pubDate>Thu, 15 Jan 2015 13:24:15 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,455792#msg-455792</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,455792#msg-455792</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Ezrec</strong><br />
Yes, and optical encoders and a good control system takes all that backlash out.<br />
<br />
I have a gear motor with a rubber grommet driving a fishing line belt system, and I get 250 micro resolution on that axis without even trying hard - it's all about the encoder when working with DC motors.</div></blockquote>
<br />
Even though your system will maintain positional accuracy when moving in a single direction, the motor must take up the slop for every direction change.  This gets reflected as a pause in motion which screws up circles and curves.<br />
<br />
Furthermore, you cannot move the encoder from the motor shaft to the (non-rigidly coupled) load and expect a stable system.  Your gains become very sloppy, completely defeating the point of using a servo in the first place.<br />
<br />
Commercial systems <u>always</u> use dual loop control in such situations ( [<a href="http://granitedevices.com/wiki/Dual-loop_feedback_position_control" target="_blank"  rel="nofollow">granitedevices.com</a>] [<a href="http://machinedesign.com/archive/two-feedback-loops-are-better-one" target="_blank"  rel="nofollow">machinedesign.com</a>] ) which requires two encoders:  One on the motor shaft, and one on the load.<br />
<br />
Your system "works" because the rubber grommet provides so much friction the system does not oscillate when stopped.  That does not mean that it is closely following the setpoint or providing smooth motion under load.  It will also fail catastrophically if there is an intermittent force backdriving the load.<br />
<br />
<br />
Frankly, unless you show me plots of commanded vs actual position (as measured by a higher resolution non-feedback encoder) I will never believe a hacked together servo is superior to a 5$ stepper motor.<br />
<br />
I'm sure your system appears to print fine, but stepper motors print fine as well.  Assuming "250 micro resolution" means 250 steps per revolution, that is inferior to a stepper motor taking half-steps (and you probably have many encoder counts of following error on top of that).<br />
I suspect acceleration is poor as well due to the use of cheap motors through a gearbox.<br />
<br />
What measurable advantages does a DIY servo have over a stepper motor?  All I'm seeing is additional cost and complexity.]]></description>
            <dc:creator>691175002</dc:creator>
            <category>Developers</category>
            <pubDate>Thu, 15 Jan 2015 13:11:57 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,455735#msg-455735</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,455735#msg-455735</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Ezrec</strong><br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong>MachineHum</strong><br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong>691175002</strong><br />Gearboxes introduce a disgusting amount of backlash until you start paying 200$+.</div></blockquote>
<br />
Truth...</div></blockquote>
<br />
Yes, and optical encoders and a good control system takes all that backlash out.<br />
<br />
I have a gear motor with a rubber grommet driving a fishing line belt system, and I get 250 micro resolution on that axis without even trying hard - it's all about the encoder when working with DC motors.</div></blockquote>
<br />
Typically it's rare for the encoder to be mounted at the output of the gearbox... usually it's on the shaft of the motor<br />
<br />
<div id="div_ee6f17aa85940772827ccb9477ccae6e"
     class="mod_embed_images"
     >

  

    
      
    

    <div id="imagediv_ee6f17aa85940772827ccb9477ccae6e" class="mod_embed_images_image"
         >

    
      

      

      

      

      

      

      <noscript>
      <div>
    

    <a href="http://www.robot-electronics.co.uk/images/emg30a.jpg">
        <img src="https://reprap.org/forum/addon.php?2,module=embed_images,url=http%3A%2F%2Fwww.robot-electronics.co.uk%2Fimages%2Femg30a.jpg"
             
             
             id="image_ee6f17aa85940772827ccb9477ccae6e"
             alt="emg30a.jpg"
             title="emg30a.jpg"/>
    </a>

    
      </div>
      </noscript>
    

    </div>

    <div class="mod_embed_images_info " id="info_ee6f17aa85940772827ccb9477ccae6e"
      >
      <a id="link_ee6f17aa85940772827ccb9477ccae6e" href="http://www.robot-electronics.co.uk/images/emg30a.jpg">emg30a.jpg</a>
    </div>

  

 </div>


<script type="text/javascript">
mod_embed_images_loadimage('ee6f17aa85940772827ccb9477ccae6e', 'https://reprap.org/forum/addon.php?2,module=embed_images,url=http%3A%2F%2Fwww.robot-electronics.co.uk%2Fimages%2Femg30a.jpg', 'http://www.robot-electronics.co.uk/images/emg30a.jpg', 'https://reprap.org/forum/addon.php?2,module=embed_images,check_scaling=1,url=http%3A%2F%2Fwww.robot-electronics.co.uk%2Fimages%2Femg30a.jpg', '', 455735, 800, 400, 'Loading image ...', false);
</script>
<br />
<br />
"Typically" being the key word<br/>]]></description>
            <dc:creator>MachineHum</dc:creator>
            <category>Developers</category>
            <pubDate>Thu, 15 Jan 2015 10:50:03 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,455487#msg-455487</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,455487#msg-455487</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>MachineHum</strong><br />
<blockquote class="bbcode"><div><small>Quote<br /></small><strong>691175002</strong><br />Gearboxes introduce a disgusting amount of backlash until you start paying 200$+.</div></blockquote>
<br />
Truth...</div></blockquote>
<br />
Yes, and optical encoders and a good control system takes all that backlash out.<br />
<br />
I have a gear motor with a rubber grommet driving a fishing line belt system, and I get 250 micro resolution on that axis without even trying hard - it's all about the encoder when working with DC motors.]]></description>
            <dc:creator>Ezrec</dc:creator>
            <category>Developers</category>
            <pubDate>Wed, 14 Jan 2015 21:03:39 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,455427#msg-455427</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,455427#msg-455427</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>691175002</strong><br />Gearboxes introduce a disgusting amount of backlash until you start paying 200$+.</div></blockquote>
<br />
Truth...]]></description>
            <dc:creator>MachineHum</dc:creator>
            <category>Developers</category>
            <pubDate>Wed, 14 Jan 2015 17:34:54 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,455419#msg-455419</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,455419#msg-455419</link>
            <description><![CDATA[ I would invite anyone interested to take a look at my firmware for my powder bed printer.<br />
<br />
I am using a mix of DC+Encoder (X and Y axes) and stepper motors (Powder(E) and Part(Z) axes) in my firmware.<br />
<br />
Very C++ish, I know, and I need to add 2D kinematics (currently it's only an axis at a time, which isn't an issue with powderbed), but it should be a start.<br />
<br />
I use a very non-PID system (ramp up, travel, ramp down) that seems to work for my setup.<br />
<br />
<a href="https://github.com/ezrec/BrundleFab/tree/master/firmware/brundlefab" target="_blank"  rel="nofollow">BrundleFab Firmware</a><br />
<br />
See Axis.h, Axis_DCEncoder.h, Axis_X.h and Axis_Y.h for the relevant files.]]></description>
            <dc:creator>Ezrec</dc:creator>
            <category>Developers</category>
            <pubDate>Wed, 14 Jan 2015 17:23:50 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,455409#msg-455409</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,455409#msg-455409</link>
            <description><![CDATA[ Velocity will never be a problem.  Just do the math - a 14 tooth pulley will move the axis 28mm per rotation.  Even at a blisteringly fast 200mm/s print speed the motor is rotating at a paltry 400rpm.  If you ever need more speed (unlikely given extrusion limits) just swap to a larger pulley.<br />
<br />
The improved acceleration provided by servos could eventually improve print speed and quality, but right now frame rigidity is so poor that its unlikely to provide any benefit.<br />
<br />
If you are choosing between stepper motors and servos you should pick the cheapest and put the money towards a better frame and more accurate linear guides.<br />
<br />
<br />
Note that even if you hack together a servo very cheaply the gearbox is going to be a huge issue.  Gearboxes introduce a disgusting amount of backlash until you start paying 200$+.  Plus the &lt;2$ brushed motors last about two weeks and are generally horrible.  The performance is likely worse than an off the shelf stepper.]]></description>
            <dc:creator>691175002</dc:creator>
            <category>Developers</category>
            <pubDate>Wed, 14 Jan 2015 17:07:59 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,455320#msg-455320</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,455320#msg-455320</link>
            <description><![CDATA[ What's typically the speed limitations on a printer? Because if it's the x/y travel speed with steppers, I feel pretty soon there will be a large push for DC or BLDC motors for position control... With a well tuned PID loop you can achieve amazing accuracy and extremely high speed, also: with printers we're talking about consistent load so this makes things a lot easier...<br />
<br />
I'm not overly concerned about keeping cost down, yes it should be cheap, but if you get a serious performance/speed upgrade from typical steppers, then I don't see a problem spending a few extra bucks on electromechanics <br />
<br />
[<a href="http://www.ebay.com/itm/Wantai-Nema23-Brushless-DC-Motor-57BLF01-3000RPM-63W-24V-3Phase-59mm-Length-Mill-/321559751400?pt=LH_DefaultDomain_0&amp;hash=item4ade746ae8" target="_blank"  rel="nofollow">www.ebay.com</a>]<br />
[<a href="http://www.ebay.com/itm/NEW-Incremental-Rotary-Encoder-600p-r-6mm-Shaft-5-24vdc-/290778912134?pt=LH_DefaultDomain_0&amp;hash=item43b3c61586" target="_blank"  rel="nofollow">www.ebay.com</a>]<br />
<br />
<div id="div_1d9311de01709c2afa106cdea77766da"
     class="mod_embed_images"
     style="width:500px">

  

    
      
    

    <div id="imagediv_1d9311de01709c2afa106cdea77766da" class="mod_embed_images_image"
         style="width:500px; height:357px">

    

    <a href="http://i.ebayimg.com/00/s/MTE0MlgxNjAw/z/JLAAAOSwQJ5UR22X/$_12.JPG">
        <img src="/forum/thumbcache/ad5/736/7f4/d39/b79/b74/b1a/e84/6f1/d9e/c2_800x400.jpg"
             width="500"
             height="357"
             id="image_1d9311de01709c2afa106cdea77766da"
             alt="$_12.JPG"
             title="$_12.JPG"/>
    </a>

    

    </div>

    <div class="mod_embed_images_info " id="info_1d9311de01709c2afa106cdea77766da"
      >
      <a id="link_1d9311de01709c2afa106cdea77766da" href="http://i.ebayimg.com/00/s/MTE0MlgxNjAw/z/JLAAAOSwQJ5UR22X/$_12.JPG">$_12.JPG</a>
    </div>

  

 </div>


<script type="text/javascript">
mod_embed_images_loadimage('1d9311de01709c2afa106cdea77766da', '/forum/thumbcache/ad5/736/7f4/d39/b79/b74/b1a/e84/6f1/d9e/c2_800x400.jpg', 'http://i.ebayimg.com/00/s/MTE0MlgxNjAw/z/JLAAAOSwQJ5UR22X/$_12.JPG', 'https://reprap.org/forum/addon.php?2,module=embed_images,check_scaling=1,url=http%3A%2F%2Fi.ebayimg.com%2F00%2Fs%2FMTE0MlgxNjAw%2Fz%2FJLAAAOSwQJ5UR22X%2F%24_12.JPG', '', 455320, 800, 400, 'Loading image ...', false);
</script>
<br />
BLDC motors use hall effect sensors for commutation (Hu,Hv &amp; Hw) ... These are essentially magnetic sensors that let the system know the rotor is in rotation... typical these are amplified and sampled into an analog pin for processing...<br />
<br />
<div id="div_db0ba157a4bcfc1f07a09e4ff5f61c18"
     class="mod_embed_images"
     style="width:600px">

  

    
      
    

    <div id="imagediv_db0ba157a4bcfc1f07a09e4ff5f61c18" class="mod_embed_images_image"
         style="width:600px; height:308px">

    

    <a href="http://www.digikey.com/en/articles/techzone/2013/mar/~/media/Images/Article%20Library/TechZone%20Articles/2013/March/An%20Introduction%20to%20Brushless%20DC%20Motor%20Control/article-2013march-introduction-to-brushless-dc-fig3.jpg">
        <img src="/forum/thumbcache/e57/3f5/f8d/625/084/fd0/f3b/1f7/053/9d9/6a_800x400.jpg"
             width="600"
             height="308"
             id="image_db0ba157a4bcfc1f07a09e4ff5f61c18"
             alt="article-2013march-introduction-to-brushless-dc-fig3.jpg"
             title="article-2013march-introduction-to-brushless-dc-fig3.jpg"/>
    </a>

    

    </div>

    <div class="mod_embed_images_info " id="info_db0ba157a4bcfc1f07a09e4ff5f61c18"
      >
      <a id="link_db0ba157a4bcfc1f07a09e4ff5f61c18" href="http://www.digikey.com/en/articles/techzone/2013/mar/~/media/Images/Article%20Library/TechZone%20Articles/2013/March/An%20Introduction%20to%20Brushless%20DC%20Motor%20Control/article-2013march-introduction-to-brushless-dc-fig3.jpg">article-2013march-introduction-to-brushless-dc-fig3.jpg</a>
    </div>

  

 </div>


<script type="text/javascript">
mod_embed_images_loadimage('db0ba157a4bcfc1f07a09e4ff5f61c18', '/forum/thumbcache/e57/3f5/f8d/625/084/fd0/f3b/1f7/053/9d9/6a_800x400.jpg', 'http://www.digikey.com/en/articles/techzone/2013/mar/~/media/Images/Article%20Library/TechZone%20Articles/2013/March/An%20Introduction%20to%20Brushless%20DC%20Motor%20Control/article-2013march-introduction-to-brushless-dc-fig3.jpg', 'https://reprap.org/forum/addon.php?2,module=embed_images,check_scaling=1,url=http%3A%2F%2Fwww.digikey.com%2Fen%2Farticles%2Ftechzone%2F2013%2Fmar%2F%7E%2Fmedia%2FImages%2FArticle%2520Library%2FTechZone%2520Articles%2F2013%2FMarch%2FAn%2520Introduction%2520to%2520Brushless%2520DC%2520Motor%2520Control%2Farticle-2013march-introduction-to-brushless-dc-fig3.jpg', '', 455320, 800, 400, 'Loading image ...', false);
</script>
<br />
Above is a simplified schematic of a BLDC motor drivers... it's essentially a three phase H-bridge, as you can see there are 6x BJT transistors... they don't have to be BJT... FET or IGBT will work better... but we're still talking 6x PWM lines <b>PER MOTOR</b> if one chooses to build the drive from scratch... there are also dedicated semiconductors for this task... but then cost goes up...<br />
<br />
And then there is dealing with the encoder(s)... 2x external interrupt lines per encoder for full quadrature decoding (4x resolution of encoder ie: 1024 becomes 4096)  or 1x interupt line + 1x GPIO line for standard decoding...<br />
<br />
There was talk above of the ATmega dealing with this... personally I think... <br />
<br />
-2x interrupts lines<br />
-3x analog lines<br />
-6x PWM lines<br />
<br />
Per motor... <br />
<br />
-Plus dealing with serial transmission, heated bet, 2x steppers, extruder...<br />
<br />
Not a hope is hell... we've gotten into the higher level ARM Cortex M3-M4 area... But all that being said. If we can gain a serious speed advantage with all this... development might start heading that way.<br />
<br />
But as I stated at the top... I don't actually know what out speed limitation is right now... Might be barking up the wrong tree.<br/>]]></description>
            <dc:creator>MachineHum</dc:creator>
            <category>Developers</category>
            <pubDate>Wed, 14 Jan 2015 14:34:19 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,455238#msg-455238</guid>
            <title>Re: Stepper motor alternative ? (Update)</title>
            <link>https://reprap.org/forum/read.php?2,195140,455238#msg-455238</link>
            <description><![CDATA[ I am waiting for my new hardware to come in before I make the video (A changed out to l9110h ic's so that I can make a nicely packaged 3 motor control unit on a single board), but have been continuing to verify and test with my current rig.  I added the ability to set the speed for each motor so that I could coordinate moves (I am doing inverse kinematics with 2 degrees of freedom to implement my x/y control).  For any interested, I am trying to use UV cured resin with an array of UV leds as an extruder (this would eliminate the need for most of the metal, and be a lot easier to deal with, not to mention cheaper since it looks like everything but the motor could be printer).  Anyhow, here is my controller code, I will tweak it for Arduino soon since I found a place to get Arduino pro minis for even less than the msp430g2553.]]></description>
            <dc:creator>thomassmith1969</dc:creator>
            <category>Developers</category>
            <pubDate>Wed, 14 Jan 2015 11:47:40 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,447375#msg-447375</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,447375#msg-447375</link>
            <description><![CDATA[ I'm using DC + Encoder on my powder bed printer - DC + Encoder is pretty sweet for constant velocity (the printhead axis) systems.<br />
<br />
My Y axis is a geared DC + Encoder (hacked up ball mouse optics on the fishing line drive) and is slow enough that inertial overshoot isn't a big issue.]]></description>
            <dc:creator>Ezrec</dc:creator>
            <category>Developers</category>
            <pubDate>Wed, 24 Dec 2014 15:41:02 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,447137#msg-447137</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,447137#msg-447137</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>thomassmith1969</strong><br />
As soon as I get the chance, I will build a few more and post step-by-steps with code (Assuming anyone is interested, so let me know) </div></blockquote>
I am definitely interested! It would be great if you could post additional details. <br />
<br />
It would be really fun to see a video of your printer working with DC motor drives. Any chance you could post a video? Time and again I see people say that it is impossible to make a 3D printer work with cheap DC motors. It would be wonderful to send them a youtube video showing a working system. :)]]></description>
            <dc:creator>MattMoses</dc:creator>
            <category>Developers</category>
            <pubDate>Tue, 23 Dec 2014 18:53:21 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,446881#msg-446881</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,446881#msg-446881</link>
            <description><![CDATA[ Honestly, the most difficult thing about this hack was tracking down the pinouts for the motor (ended up tracing wires).   I am seriously surprised I haven't heard of anyone else doing this...  Especially since the more that I play with it, the more fun it is.  <br />
<br />
I replaced the x and y drives on my Mendel (and wrote quick controller code) and it worked just brilliantly.  I have some thoughts on an alternative design 3d printer, so I think that will be my next focus...   (Gonna have to build at least one more of these for that project, so the how-to is still forthcoming).<br />
<br />
Since the traction controls end up being less than $30, I think that other than the extruder, I can keep the costs to under $60 (but, of course, we will have to see).]]></description>
            <dc:creator>thomassmith1969</dc:creator>
            <category>Developers</category>
            <pubDate>Tue, 23 Dec 2014 06:16:16 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,446868#msg-446868</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,446868#msg-446868</link>
            <description><![CDATA[ I am using L9110S motor drivers...($1.50 each and use two... leaving one driver unused)  The whole rig is purposely drop-dead easy and cheap...<br />
I've attached my current Energia(Arduino) code...  It was hacked together something fierce, and I plan on doing much refactoring, but it works pretty darn solid, so it seems like a good start...]]></description>
            <dc:creator>thomassmith1969</dc:creator>
            <category>Developers</category>
            <pubDate>Tue, 23 Dec 2014 05:34:59 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,446267#msg-446267</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,446267#msg-446267</link>
            <description><![CDATA[ That's a nice idea, and the cost is much lower than I would have expected! My only concern is how long a brushed DC motor will last in this environment, before the brushes wear out.<br />
<br />
Which motor driver chip are you using, the SI9986, or something else?]]></description>
            <dc:creator>dc42</dc:creator>
            <category>Developers</category>
            <pubDate>Sun, 21 Dec 2014 13:35:04 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,446262#msg-446262</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,446262#msg-446262</link>
            <description><![CDATA[ For any interested...  I finally got a chance to play with an idea that I had along these line, and it turned out really well...<br />
<br />
I started with 3 dc motors with encoders (http://www.aliexpress.com/item/5pc-6V-4000rpm-12v-8000rpm-Standard-130-motor-Green-Micro-DC-motor-with-encoder/1698382218.html), added 48:1 gearboxes, and a cheap microcontroller (Texas Instruments MSP430G2553), and 3 motor controllers; and put together a hack that lets me absolute position them from -2147483648 to 2147483647.<br />
<br />
Each <i>"step"</i> is 1/128 of a rotation of the motor, which ends up being 1/6144 of a rotation of the output shaft.<br />
<br />
<br />
<br />
<br />
On top of all of that, because I am using a constant-read on the encoder to determine position, it is able to detect if it gets blocked or something external moves the shaft.<br />
It can even be used as an alternative to a servo.<br />
<br />
Cost Breakdown:<br />
   3 dc motors with encoders: 4.20<br />
   3 motor drivers: 3.00<br />
   3 48:1 gearboxes: 480 (replaced motors that came with them)<br />
   MSP430G2553 microcontroller: 2.50              (Could also have been an arduino)<br />
   board, mount, wiring: .75<br />
---------------------------------------------------------------<br />
<b>TOTAL: $15.05</b> <br />
<br />
<br />
<br />
<br />
PS: I used the Energia development platform (http://energia.nu) to develop the controller code<br />
P.P.S:  As soon as I get the chance, I will build a few more and post step-by-steps with code (Assuming anyone is interested, so let me know)]]></description>
            <dc:creator>thomassmith1969</dc:creator>
            <category>Developers</category>
            <pubDate>Sun, 21 Dec 2014 13:25:31 -0500</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,352780#msg-352780</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,352780#msg-352780</link>
            <description><![CDATA[ Is it true that the recent Kickstarter project The Micro 3D Printer uses DC motors instead of steppers?]]></description>
            <dc:creator>vn</dc:creator>
            <category>Developers</category>
            <pubDate>Fri, 09 May 2014 07:48:26 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,349117#msg-349117</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,349117#msg-349117</link>
            <description><![CDATA[ can the firmware be modified to use a optical encoder? if yes then what all needs to be changed cause i just modified a dc geared motor so to install a encoder......]]></description>
            <dc:creator>lunar211</dc:creator>
            <category>Developers</category>
            <pubDate>Fri, 02 May 2014 10:14:50 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,348710#msg-348710</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,348710#msg-348710</link>
            <description><![CDATA[ Can a printers optical encoder strip be integrated with a stepper motor?<br />
I'm thinking of how this could be incorporated into the Z-axis of a DLP-SLA printer that could have a lot of backlash due to the use of a non traditional drive mechanism.<br />
<br />
<b>RepStrap: X-Axis DC Motor and Linear Optical Encoder repurposed from an old InkJet Printer</b><br />
[<a href="https://www.youtube.com/watch?v=t650YXt-_jQ#t=289" target="_blank"  rel="nofollow">www.youtube.com</a>]]]></description>
            <dc:creator>A2</dc:creator>
            <category>Developers</category>
            <pubDate>Thu, 01 May 2014 13:58:31 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,348687#msg-348687</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,348687#msg-348687</link>
            <description><![CDATA[ There is a nice demo <a href="http://arduino-pi.blogspot.ca/2014/04/arduino-sketch-to-manage-high.html" target="_blank"  rel="nofollow">in this blog article</a> that shows how to use an Arduino for interrupt-driven closed-loop motor control using the linear encoder and DC motor carriage from an old inkjet printer.]]></description>
            <dc:creator>MattMoses</dc:creator>
            <category>Developers</category>
            <pubDate>Thu, 01 May 2014 13:26:49 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,334262#msg-334262</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,334262#msg-334262</link>
            <description><![CDATA[ It seems like there are a few new developments since I last looked. This page: <a href="http://playground.arduino.cc/Main/RotaryEncoders#.UzzNjVcVByY" target="_blank"  rel="nofollow">Reading Rotary Encoders</a> has two new links - <a href="http://www.pjrc.com/teensy/td_libs_Encoder.html" target="_blank"  rel="nofollow">here</a> and <a href="http://playground.arduino.cc/Main/RotaryEncoders#Example14" target="_blank"  rel="nofollow">here</a>.<br />
<br />
The interrupt pins listed for the Arduino Mega are 2, 3, 18, 19, 20, 21. These pins happen to be marked with a dot on the RAMPS 1.4 schematic <a href="http://reprap.org/mediawiki/images/f/f6/RAMPS1.4schematic.png" target="_blank"  rel="nofollow">here</a>.<br />
<br />
Ideally both channels of the encoder would go to an interrupt-on-change pin, but apparently you can get OK performance if only one channel goes to an interrupt. <br />
<br />
So it looks like the Mega can indeed handle four encoders. It would require pretty substantial changes to the firmware, however.]]></description>
            <dc:creator>MattMoses</dc:creator>
            <category>Developers</category>
            <pubDate>Wed, 02 Apr 2014 23:16:13 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,334258#msg-334258</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,334258#msg-334258</link>
            <description><![CDATA[ I'm not too knowledgeable about the capabilities of MCUs, but I get the feeling an Arduino Mega could handle four optical encoders -- interrupt-driven or otherwise.  If not, we could probably use tow or four smaller MCUs to do that job.]]></description>
            <dc:creator>epicepee</dc:creator>
            <category>Developers</category>
            <pubDate>Wed, 02 Apr 2014 22:26:03 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,333625#msg-333625</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,333625#msg-333625</link>
            <description><![CDATA[ Cool. We were kicking around ideas about this in <a href="http://forums.reprap.org/read.php?88,307532" target="_blank"  rel="nofollow">this thread</a>. I would like to make a cheap little "drop in" board that has a step/direction interface, onboard microcontroller (super cheapo), onboard driver, and is pinout compatible with a Pololu driver. <br />
<br />
Do you really think the Arduino could handle interrupt driven encoder interfaces for all 3 or 4 motors? I have looked for examples of interrupt-driven encoder interfaces for the Arduinio, but have never found anything that looks like it is the real deal. Maybe I am not looking hard enough... Anyone have any links?]]></description>
            <dc:creator>MattMoses</dc:creator>
            <category>Developers</category>
            <pubDate>Wed, 02 Apr 2014 03:14:32 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,333581#msg-333581</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,333581#msg-333581</link>
            <description><![CDATA[ Just to chuck this out there:<br />
[<a href="http://www.ebay.com/itm/12V-DC-300-RPM-High-Torque-Gear-Box-Electric-Motor-NEW-/220817730384?pt=LH_DefaultDomain_0&amp;hash=item3369c32b50" target="_blank"  rel="nofollow">www.ebay.com</a>]<br />
<br />
$6.25, 12V, 300RPM with a built-in gearbox.  Not bad, eh?  It'll need an encoder, but I think you could find a low-resolution one and attach it to the back of the motor (so the gearbox increases its resolution).<br />
<br />
The drivers could also be extremely simple.  An Arduino Mega would probably be able to handle the monitoring of whatever encoders we use, and the drivers could probably be two transistors and a capacitor.  They might even be able to drop into the Pololu slots on RAMPS.<br />
<br />
Just a thought.]]></description>
            <dc:creator>epicepee</dc:creator>
            <category>Developers</category>
            <pubDate>Wed, 02 Apr 2014 00:07:23 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,332589#msg-332589</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,332589#msg-332589</link>
            <description><![CDATA[ what about using a wheel encoders for motor control and accuracy?]]></description>
            <dc:creator>lunar211</dc:creator>
            <category>Developers</category>
            <pubDate>Mon, 31 Mar 2014 10:00:28 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,205734#msg-205734</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,205734#msg-205734</link>
            <description><![CDATA[ I know a place local to me in southern California where I can get stepper motors very very cheaply. I would not be surprised to see them for $4.00 or $5.00. If you're intersted let me know, I can visit the store and tell you what  they have.]]></description>
            <dc:creator>icandothat</dc:creator>
            <category>Developers</category>
            <pubDate>Sun, 05 May 2013 16:59:50 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,204532#msg-204532</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,204532#msg-204532</link>
            <description><![CDATA[ Well if you want a steampunk stepper motor, I've designed a simple one based around a pneumatic wobble motor:<br />
[<a href="https://cubehero.com/physibles/Gene_Hacker/Mini_Printable_Stepper_Motor" target="_blank"  rel="nofollow">cubehero.com</a>]<br />
<br />
It uses three inflatable silicone chambers to move a cycloidal ring gear around an inner rotor gear in the same way as the motor described here: [<a href="http://www.act.sys.okayama-u.ac.jp/kouseigaku/research/okamoto_wobble_06/english.htm" target="_blank"  rel="nofollow">www.act.sys.okayama-u.ac.jp</a>]<br />
<br />
It should have about 108 steps per revolution and about 0.9 Nm of torque. It is designed as a prototype, but if it was made bigger and with more teeth on the rotor/ring, it would have the same number of steps as the stepper motors already used by reprap. It will probably be slower though.<br />
<br />
I haven't printed it yet, but if the rotor gear and ring gears turn out well, then it should work.<br />
<br />
If one could make a fluidic stepper driver for it and a paper tape reader to control it, one would have a RepRap very close to completely replicating all its parts.]]></description>
            <dc:creator>Gene Hacker</dc:creator>
            <category>Developers</category>
            <pubDate>Wed, 01 May 2013 16:32:13 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,203184#msg-203184</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,203184#msg-203184</link>
            <description><![CDATA[ At that rpm you could do a huge gear reduction gain a good amount of torque while the motor itself is spining fast enough to use the positional feedback]]></description>
            <dc:creator>Blitz2190</dc:creator>
            <category>Developers</category>
            <pubDate>Fri, 26 Apr 2013 13:02:22 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,195140,199943#msg-199943</guid>
            <title>Re: Stepper motor alternative ?</title>
            <link>https://reprap.org/forum/read.php?2,195140,199943#msg-199943</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>redreprap</strong><br />
someone will have to do it steampunked style</div></blockquote>
<br />
It's been done (well, maybe except for "real steam"):<br />
<a href="http://youtu.be/BIfqFAG5olU" target="_blank"  rel="nofollow">3D Printed Oscillating Steam Engine</a><br />
<a href="http://youtu.be/yNW0m6YCkxA" target="_blank"  rel="nofollow">Wobbler Engine printed on a 3D Printer</a><br />
<br />
But what's that? You say you want a steam-powered stepper motor? How about one of these with four cylinders:<br />
<a href="http://www.thingiverse.com/thing:21923" target="_blank"  rel="nofollow">Radial or Hula Motor</a><br />
<br />
Now just add a fluidic controller and a tape reader and you're all set! :)<br />
<a href="http://www.thingiverse.com/thing:11707" target="_blank"  rel="nofollow">Fluidic Full Adder</a><br />
<a href="http://www.thingiverse.com/thing:14025" target="_blank"  rel="nofollow">Printable Fluidic Logic Element</a><br />
<a href="http://youtu.be/Fo85u9mnp9k" target="_blank"  rel="nofollow">Fluidic logic 4-bit integer square root circuit based on siphons</a><br />
<a href="http://www.thingiverse.com/thing:33696" target="_blank"  rel="nofollow">3-bit Mechanical Punch Card Reader</a>]]></description>
            <dc:creator>MattMoses</dc:creator>
            <category>Developers</category>
            <pubDate>Mon, 15 Apr 2013 10:53:05 -0400</pubDate>
        </item>
    </channel>
</rss>
