-
Notifications
You must be signed in to change notification settings - Fork 0
/
Slic3r_config_bundle.ini
1000 lines (975 loc) · 42.1 KB
/
Slic3r_config_bundle.ini
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# generated by Slic3r 1.31.6-prusa3d-win64 on Tue Oct 9 12:46:50 2018
[filament:AO-101]
bed_temperature = 0
bridge_fan_speed = 100
cooling = 1
disable_fan_first_layers = 1
extrusion_multiplier = 0.9
fan_always_on = 0
fan_below_layer_time = 60
filament_diameter = 3
first_layer_bed_temperature = 0
first_layer_temperature = 0
max_fan_speed = 100
min_fan_speed = 35
min_print_speed = 10
slowdown_below_layer_time = 25
temperature = 0
[filament:Mini]
bed_temperature = 0
bridge_fan_speed = 100
cooling = 1
disable_fan_first_layers = 3
extrusion_multiplier = 0.9
fan_always_on = 0
fan_below_layer_time = 60
filament_diameter = 3
first_layer_bed_temperature = 0
first_layer_temperature = 230
max_fan_speed = 100
min_fan_speed = 35
min_print_speed = 10
slowdown_below_layer_time = 5
temperature = 230
[filament:Mini_Ninja]
bed_temperature = 55
bridge_fan_speed = 100
cooling = 1
disable_fan_first_layers = 3
extrusion_multiplier = 0.9
fan_always_on = 0
fan_below_layer_time = 60
filament_colour = #FFFFFF
filament_diameter = 3
first_layer_bed_temperature = 55
first_layer_temperature = 230
max_fan_speed = 100
min_fan_speed = 35
min_print_speed = 10
slowdown_below_layer_time = 5
temperature = 230
[filament:T-Glase]
bed_temperature = 0
bridge_fan_speed = 100
cooling = 0
disable_fan_first_layers = 1
extrusion_multiplier = 1,1,1,1,1
fan_always_on = 0
fan_below_layer_time = 8
filament_diameter = 3,2.89,2.89,2.89,2.89
first_layer_bed_temperature = 0
first_layer_temperature = 0,0,0,0,0
max_fan_speed = 100
min_fan_speed = 35
min_print_speed = 15
slowdown_below_layer_time = 20
temperature = 0,0,0,0,0
[filament:TAZ_4_ABS]
bed_temperature = 0
bridge_fan_speed = 100
cooling = 1
disable_fan_first_layers = 1
extrusion_multiplier = 0.9,1,1,1,1
fan_always_on = 0
fan_below_layer_time = 8
filament_colour = #FFFFFF
filament_diameter = 3,2.89,2.89,2.89,2.89
first_layer_bed_temperature = 0
first_layer_temperature = 0,0,0,0,0
max_fan_speed = 100
min_fan_speed = 35
min_print_speed = 15
slowdown_below_layer_time = 20
temperature = 0,0,0,0,0
[filament:TAZ_ABS]
bed_temperature = 0
bridge_fan_speed = 100
cooling = 1
disable_fan_first_layers = 1
extrusion_multiplier = 0.9,1,1,1,1
fan_always_on = 0
fan_below_layer_time = 60
filament_colour = #FFFFFF
filament_diameter = 3,2.89,2.89,2.89,2.89
first_layer_bed_temperature = 0
first_layer_temperature = 0,0,0,0,0
max_fan_speed = 100
min_fan_speed = 35
min_print_speed = 15
slowdown_below_layer_time = 20
temperature = 0,0,0,0,0
[filament:TAZ_Ninjaflex]
bed_temperature = 0
bridge_fan_speed = 100
cooling = 1
disable_fan_first_layers = 1
extrusion_multiplier = 1,1,1,1,1
fan_always_on = 0
fan_below_layer_time = 60
filament_diameter = 2.89,2.89,2.89,2.89,2.89
first_layer_bed_temperature = 0
first_layer_temperature = 0,0,0,0,0
max_fan_speed = 100
min_fan_speed = 35
min_print_speed = 10
slowdown_below_layer_time = 20
temperature = 0,0,0,0,0
[presets]
filament = TAZ_4_ABS.ini
filament_1 = TAZ_Ninjaflex
print = TAZ_4.ini
printer = TAZ_4.ini
[print:AO-101]
avoid_crossing_perimeters = 0
bottom_solid_layers = 2
bridge_acceleration = 0
bridge_flow_ratio = 1
bridge_speed = 60
brim_width = 3
complete_objects = 0
default_acceleration = 0
dont_support_bridges = 0
external_fill_pattern = rectilinear
external_perimeter_speed = 100%
external_perimeters_first = 0
extra_perimeters = 1
extruder_clearance_height = 20
extruder_clearance_radius = 20
extrusion_width = 0
fill_angle = 45
fill_density = 25%
fill_pattern = rectilinear
first_layer_acceleration = 0
first_layer_extrusion_width = 150%
first_layer_height = 100%
first_layer_speed = 50%
gap_fill_speed = 40
gcode_comments = 0
infill_acceleration = 0
infill_every_layers = 1
infill_extruder = 1
infill_extrusion_width = 0
infill_first = 0
infill_only_where_needed = 0
infill_speed = 90
interface_shells = 0
layer_height = 0.3
min_skirt_length = 0
notes =
only_retract_when_crossing_perimeters = 0
ooze_prevention = 0
output_filename_format = [input_filename_base].gcode
overhangs = 1
perimeter_acceleration = 0
perimeter_extruder = 1
perimeter_extrusion_width = 0
perimeter_speed = 90
perimeters = 4
post_process =
raft_layers = 0
resolution = 0
seam_position = aligned
skirt_distance = 6
skirt_height = 1
skirts = 0
small_perimeter_speed = 40
solid_infill_below_area = 70
solid_infill_every_layers = 0
solid_infill_extrusion_width = 0
solid_infill_speed = 90
spiral_vase = 0
standby_temperature_delta = -5
support_material = 0
support_material_angle = 90
support_material_enforce_layers = 0
support_material_extruder = 1
support_material_extrusion_width = 0
support_material_interface_extruder = 1
support_material_interface_layers = 2
support_material_interface_spacing = 2
support_material_interface_speed = 100%
support_material_pattern = rectilinear
support_material_spacing = 2
support_material_speed = 60
support_material_threshold = 0
thin_walls = 1
threads = 2
top_infill_extrusion_width = 0
top_solid_infill_speed = 90
top_solid_layers = 4
travel_speed = 130
[print:Mini]
avoid_crossing_perimeters = 0
bottom_solid_layers = 2
bridge_acceleration = 1000
bridge_flow_ratio = 1
bridge_speed = 60
brim_width = 5
complete_objects = 0
default_acceleration = 2000
dont_support_bridges = 0
external_fill_pattern = rectilinear
external_perimeter_extrusion_width = 0
external_perimeter_speed = 70%
external_perimeters_first = 0
extra_perimeters = 1
extruder_clearance_height = 20
extruder_clearance_radius = 20
extrusion_width = 0.5
fill_angle = 45
fill_density = 30%
fill_pattern = rectilinear
first_layer_acceleration = 500
first_layer_extrusion_width = 200%
first_layer_height = 0.425
first_layer_speed = 30%
gap_fill_speed = 20
gcode_comments = 0
infill_acceleration = 2500
infill_every_layers = 1
infill_extruder = 1
infill_extrusion_width = 0.6
infill_first = 0
infill_only_where_needed = 0
infill_overlap = 15%
infill_speed = 60
interface_shells = 0
layer_height = 0.3
max_print_speed = 80
max_volumetric_speed = 0
min_skirt_length = 15
notes =
only_retract_when_crossing_perimeters = 1
ooze_prevention = 0
output_filename_format = [input_filename_base].gcode
overhangs = 1
perimeter_acceleration = 1000
perimeter_extruder = 1
perimeter_extrusion_width = 0.45
perimeter_speed = 40
perimeters = 4
post_process =
raft_layers = 0
resolution = 0
seam_position = aligned
skirt_distance = 5
skirt_height = 1
skirts = 2
small_perimeter_speed = 30
solid_infill_below_area = 70
solid_infill_every_layers = 0
solid_infill_extruder = 1
solid_infill_extrusion_width = 0.5
solid_infill_speed = 60
spiral_vase = 0
standby_temperature_delta = -5
support_material = 0
support_material_angle = 0
support_material_contact_distance = 0.2
support_material_enforce_layers = 0
support_material_extruder = 1
support_material_extrusion_width = 0.4
support_material_interface_extruder = 1
support_material_interface_layers = 3
support_material_interface_spacing = 0
support_material_interface_speed = 100%
support_material_pattern = pillars
support_material_spacing = 2.5
support_material_speed = 60
support_material_threshold = 0
thin_walls = 1
threads = 2
top_infill_extrusion_width = 0
top_solid_infill_speed = 50
top_solid_layers = 4
travel_speed = 175
xy_size_compensation = 0
[print:Mini_Ninja]
avoid_crossing_perimeters = 0
bottom_solid_layers = 2
bridge_acceleration = 1000
bridge_flow_ratio = 1
bridge_speed = 60
brim_width = 0
complete_objects = 0
default_acceleration = 2000
dont_support_bridges = 0
external_fill_pattern = rectilinear
external_perimeter_extrusion_width = 0
external_perimeter_speed = 70%
external_perimeters_first = 0
extra_perimeters = 1
extruder_clearance_height = 20
extruder_clearance_radius = 20
extrusion_width = 0.5
fill_angle = 45
fill_density = 30%
fill_pattern = rectilinear
first_layer_acceleration = 500
first_layer_extrusion_width = 200%
first_layer_height = 0.425
first_layer_speed = 30%
gap_fill_speed = 20
gcode_comments = 0
infill_acceleration = 2500
infill_every_layers = 1
infill_extruder = 1
infill_extrusion_width = 0.6
infill_first = 0
infill_only_where_needed = 0
infill_overlap = 15%
infill_speed = 60
interface_shells = 0
layer_height = 0.35
max_print_speed = 80
max_volumetric_speed = 0
min_skirt_length = 15
notes =
only_retract_when_crossing_perimeters = 1
ooze_prevention = 0
output_filename_format = [input_filename_base].gcode
overhangs = 1
perimeter_acceleration = 1000
perimeter_extruder = 1
perimeter_extrusion_width = 0.45
perimeter_speed = 40
perimeters = 4
post_process =
raft_layers = 0
resolution = 0
seam_position = aligned
skirt_distance = 5
skirt_height = 1
skirts = 2
small_perimeter_speed = 30
solid_infill_below_area = 70
solid_infill_every_layers = 0
solid_infill_extruder = 1
solid_infill_extrusion_width = 0.5
solid_infill_speed = 60
spiral_vase = 0
standby_temperature_delta = -5
support_material = 0
support_material_angle = 0
support_material_contact_distance = 0.2
support_material_enforce_layers = 0
support_material_extruder = 1
support_material_extrusion_width = 0.4
support_material_interface_extruder = 1
support_material_interface_layers = 3
support_material_interface_spacing = 0
support_material_interface_speed = 100%
support_material_pattern = pillars
support_material_spacing = 2.5
support_material_speed = 60
support_material_threshold = 0
thin_walls = 1
threads = 2
top_infill_extrusion_width = 0.3
top_solid_infill_speed = 50
top_solid_layers = 4
travel_speed = 175
xy_size_compensation = 0
[print:TAZ_0.3_0.27]
avoid_crossing_perimeters = 0
bottom_solid_layers = 2
bridge_acceleration = 700
bridge_flow_ratio = 1
bridge_speed = 20
brim_width = 5
complete_objects = 0
default_acceleration = 700
dont_support_bridges = 1
external_fill_pattern = rectilinear
external_perimeter_speed = 70%
external_perimeters_first = 0
extra_perimeters = 1
extruder_clearance_height = 20
extruder_clearance_radius = 20
extrusion_width = 0
fill_angle = 45
fill_density = 30%
fill_pattern = rectilinear
first_layer_acceleration = 500
first_layer_extrusion_width = 200%
first_layer_height = 0.3
first_layer_speed = 50%
gap_fill_speed = 60
gcode_comments = 0
infill_acceleration = 900
infill_every_layers = 1
infill_extruder = 1
infill_extrusion_width = 0
infill_first = 0
infill_only_where_needed = 0
infill_speed = 100
interface_shells = 0
layer_height = 0.27
min_skirt_length = 0
notes =
only_retract_when_crossing_perimeters = 1
ooze_prevention = 0
output_filename_format = [input_filename_base].gcode
overhangs = 1
perimeter_acceleration = 700
perimeter_extruder = 1
perimeter_extrusion_width = 0
perimeter_speed = 80
perimeters = 4
post_process =
raft_layers = 0
resolution = 0
seam_position = aligned
skirt_distance = 7
skirt_height = 1
skirts = 2
small_perimeter_speed = 36
solid_infill_below_area = 70
solid_infill_every_layers = 0
solid_infill_extrusion_width = 0
solid_infill_speed = 100
spiral_vase = 0
standby_temperature_delta = -5
support_material = 0
support_material_angle = 90
support_material_enforce_layers = 0
support_material_extruder = 1
support_material_extrusion_width = 0
support_material_interface_extruder = 1
support_material_interface_layers = 1
support_material_interface_spacing = 2
support_material_interface_speed = 100%
support_material_pattern = rectilinear
support_material_spacing = 2
support_material_speed = 60
support_material_threshold = 0
thin_walls = 1
threads = 2
top_infill_extrusion_width = 0
top_solid_infill_speed = 100
top_solid_layers = 4
travel_speed = 130
[print:TAZ_4]
avoid_crossing_perimeters = 0
bottom_solid_layers = 4
bridge_acceleration = 700
bridge_flow_ratio = 1
bridge_speed = 20
brim_width = 5
complete_objects = 0
default_acceleration = 1500
dont_support_bridges = 0
ensure_vertical_shell_thickness = 0
external_fill_pattern = rectilinear
external_perimeter_extrusion_width = 0
external_perimeter_speed = 70%
external_perimeters_first = 0
extra_perimeters = 1
extruder_clearance_height = 20
extruder_clearance_radius = 20
extrusion_width = 0.5
fill_angle = 45
fill_density = 20%
fill_pattern = rectilinear
first_layer_acceleration = 500
first_layer_extrusion_width = 200%
first_layer_height = 0.35
first_layer_speed = 70
gap_fill_speed = 60
gcode_comments = 0
infill_acceleration = 1500
infill_every_layers = 1
infill_extruder = 1
infill_extrusion_width = 0.6
infill_first = 0
infill_only_where_needed = 0
infill_overlap = 15%
infill_speed = 100
interface_shells = 0
layer_height = 0.3
max_print_speed = 80
max_volumetric_extrusion_rate_slope_negative = 0
max_volumetric_extrusion_rate_slope_positive = 0
max_volumetric_speed = 0
min_skirt_length = 0
notes =
only_retract_when_crossing_perimeters = 1
ooze_prevention = 0
output_filename_format = [input_filename_base].gcode
overhangs = 1
perimeter_acceleration = 1500
perimeter_extruder = 1
perimeter_extrusion_width = 0.45
perimeter_speed = 90
perimeters = 4
post_process =
print_settings_id =
raft_layers = 0
resolution = 0
seam_position = nearest
skirt_distance = 7
skirt_height = 1
skirts = 1
small_perimeter_speed = 36
solid_infill_below_area = 70
solid_infill_every_layers = 0
solid_infill_extruder = 1
solid_infill_extrusion_width = 0.5
solid_infill_speed = 120
spiral_vase = 0
standby_temperature_delta = -5
support_material = 1
support_material_angle = 90
support_material_buildplate_only = 0
support_material_contact_distance = 0.2
support_material_enforce_layers = 0
support_material_extruder = 1
support_material_extrusion_width = 0.4
support_material_interface_extruder = 1
support_material_interface_layers = 3
support_material_interface_spacing = 3
support_material_interface_speed = 100%
support_material_pattern = rectilinear
support_material_spacing = 4
support_material_speed = 60
support_material_threshold = 0
support_material_with_sheath = 1
thin_walls = 1
threads = 2
top_infill_extrusion_width = 0
top_solid_infill_speed = 90
top_solid_layers = 4
travel_speed = 130
xy_size_compensation = 0
[print:TAZ_FlexyDualie]
avoid_crossing_perimeters = 0
bottom_solid_layers = 2
bridge_acceleration = 700
bridge_flow_ratio = 1
bridge_speed = 20
brim_width = 5
complete_objects = 0
default_acceleration = 1500
dont_support_bridges = 0
ensure_vertical_shell_thickness = 0
external_fill_pattern = rectilinear
external_perimeter_extrusion_width = 0
external_perimeter_speed = 70%
external_perimeters_first = 0
extra_perimeters = 1
extruder_clearance_height = 20
extruder_clearance_radius = 20
extrusion_width = 0.5
fill_angle = 45
fill_density = 80%
fill_pattern = rectilinear
first_layer_acceleration = 500
first_layer_extrusion_width = 200%
first_layer_height = 0.35
first_layer_speed = 20
gap_fill_speed = 20
gcode_comments = 0
infill_acceleration = 1500
infill_every_layers = 1
infill_extruder = 2
infill_extrusion_width = 0.6
infill_first = 0
infill_only_where_needed = 0
infill_overlap = 15%
infill_speed = 20
interface_shells = 0
layer_height = 0.3
max_print_speed = 80
max_volumetric_extrusion_rate_slope_negative = 0
max_volumetric_extrusion_rate_slope_positive = 0
max_volumetric_speed = 0
min_skirt_length = 0
notes =
only_retract_when_crossing_perimeters = 1
ooze_prevention = 0
output_filename_format = [input_filename_base].gcode
overhangs = 1
perimeter_acceleration = 1500
perimeter_extruder = 2
perimeter_extrusion_width = 0.45
perimeter_speed = 20
perimeters = 6
post_process =
print_settings_id =
raft_layers = 0
resolution = 0
seam_position = random
skirt_distance = 7
skirt_height = 1
skirts = 2
small_perimeter_speed = 20
solid_infill_below_area = 70
solid_infill_every_layers = 0
solid_infill_extruder = 2
solid_infill_extrusion_width = 0.5
solid_infill_speed = 20
spiral_vase = 0
standby_temperature_delta = -5
support_material = 0
support_material_angle = 90
support_material_buildplate_only = 0
support_material_contact_distance = 0.2
support_material_enforce_layers = 0
support_material_extruder = 2
support_material_extrusion_width = 0
support_material_interface_extruder = 1
support_material_interface_layers = 3
support_material_interface_spacing = 3
support_material_interface_speed = 100%
support_material_pattern = rectilinear
support_material_spacing = 3
support_material_speed = 100
support_material_threshold = 0
support_material_with_sheath = 1
thin_walls = 1
threads = 2
top_infill_extrusion_width = 0
top_solid_infill_speed = 20
top_solid_layers = 4
travel_speed = 130
xy_size_compensation = 0
[printer:AO-101]
bed_shape = 0x0,190x0,190x200,0x200
end_gcode = M104 S0 ; turn off nozzle temperature\nM140 S0 ; turn off bed temperature\nG28 X0 ; home X axis\nM84 ; disable motors
extruder_offset = 0x0
gcode_flavor = reprap
layer_gcode =
nozzle_diameter = 0.5
retract_before_travel = 2
retract_layer_change = 1
retract_length = 1.2
retract_length_toolchange = 3
retract_lift = 0
retract_restart_extra = 0
retract_restart_extra_toolchange = 0
retract_speed = 25
start_gcode = G28 ; home all axes
toolchange_gcode =
use_firmware_retraction = 0
use_relative_e_distances = 0
wipe = 0
z_offset = 0
[printer:Mini]
bed_shape = 0x0,150x0,150x150,0x150
end_gcode = M400\nM104 S0 ; Hotend off\nM140 S0 ; heated bed heater off (if you have it)\nM107 ; fans off\nG92 E0 ; set extruder to 0\nG1 E-3 F300 ; retract a bit to relieve pressure\nG1 X5 Y5 Z156 F10000 ; move to cooling positioning\nM190 R80 ; wait for bed to cool\nM140 S0 ; turn off bed temp\nG1 X145 Y175 Z156 F1000 ; move to cooling positioning\nM84 ; steppers off\nG90 ; absolute positioning\n;{profile_string}
extruder_offset = 0x0
gcode_flavor = reprap
layer_gcode =
nozzle_diameter = 0.5
retract_before_travel = 2
retract_layer_change = 1
retract_length = 1
retract_length_toolchange = 10
retract_lift = 0.2
retract_restart_extra = 0
retract_restart_extra_toolchange = 0
retract_speed = 10
start_gcode = ;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density}\n;Print time: {print_time}\n;Filament used: {filament_amount}m {filament_weight}g\n;Filament cost: {filament_cost}\nG21 ; metric values\nG90 ; absolute positioning\nM82 ; set extruder to absolute mode\nM107 ; start with the fan off\nG92 E0 ; set extruder position to 0\nM140 S110 ; get bed heating up\nG28 ; home all\nM109 S150 ; set to cleaning temp and wait\nG1 Z150 E-30 F75 ; suck up XXmm of filament\nM109 S170 ; heat up rest of way\nG1 X45 Y174 F11520 ; move behind scraper\nG1 Z0 F1200 ; CRITICAL: set Z to height of top of scraper\nG1 X45 Y174 Z-.5 F4000 ; wiping ; plunge into wipe pad\nG1 X55 Y172 Z-.5 F4000 ; wiping\nG1 X45 Y174 Z0 F4000 ; wiping\nG1 X55 Y172 F4000 ; wiping\nG1 X45 Y174 F4000 ; wiping\nG1 X55 Y172 F4000 ; wiping\nG1 X45 Y174 F4000 ; wiping\nG1 X55 Y172 F4000 ; wiping\nG1 X60 Y174 F4000 ; wiping\nG1 X80 Y172 F4000 ; wiping\nG1 X60 Y174 F4000 ; wiping\nG1 X80 Y172 F4000 ; wiping\nG1 X60 Y174 F4000 ; wiping\nG1 X90 Y172 F4000 ; wiping\nG1 X80 Y174 F4000 ; wiping\nG1 X100 Y172 F4000 ; wiping\nG1 X80 Y174 F4000 ; wiping\nG1 X100 Y172 F4000 ; wiping\nG1 X80 Y174 F4000 ; wiping\nG1 X100 Y172 F4000 ; wiping\nG1 X110 Y174 F4000 ; wiping\nG1 X100 Y172 F4000 ; wiping\nG1 X110 Y174 F4000 ; wiping\nG1 X100 Y172 F4000 ; wiping\nG1 X110 Y174 F4000 ; wiping\nG1 X115 Y172 Z-0.5 F1000 ; wipe slower and bury noz in cleanish area\nG1 Z10 ; raise z\nG28 X0 Y0 ; home x and y\nM109 S170 ; set to probing temp\nM204 S300 ; set accel for probing\nG29 ; Probe\nM204 S2000 ; set accel back to normal\nG1 X5 Y15 Z10 F5000 ; get out the way\nM400 ; clear buffer\nG4 S1 ; pause\nM109 S240 ; set extruder temp and wait\nG4 S25 ; wait for bed to temp up\nG1 Z2 E0 F75 ; extrude filament back into nozzle\nM140 S110; get bed temping up during first layer
toolchange_gcode =
use_firmware_retraction = 0
use_relative_e_distances = 0
wipe = 0
z_offset = 0
[printer:Mini_Ninja]
bed_shape = 0x0,150x0,150x150,0x150
before_layer_gcode =
end_gcode = \nM400\nM104 S0 ; hotend off\nM140 S0 ; heated bed heater off (if you have it)\nM107 ; fans off\nG92 E5 ; set extruder to 5mm for retract on print end\nG1 X5 Y5 Z156 E0 F10000 ; move to cooling positioning\nM190 R50 ; wait for bed to cool\nM104 S0 ;\nG1 X145 Y175 Z156 F1000 ; move to cooling positioning\nM84 ; steppers off\nG90 ; absolute positioning\n;{profile_string}
extruder_offset = 0x0
gcode_flavor = reprap
layer_gcode =
nozzle_diameter = 0.6
octoprint_apikey =
octoprint_host =
pressure_advance = 0
retract_before_travel = 2
retract_layer_change = 1
retract_length = 1
retract_length_toolchange = 10
retract_lift = 0.2
retract_restart_extra = 0
retract_restart_extra_toolchange = 0
retract_speed = 10
start_gcode = ;This Gcode has been generated specifically for the LulzBot Mini\n;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density}\n;Filament Diameter: {filament_diameter}\n;Nozzle Size: {nozzle_size}\nG21 ; metric values\nG90 ; absolute positioning\nM82 ; set extruder to absolute mode\nM107 ; start with the fan off\nG92 E0 ; set extruder position to 0\nM140 S{print_bed_temperature}; get bed heating up\nG28 ; home all\nM109 S160 ; set to cleaning temp and wait\nG1 Z150 E-30 F75 ; suck up XXmm of filament\nM109 S170 ; heat up rest of way\nG1 X45 Y174 F11520 ; move behind scraper\nG1 Z0 F1200 ; CRITICAL: set Z to height of top of scraper\nG1 X45 Y174 Z-.5 F4000 ; wiping ; plunge into wipe pad\nG1 X55 Y172 Z-.5 F4000 ; wiping\nG1 X45 Y174 Z0 F4000 ; wiping\nG1 X55 Y172 F4000 ; wiping\nG1 X45 Y174 F4000 ; wiping\nG1 X55 Y172 F4000 ; wiping\nG1 X45 Y174 F4000 ; wiping\nG1 X55 Y172 F4000 ; wiping\nG1 X60 Y174 F4000 ; wiping\nG1 X80 Y172 F4000 ; wiping\nG1 X60 Y174 F4000 ; wiping\nG1 X80 Y172 F4000 ; wiping\nG1 X60 Y174 F4000 ; wiping\nG1 X90 Y172 F4000 ; wiping\nG1 X80 Y174 F4000 ; wiping\nG1 X100 Y172 F4000 ; wiping\nG1 X80 Y174 F4000 ; wiping\nG1 X100 Y172 F4000 ; wiping\nG1 X80 Y174 F4000 ; wiping\nG1 X100 Y172 F4000 ; wiping\nG1 X110 Y174 F4000 ; wiping\nG1 X100 Y172 F4000 ; wiping\nG1 X110 Y174 F4000 ; wiping\nG1 X100 Y172 F4000 ; wiping\nG1 X110 Y174 F4000 ; wiping\nG1 X115 Y172 Z-0.5 F1000 ; wipe slower and bury noz in cleanish area\nG1 Z10 ; raise z\nG28 X0 Y0 ; home x and y\nM109 S180 ; set to probing temp\nM204 S300 ; Set probing acceleration\nG29 ; Probe\nM204 S2000 ; Restore standard acceleration\nG1 X5 Y15 Z10 F5000 ; get out the way\nG4 S1 ; pause\nM400 ; clear buffer\nM109 S225 ; set extruder temp and wait\nG4 S15 ; wait for bed to temp up\nG1 Z2 E0 F75 ; extrude filament back into nozzle\nM140 S40; get bed temping up during first layer
toolchange_gcode =
use_firmware_retraction = 0
use_relative_e_distances = 0
use_volumetric_e = 0
wipe = 0
z_offset = 0
[printer:Mini_TG]
bed_shape = 0x0,150x0,150x150,0x150
end_gcode = M400\nM104 S0 ; Hotend off\nM140 S0 ; heated bed heater off (if you have it)\nM107 ; fans off\nG92 E0 ; set extruder to 0\nG1 E-3 F300 ; retract a bit to relieve pressure\nG1 X5 Y5 Z156 F10000 ; move to cooling positioning\nM190 R80 ; wait for bed to cool\nM140 S0 ; turn off bed temp\nG1 X145 Y175 Z156 F1000 ; move to cooling positioning\nM84 ; steppers off\nG90 ; absolute positioning\n;{profile_string}
extruder_offset = 0x0
gcode_flavor = reprap
layer_gcode =
nozzle_diameter = 0.5
retract_before_travel = 2
retract_layer_change = 1
retract_length = 1
retract_length_toolchange = 10
retract_lift = 0.2
retract_restart_extra = 0
retract_restart_extra_toolchange = 0
retract_speed = 10
start_gcode = ;Basic settings: Layer height: {layer_height} Walls: {wall_thickness} Fill: {fill_density}\n;Print time: {print_time}\n;Filament used: {filament_amount}m {filament_weight}g\n;Filament cost: {filament_cost}\nG21 ; metric values\nG90 ; absolute positioning\nM82 ; set extruder to absolute mode\nM107 ; start with the fan off\nG92 E0 ; set extruder position to 0\nM140 S70 ; get bed heating up\nG28 ; home all\nM109 S150 ; set to cleaning temp and wait\nG1 Z150 E-30 F75 ; suck up XXmm of filament\nM109 S170 ; heat up rest of way\nG1 X45 Y174 F11520 ; move behind scraper\nG1 Z0 F1200 ; CRITICAL: set Z to height of top of scraper\nG1 X45 Y174 Z-.5 F4000 ; wiping ; plunge into wipe pad\nG1 X55 Y172 Z-.5 F4000 ; wiping\nG1 X45 Y174 Z0 F4000 ; wiping\nG1 X55 Y172 F4000 ; wiping\nG1 X45 Y174 F4000 ; wiping\nG1 X55 Y172 F4000 ; wiping\nG1 X45 Y174 F4000 ; wiping\nG1 X55 Y172 F4000 ; wiping\nG1 X60 Y174 F4000 ; wiping\nG1 X80 Y172 F4000 ; wiping\nG1 X60 Y174 F4000 ; wiping\nG1 X80 Y172 F4000 ; wiping\nG1 X60 Y174 F4000 ; wiping\nG1 X90 Y172 F4000 ; wiping\nG1 X80 Y174 F4000 ; wiping\nG1 X100 Y172 F4000 ; wiping\nG1 X80 Y174 F4000 ; wiping\nG1 X100 Y172 F4000 ; wiping\nG1 X80 Y174 F4000 ; wiping\nG1 X100 Y172 F4000 ; wiping\nG1 X110 Y174 F4000 ; wiping\nG1 X100 Y172 F4000 ; wiping\nG1 X110 Y174 F4000 ; wiping\nG1 X100 Y172 F4000 ; wiping\nG1 X110 Y174 F4000 ; wiping\nG1 X115 Y172 Z-0.5 F1000 ; wipe slower and bury noz in cleanish area\nG1 Z10 ; raise z\nG28 X0 Y0 ; home x and y\nM109 S170 ; set to probing temp\nM204 S300 ; set accel for probing\nG29 ; Probe\nM204 S2000 ; set accel back to normal\nG1 X5 Y15 Z10 F5000 ; get out the way\nM400 ; clear buffer\nG4 S1 ; pause\nM109 S220 ; set extruder temp and wait\nG4 S25 ; wait for bed to temp up\nG1 Z2 E0 F75 ; extrude filament back into nozzle\nM140 S110; get bed temping up during first layer
toolchange_gcode =
use_firmware_retraction = 0
use_relative_e_distances = 0
wipe = 0
z_offset = 0
[printer:TAZ_0.3_0.27]
bed_shape = 0x0,300x0,300x300,0x300
end_gcode = T0 ; Select 1st extruder\nM104 S0 ; turn off E0 nozzle temperature\nT1 ; Select 2nd extruder\nM104 S0 ; Turn off E1 nozzle temperature\nM140 S0 ; Turn off bed temp\nG28 X0 ; home X axis\nM84 ; disable motors
extruder_offset = 0x0
gcode_flavor = reprap
layer_gcode =
nozzle_diameter = 0.35
retract_before_travel = 2
retract_layer_change = 1
retract_length = 2.5
retract_length_toolchange = 20
retract_lift = 0
retract_restart_extra = 0
retract_restart_extra_toolchange = 0.1
retract_speed = 20
start_gcode = G28 ; home all axes\nG1 Z5 F5000 ; lift nozzle
toolchange_gcode =
use_firmware_retraction = 0
use_relative_e_distances = 0
wipe = 0
z_offset = 0
[printer:TAZ_4]
bed_shape = 0x0,275x0,275x295,0x295
before_layer_gcode =
end_gcode = T0 ; Select 1st extruder\nM104 S0 ; turn off E0 nozzle temperature\nM140 S0 ; Turn off bed temp\nG28 X0 ; home X axis\nM84 ; disable motors
extruder_offset = 0x0
gcode_flavor = reprap
layer_gcode =
nozzle_diameter = 0.5
octoprint_apikey =
octoprint_host =
pressure_advance = 0
retract_before_travel = 2
retract_layer_change = 1
retract_length = 2.5
retract_length_toolchange = 20
retract_lift = 0
retract_restart_extra = 0
retract_restart_extra_toolchange = 0.1
retract_speed = 20
start_gcode = G28 ; home all axes\nG1 Z5 F5000 ; lift nozzle
toolchange_gcode =
use_firmware_retraction = 0
use_relative_e_distances = 0
use_volumetric_e = 0
wipe = 0
z_offset = 0
[printer:TAZ_6]
bed_shape = 0x0,275x0,275x275,0x275
before_layer_gcode =
end_gcode = ;\nM400 ; wait for moves to finish\nM104 S0 ; hotend off\nM107 ; fans off\nG91 ; relative positioning\nG1 E-1 F300 ; retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+20 E-5 X-20 Y-20 F3000 ; move Z up a bit and retract filament even more\nM117 Cooling please wait ; progress indicator message\nG90 ; absolute positioning\nG1 Y0 F3000 ; move to cooling position\nM190 S50 ; set bed to cool off\nG1 Y280 F3000 ; present finished print\nM140 S0\nM84 ; steppers off\nG90 ; absolute positioning\nM117 Print complete ; progress indicator message\n;{profile_string}
extruder_offset = 0x0
gcode_flavor = reprap
layer_gcode =
nozzle_diameter = 0.5
octoprint_apikey =
octoprint_host =
pressure_advance = 0
retract_before_travel = 2
retract_layer_change = 1
retract_length = 2.5
retract_length_toolchange = 20
retract_lift = 0
retract_restart_extra = 0
retract_restart_extra_toolchange = 0.1
retract_speed = 20
start_gcode = ;This profile is designed specifically for LulzBot TAZ 6 3D Printer\n;Basic slice data:\n;Sliced at: {day} {date} {time}\n;Layer height: {layer_height}\n;Walls: {wall_thickness}\n;Fill: {fill_density}\n;Estimated Print time: {print_time}\n;Filament used: {filament_amount}m {filament_weight}g\n;Filament cost: {filament_cost}\nG26 ; clear potential 'probe fail' condition\nG21 ; set units to Millimetres\nM107 ; disable fans\nG90 ; absolute positioning\nM82 ; set extruder to absolute mode\nG92 E0 ; set extruder position to 0\nM140 S110; get bed heating up\nG28 XY ; home X and Y\nG1 X-19 Y258 F1000 ; move to safe homing position\nM109 S160 ; soften filament for z homing\nG28 Z ; home Z\nM104 S150 ; wipe temp\nG1 E-30 F100 ; suck up XXmm of filament\nG1 X-15 Y100 F3000 ; move above wiper pad\nG1 Z1 ; push nozzle into wiper\nG1 X-17 Y95 F1000 ; slow wipe\nG1 X-17 Y90 F1000 ; slow wipe\nG1 X-17 Y85 F1000 ; slow wipe\nG1 X-15 Y90 F1000 ; slow wipe\nG1 X-17 Y80 F1000 ; slow wipe\nG1 X-15 Y95 F1000 ; slow wipe\nG1 X-17 Y75 F2000 ; fast wipe\nG1 X-15 Y65 F2000 ; fast wipe\nG1 X-17 Y70 F2000 ; fast wipe\nG1 X-15 Y60 F2000 ; fast wipe\nG1 X-17 Y55 F2000 ; fast wipe\nG1 X-15 Y50 F2000 ; fast wipe\nG1 X-17 Y40 F2000 ; fast wipe\nG1 X-15 Y45 F2000 ; fast wipe\nG1 X-17 Y35 F2000 ; fast wipe\nG1 X-15 Y40 F2000 ; fast wipe\nG1 X-17 Y70 F2000 ; fast wipe\nG1 X-15 Y30 Z2 F2000 ; fast wipe\nG1 X-17 Y35 F2000 ; fast wipe\nG1 X-15 Y25 F2000 ; fast wipe\nG1 X-17 Y30 F2000 ; fast wipe\nG1 X-15 Y25 Z1.5 F1000 ; slow wipe\nG1 X-17 Y23 F1000 ; slow wipe\nG1 Z10 ; raise extruder\nM109 S150 ; heat to probe temp\nG1 X-9 Y-9 ; move above probe\nM204 S100 ; set accel for probing\nG29 ; probe sequence (for auto-leveling)\nM204 S500 ; set accel back to normal\nG1 X0 Y0 Z15 F5000 ; get out the way\nM400 ; clear buffer\nG4 S1 ; pause\nM117 Heating... ; LCD status message\nM140 S110; get bed heating up\nM109 S245 ; set extruder temp and wait\nM190 S110; get bed temping up during first layer\nG1 Z2 E0 F75 ; extrude filament back into nozzle\nM117 TAZ Printing... ; LCD status message
toolchange_gcode =
use_firmware_retraction = 0
use_relative_e_distances = 0
use_volumetric_e = 0
wipe = 0
z_offset = 0
[printer:TAZ_6_PLA]
bed_shape = 0x0,275x0,275x275,0x275
before_layer_gcode =
end_gcode = ;\nM400 ; wait for moves to finish\nM104 S0 ; hotend off\nM107 ; fans off\nG91 ; relative positioning\nG1 E-1 F300 ; retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+20 E-5 X-20 Y-20 F3000 ; move Z up a bit and retract filament even more\nM117 Cooling please wait ; progress indicator message\nG90 ; absolute positioning\nG1 Y0 F3000 ; move to cooling position\nM190 S50 ; set bed to cool off\nG1 Y280 F3000 ; present finished print\nM140 S0\nM84 ; steppers off\nG90 ; absolute positioning\nM117 Print complete ; progress indicator message\n;{profile_string}
extruder_offset = 0x0
gcode_flavor = reprap
layer_gcode =
nozzle_diameter = 0.5
octoprint_apikey =
octoprint_host =
pressure_advance = 0
printer_settings_id =
retract_before_travel = 2
retract_layer_change = 1
retract_length = 2.5
retract_length_toolchange = 20
retract_lift = 0
retract_lift_above = 0
retract_lift_below = 0
retract_restart_extra = 0
retract_restart_extra_toolchange = 0.1
retract_speed = 20
serial_port =
serial_speed = 250000
start_gcode = ;This profile is designed specifically for LulzBot TAZ 6 3D Printer\n;Basic slice data:\n;Sliced at: {day} {date} {time}\n;Layer height: {layer_height}\n;Walls: {wall_thickness}\n;Fill: {fill_density}\n;Estimated Print time: {print_time}\n;Filament used: {filament_amount}m {filament_weight}g\n;Filament cost: {filament_cost}\nG26 ; clear potential 'probe fail' condition\nG21 ; set units to Millimetres\nM107 ; disable fans\nG90 ; absolute positioning\nM82 ; set extruder to absolute mode\nG92 E0 ; set extruder position to 0\nM140 S60; get bed heating up\nG28 XY ; home X and Y\nG1 X-19 Y258 F1000 ; move to safe homing position\nM109 S160 ; soften filament for z homing\nG28 Z ; home Z\nM104 S150 ; wipe temp\nG1 E-30 F100 ; suck up XXmm of filament\nG1 X-15 Y100 F3000 ; move above wiper pad\nG1 Z1 ; push nozzle into wiper\nG1 X-17 Y95 F1000 ; slow wipe\nG1 X-17 Y90 F1000 ; slow wipe\nG1 X-17 Y85 F1000 ; slow wipe\nG1 X-15 Y90 F1000 ; slow wipe\nG1 X-17 Y80 F1000 ; slow wipe\nG1 X-15 Y95 F1000 ; slow wipe\nG1 X-17 Y75 F2000 ; fast wipe\nG1 X-15 Y65 F2000 ; fast wipe\nG1 X-17 Y70 F2000 ; fast wipe\nG1 X-15 Y60 F2000 ; fast wipe\nG1 X-17 Y55 F2000 ; fast wipe\nG1 X-15 Y50 F2000 ; fast wipe\nG1 X-17 Y40 F2000 ; fast wipe\nG1 X-15 Y45 F2000 ; fast wipe\nG1 X-17 Y35 F2000 ; fast wipe\nG1 X-15 Y40 F2000 ; fast wipe\nG1 X-17 Y70 F2000 ; fast wipe\nG1 X-15 Y30 Z2 F2000 ; fast wipe\nG1 X-17 Y35 F2000 ; fast wipe\nG1 X-15 Y25 F2000 ; fast wipe\nG1 X-17 Y30 F2000 ; fast wipe\nG1 X-15 Y25 Z1.5 F1000 ; slow wipe\nG1 X-17 Y23 F1000 ; slow wipe\nG1 Z10 ; raise extruder\nM109 S150 ; heat to probe temp\nG1 X-9 Y-9 ; move above probe\nM204 S100 ; set accel for probing\nG29 ; probe sequence (for auto-leveling)\nM204 S500 ; set accel back to normal\nG1 X0 Y0 Z15 F5000 ; get out the way\nM400 ; clear buffer\nG4 S1 ; pause\nM117 Heating... ; LCD status message\nM140 S60; get bed heating up\nM109 S210 ; set extruder temp and wait\nM190 S60; get bed temping up during first layer\nG1 Z2 E0 F75 ; extrude filament back into nozzle\nM117 TAZ Printing... ; LCD status message
toolchange_gcode =
use_firmware_retraction = 0
use_relative_e_distances = 0
use_volumetric_e = 0
wipe = 0
z_offset = 0
[printer:TAZ_FlexyDualie]
bed_shape = 0x0,300x0,300x300,0x300
before_layer_gcode =
end_gcode = T0 ; Select 1st extruder\nM104 S0 ; turn off E0 nozzle temperature\nT1 ; Select 2nd extruder\nM104 S0 ; Turn off E1 nozzle temperature\nM140 S0 ; Turn off bed temp\nG28 X0 ; home X axis\nM84 ; disable motors
extruder_offset = 0x0,0x-50
gcode_flavor = reprap
layer_gcode =
nozzle_diameter = 0.6,0.6
octoprint_apikey =
octoprint_host =
pressure_advance = 0
printer_settings_id =
retract_before_travel = 2,2
retract_layer_change = 1,1
retract_length = 2.5,2.5
retract_length_toolchange = 20,45
retract_lift = 0,0
retract_lift_above = 0,0
retract_lift_below = 0,0
retract_restart_extra = 0,0
retract_restart_extra_toolchange = 0.1,10
retract_speed = 20,20
serial_port =
serial_speed = 250000
start_gcode = G28 ; home all axes\nG1 Z5 F5000 ; lift nozzle
toolchange_gcode =
use_firmware_retraction = 0
use_relative_e_distances = 0
use_volumetric_e = 0
wipe = 0,0
z_offset = 0
[settings]
autocenter =
mode = expert
[simple]
avoid_crossing_perimeters = 1
bed_shape = 0x0,190x0,190x200,0x200
bed_temperature = 0
bottom_solid_layers = 4
bridge_acceleration = 0
bridge_fan_speed = 100
bridge_flow_ratio = 1
bridge_speed = 60
brim_width = 5
complete_objects = 0
cooling = 1
default_acceleration = 0
disable_fan_first_layers = 1
duplicate_distance = 6
end_gcode = M104 S0 ; turn off nozzle temperature\nM140 S0 ; turn off bed temperature\nG28 X0 ; home X axis\nM84 ; disable motors
external_fill_pattern = rectilinear
external_perimeter_speed = 70%
external_perimeters_first = 0
extra_perimeters = 1
extruder_clearance_height = 20
extruder_clearance_radius = 20
extruder_offset = 0x0
extrusion_axis = E
extrusion_multiplier = 0.95
extrusion_width = 0
fan_always_on = 0
fan_below_layer_time = 60
filament_diameter = 3
fill_angle = 45
fill_density = 80%
fill_pattern = rectilinear
first_layer_acceleration = 0
first_layer_bed_temperature = 0
first_layer_extrusion_width = 200%
first_layer_height = 0.5
first_layer_speed = 30%
first_layer_temperature = 0
gap_fill_speed = 20
gcode_arcs = 0
gcode_comments = 0
gcode_flavor = reprap
infill_acceleration = 0
infill_every_layers = 10
infill_extruder = 1
infill_extrusion_width = 0
infill_first = 0
infill_only_where_needed = 0
infill_speed = 120
layer_gcode =
layer_height = 0.3
max_fan_speed = 100
min_fan_speed = 35
min_print_speed = 10
min_skirt_length = 0
notes =
nozzle_diameter = 0.5
only_retract_when_crossing_perimeters = 1
ooze_prevention = 0
output_filename_format = [input_filename_base].gcode
overhangs = 1
perimeter_acceleration = 0
perimeter_extruder = 1
perimeter_extrusion_width = 0
perimeter_speed = 90
perimeters = 4
post_process =
raft_layers = 0
resolution = 0
retract_before_travel = 2
retract_layer_change = 1
retract_length = 1.2
retract_length_toolchange = 10
retract_lift = 0
retract_restart_extra = 0
retract_restart_extra_toolchange = 0
retract_speed = 30
skirt_distance = 6
skirt_height = 1
skirts = 1
slowdown_below_layer_time = 30
small_perimeter_speed = 30
solid_infill_below_area = 70
solid_infill_every_layers = 0
solid_infill_extrusion_width = 0
solid_infill_speed = 60
spiral_vase = 0
standby_temperature_delta = -5
start_gcode = G28 ; home all axes
support_material = 1
support_material_angle = 0
support_material_enforce_layers = 0
support_material_extruder = 1
support_material_extrusion_width = 0
support_material_interface_extruder = 1
support_material_interface_layers = 3
support_material_interface_spacing = 0
support_material_pattern = honeycomb
support_material_spacing = 3
support_material_speed = 60
support_material_threshold = 0
temperature = 0
thin_walls = 1
threads = 2
toolchange_gcode =
top_infill_extrusion_width = 0
top_solid_infill_speed = 50
top_solid_layers = 5
travel_speed = 130
use_firmware_retraction = 0
use_relative_e_distances = 0
wipe = 0
z_offset = 0