diff --git a/resources/definitions/fabxpro.def.json b/resources/definitions/fabxpro.def.json new file mode 100644 index 0000000000..b70cc3b029 --- /dev/null +++ b/resources/definitions/fabxpro.def.json @@ -0,0 +1,58 @@ +{ + "version": 2, + "name": "FabX Pro", + "inherits": "fdmprinter", + "metadata": { + "visible": true, + "author": "FabX", + "manufacturer": "FabX", + "file_formats": "text/x-gcode", + "platform": "fabxpro_platform.STL", + "has_materials": true, + "has_machine_quality": true, + "machine_extruder_trains": + { + "0": "fabxpro_extruder_0" + } + }, + + "overrides": { + "machine_name": { "default_value": "FabX Pro" }, + "machine_width": { + "default_value": 170 + }, + "machine_height": { + "default_value": 170 + }, + "machine_depth": { + "default_value": 170 + }, + "machine_center_is_zero": { + "default_value": false + }, + "machine_heated_bed": { + "default_value": true + }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [ -75, 35 ], + [ -75, -18 ], + [ 18, 35 ], + [ 18, -18 ] + ] + }, + "gantry_height": { + "value": "55" + }, + "machine_gcode_flavor": { + "default_value": "RepRap (Marlin/Sprinter)" + }, + "machine_start_gcode": { + "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E3 ;extrude 3 mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." + }, + "machine_end_gcode": { + "value": "'M104 S0 ;extruder heater off' + ('\\nM140 S0 ;heated bed heater off' if machine_heated_bed else '') + '\\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'" + } + } +} diff --git a/resources/extruders/fabxpro_extruder_0.def.json b/resources/extruders/fabxpro_extruder_0.def.json new file mode 100644 index 0000000000..761aebe287 --- /dev/null +++ b/resources/extruders/fabxpro_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": { + "machine": "fabxpro", + "position": "0" + }, + + "overrides": { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} diff --git a/resources/meshes/fabxpro_platform.STL b/resources/meshes/fabxpro_platform.STL new file mode 100644 index 0000000000..f0fd3a2a80 Binary files /dev/null and b/resources/meshes/fabxpro_platform.STL differ diff --git a/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg new file mode 100644 index 0000000000..229e3ba587 --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg @@ -0,0 +1,36 @@ +[general] +version = 4 +name = Draft +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Draft +weight = -2 +material = redd_abs +global_quality = True + + +[values] +layer_height = 0.3 +layer_height_0 = 0.35 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 diff --git a/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg new file mode 100644 index 0000000000..298a8f6eb7 --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Fine +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Fine +weight = -2 +material = redd_abs +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.15 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 diff --git a/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg new file mode 100644 index 0000000000..6ee74f26e4 --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Normal +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Normal +weight = -2 +material = redd_abs +global_quality = True + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 diff --git a/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg new file mode 100644 index 0000000000..ef5bfe1ab8 --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg @@ -0,0 +1,36 @@ +[general] +version = 4 +name = Draft +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Draft +weight = -2 +material = redd_asa +global_quality = True + + +[values] +layer_height = 0.3 +layer_height_0 = 0.35 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 diff --git a/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg new file mode 100644 index 0000000000..9fb8243fba --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg @@ -0,0 +1,36 @@ +[general] +version = 4 +name = Fine +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Fine +weight = -2 +material = redd_asa +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.15 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 + diff --git a/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg new file mode 100644 index 0000000000..3c4da49bc9 --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Normal +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Normal +weight = -2 +material = redd_asa +global_quality = True + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 \ No newline at end of file diff --git a/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg new file mode 100644 index 0000000000..c2831c8bd4 --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg @@ -0,0 +1,36 @@ +[general] +version = 4 +name = Draft +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Draft +weight = -2 +material = redd_hips +global_quality = True + + +[values] +layer_height = 0.3 +layer_height_0 = 0.35 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 diff --git a/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg new file mode 100644 index 0000000000..fd06f2d051 --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg @@ -0,0 +1,36 @@ +[general] +version = 4 +name = Fine +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Fine +weight = -2 +material = redd_hips +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.15 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 + diff --git a/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg new file mode 100644 index 0000000000..b961438594 --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Normal +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Normal +weight = -2 +material = redd_hips +global_quality = True + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 \ No newline at end of file diff --git a/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg new file mode 100644 index 0000000000..ccc8858ed6 --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg @@ -0,0 +1,36 @@ +[general] +version = 4 +name = Draft +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Draft +weight = -2 +material = redd_nylon +global_quality = True + + +[values] +layer_height = 0.3 +layer_height_0 = 0.35 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 diff --git a/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg new file mode 100644 index 0000000000..34df2f3228 --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg @@ -0,0 +1,36 @@ +[general] +version = 4 +name = Fine +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Fine +weight = -2 +material = redd_nylon +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.15 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 + diff --git a/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg new file mode 100644 index 0000000000..b34c6407ad --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Normal +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Normal +weight = -2 +material = redd_nylon +global_quality = True + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 \ No newline at end of file diff --git a/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg new file mode 100644 index 0000000000..243a01924b --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg @@ -0,0 +1,36 @@ +[general] +version = 4 +name = Draft +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Draft +weight = -2 +material = redd_petg +global_quality = True + + +[values] +layer_height = 0.3 +layer_height_0 = 0.35 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 diff --git a/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg new file mode 100644 index 0000000000..4c3329dfba --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg @@ -0,0 +1,36 @@ +[general] +version = 4 +name = Fine +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Fine +weight = -2 +material = redd_petg +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.15 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 + diff --git a/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg new file mode 100644 index 0000000000..251dafc125 --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Normal +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Normal +weight = -2 +material = redd_petg +global_quality = True + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 \ No newline at end of file diff --git a/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg new file mode 100644 index 0000000000..c8ef3215ba --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Draft +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Draft +weight = -2 +material = redd_pla +global_quality = True + +[values] +layer_height = 0.3 +layer_height_0 = 0.35 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = skirt +cool_fan_enabled = true +cool_fan_speed = 100 +cool_fan_full_at_height = 0.6 +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 diff --git a/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg new file mode 100644 index 0000000000..8e2a07bf4b --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Fine +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Fine +weight = -2 +material = redd_pla +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.15 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = skirt +cool_fan_enabled = true +cool_fan_speed = 100 +cool_fan_full_at_height = 0.6 +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 diff --git a/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg new file mode 100644 index 0000000000..2f5228ddd1 --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg @@ -0,0 +1,31 @@ +[general] +version = 4 +name = Normal +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Normal +weight = -2 +material = redd_pla +global_quality = True + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 55 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = skirt +cool_fan_enabled = true +cool_fan_speed = 100 +cool_fan_full_at_height = 0.6 +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 diff --git a/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg new file mode 100644 index 0000000000..2e2a3b6830 --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg @@ -0,0 +1,36 @@ +[general] +version = 4 +name = Draft +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Draft +weight = -2 +material = redd_tpe +global_quality = True + + +[values] +layer_height = 0.3 +layer_height_0 = 0.35 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 35 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 diff --git a/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg new file mode 100644 index 0000000000..bd4821762a --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg @@ -0,0 +1,36 @@ +[general] +version = 4 +name = Fine +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Fine +weight = -2 +material = redd_tpe +global_quality = True + +[values] +layer_height = 0.1 +layer_height_0 = 0.15 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 35 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 + diff --git a/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg new file mode 100644 index 0000000000..dcae187831 --- /dev/null +++ b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg @@ -0,0 +1,35 @@ +[general] +version = 4 +name = Normal +definition = fabxpro + +[metadata] +setting_version = 11 +type = quality +quality_type = Normal +weight = -2 +material = redd_tpe +global_quality = True + +[values] +layer_height = 0.2 +layer_height_0 = 0.3 +initial_layer_line_width_factor = 150 +infill_before_walls = False +speed_print = 35 +speed_travel = 70 +retraction_amount = 1 +retraction_speed = 40 +adhesion_type = raft +raft_margin = 5 +raft_airgap = 0.35 +raft_surface_layers = 1 +raft_surface_thickness = 0.1 +raft_surface_line_spacing = 0.6 +raft_base_thickness = 0.6 +cool_fan_enabled = False +support_enable = True +support_pattern = lines +support_infill_rate = 15 +support_z_distance = 0.15 +support_xy_distance = 0.85 \ No newline at end of file