Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 KB | None | 0 0
  1. ; homex.g
  2. ; called to home the X axis
  3. ;
  4. ; generated by RepRapFirmware Configuration Tool v2.1.3 on Fri Nov 29 2019 15:21:21 GMT+0100 (Central European Standard Time)
  5. G91 ; relative positioning
  6. G1 H2 Z5 F6000 ; lift Z relative to current position
  7. G1 H1 X-165 F1800 ; move quickly to X axis endstop and stop there (first pass)
  8. G1 H2 X5 F6000 ; go back a few mm
  9. G1 H1 X-165 F360 ; move slowly to X axis endstop once more (second pass)
  10. G1 H2 Z-5 F6000 ; lower Z again
  11. G90 ; absolute positioning
  12.  
  13. ____________________________________________________________________________________________________________________________
  14.  
  15. ; homey.g
  16. ; called to home the Y axis
  17. ;
  18. ; generated by RepRapFirmware Configuration Tool v2.1.3 on Fri Nov 29 2019 15:21:21 GMT+0100 (Central European Standard Time)
  19. G91 ; relative positioning
  20. G1 H2 Z5 F6000 ; lift Z relative to current position
  21. G1 H1 Y165 F1800 ; move quickly to Y axis endstop and stop there (first pass)
  22. G1 H2 Y-5 F6000 ; go back a few mm
  23. G1 H1 Y165 F360 ; move slowly to Y axis endstop once more (second pass)
  24. G1 H2 Z-5 F6000 ; lower Z again
  25. G90 ; absolute positioning
  26.  
  27. ____________________________________________________________________________________________________________________________
  28.  
  29. ; homez.g
  30. ; called to home the Z axis
  31. ;
  32. ; generated by RepRapFirmware Configuration Tool v2.1.3 on Fri Nov 29 2019 15:21:21 GMT+0100 (Central European Standard Time)
  33. G91 ; relative positioning
  34. G1 H2 Z5 F6000 ; lift Z relative to current position
  35. G90 ; absolute positioning
  36. G1 H2 X15 Y15 F6000 ; go to first probe point
  37. G30 ; home Z by probing the bed
  38.  
  39. ; Uncomment the following lines to lift Z after probing
  40. ;G91 ; relative positioning
  41. ;G1 H2 Z5 F100 ; lift Z relative to current position
  42. ;G90 ; absolute positioning
  43.  
  44. ____________________________________________________________________________________________________________________________
  45.  
  46. ; homeall.g
  47. ; called to home all axes
  48. ;
  49. ; generated by RepRapFirmware Configuration Tool v2.1.3 on Fri Nov 29 2019 15:21:21 GMT+0100 (Central European Standard Time)
  50. G91 ; relative positioning
  51. G1 H2 Z5 F6000 ; lift Z relative to current position
  52. G1 H1 X-165 Y165 F1800 ; move quickly to X and Y axis endstops and stop there (first pass)
  53. G1 H2 X5 Y-5 F6000 ; go back a few mm
  54. G1 H1 X-165 Y165 F360 ; move slowly to X and Y axis endstops once more (second pass)
  55. G90 ; absolute positioning
  56. G1 H2 X15 Y15 F6000 ; go to first bed probe point and home Z
  57. G30 ; home Z by probing the bed
  58.  
  59. ; Uncomment the following lines to lift Z after probing
  60. ;G91 ; relative positioning
  61. ;G1 S2 Z5 F100 ; lift Z relative to current position
  62. ;G90 ; absolute positioning
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement