<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>Z-axis moving problem.</title>
        <description> Hi, I had a problem in printing G-code file which is generated from skeinforge, the problems is my mendel z-axis seem dont lift-up after finish laying each layer. (I tried put my hand on a threaded rod, in fact it just lift-up very little, not enough space to lay another layer on top.)

I&#039;m not sure is&#039;t may be  a wrong setting of configuration.h&quot; at Five_GCode_interpreter.

#ifdef MENDEL

// define the XYZ parameters of Mendel

#define X_STEPS_PER_MM   10.047
#define X_STEPS_PER_INCH (X_STEPS_PER_MM*INCHES_TO_MM) // *RO
#define INVERT_X_DIR 0

#define Y_STEPS_PER_MM   10.047
#define Y_STEPS_PER_INCH (Y_STEPS_PER_MM*INCHES_TO_MM) // *RO
#define INVERT_Y_DIR 0

#define Z_STEPS_PER_MM   833.398
#define Z_STEPS_PER_INCH (Z_STEPS_PER_MM*INCHES_TO_MM) // *RO
#define INVERT_Z_DIR 0

here is some my setting for printing

1.) Using Reprpa-Host software
2.) Skeinforge layer thickness(mm) = 0.4 (no raft)
3.) My z-threadrod is 1.25mm pitch and stepper motor 1.8 deg

I&#039;ve no idea is&#039;t a firmware problem or my skeinforge wrong setting cause.

Just added two pic. which is i&#039;ve printed &quot;x-bar-clamp-m4_4off&quot; the correct object height should be 10~11mm but i got printed out just only 4.43mm.</description>
        <link>https://reprap.org/forum/read.php?1,52526,52526#msg-52526</link>
        <lastBuildDate>Wed, 22 Jul 2026 12:54:19 -0400</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://reprap.org/forum/read.php?1,52526,52569#msg-52569</guid>
            <title>Re: Z-axis moving problem.</title>
            <link>https://reprap.org/forum/read.php?1,52526,52569#msg-52569</link>
            <description><![CDATA[ Hi, nophead thank you again of your advise, I just keep ""#define Z_STEPS_PER_MM 833.398 "" in configuration.h and i just simply revise a setting Skeinforge  Speed Setting ---- "Maximum Z feed rate (mm/s) = 0.5" than my z-axis stepper motor move correctly.<br />
<br />
Thanks a lot !!!!]]></description>
            <dc:creator>tv7957ht</dc:creator>
            <category>General</category>
            <pubDate>Thu, 22 Jul 2010 15:54:27 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?1,52526,52547#msg-52547</guid>
            <title>Re: Z-axis moving problem.</title>
            <link>https://reprap.org/forum/read.php?1,52526,52547#msg-52547</link>
            <description><![CDATA[ Those are odd numbers. My belts are 5mm pitch so X &amp; Y are 10 steps per millimetre with 8 tooth pulleys. <br />
<br />
Z is geared down by 8/21, so with half stepping you have 400 * 21 / (8 * 1.25) = 840. Looks like the figures are for non-metric belt.<br />
<br />
I think the most likely reason you are so far out, assuming you don't have micro stepping drives, is that z is trying to step too fast and is skipping.]]></description>
            <dc:creator>nophead</dc:creator>
            <category>General</category>
            <pubDate>Thu, 22 Jul 2010 14:06:19 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?1,52526,52542#msg-52542</guid>
            <title>Re: Z-axis moving problem.</title>
            <link>https://reprap.org/forum/read.php?1,52526,52542#msg-52542</link>
            <description><![CDATA[ First, have a look at the GCode in use, wether the Z axis is actually commanded to lift 0.4 mm for each layer. GCode is pretty easy to read, just use a text editor and look at the numbers following a "Z".<br />
<br />
If the numbers are correct, you want to adjust the Z_STEPS_PER_MM value. In full step mode you have 200 steps / 1.25 mm = 160 Z_STEPS_PER_MM. In half step mode, it's double the value, or 320. This doesn't take gearing into account and assumes one turn of the motor == on turn of the rod.]]></description>
            <dc:creator>Traumflug</dc:creator>
            <category>General</category>
            <pubDate>Thu, 22 Jul 2010 13:48:08 -0400</pubDate>
        </item>
        <item>
            <guid>https://reprap.org/forum/read.php?1,52526,52526#msg-52526</guid>
            <title>Z-axis moving problem.</title>
            <link>https://reprap.org/forum/read.php?1,52526,52526#msg-52526</link>
            <description><![CDATA[ Hi, I had a problem in printing G-code file which is generated from skeinforge, the problems is my mendel z-axis seem dont lift-up after finish laying each layer. (I tried put my hand on a threaded rod, in fact it just lift-up very little, not enough space to lay another layer on top.)<br />
<br />
I'm not sure is't may be  a wrong setting of configuration.h" at Five_GCode_interpreter.<br />
<br />
#ifdef MENDEL<br />
<br />
// define the XYZ parameters of Mendel<br />
<br />
#define X_STEPS_PER_MM   10.047<br />
#define X_STEPS_PER_INCH (X_STEPS_PER_MM*INCHES_TO_MM) // *RO<br />
#define INVERT_X_DIR 0<br />
<br />
#define Y_STEPS_PER_MM   10.047<br />
#define Y_STEPS_PER_INCH (Y_STEPS_PER_MM*INCHES_TO_MM) // *RO<br />
#define INVERT_Y_DIR 0<br />
<br />
#define Z_STEPS_PER_MM   833.398<br />
#define Z_STEPS_PER_INCH (Z_STEPS_PER_MM*INCHES_TO_MM) // *RO<br />
#define INVERT_Z_DIR 0<br />
<br />
here is some my setting for printing<br />
<br />
1.) Using Reprpa-Host software<br />
2.) Skeinforge layer thickness(mm) = 0.4 (no raft)<br />
3.) My z-threadrod is 1.25mm pitch and stepper motor 1.8 deg<br />
<br />
I've no idea is't a firmware problem or my skeinforge wrong setting cause.<br />
<br />
Just added two pic. which is i've printed "x-bar-clamp-m4_4off" the correct object height should be 10~11mm but i got printed out just only 4.43mm.]]></description>
            <dc:creator>tv7957ht</dc:creator>
            <category>General</category>
            <pubDate>Thu, 22 Jul 2010 12:28:27 -0400</pubDate>
        </item>
    </channel>
</rss>
