Browse Source

New/Modified Cura settings files

Thomas Buck 8 years ago
parent
commit
ca8c80f418
2 changed files with 78 additions and 15 deletions
  1. 62
    0
      Cura_Beta_Fabrikator_Mini.json
  2. 16
    15
      Cura_Fabrikator_Mini.ini

+ 62
- 0
Cura_Beta_Fabrikator_Mini.json View File

@@ -0,0 +1,62 @@
1
+{
2
+    "id": "fabrikator-mini-bed",
3
+    "name": "Fabrikator Mini",
4
+    "version": 1,
5
+    "inherits": "fdmprinter.json",
6
+    "machine_settings": {
7
+        "machine_width": {
8
+            "default": 80
9
+        },
10
+        "machine_height": {
11
+            "default": 80
12
+        },
13
+        "machine_depth": {
14
+            "default": 80
15
+        },
16
+        "machine_center_is_zero": {
17
+            "default": false
18
+        },
19
+        "machine_nozzle_size": {
20
+            "default": 0.4
21
+        },
22
+        "machine_head_shape_min_x": {
23
+            "default": 75
24
+        },
25
+        "machine_head_shape_min_y": {
26
+            "default": 18
27
+        },
28
+        "machine_head_shape_max_x": {
29
+            "default": 18
30
+        },
31
+        "machine_head_shape_max_y": {
32
+            "default": 35
33
+        },
34
+        "machine_nozzle_gantry_distance": {
35
+            "default": 55
36
+        },
37
+        "machine_nozzle_offset_x_1": {
38
+            "default": 18
39
+        },
40
+        "machine_nozzle_offset_y_1": {
41
+            "default": 0
42
+        },
43
+        "machine_gcode_flavor": {
44
+            "default": "RepRap"
45
+        },
46
+        "machine_start_gcode": {
47
+            "default": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nM104 S{print_temperature} ; begin heating nozzle\nG28 X0 Y0 ;move X/Y to min endstops\nM140 S{print_bed_temperature} ; begin heating bed\nG28 Z0 ;move Z to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E1 ;extrude 1mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..."
48
+        },
49
+        "machine_end_gcode": {
50
+            "default": "M104 S0 ;extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300  ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning"
51
+        }
52
+    },
53
+    "categories": {
54
+        "material": {
55
+            "settings": {
56
+                "material_bed_temperature": {
57
+                    "visible": true
58
+                }
59
+            }
60
+        }
61
+    }
62
+}

+ 16
- 15
Cura_Fabrikator_Mini.ini View File

@@ -10,7 +10,7 @@ print_temperature2 = 0
10 10
 print_temperature3 = 0
11 11
 print_temperature4 = 0
12 12
 print_temperature5 = 0
13
-print_bed_temperature = 60
13
+print_bed_temperature = 70
14 14
 support = None
15 15
 platform_adhesion = None
16 16
 support_dual_extrusion = Both
@@ -32,7 +32,7 @@ retraction_combing = All
32 32
 retraction_minimal_extrusion = 0.02
33 33
 retraction_hop = 0.0
34 34
 bottom_thickness = 0.3
35
-layer0_width_factor = 100
35
+layer0_width_factor = 110
36 36
 object_sink = 0.0
37 37
 overlap_dual = 0.15
38 38
 travel_speed = 30.0
@@ -43,8 +43,8 @@ inset0_speed = 20
43 43
 insetx_speed = 20
44 44
 cool_min_layer_time = 15
45 45
 fan_enabled = True
46
-skirt_line_count = 1
47
-skirt_gap = 0.5
46
+skirt_line_count = 3
47
+skirt_gap = 0.3
48 48
 skirt_minimal_length = 300.0
49 49
 fan_full_height = 0.5
50 50
 fan_speed = 100
@@ -57,7 +57,7 @@ fill_overlap = 15
57 57
 perimeter_before_infill = False
58 58
 support_type = Lines
59 59
 support_angle = 60
60
-support_fill_rate = 25
60
+support_fill_rate = 15
61 61
 support_xy_distance = 0.7
62 62
 support_z_distance = 0.15
63 63
 spiralize = False
@@ -93,17 +93,17 @@ start.gcode = ;Sliced at: {day} {date} {time}
93 93
 	G21        ;metric values
94 94
 	G90        ;absolute positioning
95 95
 	M82        ;set extruder to absolute mode
96
-	M107       ;start with the fan off
97
-	M140 S{print_bed_temperature} ; begin heating bed
98
-	M104 S{print_temperature} ; begin heating nozzle
96
+	M107       ;start with the fan off
97
+	M104 S{print_temperature} ; begin heating nozzle
99 98
 	G28 X0 Y0  ;move X/Y to min endstops
100
-	G28 Z0     ;move Z to min endstops
101
-	G1 Z10.0 F{travel_speed} ;move the platform down 15mm
102
-	M190 S{print_bed_temperature} ; Wait for bed temp
103
-	M109 S{print_temperature} ; Wait for nozzle temp
99
+	M140 S{print_bed_temperature} ; begin heating bed
100
+	G28 Z0     ;move Z to min endstops
101
+	G1 Z10.0 F{travel_speed} ;move the platform down 10mm
102
+	M190 S{print_bed_temperature} ; Wait for bed temp
103
+	M109 S{print_temperature} ; Wait for nozzle temp
104 104
 	G92 E0                  ;zero the extruded length
105
-	G1 F200 E1              ;extrude 1mm of feed stock
106
-	G92 E0                  ;zero the extruded length again
105
+	;G1 F200 E1              ;extrude 1mm of feed stock
106
+	;G92 E0                  ;zero the extruded length again
107 107
 	G1 F{travel_speed}
108 108
 	;Put printing message on LCD screen
109 109
 	M117 Printing...
@@ -112,7 +112,8 @@ end.gcode = ;End GCode
112 112
 	M140 S0                     ;heated bed heater off (if you have it)
113 113
 	G91                                    ;relative positioning
114 114
 	G1 E-1 F300                            ;retract the filament a bit before lifting the nozzle, to release some of the pressure
115
-	G1 Z+0.5 E-5 X-20 Y-20 F{travel_speed} ;move Z up a bit and retract filament even more
115
+	;G1 Z+0.5 E-5 X-20 Y-20 F{travel_speed} ;move Z up a bit and retract filament even more
116
+	G1 Z+0.5 E-4 F{travel_speed} ;move Z up a bit and retract filament even more
116 117
 	G28 X0 Y0                              ;move X/Y to min endstops, so the head is out of the way
117 118
 	M84                         ;steppers off
118 119
 	G90                         ;absolute positioning

Loading…
Cancel
Save