Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. [homing_override]
  2. set_position_z: 0
  3. gcode:
  4. G90
  5. G1 Z12 F600 ; Blindly lift the Z 12mm at start
  6. G28 X0 Y0
  7. G1 X145 Y145 F3600
  8. G28 Z0
  9. G1 Z10 F1000
  10.  
  11. [servo bltouch]
  12. pin: ar11
  13. maximum_servo_angle: 120
  14. minimum_pulse_width: 0.0006
  15. maximum_pulse_width: 0.0026
  16.  
  17. [probe]
  18. pin: !ar18
  19. #z_offset: -0.997
  20. y_offset: 5
  21. x_offset: 55
  22. activate_gcode:
  23. SET_SERVO SERVO=bltouch ANGLE=65
  24. G4 P200
  25. deactivate_gcode:
  26. SET_SERVO SERVO=bltouch ANGLE=22
  27. G4 P100
  28.  
  29. [bed_mesh]
  30. speed: 90
  31. horizontal_move_z: 10
  32. min_point: 5,50
  33. # Defines the minimum x,y position to probe when for rectangular
  34. # beds.
  35. max_point: 160,210
  36. # Defines the maximum x,y position to probe when for rectangular
  37. # beds. Follow the same precautions as listed in min_point. Also note
  38. # that this does not necessarily define the last point probed, only
  39. # the maximum coordinate. This parameter must be provided.
  40. probe_count: 3,3
  41. # For rectangular beds, this is a comma separate pair of integer
  42. # values (X,Y) defining the number of points to probe along each axis.
  43. # A single value is also valid, in which case that value will be applied
  44. # to both axes. Default is 3,3.
  45. #fade_start: 1.0
  46. # The gcode z position in which to start phasing out z-adjustment
  47. # when fade is enabled. Default is 1.0.
  48. #fade_end: 0.0
  49. # The gcode z position in which phasing out completes. When set
  50. # to a value below fade_start, fade is disabled. It should be
  51. # noted that fade may add unwanted scaling along the z-axis of a
  52. # print. If a user wishes to enable fade, a value of 10.0 is
  53. # recommended. Default is 0.0, which disables fade.
  54. #fade_target:
  55. # The z position in which fade should converge. When this value is set
  56. # to a non-zero value it must be within the range of z-values in the mesh.
  57. # Users that wish to converge to the z homing position should set this to 0.
  58. # Default is the average z value of the mesh.
  59. #split_delta_z: .025
  60. # The amount of Z difference (in mm) along a move that will
  61. # trigger a split. Default is .025.
  62. #move_check_distance: 5.0
  63. # The distance (in mm) along a move to check for split_delta_z.
  64. # This is also the minimum length that a move can be split. Default
  65. # is 5.0.
  66. mesh_pps: 2,2
  67. # A comma separated pair of integers (X,Y) defining the number of
  68. # points per segment to interpolate in the mesh along each axis. A
  69. # "segment" can be defined as the space between each probed
  70. # point. The user may enter a single value which will be applied
  71. # to both axes. Default is 2,2.
  72. bicubic_tension: .197
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement