Advertisement
Guest User

Untitled

a guest
Jan 3rd, 2014
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.45 KB | None | 0 0
  1. [profile]
  2. layer_height = 0.25
  3. wall_thickness = 1.0
  4. retraction_enable = True
  5. solid_layer_thickness = 0.6
  6. fill_density = 20
  7. nozzle_size = 0.35
  8. print_speed = 50
  9. print_temperature = 0
  10. print_temperature2 = 0
  11. print_temperature3 = 0
  12. print_temperature4 = 0
  13. print_bed_temperature = 0
  14. support = None
  15. platform_adhesion = None
  16. support_dual_extrusion = Both
  17. wipe_tower = False
  18. wipe_tower_volume = 15
  19. ooze_shield = False
  20. filament_diameter = 2.85
  21. filament_diameter2 = 0
  22. filament_diameter3 = 0
  23. filament_diameter4 = 0
  24. filament_flow = 100.0
  25. retraction_speed = 40.0
  26. retraction_amount = 2
  27. retraction_dual_amount = 16.5
  28. retraction_min_travel = 1.5
  29. retraction_combing = True
  30. retraction_minimal_extrusion = 0.02
  31. bottom_thickness = 0.25
  32. object_sink = 0.0
  33. overlap_dual = 0.15
  34. travel_speed = 150
  35. bottom_layer_speed = 20
  36. infill_speed = 0.0
  37. cool_min_layer_time = 5
  38. fan_enabled = False
  39. skirt_line_count = 1
  40. skirt_gap = 3.0
  41. skirt_minimal_length = 150.0
  42. fan_full_height = 0.5
  43. fan_speed = 100
  44. fan_speed_max = 100
  45. cool_min_feedrate = 10
  46. cool_head_lift = False
  47. solid_top = True
  48. solid_bottom = True
  49. fill_overlap = 15
  50. support_fill_rate = 15
  51. support_xy_distance = 0.7
  52. support_z_distance = 0.15
  53. spiralize = False
  54. brim_line_count = 20
  55. raft_margin = 5
  56. raft_line_spacing = 1.0
  57. raft_base_thickness = 0.3
  58. raft_base_linewidth = 0.7
  59. raft_interface_thickness = 0.2
  60. raft_interface_linewidth = 0.2
  61. fix_horrible_union_all_type_a = True
  62. fix_horrible_union_all_type_b = False
  63. fix_horrible_use_open_bits = False
  64. fix_horrible_extensive_stitching = False
  65. plugin_config = (lp1
  66. .
  67. object_center_x = -1
  68. object_center_y = -1
  69.  
  70. [alterations]
  71. start.gcode = ;Sliced at: {day} {date} {time}
  72. ;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density}
  73. ;Print time: {print_time}
  74. ;Filament used: {filament_amount}m {filament_weight}g
  75. ;Filament cost: {filament_cost}
  76. ;M190 S{print_bed_temperature} ;Uncomment to add your own bed temperature line
  77. ;M109 S{print_temperature} ;Uncomment to add your own temperature line
  78. G21 ;metric values
  79. G90 ;absolute positioning
  80. M107 ;start with the fan off
  81.  
  82. G28 X0 Y0 ;move X/Y to min endstops
  83. G28 Z0 ;move Z to min endstops
  84.  
  85. G1 Z15.0 F{travel_speed} ;move the platform down 15mm
  86.  
  87. G92 E0 ;zero the extruded length
  88. G1 F200 E3 ;extrude 3mm of feed stock
  89. G92 E0 ;zero the extruded length again
  90. G1 F{travel_speed}
  91. ;Put printing message on LCD screen
  92. M117 Printing...
  93.  
  94. end.gcode = ;End GCode
  95. M104 S0 ;extruder heater off
  96. M140 S0 ;heated bed heater off (if you have it)
  97.  
  98. G91 ;relative positioning
  99. G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure
  100. G1 Z+0.5 E-5 X-20 Y-20 F{travel_speed} ;move Z up a bit and retract filament even more
  101. G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way
  102.  
  103. M84 ;steppers off
  104. G90 ;absolute positioning
  105.  
  106. start2.gcode = ;Sliced at: {day} {date} {time}
  107. ;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density}
  108. ;Print time: {print_time}
  109. ;Filament used: {filament_amount}m {filament_weight}g
  110. ;Filament cost: {filament_cost}
  111. ;M190 S{print_bed_temperature} ;Uncomment to add your own bed temperature line
  112. ;M104 S{print_temperature} ;Uncomment to add your own temperature line
  113. ;M109 T1 S{print_temperature2} ;Uncomment to add your own temperature line
  114. ;M109 T0 S{print_temperature} ;Uncomment to add your own temperature line
  115. G21 ;metric values
  116. G90 ;absolute positioning
  117. M107 ;start with the fan off
  118.  
  119. G28 X0 Y0 ;move X/Y to min endstops
  120. G28 Z0 ;move Z to min endstops
  121.  
  122. G1 Z15.0 F{travel_speed} ;move the platform down 15mm
  123.  
  124. T1 ;Switch to the 2nd extruder
  125. G92 E0 ;zero the extruded length
  126. G1 F200 E10 ;extrude 10mm of feed stock
  127. G92 E0 ;zero the extruded length again
  128. G1 F200 E-{retraction_dual_amount}
  129.  
  130. T0 ;Switch to the first extruder
  131. G92 E0 ;zero the extruded length
  132. G1 F200 E10 ;extrude 10mm of feed stock
  133. G92 E0 ;zero the extruded length again
  134. G1 F{travel_speed}
  135. ;Put printing message on LCD screen
  136. M117 Printing...
  137.  
  138. end2.gcode = ;End GCode
  139. M104 T0 S0 ;extruder heater off
  140. M104 T1 S0 ;extruder heater off
  141. M140 S0 ;heated bed heater off (if you have it)
  142.  
  143. G91 ;relative positioning
  144. G1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure
  145. G1 Z+0.5 E-5 X-20 Y-20 F{travel_speed} ;move Z up a bit and retract filament even more
  146. G28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way
  147.  
  148. M84 ;steppers off
  149. G90 ;absolute positioning
  150.  
  151. support_start.gcode =
  152. support_end.gcode =
  153. cool_start.gcode =
  154. cool_end.gcode =
  155. replace.csv =
  156. switchextruder.gcode = ;Switch between the current extruder and the next extruder, when printing with multiple extruders.
  157. G92 E0
  158. G1 E-36 F5000
  159. G92 E0
  160. T{extruder}
  161. G1 X{new_x} Y{new_y} Z{new_z} F{travel_speed}
  162. G1 E36 F5000
  163. G92 E0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement