Deploying to gh-pages from @ Klipper3d/klipper@38bf6f2693 🚀

This commit is contained in:
KevinOConnor
2024-11-13 03:10:43 +00:00
parent c148d25fcc
commit d6d46f3ba3
16 changed files with 137 additions and 23 deletions

View File

@@ -711,6 +711,33 @@
Overview of compensation usage
</a>
<nav class="md-nav" aria-label="Overview of compensation usage">
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="#basic-usage-x-axis-calibration" class="md-nav__link">
Basic Usage: X-Axis Calibration
</a>
</li>
<li class="md-nav__item">
<a href="#for-y-axis-calibration" class="md-nav__link">
For Y-Axis Calibration
</a>
</li>
<li class="md-nav__item">
<a href="#automatic-calibration-for-both-axes" class="md-nav__link">
Automatic Calibration for Both Axes
</a>
</li>
</ul>
</nav>
</li>
<li class="md-nav__item">
@@ -1384,6 +1411,33 @@
Overview of compensation usage
</a>
<nav class="md-nav" aria-label="Overview of compensation usage">
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="#basic-usage-x-axis-calibration" class="md-nav__link">
Basic Usage: X-Axis Calibration
</a>
</li>
<li class="md-nav__item">
<a href="#for-y-axis-calibration" class="md-nav__link">
For Y-Axis Calibration
</a>
</li>
<li class="md-nav__item">
<a href="#automatic-calibration-for-both-axes" class="md-nav__link">
Automatic Calibration for Both Axes
</a>
</li>
</ul>
</nav>
</li>
<li class="md-nav__item">
@@ -1431,21 +1485,53 @@ try to probe the bed without attaching the probe if you use it.</p>
<p><strong>Tip:</strong> Make sure the <a href="Config_Reference.html#probe">probe X and Y offsets</a> are
correctly set as they greatly influence calibration.</p>
</blockquote>
<h3 id="basic-usage-x-axis-calibration">Basic Usage: X-Axis Calibration<a class="headerlink" href="#basic-usage-x-axis-calibration" title="Permanent link">&para;</a></h3>
<ol>
<li>After setting up the [axis_twist_compensation] module,
perform <code>AXIS_TWIST_COMPENSATION_CALIBRATE</code>
* The calibration wizard will prompt you to measure the probe Z offset at a few
points along the bed
* The calibration defaults to 3 points but you can use the option
<code>SAMPLE_COUNT=</code> to use a different number.</li>
<li><a href="Probe_Calibrate.html#calibrating-probe-z-offset">Adjust your Z offset</a></li>
<li>Perform automatic/probe-based bed tramming operations, such as
<a href="G-Codes.html#screws_tilt_adjust">Screws Tilt Adjust</a>,
<a href="G-Codes.html#z_tilt_adjust">Z Tilt Adjust</a> etc</li>
<li>Home all axis, then perform a <a href="Bed_Mesh.html">Bed Mesh</a> if required</li>
<li>Perform a test print, followed by any
<a href="Axis_Twist_Compensation.html#fine-tuning">fine-tuning</a> as desired</li>
<li>After setting up the <code>[axis_twist_compensation]</code> module, run:</li>
</ol>
<div class="highlight"><pre><span></span><code>AXIS_TWIST_COMPENSATION_CALIBRATE
</code></pre></div>
<p>This command will calibrate the X-axis by default.
- The calibration wizard will prompt you to measure the probe Z offset at
several points along the bed.
- By default, the calibration uses 3 points, but you can specify a different
number with the option:
<code>SAMPLE_COUNT=&lt;value&gt;</code></p>
<ol>
<li>
<p><strong>Adjust Your Z Offset:</strong>
After completing the calibration, be sure to [adjust your Z offset]
(Probe_Calibrate.md#calibrating-probe-z-offset).</p>
</li>
<li>
<p><strong>Perform Bed Leveling Operations:</strong>
Use probe-based operations as needed, such as:
- <a href="G-Codes.html#screws_tilt_adjust">Screws Tilt Adjust</a>
- <a href="G-Codes.html#z_tilt_adjust">Z Tilt Adjust</a></p>
</li>
<li>
<p><strong>Finalize the Setup:</strong>
- Home all axes, and perform a <a href="Bed_Mesh.html">Bed Mesh</a> if necessary.
- Run a test print, followed by any
<a href="Axis_Twist_Compensation.html#fine-tuning">fine-tuning</a>
if needed.</p>
</li>
</ol>
<h3 id="for-y-axis-calibration">For Y-Axis Calibration<a class="headerlink" href="#for-y-axis-calibration" title="Permanent link">&para;</a></h3>
<p>The calibration process for the Y-axis is similar to the X-axis. To calibrate
the Y-axis, use:</p>
<div class="highlight"><pre><span></span><code>AXIS_TWIST_COMPENSATION_CALIBRATE AXIS=Y
</code></pre></div>
<p>This will guide you through the same measuring process as for the X-axis.</p>
<h3 id="automatic-calibration-for-both-axes">Automatic Calibration for Both Axes<a class="headerlink" href="#automatic-calibration-for-both-axes" title="Permanent link">&para;</a></h3>
<p>To perform automatic calibration for both the X and Y axes without manual
intervention, use:</p>
<div class="highlight"><pre><span></span><code>AXIS_TWIST_COMPENSATION_CALIBRATE AUTO=True
</code></pre></div>
<p>In this mode, the calibration process will run for both axes automatically.</p>
<blockquote>
<p><strong>Tip:</strong> Bed temperature and nozzle temperature and size do not seem to have
an influence to the calibration process.</p>