<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>How do I test the pins for the x axis motor</title>
        <description> I have a problem with the x axis motor not working. I changed the stepper driver, I changed the ramps 1.4 board, if I plug the x motor in the y stepper driver it works fine, so I know the motor and the wiring are ok. I&#039;ve got everything else working now, the endstops, the other two motors home correctly.  the only problem I have is the x motor.  It doesn&#039;t move at all, doesen&#039;t jerk or hum, nothing. So I&#039;m thinking maybe there is a bad pin on the processor.  I would like to test this, but I don&#039;t know how and I don&#039;t have another Atmega 2560 board. Thanks for any help.  Jerry</description>
        <link>https://reprap.org/forum/read.php?178,708339,708339#msg-708339</link>
        <lastBuildDate>Mon, 16 Mar 2026 23:16:37 -0400</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://reprap.org/forum/read.php?178,708339,709332#msg-709332</guid>
            <title>Re: How do I test the pins for the x axis motor</title>
            <link>https://reprap.org/forum/read.php?178,708339,709332#msg-709332</link>
            <description><![CDATA[ Glad it helped.]]></description>
            <dc:creator>DjDemonD</dc:creator>
            <category>Delta Machines</category>
            <pubDate>Fri, 23 Sep 2016 03:31:16 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?178,708339,709330#msg-709330</guid>
            <title>Re: How do I test the pins for the x axis motor</title>
            <link>https://reprap.org/forum/read.php?178,708339,709330#msg-709330</link>
            <description><![CDATA[ It worked, oh happy day. All my motors are moving now.  Thanks again.]]></description>
            <dc:creator>jmalinski</dc:creator>
            <category>Delta Machines</category>
            <pubDate>Fri, 23 Sep 2016 03:12:49 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?178,708339,709034#msg-709034</guid>
            <title>Re: How do I test the pins for the x axis motor</title>
            <link>https://reprap.org/forum/read.php?178,708339,709034#msg-709034</link>
            <description><![CDATA[ You're welcome, let me know if it works.]]></description>
            <dc:creator>DjDemonD</dc:creator>
            <category>Delta Machines</category>
            <pubDate>Wed, 21 Sep 2016 14:33:43 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?178,708339,709031#msg-709031</guid>
            <title>Re: How do I test the pins for the x axis motor</title>
            <link>https://reprap.org/forum/read.php?178,708339,709031#msg-709031</link>
            <description><![CDATA[ I get it. Thanks so much for helping me with this.  I have the printer tore apart right now, as soon as I get it back together I will try the changes and I'll post the results. Again, thanks for the help.  Jerry]]></description>
            <dc:creator>jmalinski</dc:creator>
            <category>Delta Machines</category>
            <pubDate>Wed, 21 Sep 2016 14:31:28 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?178,708339,709008#msg-709008</guid>
            <title>Re: How do I test the pins for the x axis motor</title>
            <link>https://reprap.org/forum/read.php?178,708339,709008#msg-709008</link>
            <description><![CDATA[ No because the pins refer to pins on the arduino atmega which are effectively wired directly to the various components on the ramps board. So pins 36,34,30 are wired to the e1 stepper driver. You're actually telling the firmware that this driver is now the x axis.<br />
<br />
I think it's just a question of how you see the roles of the various parts, the arduino <i>is</i> the controller, the ramps is just an interface to handle the larger currents required to heat things and move motors which the arduino can't do as it's too small.]]></description>
            <dc:creator>DjDemonD</dc:creator>
            <category>Delta Machines</category>
            <pubDate>Wed, 21 Sep 2016 13:26:21 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?178,708339,708997#msg-708997</guid>
            <title>Re: How do I test the pins for the x axis motor</title>
            <link>https://reprap.org/forum/read.php?178,708339,708997#msg-708997</link>
            <description><![CDATA[ If I'm changing the pins for X why would I plug the motor into E1? Wouldn't I leave it plugged into X?]]></description>
            <dc:creator>jmalinski</dc:creator>
            <category>Delta Machines</category>
            <pubDate>Wed, 21 Sep 2016 12:46:16 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?178,708339,708946#msg-708946</guid>
            <title>Re: How do I test the pins for the x axis motor</title>
            <link>https://reprap.org/forum/read.php?178,708339,708946#msg-708946</link>
            <description><![CDATA[ Okay looking at the RC6 pins_ramps_14_EFB file you would just swap the step,dir,enable pins from E1 axis so 36,34,30 to the pins for x. example as below<br />
<br />
<pre class="bbcode">
#define X_STEP_PIN         36
#define X_DIR_PIN          34
#define X_ENABLE_PIN       30
#define X_MIN_PIN           3
#ifndef X_MAX_PIN
  #define X_MAX_PIN         2
#endif

#define Y_STEP_PIN         60
#define Y_DIR_PIN          61
#define Y_ENABLE_PIN       56
#define Y_MIN_PIN          14
#define Y_MAX_PIN          15

#define Z_STEP_PIN         46
#define Z_DIR_PIN          48
#define Z_ENABLE_PIN       62
#define Z_MIN_PIN          18
#define Z_MAX_PIN          19

#define E0_STEP_PIN        26
#define E0_DIR_PIN         28
#define E0_ENABLE_PIN      24

#define E1_STEP_PIN        54
#define E1_DIR_PIN           55 
#define E1_ENABLE_PIN      38</pre>
<br />
Leave x min and x max pins as these link your endstops to the axis and wont be changing. Now connect x motor to E1 stepper driver and see if it works.<br />
(I put the x stepper driver pins in place of E1 instead of leaving it blank as I don't know if it will throw a compiler error if these do not have any values in).]]></description>
            <dc:creator>DjDemonD</dc:creator>
            <category>Delta Machines</category>
            <pubDate>Wed, 21 Sep 2016 07:51:49 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?178,708339,708886#msg-708886</guid>
            <title>Re: How do I test the pins for the x axis motor</title>
            <link>https://reprap.org/forum/read.php?178,708339,708886#msg-708886</link>
            <description><![CDATA[ Please post the pins file you are using, and I'll see if I can change it, there's so many versions on github.com I don't want to give you the wrong one.]]></description>
            <dc:creator>DjDemonD</dc:creator>
            <category>Delta Machines</category>
            <pubDate>Wed, 21 Sep 2016 03:43:05 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?178,708339,708877#msg-708877</guid>
            <title>Re: How do I test the pins for the x axis motor</title>
            <link>https://reprap.org/forum/read.php?178,708339,708877#msg-708877</link>
            <description><![CDATA[ Yes, I'm using Marlin 1.1.0 RC6.  I'll look in the pins file and see what it looks like, maybe I can just figure it out.<br />
Well, looking over the pins.h file, I have no clue as to how you change the x-motor pins with the 2nd extruder.  In the pinsramps14.h<br />
file there are assignments for the steppers and everything else.  The steppers have five pins and the extruder has only three.  Any help with any of this.]]></description>
            <dc:creator>jmalinski</dc:creator>
            <category>Delta Machines</category>
            <pubDate>Wed, 21 Sep 2016 02:54:10 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?178,708339,708871#msg-708871</guid>
            <title>Re: How do I test the pins for the x axis motor</title>
            <link>https://reprap.org/forum/read.php?178,708339,708871#msg-708871</link>
            <description><![CDATA[ Also I've been searching for some other ideas. Some people suggest sending m502 to reset defaults from  eeprom. Or updating to later firmware. <br />
<br />
I had this once myself and it was some corrosion on the ramps board which was causing a short I cleaned it up, resolvered one pin and it started working again.]]></description>
            <dc:creator>DjDemonD</dc:creator>
            <category>Delta Machines</category>
            <pubDate>Wed, 21 Sep 2016 02:01:39 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?178,708339,708870#msg-708870</guid>
            <title>Re: How do I test the pins for the x axis motor</title>
            <link>https://reprap.org/forum/read.php?178,708339,708870#msg-708870</link>
            <description><![CDATA[ Ah okay  now I see yes you can do that it's all in the pins file. Are you using marlin? If so what version?]]></description>
            <dc:creator>DjDemonD</dc:creator>
            <category>Delta Machines</category>
            <pubDate>Wed, 21 Sep 2016 01:47:42 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?178,708339,708868#msg-708868</guid>
            <title>Re: How do I test the pins for the x axis motor</title>
            <link>https://reprap.org/forum/read.php?178,708339,708868#msg-708868</link>
            <description><![CDATA[ I'll probably wind up doing that.  I just thought someone on the forum would know how to swap pins with the 2nd extruder, then I could use this board until I got some money.  I'm in my seventies and live off of my social security, so there is not a lot of extra money floating around here.]]></description>
            <dc:creator>jmalinski</dc:creator>
            <category>Delta Machines</category>
            <pubDate>Wed, 21 Sep 2016 01:39:47 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?178,708339,708837#msg-708837</guid>
            <title>Re: How do I test the pins for the x axis motor</title>
            <link>https://reprap.org/forum/read.php?178,708339,708837#msg-708837</link>
            <description><![CDATA[ Whilst someone here almost certainly knows, a cloned atmega is a fairly cheap replacement part, it might be easiest to buy one and swap it out.]]></description>
            <dc:creator>DjDemonD</dc:creator>
            <category>Delta Machines</category>
            <pubDate>Tue, 20 Sep 2016 19:13:25 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?178,708339,708339#msg-708339</guid>
            <title>How do I test the pins for the x axis motor</title>
            <link>https://reprap.org/forum/read.php?178,708339,708339#msg-708339</link>
            <description><![CDATA[ I have a problem with the x axis motor not working. I changed the stepper driver, I changed the ramps 1.4 board, if I plug the x motor in the y stepper driver it works fine, so I know the motor and the wiring are ok. I've got everything else working now, the endstops, the other two motors home correctly.  the only problem I have is the x motor.  It doesn't move at all, doesen't jerk or hum, nothing. So I'm thinking maybe there is a bad pin on the processor.  I would like to test this, but I don't know how and I don't have another Atmega 2560 board. Thanks for any help.  Jerry]]></description>
            <dc:creator>jmalinski</dc:creator>
            <category>Delta Machines</category>
            <pubDate>Mon, 19 Sep 2016 02:33:59 -0400</pubDate>
        </item>
    </channel>
</rss>
