mirror of
https://github.com/Klipper3d/klipper.git
synced 2025-08-08 06:24:03 -06:00
Deploying to gh-pages from @ Klipper3d/klipper@d3c4ba4839 🚀
This commit is contained in:
parent
633d167c75
commit
1c4d97e5ba
165 changed files with 5839 additions and 678 deletions
|
@ -816,6 +816,13 @@
|
|||
endstop_phase
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#exclude_object" class="md-nav__link">
|
||||
exclude_object
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
|
@ -1113,8 +1120,8 @@
|
|||
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="Exclude_Object.md" class="md-nav__link">
|
||||
None
|
||||
<a href="Exclude_Object.html" class="md-nav__link">
|
||||
Exclude Objects
|
||||
</a>
|
||||
</li>
|
||||
|
||||
|
@ -1520,6 +1527,13 @@
|
|||
endstop_phase
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#exclude_object" class="md-nav__link">
|
||||
exclude_object
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
|
@ -1776,6 +1790,7 @@
|
|||
<li><code>settings.<分段>.<选项></code>:返回最后一次软件启动或重启时给定的配置文件设置(或默认值)。(不会反映运行时的修改。)</li>
|
||||
<li><code>config.<分段>.<选项></code>:返回Klipper在上次软件启动或重启时读取的原始配置文件设置。(不会反映运行时的修改。)所有值都以字符串形式返回。</li>
|
||||
<li><code>save_config_pending</code>:如果存在可以通过 <code>SAVE_CONFIG</code> 命令保存到配置文件的更新,则返回 True。</li>
|
||||
<li><code>save_config_pending_items</code>: Contains the sections and options that were changed and would be persisted by a <code>SAVE_CONFIG</code>.</li>
|
||||
<li><code>warnings</code>:有关配置选项的警告列表。列表中的每个条目都将是一个 dictionary,其中包含 <code>type</code> 和 <code>message</code> 字段(都是字符串)。根据警告类型,可能还有其他可用字段。</li>
|
||||
</ul>
|
||||
<h2 id="display_status">display_status<a class="headerlink" href="#display_status" title="Permanent link">¶</a></h2>
|
||||
|
@ -1791,6 +1806,39 @@
|
|||
<li><code>last_home.<步进电机名称>.phase</code>:步进电机上可用的总相数。</li>
|
||||
<li><code>last_home.<步进电机名称>.mcu_position</code>:步进电机在上次归位尝试结束时的位置(由微控制器跟踪)。该位置是自微控制器最后一次重启以来,向前走的总步数减去反向走的总步数。</li>
|
||||
</ul>
|
||||
<h2 id="exclude_object">exclude_object<a class="headerlink" href="#exclude_object" title="Permanent link">¶</a></h2>
|
||||
<p>The following information is available in the <a href="Exclude_Object.html">exclude_object</a> object:</p>
|
||||
<ul>
|
||||
<li><code>objects</code>: An array of the known objects as provided by the <code>EXCLUDE_OBJECT_DEFINE</code> command. This is the same information provided by the <code>EXCLUDE_OBJECT VERBOSE=1</code> command. The <code>center</code> and <code>polygon</code> fields will only be present if provided in the original <code>EXCLUDE_OBJECT_DEFINE</code>Here is a JSON sample:</li>
|
||||
</ul>
|
||||
<div class="highlight"><pre><span></span><code>[
|
||||
{
|
||||
"polygon": [
|
||||
[ 156.25, 146.2511675 ],
|
||||
[ 156.25, 153.7488325 ],
|
||||
[ 163.75, 153.7488325 ],
|
||||
[ 163.75, 146.2511675 ]
|
||||
],
|
||||
"name": "CYLINDER_2_STL_ID_2_COPY_0",
|
||||
"center": [ 160, 150 ]
|
||||
},
|
||||
{
|
||||
"polygon": [
|
||||
[ 146.25, 146.2511675 ],
|
||||
[ 146.25, 153.7488325 ],
|
||||
[ 153.75, 153.7488325 ],
|
||||
[ 153.75, 146.2511675 ]
|
||||
],
|
||||
"name": "CYLINDER_2_STL_ID_1_COPY_0",
|
||||
"center": [ 150, 150 ]
|
||||
}
|
||||
]
|
||||
</code></pre></div>
|
||||
|
||||
<ul>
|
||||
<li><code>excluded_objects</code>: An array of strings listing the names of excluded objects.</li>
|
||||
<li><code>current_object</code>: The name of the object currently being printed.</li>
|
||||
</ul>
|
||||
<h2 id="fan">fan<a class="headerlink" href="#fan" title="Permanent link">¶</a></h2>
|
||||
<p><a href="Config_Reference.html#fan">fan</a>、<a href="Config_Reference.html#heater_fan">heater_fan some_name</a>和<a href="Config_Reference.html#controller_fan">controller_fan some_name</a>对象提供了以下信息:</p>
|
||||
<ul>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue