chiark / gitweb /
cc68695c22b0bc2380fc1cc5f0ffcfbfbf26bb97
[cura.git] / Cura / util / settings / lulzbotTAZ4.py
1 hips_low_settings = [('fan_full_height', '1'),
2                                          ('fan_speed', '25'),
3                                          ('fan_speed_max', '30')]
4 hips_normal_settings = [('skirt_minimal_length', '250'),
5                                                 ('fan_full_height', '0.35'),
6                                                 ('fan_speed', '50'),
7                                                 ('fan_speed_max', '50')]
8 hips_high_settings = [('fan_full_height', '0.56'),
9                                           ('fan_speed', '50'),
10                                           ('fan_speed_max', '60'),
11                                           ('cool_min_feedrate', '8')]
12
13 abs_low_settings = [('fan_full_height', '5'),
14                                         ('fan_speed', '25'),
15                                         ('fan_speed_max', '30')]
16 abs_normal_settings = [('fan_speed', '25'),
17                                            ('fan_speed_max', '25'),
18                                            ('fill_overlap', '5')]
19 abs_high_settings = [('retraction_hop', '0.1'),
20                                          ('fan_full_height', '5'),
21                                          ('fan_speed', '40'),
22                                          ('fan_speed_max', '75')]
23
24
25 pla_low_settings = [('skirt_minimal_length', '250'),
26                                         ('fan_full_height', '1'),
27                                         ('fan_speed', '75'),
28                                         ('cool_min_feedrate', '15'),
29                                         ('fill_overlap', '0')]
30 pla_normal_settings = [('retraction_hop', '0.1'),
31                                            ('skirt_minimal_length', '250'),
32                                            ('fan_full_height', '1'),
33                                            ('fan_speed', '75'),
34                                            ('cool_min_feedrate', '15')]
35 pla_high_settings = [('skirt_minimal_length', '0'),
36                                          ('fan_full_height', '0.28'),
37                                          ('fill_overlap', '10')]
38
39 # LulzBot TAZ 4 slice settings for use with the simple slice selection.
40 lulzbot_taz4_settings = [{'Ini': 'taz4'},
41                                                  {'Material': '1_hips', 'Profile': '1_low',
42                                                   'Settings': hips_low_settings},
43                                                  {'Material': '1_hips', 'Profile': '2_normal',
44                                                   'Settings': hips_normal_settings},
45                                                  {'Material': '1_hips', 'Profile': '3_high',
46                                                   'Settings': hips_high_settings},
47
48                                                  {'Material': '2_abs', 'Profile': '1_low',
49                                                   'Settings': abs_low_settings},
50                                                  {'Material': '2_abs', 'Profile': '2_normal',
51                                                   'Settings': abs_normal_settings},
52                                                  {'Material': '2_abs', 'Profile': '3_high',
53                                                   'Settings': abs_high_settings},
54
55                                                  {'Material': '3_pla', 'Profile': '1_low',
56                                                   'Settings': pla_low_settings},
57                                                  {'Material': '3_pla', 'Profile': '2_normal',
58                                                   'Settings': pla_normal_settings},
59                                                  {'Material': '3_pla', 'Profile': '3_high',
60                                                   'Settings': pla_high_settings}]