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