Skip to content

Commit

Permalink
[Doc/Cleanup] Trailing whitespaces.
Browse files Browse the repository at this point in the history
Signed-off-by: Juri Berlanda <[email protected]>
  • Loading branch information
j-be committed Jan 5, 2022
1 parent ac40181 commit 4b5d530
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 %}
Expand All @@ -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 %}
Expand All @@ -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:

Expand Down

0 comments on commit 4b5d530

Please sign in to comment.