Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Rigid3D.ini « machine_profiles « resources - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02f233824c9d11462e109d56b730bff4a5f121e9 (plain)
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
72
73
74
75
76
77
78
79
80
81
82
[machine]
machine_name = Rigid3D
machine_type = Rigid3D
machine_width = 250
machine_depth = 250
machine_height = 250
machine_center_is_zero = False
has_heated_bed = True
gcode_flavor = RepRap (Marlin/Sprinter)
extruder_amount = 1
extruder_head_size_min_x = 22
extruder_head_size_min_y = 67
extruder_head_size_max_x = 36
extruder_head_size_max_y = 51
extruder_head_size_height = 34

[profile]
layer_height = 0.2
wall_thickness = 1.17
retraction_enable = True
solid_layer_thickness = 0.6
fill_density = 20
nozzle_size = 0.4
print_speed = 50
print_temperature = 245
print_bed_temperature = 110
support = None
platform_adhesion = None
filament_diameter = 1.75
filament_flow = 100.0
retraction_speed = 30.0
retraction_amount = 1
retraction_min_travel = 2
retraction_combing = All
retraction_minimal_extrusion = 0.1
retraction_hop = 0.0
bottom_thickness = 0.2
layer0_width_factor = 110
travel_speed = 120
bottom_layer_speed = 25
infill_speed = 50
solidarea_speed = 25
inset0_speed = 30
insetx_speed = 40
cool_min_layer_time = 10
skirt_line_count = 1
skirt_gap = 5.0
skirt_minimal_length = 150.0
cool_min_feedrate = 10
solid_top = True
solid_bottom = True
fill_overlap = 15
support_type = Lines
support_angle = 45

[alterations]
start.gcode = 
  ; -- START GCODE --
  G21
  G28 ; Home extruder
  G29 E;
  M107 ; Turn off fan
  G90 ; Absolute positioning
  M82 ; Extruder in absolute mode
  G92 E0 ; Reset extruder position
  ; -- end of START GCODE --

end.gcode = 
  ; -- END GCODE --
  G1 X0 Y230 ; Get extruder out of way. Uncomment to use!
  M107 ; Turn off fan
  ; Disable all extruder
  G91 ; Relative positioning
  G0 Z20 ;
  T0
  G1 E-1 ; Reduce filament pressure
  M104 T0 S0
  G90 ; Absolute positioning
  G92 E0 ; Reset extruder position
  M140 S0 ; Disable heated bed
  M84 ; Turn steppers off
  ; -- end of END GCODE --