Feat: Add group categories to all macros for Mainsail/Fluidd UI
Calibration macros (calibration/*.cfg): - All calibration macros grouped under 'Calibration' Printing macros (user_settings_clean.cfg): - PRINT_START, PRINT_END → 'Printing' - QUICK_TOUCH, CALIBRATE_PROBE → 'Calibration' - BABYZ_PLUS, BABYZ_MINUS → 'Helpers' This organizes macros in Mainsail/Fluidd UI instead of showing all under 'Uncategorized'.
This commit is contained in:
parent
63f6aff25f
commit
651f4cb7eb
4 changed files with 125 additions and 279 deletions
|
|
@ -11,6 +11,7 @@
|
|||
# ----------------------------------------------------------------------------
|
||||
[gcode_macro CALIBRATION_MENU]
|
||||
description: Show calibration menu with all options
|
||||
group: Calibration
|
||||
gcode:
|
||||
RESPOND MSG="=============================================="
|
||||
RESPOND MSG=" NEPTUNE 4 PLUS CALIBRATION SUITE"
|
||||
|
|
@ -33,6 +34,7 @@ gcode:
|
|||
# ----------------------------------------------------------------------------
|
||||
[gcode_macro CALIBRATE_Z_OFFSET]
|
||||
description: Calibrate Z-offset using Cartographer touch
|
||||
group: Calibration
|
||||
gcode:
|
||||
RESPOND MSG="Starting Z-Offset Calibration..."
|
||||
RESPOND MSG=""
|
||||
|
|
@ -62,6 +64,7 @@ gcode:
|
|||
# ----------------------------------------------------------------------------
|
||||
[gcode_macro CALIBRATE_INPUT_SHAPER]
|
||||
description: Measure resonance frequencies with ADXL345
|
||||
group: Calibration
|
||||
gcode:
|
||||
RESPOND MSG="Starting Input Shaper Calibration..."
|
||||
RESPOND MSG=""
|
||||
|
|
@ -84,6 +87,7 @@ gcode:
|
|||
# ----------------------------------------------------------------------------
|
||||
[gcode_macro CALIBRATE_PRESSURE_ADVANCE]
|
||||
description: Calibrate Pressure Advance for optimal corners
|
||||
group: Calibration
|
||||
gcode:
|
||||
{% set FILAMENT = params.FILAMENT|default("PLA")|upper %}
|
||||
{% set START_PA = params.START|default(0.01)|float %}
|
||||
|
|
@ -139,6 +143,7 @@ gcode:
|
|||
# ----------------------------------------------------------------------------
|
||||
[gcode_macro CALIBRATE_FLOW_RATE]
|
||||
description: Calibrate flow rate for exact wall dimensions
|
||||
group: Calibration
|
||||
gcode:
|
||||
{% set FILAMENT = params.FILAMENT|default("PLA")|upper %}
|
||||
|
||||
|
|
@ -190,6 +195,7 @@ gcode:
|
|||
# ----------------------------------------------------------------------------
|
||||
[gcode_macro CALIBRATE_TEMPERATURE]
|
||||
description: Print temperature tower to find optimal temp
|
||||
group: Calibration
|
||||
gcode:
|
||||
{% set FILAMENT = params.FILAMENT|default("PLA")|upper %}
|
||||
{% set START_TEMP = params.START|default(195)|int %}
|
||||
|
|
@ -234,6 +240,7 @@ gcode:
|
|||
# ----------------------------------------------------------------------------
|
||||
[gcode_macro CALIBRATE_RETRACTION]
|
||||
description: Test retraction settings to minimize stringing
|
||||
group: Calibration
|
||||
gcode:
|
||||
{% set FILAMENT = params.FILAMENT|default("PLA")|upper %}
|
||||
{% set HOTEND = params.HOTEND|default("ORIGINAL")|upper %}
|
||||
|
|
@ -296,6 +303,7 @@ gcode:
|
|||
# ----------------------------------------------------------------------------
|
||||
[gcode_macro CALIBRATE_BED_MESH]
|
||||
description: Calibrate bed mesh with Cartographer
|
||||
group: Calibration
|
||||
gcode:
|
||||
RESPOND MSG="Starting Bed Mesh Calibration..."
|
||||
RESPOND MSG=""
|
||||
|
|
@ -322,6 +330,7 @@ gcode:
|
|||
# ----------------------------------------------------------------------------
|
||||
[gcode_macro CALIBRATION_FULL]
|
||||
description: Run complete calibration suite (takes ~2.5 hours)
|
||||
group: Calibration
|
||||
gcode:
|
||||
RESPOND MSG="=============================================="
|
||||
RESPOND MSG=" STARTING FULL CALIBRATION SUITE"
|
||||
|
|
@ -381,6 +390,7 @@ gcode:
|
|||
# ----------------------------------------------------------------------------
|
||||
[gcode_macro CALIBRATION_QUICK]
|
||||
description: Run quick calibration (Z-offset + PA + Bed Mesh, ~30 min)
|
||||
group: Calibration
|
||||
gcode:
|
||||
RESPOND MSG="=============================================="
|
||||
RESPOND MSG=" STARTING QUICK CALIBRATION"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue