Guest User

Untitled

a guest
Nov 14th, 2023
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. [z_calibration]
  2. nozzle_xy_position: 27, -3
  3. # A X, Y coordinate (e.g. 100,100) of the nozzle, clicking on the z endstop.
  4. switch_xy_position: 42, 25
  5. # A X, Y coordinate (e.g. 100,100) of the probe's switch body, clicking on
  6. # the z endstop.
  7. bed_xy_position: 180, 180
  8. # A X, Y coordinate (e.g. 100,100) where the print surface (e.g. the center
  9. # point) is probed. These coordinates are adjusted by the
  10. # probe's X and Y offsets. The default is the zero_reference_position which
  11. # replaces the deprecated relative_reference_index
  12. # of the configured bed_mesh, if configured. It's possible to change the zero
  13. # reference position at runtime or use the GCode argument BED_POSITION of CALIBRATE_Z.
  14. samples: 3
  15. wiggle_xy_offsets: 0,0
  16. # After probing the nozzle and retracting, move x some distance away and
  17. # back. Useful to prevent the z endstop pin sticking to the nozzle and
  18. # being pulled out of the assembly. Can be negative. Defaults to zero to
  19. # disable it. Can be combined in x and y to move diagonally. Be careful
  20. # to not move your nozzle out of range!
  21. switch_offset: 0.25
  22. # The trigger point offset of the used mag-probe switch.
  23. # A larger value will position the nozzle closer to the bed.
  24. # This must be determined manually. More on this later
  25. # in this section..
  26. offset_margins: -1.0,1.0
  27. # The minimum and maximum margins allowed for the calculated offset.
  28. # If the offset is outside these values, it will stop!
  29. # The margin can be defined as "min,max" e.g. "-0.5,1.5" or by just one
  30. # value e.g. "1.0" which translates to "-1.0,1.0" (which is also the default).
  31.  
  32. safe_z_height: 15
  33. # The absolute z position in mm to move to before moving to the next
  34. # position. The default is two times the z_offset from the probe's
  35. # configuration. The minimum safe z height is 3mm..
  36. speed: 50
  37. # The moving speed in X and Y. The default is 50 mm/s.
  38. probing_first_fast: false
  39. # If true, the first probing will be faster by the probing speed.
  40. # This is to get down faster and not record the result as a
  41. # probing sample. The default is false.
  42. start_gcode: ATTACH_PROBE
  43. # A list of G-Code commands to run before each calibration command.
  44. # See docs/Command_Templates.md for the G-Code format. This can be used to
  45. # attach the probe.
  46. before_switch_gcode:
  47. # A list of G-Code commands to run before to each probing on the
  48. # mag-probe. See docs/Command_Templates.md for the G-Code format. This can
  49. # be used to attach the probe after probing on the nozzle and before probing
  50. # on the mag-probe.
  51. end_gcode: DOCK_PROBE
  52. # A list of G-Code commands to run after each calibration command.
  53. # See docs/Command_Templates.md for the G-Code format. This can be used to
  54. # detach the probe afterwards.
Advertisement
Add Comment
Please, Sign In to add comment