Skip to content

Commit

Permalink
Deploying to gh-pages from @ f4671d2 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerlz committed Oct 23, 2024
1 parent 2b8c0f3 commit 5051bd7
Show file tree
Hide file tree
Showing 4 changed files with 84 additions and 13 deletions.
41 changes: 41 additions & 0 deletions Command_Templates.html
Original file line number Diff line number Diff line change
Expand Up @@ -1188,6 +1188,21 @@
</span>
</a>

<nav class="md-nav" aria-label="Menu templates">
<ul class="md-nav__list">

<li class="md-nav__item">
<a href="#menu-dialogs" class="md-nav__link">
<span class="md-ellipsis">
Menu Dialogs
</span>
</a>

</li>

</ul>
</nav>

</li>

<li class="md-nav__item">
Expand Down Expand Up @@ -2053,6 +2068,21 @@
</span>
</a>

<nav class="md-nav" aria-label="Menu templates">
<ul class="md-nav__list">

<li class="md-nav__item">
<a href="#menu-dialogs" class="md-nav__link">
<span class="md-ellipsis">
Menu Dialogs
</span>
</a>

</li>

</ul>
</nav>

</li>

<li class="md-nav__item">
Expand Down Expand Up @@ -2348,6 +2378,17 @@ <h2 id="menu-templates">Menu templates<a class="headerlink" href="#menu-template
</ul>
</li>
</ul>
<h3 id="menu-dialogs">Menu Dialogs<a class="headerlink" href="#menu-dialogs" title="Permanent link">&para;</a></h3>
<p>When a menu dialog is used, and additional read-only attribute is
availabe in templates.</p>
<ul>
<li><code>dialog</code> - a dictionary of values. Keys are the element <code>id</code>, the
last portion of it's identifier. Disabled elements have a <code>None</code>
value, otherwise the <code>input</code> template is used as a default.</li>
</ul>
<p><code>[menu __main __setup __tuning __hotend_mpc_dialog]</code> in the
<a href="https://github.com/DangerKlippers/danger-klipperblob/master/klippy/extras/display/menu.cfg">default set of menus</a> can be used
as reference for how to build more complex dialogs.</p>
<h2 id="save-variables-to-disk">Save Variables to disk<a class="headerlink" href="#save-variables-to-disk" title="Permanent link">&para;</a></h2>
<p>If a
<a href="Config_Reference.html#save_variables">save_variables config section</a>
Expand Down
54 changes: 42 additions & 12 deletions Config_Reference.html
Original file line number Diff line number Diff line change
Expand Up @@ -2034,7 +2034,7 @@
<li class="md-nav__item">
<a href="#menu" class="md-nav__link">
<span class="md-ellipsis">
[menu]
⚠️ [menu]
</span>
</a>

Expand Down Expand Up @@ -4876,7 +4876,7 @@
<li class="md-nav__item">
<a href="#menu" class="md-nav__link">
<span class="md-ellipsis">
[menu]
⚠️ [menu]
</span>
</a>

Expand Down Expand Up @@ -9672,7 +9672,7 @@ <h3 id="display-my_extra_display">[display my_extra_display]<a class="headerlink
# See the &quot;display&quot; section for available parameters.
</code></pre></div>

<h3 id="menu">[menu]<a class="headerlink" href="#menu" title="Permanent link">&para;</a></h3>
<h3 id="menu">⚠️ [menu]<a class="headerlink" href="#menu" title="Permanent link">&para;</a></h3>
<p>Customizable lcd display menus.</p>
<p>A <a href="https://github.com/DangerKlippers/danger-klipperblob/master/klippy/extras/display/menu.cfg">default set of menus</a> are
automatically created. One can replace or extend the menu by
Expand All @@ -9689,15 +9689,21 @@ <h3 id="menu">[menu]<a class="headerlink" href="#menu" title="Permanent link">&p
#[menu some_name]
#type:
# One of command, input, list, text:
# command - basic menu element with various script triggers
# input - same like &#39;command&#39; but has value changing capabilities.
# Press will start/stop edit mode.
# list - it allows for menu items to be grouped together in a
# scrollable list. Add to the list by creating menu
# configurations using &quot;some_list&quot; as a prefix - for
# example: [menu some_list some_item_in_the_list]
# vsdlist - same as &#39;list&#39; but will append files from virtual sdcard
# (will be removed in the future)
# command - basic menu element with various script triggers
# input - same like &#39;command&#39; but has value changing capabilities.
# Press will start/stop edit mode.
# list - it allows for menu items to be grouped together in a
# scrollable list. Add to the list by creating menu
# configurations using &quot;some_list&quot; as a prefix - for
# example: [menu some_list some_item_in_the_list]
# vsdlist - same as &#39;list&#39; but will append files from virtual sdcard
# (deprecated, will be removed in the future)
# ⚠️ file_browser - Extended SD Card browser, supporting directories and
# sorting. (replaces vsdlist)
# ⚠️ dialog - Menu Dialogs, a list of inputs with a final choice to
# confirm or cancel. Used for more complex scenarios like
# PID/MPC calibration where you may want to set multiple
# values for a single command
#name:
# Name of menu item - evaluated as a template.
#enable:
Expand All @@ -9712,6 +9718,14 @@ <h3 id="menu">[menu]<a class="headerlink" href="#menu" title="Permanent link">&p
#enable:
# See above for a description of these parameters.

#[menu sdcard]
#type: file_browser
#name:
#sort_by:
# `last_modified` (default) or `name`
#enable:
# See above for a description of these parameters.

#[menu some_list some_command]
#type: command
#name:
Expand Down Expand Up @@ -9745,6 +9759,22 @@ <h3 id="menu">[menu]<a class="headerlink" href="#menu" title="Permanent link">&p
# Script to run on button click, long click or value change.
# Evaluated as a template. The button click will trigger the edit
# mode start or end.

#[menu neopixel]
#type: dialog
#name:
#enable:
# See above for a description of these parameters.
#title:
# An optional title to display at the top of the dialog. `name` will
# used if not set
#confirm_text:
#cancel_text
# Templates for the confirmation and cancel options
#gcode:
# G-Code to run on confirmation. The dialog will be closed on
# confirmation. `{menu.exit()}` may be used to close the menu
# instead.
</code></pre></div>

<h2 id="filament-sensors">Filament sensors<a class="headerlink" href="#filament-sensors" title="Permanent link">&para;</a></h2>
Expand Down
Binary file modified _klipper3d/__pycache__/mkdocs_hooks.cpython-310.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

0 comments on commit 5051bd7

Please sign in to comment.