<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Homing issues</title>
        <description> Hi!

I am almost finished with building my 3D printer. The latest issue I now have is with the homing function (G28 in G code). I have setup all end stops (they are opto) correctly. The Z axis is a MAX, the other axes are MIN. When I manually move the axes, it correctly stops at the end stops. 

Now I thought after this I would be able to use the homing functionality to put the extruder in start position. Sadly, when I use it (also per axes), the stepper motors make a high pitch sound for a while, after which it stops. Nothing moves.

Is there any setup in the configuration that I&#039;m overlooking to setup the homing functionality?

Thanks!
Steph</description>
        <link>https://reprap.org/forum/read.php?219,413347,413347#msg-413347</link>
        <lastBuildDate>Sun, 12 Jul 2026 02:36:08 -0400</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://reprap.org/forum/read.php?219,413347,415172#msg-415172</guid>
            <title>Re: Homing issues</title>
            <link>https://reprap.org/forum/read.php?219,413347,415172#msg-415172</link>
            <description><![CDATA[ Yes, I use microstepping. And unless your motors are weak and can't maintain microsteps, you're probably losing out.<br />
<br />
You'll change your max speed in the line below where you set your steps, at DEFAULT_MAX_FEEDRATE.  Your 50 steps/mm for your z-axis implies that your z-axis lead screw has a lead of 4mm.  Saying that your steppers can spin the screw so it travels 50mm/sec translates into 12.5 rotations per second.  I doubt your motors can do that under load without missing steps. I'd start at something much more conservative, 2-4 times your actual lead.  So if you indeed have 4mm lead screws, replace 50 with a value from 8 to 12.  That'll cause a full travel to take 37-56 seconds instead of trying to do it in 9 seconds.  While you're in there, you might want to adjust your homing feed rates (several lines up) to something higher.  Homing you usually don't worry if you skip a step since you're zeroing out anyway.<br />
<br />
Also, it looks like you have similar lead screws for all your axes, but your steps per mm and feedrates are not the same. If they are indeed the same specs, then your values should be the same or at least a lot closer. The max values might differ if there's more load or friction for a particular axis.]]></description>
            <dc:creator>cdru</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Fri, 03 Oct 2014 16:53:20 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,413347,415163#msg-415163</guid>
            <title>Re: Homing issues</title>
            <link>https://reprap.org/forum/read.php?219,413347,415163#msg-415163</link>
            <description><![CDATA[ I solved the issue of the speed of the Z axis. It was embedded in the G code which was generated by the Slicer software. <br />
<br />
G1 Z5 F5000 ; lift nozzle<br />
<br />
As my homing position for the Z axis is MAX, the whole device moves down all the way. I changed this to a more reasonable speed (F2000).<br />
<br />
However, this means probably I will have to manually change all G code generated files. So I think I will change the position of the end stop to the MIN position.<br />
<br />
After making my bed next to the printer, I also avoided disaster, as the printer for some reason did not understand the following line of G code:<br />
<br />
G1 X208.772 Y87.741 F7800.000<br />
<br />
As it did not move to the middle of the bed, after a while it tried to move to a negative X position and broke down the entire X axis...<br />
<br />
Also when I remove the F7800 piece, it does not work in the complete file. However, when I just run separately <br />
<br />
G1 X208.772 Y87.741<br />
<br />
it does move to the correct position. However, using <br />
<br />
G1 X25 Y25 <br />
<br />
did not?... I imagine that this has something to do with the step speed of my motors. I have used the following setting:<br />
<br />
#define DEFAULT_AXIS_STEPS_PER_UNIT   {70.4225,70.1083,50.0000,101.0869}  // default steps per unit for Ultimaker<br />
<br />
I did not use microstepping for any motor except the extruders. <br />
<br />
It remains quite a difficult feat to calibrate this printer :-) Sorry for all my questions!!]]></description>
            <dc:creator>Stephanel</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Fri, 03 Oct 2014 16:25:27 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,413347,415067#msg-415067</guid>
            <title>Re: Homing issues</title>
            <link>https://reprap.org/forum/read.php?219,413347,415067#msg-415067</link>
            <description><![CDATA[ Fantastic! Thanks guys! The trick with the jumpers did work. I totally missed those ones... I use a RAMPS 1.4, and setting the 3 jumpers really solved the problem with the extruder being too fast and not extruding at all. I have been able to calibrate the extruder itself, and am now starting with calibration of the bed. Do you use any microstepping for the X, Y and Z axis? Atm I do not.<br />
<br />
BTW: at the moment I'm at the following calibration values:<br />
#define DEFAULT_AXIS_STEPS_PER_UNIT   {70.4225,70.1083,50.0000,101.0869} <br />
I still have to finetune, as the printer is quite big and all mistakes are magnified along the axes. First however, I want to start testing the printing itself :-)<br />
<br />
Maybe your two insights: I put my Z axis home point at the top. As the total height is about 45cm, the Z is moving all the way down to the bed at a breakneck pace. What is the best place to set the actual speed of this Z axis? The homing speed I can setup in the firmware, and atm is very very slow... I always get a heartattack when the Z axis is moving down at such speed, as I always fear it will hit the bed :-)<br />
<br />
Thanks again for all your help!<br />
Steph]]></description>
            <dc:creator>Stephanel</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Fri, 03 Oct 2014 11:58:43 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,413347,414679#msg-414679</guid>
            <title>Re: Homing issues</title>
            <link>https://reprap.org/forum/read.php?219,413347,414679#msg-414679</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>george4657</strong><br />
cdru:<br />
Circumference  = pi * dia or radius *2 * pi so your values are 1/2 proper values.<br />
At 16 microstepping = 93 steps per mm which is close to the 105 in config file depending on actual dia.<br />
At no microstepping = 5.8 steps per mm which is close to the 6.3 value</div></blockquote>You and your silly geometrical formulas. Pfft.<br />
<br />
I fixed my numbers above and you are correct.  The numbers he was using make much more sense and the wrong microstepping configuration is likely his issue.]]></description>
            <dc:creator>cdru</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Thu, 02 Oct 2014 14:35:58 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,413347,414616#msg-414616</guid>
            <title>Re: Homing issues</title>
            <link>https://reprap.org/forum/read.php?219,413347,414616#msg-414616</link>
            <description><![CDATA[ cdru:<br />
Circumference  = pi * dia or radius *2 * pi so your values are 1/2 proper values.<br />
At 16 microstepping = 93 steps per mm which is close to the 105 in config file depending on actual dia.<br />
At no microstepping = 5.8 steps per mm which is close to the 6.3 value<br />
<br />
Stephanel:<br />
In addition to cdru's good advice.<br />
Make sure your hot end is up to temp and extrude at slow speed to test. (50mm / min) <br />
If that works increase the speed to find out how fast your hot end can run.<br />
Too much pressure can deform filament and cause jamb as well so you need to start with lower presure as well.]]></description>
            <dc:creator>george4657</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Thu, 02 Oct 2014 11:22:44 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,413347,414591#msg-414591</guid>
            <title>Re: Homing issues</title>
            <link>https://reprap.org/forum/read.php?219,413347,414591#msg-414591</link>
            <description><![CDATA[ Your electronics package will determine what your microstepping rate is, not the stepper  You don't say if you're using RAMPS or some other package, so I'll presume you're using RAMPS since it's probably the most common.  Under the stepper drivers there are header pins that need to be jumpered.  If there are 3 jumpers on those pins, then you're in 1/16th stepping mode.  No jumpers means full steps.  There's also half, 1/4, and 1/8 modes but those aren't commonly used. Other electronics may have other ways to set the microstepping rate, but usually it's jumpers or dipswitches. My guess is that you don't have any microstepping enabled, but your numbers are set that it is enabled.  I saw this because the actual length extruded (83mm) divided by what was asked for (5mm) = 16.6.  The microcontroller is sending 16x as many pulsed to the motor driver as it's configured to use.<br />
<br />
You say that your stepper is 200 full steps per revolution.  Figure out how to set your driver so that it's using 1/16th microstepping.  Then you should have 3200 steps per revolution (200 * 16).<br />
<br />
If your drive gear is 11mm in diameter, the effective diameter is actually a little less since the teeth bite into the filament.  How much depends on the tension wheel and can vary, but we'll use 10.75mm as the effective diameter as a starting point.  This will get tweaked during the calibration step.  The circumference is then 10.75mm * pi = ~33.77mm per revolution.<br />
<br />
Now knowing how many steps you have per revolution, and the circumference of the drive gear, we can compute how many steps are required per mm of filament. Using our 3200 steps example above, we get 3200 steps / 33.77mm steps = 94.75 steps/mm. That is what you should put in your config file in this line:<br />
#define DEFAULT_AXIS_STEPS_PER_UNIT   {70.4225,70.1083,50.0000,<b>94.75</b>}<br />
<br />
Try that after setting your microstepping (or alternatively, recompute without microsteps but you'll lose resolution as the amount of filament extruded per step goes up 16x) and adjusting your configuration file.  Then, once you have all that done, try a test extrusion again.  You can use 5mm again, but a longer length will give you a more accurate indication on the amount of over/underextrusion.  Whatever length do do use, multiply your existing rate by the length you asked for divided by the length you got.  So if your rate was the above 94.75, you asked for 20mm, and you got 22, then your formula would be 94.75 * 20 / 22 giving you 86.14.  If instead of getting 22, more than you asked for, you got less, say 18, then it would be 47.40 * 20 / 18 giving you 105.28. <br />
<br />
You'll probably need rinse, repeat a few times to get things dialed in and you're extruding exactly what you asked for.<br />
<br />
Edited: Fixed numbers since I'm an idiot.]]></description>
            <dc:creator>cdru</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Thu, 02 Oct 2014 10:23:03 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,413347,414394#msg-414394</guid>
            <title>Re: Homing issues</title>
            <link>https://reprap.org/forum/read.php?219,413347,414394#msg-414394</link>
            <description><![CDATA[ Thanks for your reply! I'm sorry, but I am kinda new into 3D printing, but to better understand everything behind it, I decided to create my 3D printer from scratch. That's why I probably hit that many roadblocks now in the end :-)<br />
<br />
The calculation I used to get to the E6.3252 is the following. I took some filament and indicated a start point. I measured the distance between that point and the top of the extruder. That is point A. Then I instructed Pronterface to run for 5mm (SD). After that run, I measured the distance again, which gives me point B. A - B = RD.<br />
<br />
A = 93.8mm<br />
B = 10.8mm<br />
<br />
SD = 5.0mm<br />
RD = 83.0mm<br />
<br />
S = (Initial Steps per mm   x   SD) / RD = (105 x 5.0) / 83 = 6.3253<br />
<br />
Indeed, this is way too small, and does not work at all with my extruder motor. The Initial Steps per mm (105) worked well, but was way too fast.<br />
<br />
As you requested the specifics of my printer:<br />
Extruder stepper motor model 42HB34F08AB<br />
1000MM stepper motor line<br />
with extruder nozzle 0.4mm.<br />
<a href="http://www.aliexpress.com/item/With-Tracking-Number-2014-New-3D-Printer-12V-0-2-0-3-0-4mm-Nozzle-Thermocouple/1845164144.html" target="_blank"  rel="nofollow">This is the product</a>.<br />
As you can see, the motor is directly connected to the gear. <br />
<br />
I did a bit searching, and found the stepping: 1.8deg/step. I did not find whether it supports microstepping.<br />
<br />
The gear is 11mm outer diameter (<a href="http://www.aliexpress.com/item/With-tracking-number-wholesale-50pcs-lot-makerbot-26-tooth-gear-for-3D-printer-DIY-prusa-mendel/1685859674.html" target="_blank"  rel="nofollow">basically this one</a>).<br />
<br />
I use as firmware <a href="https://github.com/ErikZalm/Marlin" target="_blank"  rel="nofollow">Marlin</a>, latest version. The configuration file is in attachment as it is now ([attachment 41357 Configuration.h]).<br />
<br />
I'd be fine to use a Wade gear extruder, but now I'm a bit stuck to this MK8 type of extruder, as well as I do not have a 3D printer yet which can print the gear required for the Wade extruder :-)<br />
<br />
Hope you can make anything out of the above!<br />
<br />
Thanks a lot already!]]></description>
            <dc:creator>Stephanel</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Wed, 01 Oct 2014 20:36:46 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,413347,414325#msg-414325</guid>
            <title>Re: Homing issues</title>
            <link>https://reprap.org/forum/read.php?219,413347,414325#msg-414325</link>
            <description><![CDATA[ <blockquote class="bbcode"><div><small>Quote<br /></small><strong>Stephanel</strong><br />
M92 E105<br />
...<br />
M92 E6.3252</div></blockquote>That's a huge difference in values and 6.3252 is an extremely small number, presuming that value represents steps per mm. If you're asking for 5mm, that would mean a typical 1.8 degree step motor (200/rev) would only turn about 57 degrees. My printer for instance has a 39:11 ratio Wades gear extruder with a 6.75 effective diameter hobbed bolt.  My steps per mm is just under 535 with 1/16 microstepping.<br />
<br />
Letting us know the specifics of your printer would help in determining the correct value. We'd need to know firmware and version, extruder type, gear ratio, hobbed bolt or drive wheel diameter, stepper step degrees, and microstepping if any to get to a starting value.]]></description>
            <dc:creator>cdru</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Wed, 01 Oct 2014 16:08:56 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,413347,414195#msg-414195</guid>
            <title>Re: Homing issues</title>
            <link>https://reprap.org/forum/read.php?219,413347,414195#msg-414195</link>
            <description><![CDATA[ Hey!<br />
<br />
An update: I managed to get the extruder going with the following setting:<br />
<br />
M92 E105<br />
<br />
This is an MK8 extruder. It seems that it requires a specific setting to be able to push the filament through the nozzle. However, currently, the extruder is pushing filament at a rate of ~10 cm through the nozzle when I only ask for 5 mm. If I have to change the parameters to get down to 5 mm, it would require:<br />
<br />
M92 E6.3252<br />
<br />
When I do this, the extruder blocks again, and is not able to transport the filament.<br />
<br />
Any suggestions as to the correct parameters, and more specifically how to setup an MK8 extruder to properly extrude filament?<br />
<br />
Thanks!]]></description>
            <dc:creator>Stephanel</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Wed, 01 Oct 2014 11:39:58 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,413347,414102#msg-414102</guid>
            <title>Re: Homing issues</title>
            <link>https://reprap.org/forum/read.php?219,413347,414102#msg-414102</link>
            <description><![CDATA[ And I keep struggling :-) <br />
<br />
Now I have setup everything mechanically, I did the calibration of the X,Y and Z axis. That worked quite well. However, now I am trying to calibrate the extruder. I managed to calibrate the cold end of the extruder while it was not connected to the hot end. I had to use a setting of 5.9714 for the calibration (S parameter as specified <a href="http://3.dmake.me/blog/2014/calibrate-3d-printer/" target="_blank"  rel="nofollow">here</a>).<br />
<br />
Now, to calibrate the extruder, I did this without the hot end connected. This way I could accurately test the speed of the cold end extruder. However, once I connect the cold end to the hot end and try to extrude material, nothing really happens. <br />
<br />
At first I thought the hot end was blocked somehow. However, when I increased the temp to 250degC and manually pushed through the ABS filament, all seemed to work fine (I am however not sure how much force is OK to push through the filament).<br />
<br />
The cold end extruder always slips over the filament, no matter how much pressure I put on the guide wheel. When I push to hard, the motor might block as well...<br />
<br />
I tried to lower the speed, and increase it, nothing helped...<br />
<br />
Any suggestions what I should do to fix this? Is this normal?<br />
<br />
Thanks!<br />
Steph]]></description>
            <dc:creator>Stephanel</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Wed, 01 Oct 2014 06:58:54 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,413347,413412#msg-413412</guid>
            <title>Re: Homing issues</title>
            <link>https://reprap.org/forum/read.php?219,413347,413412#msg-413412</link>
            <description><![CDATA[ Incredible :-) It appears to be a similar issue as I had before... Setting the feedrate to 4x60 for X and Y and 1x60 for Z solved my problem!<br />
<br />
Thanks!]]></description>
            <dc:creator>Stephanel</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Mon, 29 Sep 2014 14:23:16 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,413347,413408#msg-413408</guid>
            <title>Re: Homing issues</title>
            <link>https://reprap.org/forum/read.php?219,413347,413408#msg-413408</link>
            <description><![CDATA[ Most likely George4657 is right.  When you are moving around with the buttons, it is usually at a lower rate of speed.  You can lower the homing speed as suggested, but you might experience similar issues while printing.  You might have to play around a bit with the trimpot settings on the stepper driver boards.]]></description>
            <dc:creator>jbernardis</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Mon, 29 Sep 2014 14:09:38 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,413347,413392#msg-413392</guid>
            <title>Re: Homing issues</title>
            <link>https://reprap.org/forum/read.php?219,413347,413392#msg-413392</link>
            <description><![CDATA[ Your homing speed may be too high.<br />
Check<br />
 #define HOMING_FEEDRATE {50*60, 50*60, 3*60, 0}  // set the homing speeds (mm/min)<br />
In<br />
Configuration.h]]></description>
            <dc:creator>george4657</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Mon, 29 Sep 2014 13:51:29 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?219,413347,413347#msg-413347</guid>
            <title>Homing issues</title>
            <link>https://reprap.org/forum/read.php?219,413347,413347#msg-413347</link>
            <description><![CDATA[ Hi!<br />
<br />
I am almost finished with building my 3D printer. The latest issue I now have is with the homing function (G28 in G code). I have setup all end stops (they are opto) correctly. The Z axis is a MAX, the other axes are MIN. When I manually move the axes, it correctly stops at the end stops. <br />
<br />
Now I thought after this I would be able to use the homing functionality to put the extruder in start position. Sadly, when I use it (also per axes), the stepper motors make a high pitch sound for a while, after which it stops. Nothing moves.<br />
<br />
Is there any setup in the configuration that I'm overlooking to setup the homing functionality?<br />
<br />
Thanks!<br />
Steph]]></description>
            <dc:creator>Stephanel</dc:creator>
            <category>RAMPS Electronics</category>
            <pubDate>Mon, 29 Sep 2014 12:36:49 -0400</pubDate>
        </item>
    </channel>
</rss>
