#Move out of range during bed mesh

7 messages · Page 1 of 1 (latest)

bold crest
#

Can anyone help me fix this. My brain just isn't working tonight.

Move out of range: -30.000 26.000 5.000 [59.878]

[bltouch]
sensor_pin: ^PB1
control_pin: PB0
pin_up_touch_mode_reports_triggered: True
probe_with_touch_mode: True
x_offset: 50
y_offset: -6
z_offset: 2.194

[bed_mesh]
speed: 200
mesh_min: 0, -20
mesh_max: 280, 280
algorithm: bicubic
probe_count: 7,7
horizontal_move_z: 5

radiant flame
#

You missed one very important info … you bed size. Anyhow copy this macro in your printer.cfg

description: Debug: Print information about print volume and probeable area
gcode:
  {% set min = printer.toolhead.axis_minimum %}
  {% set max = printer.toolhead.axis_maximum %}
  {% set cfg = printer.configfile.settings %}
  {% set probe_offset = {'x' : cfg.probe.x_offset   if 'probe'   in cfg
                          else cfg.bltouch.x_offset if 'bltouch' in cfg
                          else 0,
                         'y' : cfg.probe.y_offset   if 'probe'   in cfg
                          else cfg.bltouch.y_offset if 'bltouch' in cfg
                          else 0} %}
  {% set probe_area = {'min' : {'x' : min.x+probe_offset.x|abs,
                                'y' : min.y+probe_offset.y|abs},
                       'max' : {'x' : max.x-probe_offset.x|abs,
                                'y' : max.y-probe_offset.y|abs}} %}
  {action_respond_info("Print Volume Limits:
                        Min X:%7.1f, Y:%7.1f, Z:%7.1f
                        Max X:%7.1f, Y:%7.1f, Z:%7.1f
                        Probe Offset:
                        X:%7.1f Y:%7.1f
                        Probe Area Limits:
                        Min X:%7.1f, Y:%7.1f
                        Max X:%7.1f, Y:%7.1f" % 
    (min.x,min.y,min.z,max.x,max.y,max.z,probe_offset.x,probe_offset.y,probe_area.min.x,probe_area.min.y,probe_area.max.x,probe_area.max.y))}``` and execute it in the console. It will print out limits of the probable bed area. Add it as min max in your bed mesh and run it again.
bold crest
#

output this

#

Print Volume Limits:
Min X: 0.0, Y: 0.0, Z: -5.0
Max X: 300.0, Y: 300.0, Z: 340.0
Probe Offset:
X: 50.0 Y: -6.0
Probe Area Limits:
Min X: 50.0, Y: 6.0
Max X: 250.0, Y: 294.0

#

changed to this. [bed_mesh]
speed: 200
mesh_min: 50, 6
mesh_max: 250, 294

#

now its showing Move out of range: -50.000 6.000 5.000 [0.000]

#

got it working. needed to set x min to 0