diff --git a/README.md b/README.md index 664ceb7..a1a13ac 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Mainsail klipper macros and settings -This is the new location of the macros and settings provided by the Mainsail team. The intent is to enable all user to setup important macros and settings needed by the mainsail UI. +This is the new location of the macros and settings provided by the Mainsail team. The intent is to enable all users to setup important macros and settings needed by the mainsail UI. ### Important features - Park position depending on printer kinematics or user preference @@ -8,17 +8,17 @@ This is the new location of the macros and settings provided by the Mainsail tea - Square beds Xmax:Ymax - User Position - PAUSE now supports option input parameters [X,Y,Z_MIN] - - That is helpfule to direct use the PAUSE macro in your M600 (see the mainsail.cfg for an example) -- Customization via a simgl macro that contains all allowed variables -- Additional custom variables for stuff like extra retact at CANCLE_PRINT. + - That is helpful to direct the use of the PAUSE macro in your M600 (see the mainsail.cfg for an example) +- Customization via a single macro that contains all allowed variables +- Additional custom variables for stuff like extra retract at CANCEL_PRINT. ### Why have we decided to use a dedicated repo? There are 2 main reasons for that decision 1) The current moonraker changes have shown that we need to react very fast on changes. -2) We regular improve the macros and that is the simplest way that also the installed base can benefit from it. +2) We regularly improve the macros and that is the simplest way that the installed base can benefit from it. ### How to install -We currently do not provide an installer and we might never do. But doing it is simple copy and paste a few commands in a ssh terminal +We currently do not provide an installer and we might never do. But doing it is simple copy and paste a few commands in an ssh terminal. The instructions assume that you have a up to data and working moonraker installation. If not start with updating your moonraker first. ``` diff --git a/mainsail.cfg b/mainsail.cfg index 7fca595..9b31cff 100644 --- a/mainsail.cfg +++ b/mainsail.cfg @@ -4,8 +4,6 @@ ## ## This file may be distributed under the terms of the GNU GPLv3 license -## Version 2.0 - ## add [include mainsail.cfg] to your printer.cfg ## Customization: @@ -36,7 +34,7 @@ #description: Filament change #gcode: PAUSE X=10 Y=10 Z_MIN=50 -## That will park your head front left with a minimum hight of 50mm above the bed. If your head +## That will park your head front left with a minimum height of 50mm above the bed. If your head ## is already above 50mm it will use only the z_hop specified with dz. [virtual_sdcard] @@ -132,7 +130,7 @@ gcode: ##### get config and toolhead values ##### {% set act = printer.toolhead.position %} {% set max = printer.toolhead.axis_maximum %} - {% set cone = printer.toolhead.cone_start_z|default(max.z) %} ; hight as long the toolhead can reach max and min of an delta + {% set cone = printer.toolhead.cone_start_z|default(max.z) %} ; height as long the toolhead can reach max and min of an delta {% set round_bed = True if printer.configfile.settings.printer.kinematics is in ['delta','polar','rotary_delta','winch'] else False %} ##### define park position #####