Deploying to gh-pages from @ Klipper3d/klipper@282d1113e4 🚀
This commit is contained in:
@@ -1174,8 +1174,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="/Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="/Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1389,8 +1389,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1273,8 +1273,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1250,8 +1250,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1238,8 +1238,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1340,8 +1340,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1347,8 +1347,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1387,8 +1387,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1257,8 +1257,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1263,8 +1263,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1263,8 +1263,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1278,8 +1278,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1314,8 +1314,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
@@ -1532,19 +1532,8 @@ gcode:
|
||||
|
||||
<h3 id="the-rawparams-variable">The "rawparams" variable<a class="headerlink" href="#the-rawparams-variable" title="Permanent link">¶</a></h3>
|
||||
<p>The full unparsed parameters for the running macro can be access via the <code>rawparams</code> pseudo-variable.</p>
|
||||
<p>This is quite useful if you want to change the behavior of certain commands like the <code>M117</code>. For example:</p>
|
||||
<div class="highlight"><pre><span></span><code>[gcode_macro M117]
|
||||
rename_existing: M117.1
|
||||
gcode:
|
||||
{% if rawparams %}
|
||||
{% set escaped_msg = rawparams|replace('"', '\\"') %}
|
||||
SET_DISPLAY_TEXT MSG="{escaped_msg}"
|
||||
RESPOND TYPE=command MSG="{escaped_msg}"
|
||||
{% else %}
|
||||
SET_DISPLAY_TEXT
|
||||
{% endif %}
|
||||
</code></pre></div>
|
||||
|
||||
<p>Note that this will include any comments that were part of the original command.</p>
|
||||
<p>See the <a href="https://github.com/Klipper3d/klipper/blob/master/config/sample-macros.cfg">sample-macros.cfg</a> file for an example showing how to override the <code>M117</code> command using <code>rawparams</code>.</p>
|
||||
<h3 id="printer">"printer"变量<a class="headerlink" href="#printer" title="Permanent link">¶</a></h3>
|
||||
<p>可以通过<code>printer</code> 的pseudo-variable来检查(和变更)打印机的当前状态。比如说:</p>
|
||||
<div class="highlight"><pre><span></span><code>[gcode_macro slow_fan]
|
||||
|
||||
@@ -1220,8 +1220,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -2348,8 +2348,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
@@ -4975,7 +4975,7 @@ z_offset:
|
||||
|
||||
<h2 id="_16">额外的步进电机和挤出机<a class="headerlink" href="#_16" title="Permanent link">¶</a></h2>
|
||||
<h3 id="stepper_z1">[stepper_z1]<a class="headerlink" href="#stepper_z1" title="Permanent link">¶</a></h3>
|
||||
<p>Multi-stepper axes. On a cartesian style printer, the stepper controlling a given axis may have additional config blocks defining steppers that should be stepped in concert with the primary stepper. One may define any number of sections with a numeric suffix starting at 1 (for example, "stepper_z1", "stepper_z2", etc.).</p>
|
||||
<p>多步进电机轴。在笛卡尔式打印机上,可以在给定的轴上定义与主步进器同步的的步进器的额外配置分段。可以定义任何数量的以数字为后缀的分段(例如,"stepper_z1"、"stepper_z2",等等)。</p>
|
||||
<div class="highlight"><pre><span></span><code>[stepper_z1]
|
||||
#step_pin:
|
||||
#dir_pin:
|
||||
@@ -5773,7 +5773,7 @@ pins:
|
||||
</code></pre></div>
|
||||
|
||||
<h3 id="multi_pin">[multi_pin]<a class="headerlink" href="#multi_pin" title="Permanent link">¶</a></h3>
|
||||
<p>Multiple pin outputs (one may define any number of sections with a "multi_pin" prefix). A multi_pin output creates an internal pin alias that can modify multiple output pins each time the alias pin is set. For example, one could define a "[multi_pin my_fan]" object containing two pins and then set "pin=multi_pin:my_fan" in the "[fan]" section - on each fan change both output pins would be updated. These aliases may not be used with stepper motor pins.</p>
|
||||
<p>多引脚输出(可以定义任意数量的带有“multi_pin”前缀的分段)。 每个 multi_pin 输出会创建一个相应的内部引脚别名,配置中使用别名引脚时可以修改多个输出引脚的输出状态。例如,可以定义一个包含两个引脚的“[multi_pin my_fan]”对象,然后在“[fan]”部分设置“pin=multi_pin:my_fan”——在每次风扇更改时,两个输出引脚都会更新。这些别名可能不适用于步进电机引脚。</p>
|
||||
<div class="highlight"><pre><span></span><code>[multi_pin my_multi_pin]
|
||||
pins:
|
||||
# 与此别名关联的引脚的逗号分隔列表。
|
||||
|
||||
@@ -1278,8 +1278,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1262,8 +1262,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1277,8 +1277,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1258,8 +1258,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1237,8 +1237,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1222,8 +1222,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -874,8 +874,8 @@
|
||||
<ul class="md-nav__list">
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#object-definitions" class="md-nav__link">
|
||||
Object Definitions
|
||||
<a href="#_3" class="md-nav__link">
|
||||
对象定义
|
||||
</a>
|
||||
|
||||
</li>
|
||||
@@ -1249,8 +1249,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
@@ -1298,8 +1298,8 @@
|
||||
<ul class="md-nav__list">
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#object-definitions" class="md-nav__link">
|
||||
Object Definitions
|
||||
<a href="#_3" class="md-nav__link">
|
||||
对象定义
|
||||
</a>
|
||||
|
||||
</li>
|
||||
@@ -1351,9 +1351,9 @@ reference</a> and <a href="https://github.com/Klipper3d/klipper/blob/master/conf
|
||||
<li>当打印完成后,<code>[exclude_object]</code>状态将继续可用,直到另一个动作将其重置。</li>
|
||||
</ol>
|
||||
<h2 id="g">G代码文件<a class="headerlink" href="#g" title="Permanent link">¶</a></h2>
|
||||
<p>The specialized gcode processing needed to support excluding objects does not fit into Klipper's core design goals. Therefore, this module requires that the file is processed before being sent to Klipper for printing. Using a post-process script in the slicer or having middleware process the file on upload are two possibilities for preparing the file for Klipper. A reference post-processing script is available both as an executable and a python library, see <a href="https://github.com/kageurufu/cancelobject-preprocessor">cancelobject-preprocessor</a>.</p>
|
||||
<h3 id="object-definitions">Object Definitions<a class="headerlink" href="#object-definitions" title="Permanent link">¶</a></h3>
|
||||
<p>The <code>EXCLUDE_OBJECT_DEFINE</code> command is used to provide a summary of each object in the gcode file to be printed. Provides a summary of an object in the file. Objects don't need to be defined in order to be referenced by other commands. The primary purpose of this command is to provide information to the UI without needing to parse the entire gcode file.</p>
|
||||
<p>支持排除对象所需的专门的G代码处理并不符合Klipper'的核心设计目标。因此,本模块要求在将文件发送到Klipper进行打印之前对其进行处理。为Klipper排除对象修改G代码可以通过切片软件中使用后处理脚本或让中间层软件在上传时处理文件达成。<a href="https://github.com/kageurufu/cancelobject-preprocessor">cancelobject-preprocessor</a>是一个参考后处理脚本,它可以1被当作可执行文件或python库。</p>
|
||||
<h3 id="_3">对象定义<a class="headerlink" href="#_3" title="Permanent link">¶</a></h3>
|
||||
<p><code>EXCLUDE_OBJECT_DEFINE</code> 命令用于提供gcode文件中每个要打印的对象的摘要。提供文件中一个对象的摘要。对象被其他命令引用时不需要被定义。这个命令的主要目的是向UI提供信息,而不需要解析整个gcode文件。</p>
|
||||
<p>Object definitions are named, to allow users to easily select an object to be excluded, and additional metadata may be provided to allow for graphical cancellation displays. Currently defined metadata includes a <code>CENTER</code> X,Y coordinate, and a <code>POLYGON</code> list of X,Y points representing a minimal outline of the object. This could be a simple bounding box, or a complicated hull for showing more detailed visualizations of the printed objects. Especially when gcode files include multiple parts with overlapping bounding regions, center points become hard to visually distinguish. <code>POLYGONS</code> must be a json-compatible array of point <code>[X,Y]</code> tuples without whitespace. Additional parameters will be saved as strings in the object definition and provided in status updates.</p>
|
||||
<p><code>EXCLUDE_OBJECT_DEFINE NAME=calibration_pyramid CENTER=50,50 POLYGON=[[40,40],[50,60],[60,40]]</code></p>
|
||||
<p>All available G-Code commands are documented in the <a href="G-Codes.html#excludeobject">G-Code
|
||||
|
||||
@@ -1381,8 +1381,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
@@ -1601,7 +1601,7 @@
|
||||
|
||||
<h1 id="_1">常见问题<a class="headerlink" href="#_1" title="Permanent link">¶</a></h1>
|
||||
<h2 id="_2">我如何向项目捐款?<a class="headerlink" href="#_2" title="Permanent link">¶</a></h2>
|
||||
<p>谢谢。Kevin有一个PATREON页面,地址是: <a href="https://www.patreon.com/koconnor">https://www.patreon.com/koconnor</a></p>
|
||||
<p>Thank you for your support. See the <a href="Sponsors.html">Sponsors page</a> for information.</p>
|
||||
<h2 id="rotation_distance">如何计算 rotation_distance 配置参数?<a class="headerlink" href="#rotation_distance" title="Permanent link">¶</a></h2>
|
||||
<p>参见<a href="Rotation_Distance.html">旋转距离文档</a>。</p>
|
||||
<h2 id="_3">我的串口在哪里找?<a class="headerlink" href="#_3" title="Permanent link">¶</a></h2>
|
||||
|
||||
@@ -1227,8 +1227,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -2697,8 +2697,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1250,8 +1250,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
@@ -1402,6 +1402,21 @@ index: 1
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
<a href="Sponsors.html" class="md-footer__link md-footer__link--next" aria-label="下一页: Sponsors" rel="next">
|
||||
<div class="md-footer__title">
|
||||
<div class="md-ellipsis">
|
||||
<span class="md-footer__direction">
|
||||
下一页
|
||||
</span>
|
||||
Sponsors
|
||||
</div>
|
||||
</div>
|
||||
<div class="md-footer__button md-icon">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 11v2h12l-5.5 5.5 1.42 1.42L19.84 12l-7.92-7.92L10.5 5.5 16 11H4z"/></svg>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<div class="md-footer-meta md-typeset">
|
||||
|
||||
@@ -1250,8 +1250,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1304,8 +1304,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1276,8 +1276,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1251,8 +1251,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
@@ -1400,7 +1400,7 @@ speed: 50.
|
||||
screw_thread: CW-M3
|
||||
</code></pre></div>
|
||||
|
||||
<p>The screw1 is always the reference point for the others, so the system assumes that screw1 is at the correct height. Always run <code>G28</code> first and then run <code>SCREWS_TILT_CALCULATE</code> - it should produce output similar to:</p>
|
||||
<p>螺丝1始终是其他螺丝的参考点,所以系统假定螺丝1处于正确的高度。总是先运行<code>G28</code> ,然后运行<code>SCREWS_TILT_CALCULATE</code> - 它应该产生类似如下的输出:</p>
|
||||
<div class="highlight"><pre><span></span><code>Send: G28
|
||||
Recv: ok
|
||||
Send: SCREWS_TILT_CALCULATE
|
||||
@@ -1417,13 +1417,13 @@ Recv: ok
|
||||
<li>左前螺丝是参考点,你不能改变它。</li>
|
||||
<li>front right screw must be turned clockwise 1 full turn and a quarter turn</li>
|
||||
<li>rear right screw must be turned counter-clockwise 50 minutes</li>
|
||||
<li>rear left screw must be turned clockwise 2 minutes (not need it's ok)</li>
|
||||
<li>左后方的螺丝必须顺时针旋转2分钟(不必须,足够完美)</li>
|
||||
</ul>
|
||||
<p>请注意,“分钟”是指“时钟上的分钟”。因此,例如,15分钟是完整一圈的四分之一。</p>
|
||||
<p>重复这个过程几次,直到打印床变得足够水平--通常情况下,这意味着所有的位置需要的调整都小于6分钟。</p>
|
||||
<p>如果使用安装在热端侧面的探头(即它有一个X或Y偏移),那么请注意,调整床身倾斜度将使以前在倾斜的床身下进行的任何探针校准失效。一定要在调整打印床螺丝后运行<a href="Probe_Calibrate.html">探针校准</a>。</p>
|
||||
<p>The <code>MAX_DEVIATION</code> parameter is useful when a saved bed mesh is used, to ensure that the bed level has not drifted too far from where it was when the mesh was created. For example, <code>SCREWS_TILT_CALCULATE MAX_DEVIATION=0.01</code> can be added to the custom start gcode of the slicer before the mesh is loaded. It will abort the print if the configured limit is exceeded (0.01mm in this example), giving the user a chance to adjust the screws and restart the print.</p>
|
||||
<p>The <code>DIRECTION</code> parameter is useful if you can turn your bed adjustment screws in one direction only. For example, you might have screws that start tightened in their lowest (or highest) possible position, which can only be turned in a single direction, to raise (or lower) the bed. If you can only turn the screws clockwise, run <code>SCREWS_TILT_CALCULATE DIRECTION=CW</code>. If you can only turn them counter-clockwise, run <code>SCREWS_TILT_CALCULATE DIRECTION=CCW</code>. A suitable reference point will be chosen such that the bed can be leveled by turning all the screws in the given direction.</p>
|
||||
<p><code>MAX_DEVIATION</code>参数在使用保存的床网时可以确保床面调平结果没有从创建床网时的位置漂移太远。例如,<code>SCREWS_TILT_CALCULATE MAX_DEVIATION=0.01</code>可以在加载网格前添加到切片软件的自定义启动gcode中。如果超过了配置的限制(在这个例子中是0.01毫米),它将中止打印,给用户一个调整螺丝和重新开始打印的机会。</p>
|
||||
<p><code>DIRECTION</code> 参数在你只能朝一个方向旋转调平螺丝时很有用。例如,你可能从一些螺丝的最低(或最高)位置开始拧,只能向一个方向转动,以提高(或降低)床身。如果只能顺时针转动螺丝,运行<code>SCREWS_TILT_CALCULATE DIRECTION=CW</code> 。如果只能逆时针转动它们,运行<code>SCREWS_TILT_CALCULATE DIRECTION=CCW</code> 。将选择一个合适的参考点,使床可以通过向给定的方向转动所有的螺丝来调平。</p>
|
||||
|
||||
|
||||
</article>
|
||||
|
||||
@@ -1333,8 +1333,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1191,8 +1191,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1174,8 +1174,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1241,8 +1241,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1243,8 +1243,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1229,8 +1229,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1252,8 +1252,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1330,8 +1330,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1271,8 +1271,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1289,8 +1289,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1347,8 +1347,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1272,8 +1272,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1243,8 +1243,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1250,8 +1250,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1264,8 +1264,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
1429
zh/Sponsors.html
Normal file
1429
zh/Sponsors.html
Normal file
File diff suppressed because it is too large
Load Diff
@@ -900,6 +900,13 @@
|
||||
led
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#manual_probe" class="md-nav__link">
|
||||
manual_probe
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
@@ -1476,8 +1483,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
@@ -1626,6 +1633,13 @@
|
||||
led
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#manual_probe" class="md-nav__link">
|
||||
manual_probe
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
@@ -1926,6 +1940,14 @@
|
||||
<ul>
|
||||
<li><code>color_data</code>:一个包含链中每个LED的RGBW值的颜色列表的列表。每个值都以0.0到1.0的浮点数表示。每个颜色列表包含4个项目(红、绿、蓝、白),即使底层的LED支持较少的颜色通道。例如,可以通过<code>printer["neopixel <配置名>"].color_data[1][2]</code>访问链中第二个neopixel的蓝色值(颜色列表中的第三项)。</li>
|
||||
</ul>
|
||||
<h2 id="manual_probe">manual_probe<a class="headerlink" href="#manual_probe" title="Permanent link">¶</a></h2>
|
||||
<p>The following information is available in the <code>manual_probe</code> object:</p>
|
||||
<ul>
|
||||
<li><code>is_active</code>: Returns True if a manual probing helper script is currently active.</li>
|
||||
<li><code>z_position</code>: The current height of the nozzle (as the printer currently understands it).</li>
|
||||
<li><code>z_position_lower</code>: Last probe attempt just lower than the current height.</li>
|
||||
<li><code>z_position_upper</code>: Last probe attempt just greater than the current height.</li>
|
||||
</ul>
|
||||
<h2 id="mcu">mcu<a class="headerlink" href="#mcu" title="Permanent link">¶</a></h2>
|
||||
<p><a href="Config_Reference.html#mcu">mcu</a>和<a href="Config_Reference.html#mcu-my_extra_mcu">mcu some_name</a>对象提供了以下信息:</p>
|
||||
<ul>
|
||||
|
||||
@@ -1428,8 +1428,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1229,8 +1229,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
@@ -1243,8 +1243,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
Binary file not shown.
@@ -1176,8 +1176,8 @@
|
||||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Sponsors.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Sponsors.html" class="md-nav__link">
|
||||
Sponsors
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
103
zh/sitemap.xml
103
zh/sitemap.xml
@@ -2,247 +2,252 @@
|
||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-23</lastmod>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
<url>
|
||||
<loc>None</loc>
|
||||
<lastmod>2022-07-24</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
</url>
|
||||
</urlset>
|
||||
Binary file not shown.
Reference in New Issue
Block a user