Advertisement
Guest User

Untitled

a guest
Mar 7th, 2017
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. # OctoPrint settings for BQ Hephestos 2
  2.  
  3. ## Printer Profile
  4.  
  5. Print volume:
  6.  
  7. * width: 210
  8. * depth: 297
  9. * height: 220
  10.  
  11. No heated bed.
  12.  
  13. ## Serial connection
  14.  
  15. Add `M800` and `M801` to long running commands (Settings > Serial Connection > Advanced Options > Long running commands).
  16.  
  17. ## GCODE Scripts
  18.  
  19. ### Cancel
  20.  
  21. ```
  22. ; disable motors
  23. M84
  24.  
  25. ;disable all heaters
  26. {% snippet 'disable_hotends' %}
  27. {% snippet 'disable_bed' %}
  28. ;disable fan
  29. M106 S0
  30.  
  31. M801
  32. ```
  33.  
  34. ### Pause
  35.  
  36. ```
  37. ; relative XYZE
  38. G91
  39. M83
  40.  
  41. ; retract filament, move Z slightly upwards
  42. G1 Z+5 E-5 F4500
  43.  
  44. ; move Z up some more
  45. G1 Z+10 F4500
  46.  
  47. ; absolute XYZE
  48. M82
  49. G90
  50.  
  51. ; move to a safe rest position
  52. G1 X4 Y297.0
  53. ```
  54.  
  55. ### Resume
  56.  
  57. ```
  58. ; relative extruder
  59. M83
  60.  
  61. ; prime nozzle
  62. G1 E-5 F4500
  63. G1 E5 F4500
  64. G1 E5 F4500
  65.  
  66. ; absolute E
  67. M82
  68.  
  69. ; absolute XYZ
  70. G90
  71.  
  72. ; reset E
  73. G92 E{{ pause_position.e }}
  74.  
  75. ; move back to pause position XYZ
  76. G1 X{{ pause_position.x }} Y{{ pause_position.y }} Z{{ pause_position.z }} F4500
  77.  
  78. ; reset to feed rate before pause
  79. G1 {{ pause_position.f }}
  80. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement