AndrewEllis93 / Pressure_Linear_Advance_Tool

Pressure Advance / Linear Advance Calibration Tool
https://ellis3dp.com/Print-Tuning-Guide/articles/pressure_linear_advance/introduction.html
GNU General Public License v3.0
40 stars 21 forks source link

start/end macros don't match klipper default names or parameters #7

Closed strayr closed 1 year ago

strayr commented 1 year ago

Klipper sample-macros.cfg uses

[gcode_macro START_PRINT]
gcode:
    {% set BED_TEMP = params.BED_TEMP|default(60)|float %}
    {% set EXTRUDER_TEMP = params.EXTRUDER_TEMP|default(190)|float %}

# ...

[gcode_macro END_PRINT]

You are using different macro names and parameters, presumanbly becasue voron broke with convention?

AndrewEllis93 commented 1 year ago

Yep. Everyone has completely different setups, it's nearly impossible to write a tool for Klipper because of that. Most I've seen use PRINT_START / PRINT_END, but of course my experience is lopsided from spending most of my time in the Voron Discord.

AndrewEllis93 commented 1 year ago

I added START_PRINT as an alternate (commented out)