Advertisement
mrsparrow

Homing Configs

Feb 24th, 2020
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 KB | None | 0 0
  1. ; bed.g
  2. ; called to perform automatic bed compensation via G32
  3. ;
  4. ; generated by RepRapFirmware Configuration Tool v2 on Fri Mar 01 2019 19:26:21 GMT+0200 (Eastern European Standard Time)
  5. M561 ; clear any bed transform
  6.  
  7.  
  8. G28 ; home
  9. G30 P0 X10 Y15 Z-99999 ; probe near a leadscrew
  10. G30 P1 X305 Y410 Z-99999 ; probe near a leadscrew X610
  11. G30 P2 X610 Y15 Z-99999 S3 ; probe near a leadscrew and calibrate 3 motors
  12. X610
  13. ;G29 ; probe the bed and enable compensation
  14.  
  15.  
  16.  
  17. ; homeall.g
  18. ; called to home all axes
  19. ;
  20. ; generated by RepRapFirmware Configuration Tool v2 on Fri Mar 01 2019 19:26:22 GMT+0200 (Eastern European Standard Time)
  21. G91 ; relative positioning
  22. G1 Z5 F6000 S2 ; lift Z relative to current position
  23. G1 S1 X-625 Y485 F6000 ; move quickly to X or Y endstop and stop there (first pass)
  24. G1 S1 X-625 ; home X axis
  25. G1 S1 Y485 ; home Y axis
  26. G1 X5 Y480 F6000 ; go back a few mm
  27. G1 S1 X-625 F360 ; move slowly to X axis endstop once more (second pass)
  28. G1 S1 Y485 ; then move slowly to Y axis endstop
  29. G90 ; absolute positioning
  30. G1 X15 Y15 F10000 ; go to first bed probe point and home Z
  31. G30 ; home Z by probing the bed
  32. M402 ; Retract the Z probe
  33.  
  34. ; Uncomment the following lines to lift Z after probing
  35. ;G91 ; relative positioning
  36. ;G1 S2 Z5 F100 ; lift Z relative to current position
  37. ;G90 ; absolute positioning
  38.  
  39.  
  40. ; homex.g
  41. ; called to home the X axis
  42. ;
  43. ; generated by RepRapFirmware Configuration Tool v2 on Fri Mar 01 2019 19:26:22 GMT+0200 (Eastern European Standard Time)
  44. G91 ; relative positioning
  45. G1 Z5 F6000 S2 ; lift Z relative to current position
  46. G1 S1 X-625 F3000 ; move quickly to X axis endstop and stop there (first pass)
  47. G1 X5 F6000 ; go back a few mm
  48. G1 S1 X-625 F360 ; move slowly to X axis endstop once more (second pass)
  49. G1 Z-5 F6000 S2 ; lower Z again
  50. G90 ; absolute positioning
  51.  
  52. ; homey.g
  53. ; called to home the Y axis
  54. ;
  55. ; generated by RepRapFirmware Configuration Tool v2 on Fri Mar 01 2019 19:26:22 GMT+0200 (Eastern European Standard Time)
  56. G91 ; relative positioning
  57. G1 Z5 F6000 S2 ; lift Z relative to current position
  58. G1 S1 Y485 F3000 ; move quickly to Y axis endstop and stop there (first pass)
  59. G1 Y480 F6000 ; go back a few mm
  60. G1 S1 Y485 F360 ; move slowly to Y axis endstop once more (second pass)
  61. G1 Z-5 F6000 S2 ; lower Z again
  62. G90 ; absolute positioning
  63.  
  64. ; homez.g
  65. ; called to home the Z axis
  66. ;
  67. ; generated by RepRapFirmware Configuration Tool v2 on Fri Mar 01 2019 19:26:22 GMT+0200 (Eastern European Standard Time)
  68. G91 ; relative positioning
  69. G1 Z5 F6000 S2 ; lift Z relative to current position
  70. G90 ; absolute positioning
  71. G1 X15 Y15 F6000 ; go to first probe point
  72. G30 ; home Z by probing the bed
  73. M402 ; Retract the Z Probe
  74.  
  75. ; Uncomment the following lines to lift Z after probing
  76. ;G91 ; relative positioning
  77. ;G1 S2 Z5 F100 ; lift Z relative to current position
  78. ;G90 ; absolute positioning
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement