<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>add 8 motors</title>
        <description> How do I add 8 more stepper motor controllers to the ramps1.4? How do I control the motors? I want to add 8 more extruders.</description>
        <link>https://reprap.org/forum/read.php?2,232643,232643#msg-232643</link>
        <lastBuildDate>Thu, 21 May 2026 16:41:24 -0400</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://reprap.org/forum/read.php?2,232643,233976#msg-233976</guid>
            <title>Re: add 8 motors</title>
            <link>https://reprap.org/forum/read.php?2,232643,233976#msg-233976</link>
            <description><![CDATA[ 8 extruders is a lot! That implies total of 11 stepper drivers. I don't think anyone goes up to 11 yet :)<br />
<br />
The RepRapPro use a slave board to provide more extruders, that might be a general way to do it. Certainly you could chain RAMPS board to get 10 drivers, some work would be needed in firmware.<br />
<br />
Depending on how many extruders need to be active at the same time, I don't know how feasible it is to multiplex several motors on to one stepper driver. I think switching inductive loads is always going to be ugly, voltage spikes are good at killing electronics.<br />
<br />
The other solution is cheaper drivers, but manufacturers are generally adding features rather than cutting prices. I did look at creating stepper drivers from some cheap MOSFETs and a PIC or similar to drive them, but getting expected features like current control and microstepping would take a lot of development effort.]]></description>
            <dc:creator>bobc</dc:creator>
            <category>Developers</category>
            <pubDate>Thu, 08 Aug 2013 16:36:32 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,232643,233969#msg-233969</guid>
            <title>Re: add 8 motors</title>
            <link>https://reprap.org/forum/read.php?2,232643,233969#msg-233969</link>
            <description><![CDATA[ The <a href="http://reprap.org/wiki/RAMPS_1.4" target="_blank"  rel="nofollow">RAMPS 1.4 wiki page</a> should have all the schematics you need.<br />
<br />
The actual program the mega2560 is running is called "firmware". There are many kinds. <a href="http://reprap.org/wiki/List_of_Firmware" target="_blank"  rel="nofollow">Here's a big list of firmwares</a>. Many people use Marlin, you can <a href="https://github.com/ErikZalm/Marlin" target="_blank"  rel="nofollow">get the Marlin source here</a>.<br />
<br />
I don't think there is a "standard" for color in 3D models. Some commercial printers use VRML for color, <a href="http://www.shapeways.com/tutorials/exporting_to_vrml_and_x3d_for_color_printing" target="_blank"  rel="nofollow">see here for example</a>. The <a href="http://en.wikipedia.org/wiki/Additive_Manufacturing_File_Format" target="_blank"  rel="nofollow">AMF</a> standard supports color, but I don't know of any software (either modeling or slicing) that currently supports it.<br />
<br />
As far as I know, none of the hobby level slicers or firmware actually interprets true RGB color information in the 3D models. The <a href="http://www.thingiverse.com/search?q=two+color&amp;sa=" target="_blank"  rel="nofollow">multi-color models you see on thingiverse</a> are typically done by printing two disjoint, interleaved solids - one for each color. Richrap's beautiful multicolor prints are done by <a href="http://youtu.be/_g0fiWx8RyM" target="_blank"  rel="nofollow">switching manually between extruders</a> or <a href="http://richrap.blogspot.com/2013/04/3d-printing-with-nylon-618-filament-in.html" target="_blank"  rel="nofollow">coloring the filament with dye</a>.<br />
<br />
If anyone out there has better information on this, please correct me ;) .<br />
<br />
It looks like you will be charting some new ground, gwbcomm...]]></description>
            <dc:creator>MattMoses</dc:creator>
            <category>Developers</category>
            <pubDate>Thu, 08 Aug 2013 16:11:09 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,232643,233927#msg-233927</guid>
            <title>Re: add 8 motors</title>
            <link>https://reprap.org/forum/read.php?2,232643,233927#msg-233927</link>
            <description><![CDATA[ It looks like there is nothing available yet. I have some ideas but I need a good readable RAMPS 1.4 schematic. I have found several schematics that are small and do not take well blowing up to print. Any links anybody? The other issue is software. I thought the mega 2560 is looking for a sketch not a c++ program. What is the actual program the mega2560 is running? Where can I find the source?  Is there a color definition standard for 3D? I am thinking to use the Opengl RGB definition to send to the printer.]]></description>
            <dc:creator>gwbcomm</dc:creator>
            <category>Developers</category>
            <pubDate>Thu, 08 Aug 2013 13:34:08 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,232643,232978#msg-232978</guid>
            <title>Re: add 8 motors</title>
            <link>https://reprap.org/forum/read.php?2,232643,232978#msg-232978</link>
            <description><![CDATA[ &gt; Not a good idea, disconnecting and connecting stepper motors to a driver under power will damage the driver. <br />
<br />
For something low power like a Pololu driver it probably doesn't matter that much. I have hot-swapped stepper motors by simple "plugging and unplugging" and the Pololu drivers don't seem to care... But you're right that it is not good practice. <br />
<br />
If you're worried about it, you can simply disable the motor driver before turning the switches. In most printer communication programs this just takes a click of a button.]]></description>
            <dc:creator>MattMoses</dc:creator>
            <category>Developers</category>
            <pubDate>Mon, 05 Aug 2013 14:22:34 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,232643,232969#msg-232969</guid>
            <title>Re: add 8 motors</title>
            <link>https://reprap.org/forum/read.php?2,232643,232969#msg-232969</link>
            <description><![CDATA[ MattMoses Wrote:<br />
&gt; <br />
&gt; If you're ok with really low-tech, you could get<br />
&gt; four 1-pole 8-position rotary switches (one switch<br />
&gt; for each output wire of the stepper driver). That<br />
&gt; way you would only need 1 stepper driver.<br />
<br />
Not a good idea, disconnecting and connecting stepper motors to a driver under power will damage the driver.]]></description>
            <dc:creator>stephenrc</dc:creator>
            <category>Developers</category>
            <pubDate>Mon, 05 Aug 2013 13:57:02 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,232643,232818#msg-232818</guid>
            <title>Re: add 8 motors</title>
            <link>https://reprap.org/forum/read.php?2,232643,232818#msg-232818</link>
            <description><![CDATA[ richrap did this with three extruders - <a href="http://richrap.blogspot.co.uk/2012/08/3-way-quick-fit-extruder-and-colour.html" target="_blank"  rel="nofollow">see details here</a>. He ran the same stepper channel to three different stepper drivers and controlled their enable lines individually. <br />
<br />
Simba is working on a <a href="http://forums.reprap.org/read.php?2,193415,page=1" target="_blank"  rel="nofollow">10 motor design</a>, but it may not be ready yet...<br />
<br />
If you're ok with really low-tech, you could get four 1-pole 8-position rotary switches (one switch for each output wire of the stepper driver). That way you would only need 1 stepper driver.]]></description>
            <dc:creator>MattMoses</dc:creator>
            <category>Developers</category>
            <pubDate>Mon, 05 Aug 2013 04:27:38 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,232643,232811#msg-232811</guid>
            <title>Re: add 8 motors</title>
            <link>https://reprap.org/forum/read.php?2,232643,232811#msg-232811</link>
            <description><![CDATA[ Okay, I don't know how to do this but I know it can be done.  You will need to have someone else fill in the details.  You technically are only driving one of your extruder steppers at a time.  Theoretically you can use one driver to run as many different steppers as you want as long as they don't need to operate at the same time.  It is called multiplexing if you want to google for more help.<br />
<br />
Good luck.]]></description>
            <dc:creator>nicholas.seward</dc:creator>
            <category>Developers</category>
            <pubDate>Mon, 05 Aug 2013 04:00:08 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,232643,232809#msg-232809</guid>
            <title>Re: add 8 motors</title>
            <link>https://reprap.org/forum/read.php?2,232643,232809#msg-232809</link>
            <description><![CDATA[ use different colors, one at a time.]]></description>
            <dc:creator>gwbcomm</dc:creator>
            <category>Developers</category>
            <pubDate>Mon, 05 Aug 2013 03:55:06 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,232643,232688#msg-232688</guid>
            <title>Re: add 8 motors</title>
            <link>https://reprap.org/forum/read.php?2,232643,232688#msg-232688</link>
            <description><![CDATA[ I don't have any experience with RAMPS but what are you trying to do?  Maybe there is a mechanical solution.  Are all the extruders independent or slaved to each other?]]></description>
            <dc:creator>nicholas.seward</dc:creator>
            <category>Developers</category>
            <pubDate>Sun, 04 Aug 2013 17:03:14 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?2,232643,232643#msg-232643</guid>
            <title>add 8 motors</title>
            <link>https://reprap.org/forum/read.php?2,232643,232643#msg-232643</link>
            <description><![CDATA[ How do I add 8 more stepper motor controllers to the ramps1.4? How do I control the motors? I want to add 8 more extruders.]]></description>
            <dc:creator>gwbcomm</dc:creator>
            <category>Developers</category>
            <pubDate>Sun, 04 Aug 2013 13:46:54 -0400</pubDate>
        </item>
    </channel>
</rss>
