Advertisement
Guest User

Untitled

a guest
Sep 19th, 2019
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. # Enable the "M118" and "RESPOND" extended commands.
  2.  
  3. [respond]
  4.  
  5. default_type: echo
  6.  
  7. # Sets the default prefix of the "M118" and "RESPOND" output to one of
  8. # the following:
  9. # echo: "echo: " (This is the default)
  10. # command: "// "
  11. # error: "!! "
  12. # default_prefix: echo:
  13. # Directly sets the default prefix. If present, this value will override
  14. # the "default_type".
  15.  
  16. # macros
  17.  
  18. [gcode_macro PARK_MACRO]
  19. default_parameter_X: 0
  20. default_parameter_Y: 0
  21. default_parameter_Z: 30
  22. gcode:
  23. M117 PARKING..
  24. G91
  25. G1 E-3.14 F1500
  26. G1 Z{Z}
  27. G90
  28. G1 X{X} Y{Y} F3000
  29.  
  30. [gcode_macro UNLOAD]
  31. gcode:
  32. G91
  33. G1 E5.0 F1200
  34. G1 E3.0 F1600
  35. G1 E-70.0 F2600
  36. G90
  37.  
  38. [gcode_macro M600]
  39. gcode:
  40. PAUSE_MACRO
  41. UNLOAD
  42.  
  43. [gcode_macro PAUSE_MACRO]
  44. gcode:
  45. PAUSE
  46. PARK_MACRO
  47.  
  48. [gcode_macro PURGE]
  49. gcode:
  50. M117 PURGING..
  51. G91
  52. G1 E45.0 F250
  53. G90
  54.  
  55. [gcode_macro LOAD_FILAMENT]
  56. gcode:
  57. M117 LOADING...
  58. G91
  59. G1 E80 F250
  60. G4 P900
  61. G1 E5.0 F250
  62. G90
  63.  
  64. [gcode_macro RESUME_MACRO]
  65. gcode:
  66. M117 RESUMING...
  67. RESUME
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement