diff --git a/resources/definitions/blocks_base.def.json b/resources/definitions/blocks_base.def.json new file mode 100644 index 0000000000..2d996117f5 --- /dev/null +++ b/resources/definitions/blocks_base.def.json @@ -0,0 +1,117 @@ +{ + "version": 2, + "name": "Blocks Base Printer", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "Blocks Dev Team", + "manufacturer": "Blocks", + "file_formats": "text/x-gcode", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "0.4mm Nozzle", + "variants_name": "Nozzle Size" + }, + "overrides": + { + "acceleration_print": { "value": 500 }, + "acceleration_travel": { "value": 500 }, + "acceleration_travel_layer_0": { "value": "acceleration_travel" }, + "adaptive_layer_height_variation": { "value": 0.04 }, + "adaptive_layer_height_variation_step": { "value": 0.04 }, + "adhesion_type": { "value": "'skirt'" }, + "alternate_extra_perimeter": { "default_value": true }, + "bottom_layers": { "value": "math.ceil(round(bottom_thickness / resolveOrValue('layer_height'), 4))" }, + "brim_replaces_support": { "value": false }, + "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" }, + "cool_min_layer_time": { "value": 10 }, + "infill_before_walls": { "value": false }, + "infill_enable_travel_optimization": { "default_value": true }, + "infill_overlap": { "value": 30.0 }, + "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" }, + "infill_wipe_dist": { "value": 0.0 }, + "jerk_print": { "value": 8 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "machine_acceleration": { "value": 500 }, + "machine_heated_bed": { "default_value": true }, + "machine_max_acceleration_e": { "value": 5000 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_feedrate_e": { "value": 50 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 10 }, + "machine_max_jerk_xy": { "value": 10 }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": { "value": "material_print_temperature" }, + "material_initial_print_temperature": { "value": "material_print_temperature" }, + "meshfix_maximum_resolution": { "value": "0.01" }, + "meshfix_maximum_travel_resolution": { "value": "meshfix_maximum_resolution" }, + "minimum_interface_area": { "value": 10 }, + "minimum_polygon_circumference": { "default_value": 0.2 }, + "minimum_support_area": { "value": 2 }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_combing": { "value": "'off' if retraction_hop_enabled else 'noskin'" }, + "retraction_combing_max_distance": { "value": 30 }, + "retraction_count_max": { "value": 100 }, + "retraction_hop": { "value": 0.2 }, + "retraction_hop_enabled": { "value": "False" }, + "retraction_prime_speed": + { + "deafult_value": 20, + "maximum_value": 200 + }, + "retraction_retract_speed": + { + "maximum_value": 200, + "maximum_value_warning": 130 + }, + "retraction_speed": + { + "deafult_value": 40, + "maximum_value": 200 + }, + "roofing_layer_count": { "value": 1 }, + "skin_monotonic": { "value": true }, + "skin_overlap": { "value": 10.0 }, + "skirt_gap": { "value": 10.0 }, + "skirt_line_count": { "value": 3 }, + "speed_layer_0": { "value": 20.0 }, + "speed_prime_tower": { "value": "speed_topbottom" }, + "speed_support": { "value": "speed_wall_0" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_travel": { "value": "150.0 if speed_print < 60 else 250.0 if speed_print > 100 else speed_print * 2.5" }, + "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 20 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" }, + "speed_z_hop": { "value": 5 }, + "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" }, + "support_brim_enable": { "value": true }, + "support_brim_width": { "value": 4 }, + "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" }, + "support_interface_density": { "value": 33.333 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 4" }, + "support_interface_pattern": { "value": "'grid'" }, + "support_interface_skip_height": { "value": 0.2 }, + "support_pattern": { "value": "'zigzag'" }, + "support_use_towers": { "value": false }, + "support_xy_distance": { "value": "wall_line_width_0 * 2" }, + "support_xy_distance_overhang": { "value": "wall_line_width_0" }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height * 2" }, + "top_layers": { "value": "math.ceil(round(top_thickness / resolveOrValue('layer_height'), 4))" }, + "travel_avoid_supports": { "value": true }, + "travel_retract_before_outer_wall": { "value": true }, + "wall_0_wipe_dist": { "value": 0.0 }, + "wall_overhang_angle": { "default_value": 75 }, + "wall_overhang_speed_factor": { "default_value": 50 }, + "wall_thickness": { "value": "line_width * 2" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_type": { "value": "'back'" } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_mkii.def.json b/resources/definitions/blocks_mkii.def.json new file mode 100644 index 0000000000..631ed35d37 --- /dev/null +++ b/resources/definitions/blocks_mkii.def.json @@ -0,0 +1,22 @@ +{ + "version": 2, + "name": "Blocks One MKII", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_mk2_platform.stl", + "machine_extruder_trains": { "0": "blocks_mkii_extruder_0" }, + "quality_definition": "blocks_base" + }, + "overrides": + { + "machine_depth": { "default_value": 210 }, + "machine_end_gcode": { "default_value": "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 F6000 ;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\n" }, + "machine_height": { "default_value": 210 }, + "machine_name": { "default_value": "Blocks One MKII" }, + "machine_start_gcode": { "default_value": "G21\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\nG29\nG1 X-14 Y0 F6000\nG1 Z0.1\nG92 E0 ;zero the extruded length\nG1 F2000 E10 ;extrude 10mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 Z0.2 F6000\nG1 F6000\nM117 Printing...\n" }, + "machine_width": { "default_value": 200 }, + "retraction_retract_speed": { "value": 50 } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_one.def.json b/resources/definitions/blocks_one.def.json new file mode 100644 index 0000000000..e107fde313 --- /dev/null +++ b/resources/definitions/blocks_one.def.json @@ -0,0 +1,22 @@ +{ + "version": 2, + "name": "Blocks One", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_mk2_platform.stl", + "machine_extruder_trains": { "0": "blocks_one_extruder_0" }, + "quality_definition": "blocks_base" + }, + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_end_gcode": { "default_value": "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 F6000 ;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\n" }, + "machine_height": { "default_value": 200 }, + "machine_name": { "default_value": "Blocks One" }, + "machine_start_gcode": { "default_value": "G21\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 F6000\nG92 E0\nG1 F200 E3\nG92 E0\nG1 F6000\nM117 Printing...\n" }, + "machine_width": { "default_value": 200 }, + "retraction_retract_speed": { "value": 50 } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_pros100.def.json b/resources/definitions/blocks_pros100.def.json new file mode 100644 index 0000000000..4ad1886d5a --- /dev/null +++ b/resources/definitions/blocks_pros100.def.json @@ -0,0 +1,23 @@ +{ + "version": 2, + "name": "Blocks Pro S100", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_pros100_platform.stl", + "machine_extruder_trains": { "0": "blocks_pros100_extruder_0" }, + "preferred_variant_name": "0.8mm Nozzle", + "quality_definition": "blocks_base" + }, + "overrides": + { + "machine_depth": { "default_value": 1000 }, + "machine_end_gcode": { "default_value": "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 F6000 ;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\n" }, + "machine_height": { "default_value": 1000 }, + "machine_name": { "default_value": "Blocks Pro S100" }, + "machine_start_gcode": { "default_value": "G21\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\nG29\nG1 X-14 Y0 F6000\nG1 Z0.1\nG92 E0 ;zero the extruded length\nG1 F2000 E10 ;extrude 10mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 Z0.2 F6000\nG1 F6000\nM117 Printing...\n" }, + "machine_width": { "default_value": 1000 }, + "retraction_retract_speed": { "value": 50 } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_pros30.def.json b/resources/definitions/blocks_pros30.def.json new file mode 100644 index 0000000000..8d30b8db24 --- /dev/null +++ b/resources/definitions/blocks_pros30.def.json @@ -0,0 +1,22 @@ +{ + "version": 2, + "name": "Blocks Pro S30", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_pros30_platform.stl", + "machine_extruder_trains": { "0": "blocks_pros30_extruder_0" }, + "quality_definition": "blocks_base" + }, + "overrides": + { + "machine_depth": { "default_value": 310 }, + "machine_end_gcode": { "default_value": "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 F6000 ;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\n" }, + "machine_height": { "default_value": 290 }, + "machine_name": { "default_value": "Blocks Pro S30" }, + "machine_start_gcode": { "default_value": "G21\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\nG29\nG1 X-14 Y0 F6000\nG1 Z0.1\nG92 E0 ;zero the extruded length\nG1 F2000 E10 ;extrude 10mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 Z0.2 F6000\nG1 F6000\nM117 Printing...\n" }, + "machine_width": { "default_value": 310 }, + "retraction_retract_speed": { "value": 40 } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_r21.def.json b/resources/definitions/blocks_r21.def.json new file mode 100644 index 0000000000..51582bec14 --- /dev/null +++ b/resources/definitions/blocks_r21.def.json @@ -0,0 +1,30 @@ +{ + "version": 2, + "name": "Blocks R21", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_r21_platform.stl", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "blocks_r21_extruder_0" }, + "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "ST - 0.4mm", + "quality_definition": "blocks_base", + "variants_name": "Print Core" + }, + "overrides": + { + "machine_depth": { "default_value": 210 }, + "machine_end_gcode": { "default_value": "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 F6000 ;move Z up a bit and retract filament even more\nG28 X0;move X/Y to min endstops, so the head is out of the way\nG1 Y210 F5000.0\nG1 Z+70\nM84 ;steppers off\nG90 ;absolute positioning\n" }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "Blocks R21" }, + "machine_start_gcode": { "default_value": "G21\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\nG29\nM117 ; Purge extruder\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.3 F5000.0 ; Move to start position\nG1 X0.1 Y200.0 Z0.3 F1500.0 E15 ; Draw the first line\nG1 X0.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X0.4 Y20 Z0.3 F1500.0 E30 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z1.0 F3000\nG1 X0.1 Y15 F3000.0\nG1 Z0.1 F3000.0\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nM117 Printing...\n" }, + "machine_width": { "default_value": 300 }, + "retraction_retract_speed": { "value": 50 } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_rd50.def.json b/resources/definitions/blocks_rd50.def.json new file mode 100644 index 0000000000..897ec299fe --- /dev/null +++ b/resources/definitions/blocks_rd50.def.json @@ -0,0 +1,35 @@ +{ + "version": 2, + "name": "Blocks RD50", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_rd50_platform.stl", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "blocks_rd50_extruder_0", + "1": "blocks_rd50_extruder_1" + }, + "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "ST - 0.4mm", + "quality_definition": "blocks_base", + "variants_name": "Print Core" + }, + "overrides": + { + "machine_depth": { "default_value": 500 }, + "machine_end_gcode": { "default_value": "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 F6000 ;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\n" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_height": { "default_value": 500 }, + "machine_name": { "default_value": "Blocks RD50" }, + "machine_start_gcode": { "default_value": "G21\nG90 ;absolute positioning\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\n;PREHEAT\nM140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature\nM104 S{material_print_temperature_layer_0} ; Set Extruder temperature\nG1 X-60 Y0 F6000\nG92 E0 ;zero the extruded length\nM190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature\nG1 F600 E20 ;extrude 10mm of feed stock\nG1 F200 E80 ;extrude 10mm of feed stock\nG12\nG92 E0 ;zero the extruded length again\nG29\nG1 Z0.2 F6000\nG1 F6000\n" }, + "machine_width": { "default_value": 500 }, + "retraction_retract_speed": { "value": 50 } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_rd50duplicate.def.json b/resources/definitions/blocks_rd50duplicate.def.json new file mode 100644 index 0000000000..47af8572e9 --- /dev/null +++ b/resources/definitions/blocks_rd50duplicate.def.json @@ -0,0 +1,35 @@ +{ + "version": 2, + "name": "Blocks RD50 - Duplication Mode", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_rd50_platform.stl", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "blocks_rd50_extruder_0", + "1": "blocks_rd50_extruder_1" + }, + "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "ST - 0.4mm", + "quality_definition": "blocks_base", + "variants_name": "Print Core" + }, + "overrides": + { + "machine_depth": { "default_value": 500 }, + "machine_end_gcode": { "default_value": "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+1 E-1 X-20 Y-20 F6000 ;move Z up a bit and retract filament even more\nM605 S1 ; AUTO-PARK MODE\nG28 X Y ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\n" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_height": { "default_value": 500 }, + "machine_name": { "default_value": "Blocks RD50 - Duplication Mode" }, + "machine_start_gcode": { "default_value": ";INITIALIZE DUPLICATION MODE\nM605 S1 ; AUTO-PARK MODE\nT0 ; Set tool 0\nG28 ; Home all axes\nG28 X\nM605 S2 ; Set duplication mode\n; PREHEAT\nM140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature\nM104 S{material_print_temperature_layer_0} ; Set Extruder temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature\n;SET DUPLICATION MODE\nM605 S2 X622 ; Set duplication mode and nozzle offset\nG28 X\nG1 X-60 F3000\nM605 S3 X622 ; Set mirror mode and nozzle offset\nM82\nG92 E0 ; Reset Extruder\nG1 F400\nG1 E40 F400 ; Prime\nG12 ; Clean Nozzle\nM605 S2 X250\nG28 X\nG92 E0 ; Reset Extruder\nG1 X0 F3000\n" }, + "machine_width": { "default_value": 500 }, + "retraction_retract_speed": { "value": 50 } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_rd50mirror.def.json b/resources/definitions/blocks_rd50mirror.def.json new file mode 100644 index 0000000000..ad077119ad --- /dev/null +++ b/resources/definitions/blocks_rd50mirror.def.json @@ -0,0 +1,35 @@ +{ + "version": 2, + "name": "Blocks RD50 - Mirror Mode", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_rd50_platform.stl", + "first_start_actions": [ "MachineSettingsAction" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "blocks_rd50_extruder_0", + "1": "blocks_rd50_extruder_1" + }, + "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "preferred_variant_name": "ST - 0.4mm", + "quality_definition": "blocks_base", + "variants_name": "Print Core" + }, + "overrides": + { + "machine_depth": { "default_value": 500 }, + "machine_end_gcode": { "default_value": "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+1 E-1 X-20 Y-20 F6000 ;move Z up a bit and retract filament even more\nM605 S1 ; AUTO-PARK MODE\nG28 X Y ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning\n" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_height": { "default_value": 500 }, + "machine_name": { "default_value": "Blocks RD50 - Mirror Mode" }, + "machine_start_gcode": { "default_value": ";INITIALIZE MIRROR MODE\nM605 S1 ; AUTO-PARK MODE\nT0 ; Set tool 0\nG28 ; Home all axes\nG28 X ; Home x axes\nM605 S2 ; Set duplication mode\n; PREHEAT\nM140 S{material_bed_temperature_layer_0} ; Set Heat Bed temperature\nM104 S{material_print_temperature_layer_0} ; Set Extruder temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Heat Bed temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature\n;SET MIRROR MODE\nM605 S2 X622 ; Set duplication mode and nozzle offset\nG28 X\nG1 X-60 F3000\nM605 S3 X622 ; Set mirror mode and nozzle offset\nM82\nG92 E0 ; Reset Extruder\nG1 F200\nG1 E30 F200 ; Prime\nG12 ; Clean Nozzle\nG1 X125 F3000\nG92 E0 ; Reset Extruder\n" }, + "machine_width": { "default_value": 500 }, + "retraction_retract_speed": { "value": 50 } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_zero.def.json b/resources/definitions/blocks_zero.def.json new file mode 100644 index 0000000000..d0ed827e5e --- /dev/null +++ b/resources/definitions/blocks_zero.def.json @@ -0,0 +1,23 @@ +{ + "version": 2, + "name": "Blocks Zero", + "inherits": "blocks_base", + "metadata": + { + "visible": true, + "platform": "blocks_zero_platform.stl", + "machine_extruder_trains": { "0": "blocks_zero_extruder_0" }, + "quality_definition": "blocks_base" + }, + "overrides": + { + "machine_depth": { "default_value": 140 }, + "machine_end_gcode": { "default_value": "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 F6000 ;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\n" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 120 }, + "machine_name": { "default_value": "Blocks Zero" }, + "machine_start_gcode": { "default_value": "G21\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 X-14 Y0 F6000\nG1 Z0.1\nG92 E0 ;zero the extruded length\nG1 F2000 E10 ;extrude 10mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 Z0.2 F6000\nG1 F6000\nM117 Printing...\n" }, + "machine_width": { "default_value": 120 }, + "retraction_retract_speed": { "value": 50 } + } +} \ No newline at end of file diff --git a/resources/extruders/blocks_mkii_extruder_0.def.json b/resources/extruders/blocks_mkii_extruder_0.def.json new file mode 100644 index 0000000000..3eb79739ef --- /dev/null +++ b/resources/extruders/blocks_mkii_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "blocks_mkii", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/blocks_one_extruder_0.def.json b/resources/extruders/blocks_one_extruder_0.def.json new file mode 100644 index 0000000000..bcc4875fe1 --- /dev/null +++ b/resources/extruders/blocks_one_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "blocks_one", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/blocks_pros100_extruder_0.def.json b/resources/extruders/blocks_pros100_extruder_0.def.json new file mode 100644 index 0000000000..fa7392fd40 --- /dev/null +++ b/resources/extruders/blocks_pros100_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "blocks_pros100", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.8 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/blocks_pros30_extruder_0.def.json b/resources/extruders/blocks_pros30_extruder_0.def.json new file mode 100644 index 0000000000..414c7ae3cc --- /dev/null +++ b/resources/extruders/blocks_pros30_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "blocks_pros30", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/blocks_r21_extruder_0.def.json b/resources/extruders/blocks_r21_extruder_0.def.json new file mode 100644 index 0000000000..8f63c31b9e --- /dev/null +++ b/resources/extruders/blocks_r21_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "blocks_r21", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/blocks_rd50_extruder_0.def.json b/resources/extruders/blocks_rd50_extruder_0.def.json new file mode 100644 index 0000000000..48cb870acf --- /dev/null +++ b/resources/extruders/blocks_rd50_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "blocks_rd50", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/blocks_rd50_extruder_1.def.json b/resources/extruders/blocks_rd50_extruder_1.def.json new file mode 100644 index 0000000000..0490bc73f7 --- /dev/null +++ b/resources/extruders/blocks_rd50_extruder_1.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "blocks_rd50", + "position": "1" + }, + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/blocks_zero_extruder_0.def.json b/resources/extruders/blocks_zero_extruder_0.def.json new file mode 100644 index 0000000000..e6d1776f80 --- /dev/null +++ b/resources/extruders/blocks_zero_extruder_0.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "blocks_zero", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/meshes/blocks_mk2_platform.stl b/resources/meshes/blocks_mk2_platform.stl new file mode 100644 index 0000000000..d6bb991076 Binary files /dev/null and b/resources/meshes/blocks_mk2_platform.stl differ diff --git a/resources/meshes/blocks_pros100_platform.stl b/resources/meshes/blocks_pros100_platform.stl new file mode 100644 index 0000000000..701c2a1d6c Binary files /dev/null and b/resources/meshes/blocks_pros100_platform.stl differ diff --git a/resources/meshes/blocks_pros30_platform.stl b/resources/meshes/blocks_pros30_platform.stl new file mode 100644 index 0000000000..1467a26489 Binary files /dev/null and b/resources/meshes/blocks_pros30_platform.stl differ diff --git a/resources/meshes/blocks_r21_platform.stl b/resources/meshes/blocks_r21_platform.stl new file mode 100644 index 0000000000..2269ea0fe7 Binary files /dev/null and b/resources/meshes/blocks_r21_platform.stl differ diff --git a/resources/meshes/blocks_rd50_platform.stl b/resources/meshes/blocks_rd50_platform.stl new file mode 100644 index 0000000000..1e08e064d5 Binary files /dev/null and b/resources/meshes/blocks_rd50_platform.stl differ diff --git a/resources/meshes/blocks_zero_platform.stl b/resources/meshes/blocks_zero_platform.stl new file mode 100644 index 0000000000..800fe6050f Binary files /dev/null and b/resources/meshes/blocks_zero_platform.stl differ diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg new file mode 100644 index 0000000000..4f1cbd301b --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low 0.2 +setting_version = 20 +type = quality +variant = 0.2mm Nozzle +weight = -5 + +[values] +layer_height = 0.15 +layer_height_0 = 0.15 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg new file mode 100644 index 0000000000..7b5adec7ce --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal 0.2 +setting_version = 20 +type = quality +variant = 0.2mm Nozzle +weight = -3 + +[values] +layer_height = 0.1 +layer_height_0 = 0.15 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg new file mode 100644 index 0000000000..863e33e388 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 20 +type = quality +variant = 0.3mm Nozzle +weight = -5 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg new file mode 100644 index 0000000000..dfd31ed136 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal 0.3 +setting_version = 20 +type = quality +variant = 0.3mm Nozzle +weight = -3 + +[values] +layer_height = 0.16 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg new file mode 100644 index 0000000000..a65fe2774b --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = 0.3mm Nozzle +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg new file mode 100644 index 0000000000..c531bb3a86 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = 0.4mm Nozzle +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg new file mode 100644 index 0000000000..73dd1b42f9 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 20 +type = quality +variant = 0.4mm Nozzle +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg new file mode 100644 index 0000000000..2320efea9c --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 20 +type = quality +variant = 0.4mm Nozzle +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg new file mode 100644 index 0000000000..b3fb23451a --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = 0.4mm Nozzle +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg new file mode 100644 index 0000000000..4e23c50596 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = 0.5mm Nozzle +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg new file mode 100644 index 0000000000..da912df79c --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 20 +type = quality +variant = 0.5mm Nozzle +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg new file mode 100644 index 0000000000..584e8c0681 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 20 +type = quality +variant = 0.5mm Nozzle +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg new file mode 100644 index 0000000000..1e8ea6146d --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = 0.5mm Nozzle +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg new file mode 100644 index 0000000000..74ed467aff --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = 0.6mm Nozzle +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg new file mode 100644 index 0000000000..438333b157 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 20 +type = quality +variant = 0.6mm Nozzle +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg new file mode 100644 index 0000000000..82e07657b0 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 20 +type = quality +variant = 0.6mm Nozzle +weight = -5 + +[values] +layer_height = 0.40 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg new file mode 100644 index 0000000000..f115542e9b --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 20 +type = quality +variant = 0.6mm Nozzle +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg new file mode 100644 index 0000000000..1aad590e7a --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = 0.6mm Nozzle +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg new file mode 100644 index 0000000000..8c84d3de77 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = 0.8mm Nozzle +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg new file mode 100644 index 0000000000..b4e5108e3a --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 20 +type = quality +variant = 0.8mm Nozzle +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg new file mode 100644 index 0000000000..55a7aeb751 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Super low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 20 +type = quality +variant = 0.8mm Nozzle +weight = -5 + +[values] +layer_height = 0.50 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg new file mode 100644 index 0000000000..ca5a3a6228 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 20 +type = quality +variant = 0.8mm Nozzle +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg new file mode 100644 index 0000000000..3daebb5631 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Super low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = superlow +setting_version = 20 +type = quality +variant = 0.8mm Nozzle +weight = -5 + +[values] +layer_height = 0.50 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg new file mode 100644 index 0000000000..6776d8908c --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = 0.8mm Nozzle +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg new file mode 100644 index 0000000000..660d1d9091 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = 1.0mm Nozzle +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg new file mode 100644 index 0000000000..b44aa16b5c --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 20 +type = quality +variant = 1.0mm Nozzle +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 +speed_infill = =speed_print + diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg new file mode 100644 index 0000000000..e726f39e91 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 20 +type = quality +variant = 1.0mm Nozzle +weight = -5 + +[values] +layer_height = 0.40 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg new file mode 100644 index 0000000000..8fc1b41ab7 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 20 +type = quality +variant = 1.0mm Nozzle +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg new file mode 100644 index 0000000000..08c46f984e --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Super low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = superlow +setting_version = 20 +type = quality +variant = 1.0mm Nozzle +weight = -5 + +[values] +layer_height = 0.50 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg new file mode 100644 index 0000000000..e5d1ae3853 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = 1.0mm Nozzle +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg new file mode 100644 index 0000000000..2adb850a30 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = 1.2mm Nozzle +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg new file mode 100644 index 0000000000..0c58998b28 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 20 +type = quality +variant = 1.2mm Nozzle +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg new file mode 100644 index 0000000000..87df5e6116 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 20 +type = quality +variant = 1.2mm Nozzle +weight = -5 + +[values] +layer_height = 0.40 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg new file mode 100644 index 0000000000..f0de0c78eb --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 20 +type = quality +variant = 1.2mm Nozzle +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg new file mode 100644 index 0000000000..48f1e02bf9 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Super low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = superlow +setting_version = 20 +type = quality +variant = 1.2mm Nozzle +weight = -5 + +[values] +layer_height = 0.50 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg new file mode 100644 index 0000000000..1d48b168e0 --- /dev/null +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = 1.2mm Nozzle +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg new file mode 100644 index 0000000000..518e773ed5 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = HT - 0.4mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg new file mode 100644 index 0000000000..710519cea2 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 20 +type = quality +variant = HT - 0.4mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg new file mode 100644 index 0000000000..623c063b8e --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 20 +type = quality +variant = HT - 0.4mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg new file mode 100644 index 0000000000..5e20cf4054 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = HT - 0.4mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg new file mode 100644 index 0000000000..14c2723fc6 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = HT - 0.5mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg new file mode 100644 index 0000000000..9f99c8c10f --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 20 +type = quality +variant = HT - 0.5mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg new file mode 100644 index 0000000000..0eaf385a7c --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 20 +type = quality +variant = HT - 0.5mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg new file mode 100644 index 0000000000..7c58392565 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = HT - 0.5mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg new file mode 100644 index 0000000000..65c779ad43 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = HT - 0.6mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg new file mode 100644 index 0000000000..cc8da09310 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 20 +type = quality +variant = HT - 0.6mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg new file mode 100644 index 0000000000..198aa49190 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 20 +type = quality +variant = HT - 0.6mm +weight = 0 + +[values] +layer_height = 0.4 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg new file mode 100644 index 0000000000..5285689301 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 20 +type = quality +variant = HT - 0.6mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg new file mode 100644 index 0000000000..162c2643fc --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = HT - 0.6mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg new file mode 100644 index 0000000000..f8ca1bb69c --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = HT - 0.8mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg new file mode 100644 index 0000000000..69a5db75dd --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 20 +type = quality +variant = HT - 0.8mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg new file mode 100644 index 0000000000..5dc99b475d --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 20 +type = quality +variant = HT - 0.8mm +weight = 0 + +[values] +layer_height = 0.4 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg new file mode 100644 index 0000000000..7ce40bd851 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 20 +type = quality +variant = HT - 0.8mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg new file mode 100644 index 0000000000..62b0feefb5 --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Super Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = superlow +setting_version = 20 +type = quality +variant = HT - 0.8mm +weight = 0 + +[values] +layer_height = 0.5 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg new file mode 100644 index 0000000000..a1d67e5cec --- /dev/null +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = HT - 0.8mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg new file mode 100644 index 0000000000..632fb0c9c7 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = ST - 0.2mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.15 +layer_height_0 = 0.15 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg new file mode 100644 index 0000000000..2e530e79b5 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = ST - 0.2mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.15 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg new file mode 100644 index 0000000000..6149b1a0ac --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = ST - 0.3mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg new file mode 100644 index 0000000000..25b4dd3530 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 20 +type = quality +variant = ST - 0.3mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg new file mode 100644 index 0000000000..7112fcc231 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = ST - 0.3mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg new file mode 100644 index 0000000000..d64b5038d1 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = ST - 0.4mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg new file mode 100644 index 0000000000..21eee48d02 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 20 +type = quality +variant = ST - 0.4mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg new file mode 100644 index 0000000000..20c8c80769 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 20 +type = quality +variant = ST - 0.4mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg new file mode 100644 index 0000000000..aa495e9b65 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = ST - 0.4mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg new file mode 100644 index 0000000000..e8de7c1641 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = ST - 0.5mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg new file mode 100644 index 0000000000..2ad389aa06 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 20 +type = quality +variant = ST - 0.5mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg new file mode 100644 index 0000000000..b20762c698 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 20 +type = quality +variant = ST - 0.5mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg new file mode 100644 index 0000000000..b4e83d6bf5 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = ST - 0.5mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg new file mode 100644 index 0000000000..92ff61ceac --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = ST - 0.6mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg new file mode 100644 index 0000000000..a7af19ad2b --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 20 +type = quality +variant = ST - 0.6mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg new file mode 100644 index 0000000000..2caefe61b4 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 20 +type = quality +variant = ST - 0.6mm +weight = 0 + +[values] +layer_height = 0.4 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg new file mode 100644 index 0000000000..edaa070d64 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 20 +type = quality +variant = ST - 0.6mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg new file mode 100644 index 0000000000..bd6a6c6c40 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = ST - 0.6mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg new file mode 100644 index 0000000000..c443157a5b --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = ST - 0.8mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg new file mode 100644 index 0000000000..b307bd22bd --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 20 +type = quality +variant = ST - 0.8mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg new file mode 100644 index 0000000000..7158c41bfb --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 20 +type = quality +variant = ST - 0.8mm +weight = 0 + +[values] +layer_height = 0.4 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg new file mode 100644 index 0000000000..57a34b6ac1 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 20 +type = quality +variant = ST - 0.8mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg new file mode 100644 index 0000000000..4eb1bd89b9 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Super Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = superlow +setting_version = 20 +type = quality +variant = ST - 0.8mm +weight = 0 + +[values] +layer_height = 0.5 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg new file mode 100644 index 0000000000..c70777bb73 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = ST - 0.8mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg new file mode 100644 index 0000000000..88e5f48ee2 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = ST - 1.0mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg new file mode 100644 index 0000000000..7c63856c9e --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 20 +type = quality +variant = ST - 1.0mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg new file mode 100644 index 0000000000..ff4b1e6c98 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 20 +type = quality +variant = ST - 1.0mm +weight = 0 + +[values] +layer_height = 0.4 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg new file mode 100644 index 0000000000..76eb51dbac --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 20 +type = quality +variant = ST - 1.0mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg new file mode 100644 index 0000000000..c0d9a8069c --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Super Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = superlow +setting_version = 20 +type = quality +variant = ST - 1.0mm +weight = 0 + +[values] +layer_height = 0.5 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg new file mode 100644 index 0000000000..90437cda44 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = ST - 1.0mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg new file mode 100644 index 0000000000..1cb7710e8d --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = blocks_base +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 20 +type = quality +variant = ST - 1.2mm +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg new file mode 100644 index 0000000000..74ab2638d8 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 20 +type = quality +variant = ST - 1.2mm +weight = -5 + +[values] +layer_height = 0.30 +layer_height_0 = 0.20 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg new file mode 100644 index 0000000000..79c41c1b1d --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 20 +type = quality +variant = ST - 1.2mm +weight = 0 + +[values] +layer_height = 0.4 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg new file mode 100644 index 0000000000..ceca730b3a --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 20 +type = quality +variant = ST - 1.2mm +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg new file mode 100644 index 0000000000..e4cc9b69d7 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Super Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = superlow +setting_version = 20 +type = quality +variant = ST - 1.2mm +weight = 0 + +[values] +layer_height = 0.5 +layer_height_0 = 0.2 + diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg new file mode 100644 index 0000000000..3cf71fc5a2 --- /dev/null +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = blocks_base +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 20 +type = quality +variant = ST - 1.2mm +weight = 0 + +[values] +layer_height = 0.10 +layer_height_0 = 0.16 + diff --git a/resources/variants/blocks/blocks_mkii_0.20.inst.cfg b/resources/variants/blocks/blocks_mkii_0.20.inst.cfg new file mode 100644 index 0000000000..ca0eb52c03 --- /dev/null +++ b/resources/variants/blocks/blocks_mkii_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_mkii +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/blocks/blocks_mkii_0.30.inst.cfg b/resources/variants/blocks/blocks_mkii_0.30.inst.cfg new file mode 100644 index 0000000000..362ffc27b8 --- /dev/null +++ b/resources/variants/blocks/blocks_mkii_0.30.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_mkii +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_mkii_0.40.inst.cfg b/resources/variants/blocks/blocks_mkii_0.40.inst.cfg new file mode 100644 index 0000000000..92ba3f7507 --- /dev/null +++ b/resources/variants/blocks/blocks_mkii_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_mkii +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_mkii_0.50.inst.cfg b/resources/variants/blocks/blocks_mkii_0.50.inst.cfg new file mode 100644 index 0000000000..a1f11c2032 --- /dev/null +++ b/resources/variants/blocks/blocks_mkii_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_mkii +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_mkii_0.60.inst.cfg b/resources/variants/blocks/blocks_mkii_0.60.inst.cfg new file mode 100644 index 0000000000..722f3aa144 --- /dev/null +++ b/resources/variants/blocks/blocks_mkii_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_mkii +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_mkii_0.80.inst.cfg b/resources/variants/blocks/blocks_mkii_0.80.inst.cfg new file mode 100644 index 0000000000..91c5551104 --- /dev/null +++ b/resources/variants/blocks/blocks_mkii_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_mkii +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_one_0.20.inst.cfg b/resources/variants/blocks/blocks_one_0.20.inst.cfg new file mode 100644 index 0000000000..ec07082b68 --- /dev/null +++ b/resources/variants/blocks/blocks_one_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_one +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/blocks/blocks_one_0.30.inst.cfg b/resources/variants/blocks/blocks_one_0.30.inst.cfg new file mode 100644 index 0000000000..af95a7029a --- /dev/null +++ b/resources/variants/blocks/blocks_one_0.30.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_one +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_one_0.40.inst.cfg b/resources/variants/blocks/blocks_one_0.40.inst.cfg new file mode 100644 index 0000000000..520e784411 --- /dev/null +++ b/resources/variants/blocks/blocks_one_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_one +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_one_0.50.inst.cfg b/resources/variants/blocks/blocks_one_0.50.inst.cfg new file mode 100644 index 0000000000..10b33b8a24 --- /dev/null +++ b/resources/variants/blocks/blocks_one_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_one +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_one_0.60.inst.cfg b/resources/variants/blocks/blocks_one_0.60.inst.cfg new file mode 100644 index 0000000000..42c7263146 --- /dev/null +++ b/resources/variants/blocks/blocks_one_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_one +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_one_0.80.inst.cfg b/resources/variants/blocks/blocks_one_0.80.inst.cfg new file mode 100644 index 0000000000..b360bfd31e --- /dev/null +++ b/resources/variants/blocks/blocks_one_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_one +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_pros100_0.40.inst.cfg b/resources/variants/blocks/blocks_pros100_0.40.inst.cfg new file mode 100644 index 0000000000..065dc44f09 --- /dev/null +++ b/resources/variants/blocks/blocks_pros100_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros100 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_pros100_0.50.inst.cfg b/resources/variants/blocks/blocks_pros100_0.50.inst.cfg new file mode 100644 index 0000000000..9df6397bb9 --- /dev/null +++ b/resources/variants/blocks/blocks_pros100_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros100 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_pros100_0.60.inst.cfg b/resources/variants/blocks/blocks_pros100_0.60.inst.cfg new file mode 100644 index 0000000000..db9a0966f9 --- /dev/null +++ b/resources/variants/blocks/blocks_pros100_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros100 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_pros100_0.80.inst.cfg b/resources/variants/blocks/blocks_pros100_0.80.inst.cfg new file mode 100644 index 0000000000..74d502189a --- /dev/null +++ b/resources/variants/blocks/blocks_pros100_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros100 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_pros100_1.0.inst.cfg b/resources/variants/blocks/blocks_pros100_1.0.inst.cfg new file mode 100644 index 0000000000..6185766f93 --- /dev/null +++ b/resources/variants/blocks/blocks_pros100_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros100 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/blocks/blocks_pros100_1.2.inst.cfg b/resources/variants/blocks/blocks_pros100_1.2.inst.cfg new file mode 100644 index 0000000000..1b37365d67 --- /dev/null +++ b/resources/variants/blocks/blocks_pros100_1.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros100 +name = 1.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 1.2 + diff --git a/resources/variants/blocks/blocks_pros30_0.40.inst.cfg b/resources/variants/blocks/blocks_pros30_0.40.inst.cfg new file mode 100644 index 0000000000..3d9606465c --- /dev/null +++ b/resources/variants/blocks/blocks_pros30_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros30 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_pros30_0.50.inst.cfg b/resources/variants/blocks/blocks_pros30_0.50.inst.cfg new file mode 100644 index 0000000000..b124864195 --- /dev/null +++ b/resources/variants/blocks/blocks_pros30_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros30 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_pros30_0.60.inst.cfg b/resources/variants/blocks/blocks_pros30_0.60.inst.cfg new file mode 100644 index 0000000000..f705dad66c --- /dev/null +++ b/resources/variants/blocks/blocks_pros30_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros30 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_pros30_0.80.inst.cfg b/resources/variants/blocks/blocks_pros30_0.80.inst.cfg new file mode 100644 index 0000000000..f3e408b614 --- /dev/null +++ b/resources/variants/blocks/blocks_pros30_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros30 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_pros30_1.0.inst.cfg b/resources/variants/blocks/blocks_pros30_1.0.inst.cfg new file mode 100644 index 0000000000..9718a2693a --- /dev/null +++ b/resources/variants/blocks/blocks_pros30_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros30 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/blocks/blocks_pros30_1.2.inst.cfg b/resources/variants/blocks/blocks_pros30_1.2.inst.cfg new file mode 100644 index 0000000000..1b2673301d --- /dev/null +++ b/resources/variants/blocks/blocks_pros30_1.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_pros30 +name = 1.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 1.2 + diff --git a/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg new file mode 100644 index 0000000000..4756792236 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = HT - 0.3mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg new file mode 100644 index 0000000000..3cd60bf11e --- /dev/null +++ b/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = HT - 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg new file mode 100644 index 0000000000..1b00bb2a96 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = HT - 0.5mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg new file mode 100644 index 0000000000..aef77f06e0 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = HT - 0.6mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg new file mode 100644 index 0000000000..f795d72be9 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = HT - 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg new file mode 100644 index 0000000000..1614ca9d28 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = ST - 0.2mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg new file mode 100644 index 0000000000..e3e70bf0d1 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = ST - 0.3mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg new file mode 100644 index 0000000000..66fa5ba0cb --- /dev/null +++ b/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = ST - 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg new file mode 100644 index 0000000000..209c684982 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = ST - 0.5mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg new file mode 100644 index 0000000000..711af5aa4a --- /dev/null +++ b/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = ST - 0.6mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg new file mode 100644 index 0000000000..f6eceec441 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = ST - 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg b/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg new file mode 100644 index 0000000000..95460890f6 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = ST - 1.0mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg b/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg new file mode 100644 index 0000000000..f3488b0b98 --- /dev/null +++ b/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_r21 +name = ST - 1.2mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 1.20 + diff --git a/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg new file mode 100644 index 0000000000..939d0d2444 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = HT - 0.3mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg new file mode 100644 index 0000000000..85687531eb --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = HT - 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg new file mode 100644 index 0000000000..f0690f613a --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = HT - 0.5mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg new file mode 100644 index 0000000000..485086680b --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = HT - 0.6mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg new file mode 100644 index 0000000000..5242cd5563 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = HT - 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg new file mode 100644 index 0000000000..1e372e964e --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 0.2mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg new file mode 100644 index 0000000000..c4ec0a3147 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 0.3mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg new file mode 100644 index 0000000000..e3f983411d --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg new file mode 100644 index 0000000000..8aea07b060 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 0.5mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg new file mode 100644 index 0000000000..34b0231f54 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 0.6mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg new file mode 100644 index 0000000000..dac9b072ca --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg new file mode 100644 index 0000000000..32d49cc6df --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 1.0mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg new file mode 100644 index 0000000000..e1c4290f27 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 1.2mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 1.20 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg new file mode 100644 index 0000000000..fa4c424345 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = HT - 0.3mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg new file mode 100644 index 0000000000..476d53c555 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = HT - 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg new file mode 100644 index 0000000000..86324e1f67 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = HT - 0.5mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg new file mode 100644 index 0000000000..7fc289f445 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = HT - 0.6mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg new file mode 100644 index 0000000000..6311c06b4d --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = HT - 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg new file mode 100644 index 0000000000..522891b82f --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = ST - 0.2mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg new file mode 100644 index 0000000000..b52353084f --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = ST - 0.3mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg new file mode 100644 index 0000000000..149e9d2528 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = ST - 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg new file mode 100644 index 0000000000..a98e14bf1e --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = ST - 0.5mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg new file mode 100644 index 0000000000..a5ad088795 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = ST - 0.6mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg new file mode 100644 index 0000000000..dc72bfa5bc --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = ST - 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg new file mode 100644 index 0000000000..49b2eb8219 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = ST - 1.0mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg new file mode 100644 index 0000000000..3f0af5268d --- /dev/null +++ b/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50duplicate +name = ST - 1.2mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 1.20 + diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg new file mode 100644 index 0000000000..815f7f81d1 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = HT - 0.3mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg new file mode 100644 index 0000000000..1f651a94dd --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = HT - 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg new file mode 100644 index 0000000000..e3ab7f107d --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = HT - 0.5mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg new file mode 100644 index 0000000000..46733866a7 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = HT - 0.6mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg new file mode 100644 index 0000000000..820a854351 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = HT - 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg new file mode 100644 index 0000000000..ee0c348236 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = ST - 0.2mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg new file mode 100644 index 0000000000..640dff17a6 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = ST - 0.3mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg new file mode 100644 index 0000000000..80fa3a282e --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = ST - 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg new file mode 100644 index 0000000000..012d378bed --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = ST - 0.5mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg new file mode 100644 index 0000000000..d4df1f1659 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = ST - 0.6mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg new file mode 100644 index 0000000000..f1b525d16e --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = ST - 0.8mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg new file mode 100644 index 0000000000..3f06995fcb --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50mirror +name = ST - 1.0mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg new file mode 100644 index 0000000000..e1c4290f27 --- /dev/null +++ b/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_rd50 +name = ST - 1.2mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 1.20 + diff --git a/resources/variants/blocks/blocks_zero_0.20.inst.cfg b/resources/variants/blocks/blocks_zero_0.20.inst.cfg new file mode 100644 index 0000000000..2c0d41b2a5 --- /dev/null +++ b/resources/variants/blocks/blocks_zero_0.20.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_zero +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/blocks/blocks_zero_0.30.inst.cfg b/resources/variants/blocks/blocks_zero_0.30.inst.cfg new file mode 100644 index 0000000000..b7466a324e --- /dev/null +++ b/resources/variants/blocks/blocks_zero_0.30.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_zero +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/blocks/blocks_zero_0.40.inst.cfg b/resources/variants/blocks/blocks_zero_0.40.inst.cfg new file mode 100644 index 0000000000..a2931960c8 --- /dev/null +++ b/resources/variants/blocks/blocks_zero_0.40.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_zero +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/blocks/blocks_zero_0.50.inst.cfg b/resources/variants/blocks/blocks_zero_0.50.inst.cfg new file mode 100644 index 0000000000..213c54fa29 --- /dev/null +++ b/resources/variants/blocks/blocks_zero_0.50.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_zero +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/blocks/blocks_zero_0.60.inst.cfg b/resources/variants/blocks/blocks_zero_0.60.inst.cfg new file mode 100644 index 0000000000..b2d5b98648 --- /dev/null +++ b/resources/variants/blocks/blocks_zero_0.60.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_zero +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/blocks/blocks_zero_0.80.inst.cfg b/resources/variants/blocks/blocks_zero_0.80.inst.cfg new file mode 100644 index 0000000000..70a8b13a30 --- /dev/null +++ b/resources/variants/blocks/blocks_zero_0.80.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = blocks_zero +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 20 +type = variant + +[values] +machine_nozzle_size = 0.8 +