chiark / gitweb /
Incorporate profile naming updates
[cura.git] / resources / machine_profiles / Rigid3D.ini
1 [machine]
2 machine_name = Rigid3D
3 machine_type = Rigid3D
4 machine_width = 250
5 machine_depth = 250
6 machine_height = 250
7 machine_center_is_zero = False
8 has_heated_bed = True
9 gcode_flavor = RepRap (Marlin/Sprinter)
10 extruder_amount = 1
11 extruder_head_size_min_x = 22
12 extruder_head_size_min_y = 67
13 extruder_head_size_max_x = 36
14 extruder_head_size_max_y = 51
15 extruder_head_size_height = 34
16
17 [profile]
18 layer_height = 0.2
19 wall_thickness = 1.17
20 retraction_enable = True
21 solid_layer_thickness = 0.6
22 fill_density = 20
23 nozzle_size = 0.4
24 print_speed = 50
25 print_temperature = 245
26 print_bed_temperature = 110
27 support = None
28 platform_adhesion = None
29 filament_diameter = 1.75
30 filament_flow = 100.0
31 retraction_speed = 30.0
32 retraction_amount = 1
33 retraction_min_travel = 2
34 retraction_combing = All
35 retraction_minimal_extrusion = 0.1
36 retraction_hop = 0.0
37 bottom_thickness = 0.2
38 layer0_width_factor = 110
39 travel_speed = 120
40 bottom_layer_speed = 25
41 infill_speed = 50
42 solidarea_speed = 25
43 inset0_speed = 30
44 insetx_speed = 40
45 cool_min_layer_time = 10
46 skirt_line_count = 1
47 skirt_gap = 5.0
48 skirt_minimal_length = 150.0
49 cool_min_feedrate = 10
50 solid_top = True
51 solid_bottom = True
52 fill_overlap = 15
53 support_type = Lines
54 support_angle = 45
55
56 [alterations]
57 start.gcode = 
58   ; -- START GCODE --
59   G21
60   G28 ; Home extruder
61   G29 E;
62   M107 ; Turn off fan
63   G90 ; Absolute positioning
64   M82 ; Extruder in absolute mode
65   G92 E0 ; Reset extruder position
66   ; -- end of START GCODE --
67
68 end.gcode = 
69   ; -- END GCODE --
70   G1 X0 Y230 ; Get extruder out of way. Uncomment to use!
71   M107 ; Turn off fan
72   ; Disable all extruder
73   G91 ; Relative positioning
74   G0 Z20 ;
75   T0
76   G1 E-1 ; Reduce filament pressure
77   M104 T0 S0
78   G90 ; Absolute positioning
79   G92 E0 ; Reset extruder position
80   M140 S0 ; Disable heated bed
81   M84 ; Turn steppers off
82   ; -- end of END GCODE --