From 4b5d53082979979a0c0a56d11fb08cc3f9ad9d85 Mon Sep 17 00:00:00 2001 From: Juri Berlanda Date: Wed, 5 Jan 2022 18:44:13 +0100 Subject: [PATCH] [Doc/Cleanup] Trailing whitespaces. Signed-off-by: Juri Berlanda --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4bb3e11..b9e086c 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,7 @@ other `G29` functionality from Marlin, we just need the bed mesh clear functiona gcode: {% set x = params.X | default(0) | float %} {% set y = params.Y | default(0) | float %} - + {% set x_offset = 0 | float %} {% set y_offset = 0 | float %} @@ -154,10 +154,10 @@ gcode: {% set x_offset = printer.configfile.config.probe.x_offset | float %} {% set y_offset = printer.configfile.config.probe.y_offset | float %} {% endif %} - + {% set y = y - y_offset | float %} {% set x = x - x_offset | float %} - + {% if printer.toolhead.homed_axes != "xyz" %} { action_respond_info("XYZ must be homed first.") } {% else %} @@ -176,7 +176,7 @@ gcode: ``` **Please note** that this macro DOES take into account the probe offset. Probe points may still require adjusting if the offset position exceeds max travel. -Your printer configuration requires either `bltouch` or `probe` to declared, with `x_offset` and `y_offset` to be both set. +Your printer configuration requires either `bltouch` or `probe` to declared, with `x_offset` and `y_offset` to be both set. This macro will: