-
Notifications
You must be signed in to change notification settings - Fork 422
Expand file tree
/
Copy pathHephestos.ini
More file actions
71 lines (68 loc) · 2.25 KB
/
Copy pathHephestos.ini
File metadata and controls
71 lines (68 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[machine]
machine_name = Hephestos
machine_type = Hephestos
machine_width = 215
machine_depth = 210
machine_height = 180
machine_center_is_zero = False
has_heated_bed = False
gcode_flavor = RepRap (Marlin/Sprinter)
extruder_amount = 1
serial_baud = 115200
[profile]
filament_diameter = 1.75
nozzle_size = 0.4
layer_height = 0.2
print_speed = 50
print_temperature = 210
travel_speed = 130
wall_thickness = 0.8
retraction_enable = True
solid_layer_thickness = 0.6
fill_density = 20
retraction_speed = 50.0
retraction_amount = 4
retraction_min_travel = 1.5
retraction_combing = True
retraction_minimal_extrusion = 0.1
bottom_thickness = 0.3
bottom_layer_speed = 20
cool_min_layer_time = 5
fan_enabled = True
filament_flow = 100.0
[alterations]
start.gcode =
; -- START GCODE --
;Sliced at: {day} {date} {time}
;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density}
;Print time: {print_time}, short: {print_time_short}
;Filament used: {filament_amount}m {filament_weight}g
;Filament cost: {filament_cost}
;Uncomment to add your own temperature line
;M109 S{print_temperature}
;Uncomment to add your own bed temperature line
;M190 S{print_bed_temperature}
G21 ;metric values
G90 ;absolute positioning
M107 ;start with the fan off
G28 X0 Y0 ;move X/Y to min endstops
G28 Z0 ;move Z to min endstops
G1 Z15.0 F1200 ;move the platform down 15mm
G92 E0 ;zero the extruded length
G1 F200 E5 ;extrude 5mm of feed stock
G92 E0 ;zero the extruded length again
G1 F{travel_speed}
;Uncomment to put a printing message on LCD screen
;M117 Printing...
; -- end of START GCODE --
end.gcode =
; -- END GCODE --
M104 S0 ;extruder heater off
M140 S0 ;heated bed heater off (if you have it)
G91 ;relative positioning
G1 E-5 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure
G1 Z+80 F{travel_speed} ;move Z up
G90 ;absolute positioning
G1 X0 Y180 F{travel_speed} ;move Z up a bit and retract filament even more the way
M84 ;steppers off
; -- end of END GCODE --