Advertisement
soapee01

mesh.cfg

May 20th, 2025
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.55 KB | None | 0 0
  1. ### BED MESH
  2. ### SOURCE: https://lab4450.com/blog/revive-your-prusa-mk3s-with-klipper-2-5-compile-and-flash-klipper/
  3. [bed_mesh]
  4. horizontal_move_z: 5 ; 2 was original and gives us a "Probe triggered prior to movement" error.
  5. mesh_min: 35, 6
  6. mesh_max: 240,198
  7. # Odd number of probe points per dimension (3x3, 5x5, 7x7) is better as then the area near the center screw is probed
  8. probe_count: 7,7
  9. #probe_count: 5,5
  10. #probe_count: 3,3
  11. speed: 100
  12. algorithm: bicubic
  13. fade_start: 1.0
  14. fade_end: 10.0
  15. move_check_distance: 3.0
  16. split_delta_z: .025
  17. bicubic_tension: .2
  18. mesh_pps: 0,0 #Don't generate interperlated points so our mesh is precise with screw tilt adjust
  19. # Avoid magnets
  20. faulty_region_1_min: 100.583, 187.376
  21. faulty_region_1_max: 122.083, 229.376
  22. faulty_region_2_min: 125.672, -18.124
  23. faulty_region_2_max: 147.172, 23.876
  24. faulty_region_3_min: 192.261, 5.126
  25. faulty_region_3_max: 234.261, 26.626
  26. faulty_region_4_min: 114.422, 39.876
  27. faulty_region_4_max: 135.922, 81.876
  28. faulty_region_5_min: 21.422, 87.126
  29. faulty_region_5_max: 42.922, 129.126
  30. faulty_region_6_min: 54.172, 97.376
  31. faulty_region_6_max: 96.172, 118.876
  32. faulty_region_7_min: 154.172, 97.376
  33. faulty_region_7_max: 196.172, 118.876
  34. faulty_region_8_min: 205.136, 87.126
  35. faulty_region_8_max: 226.636, 129.126
  36. faulty_region_9_min: 114.422, 134.376
  37. faulty_region_9_max: 135.922, 176.376
  38. faulty_region_10_min: 176.177, 191.394
  39. faulty_region_10_max: 218.177, 212.894
  40.  
  41. [gcode_macro BED_MESH_CALIBRATE]
  42. rename_existing: BASE_BED_MESH_CALIBRATE
  43. gcode:
  44.     BED_MESH_CLEAR
  45.     BASE_BED_MESH_CALIBRATE
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement