Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--resources/definitions/koonovo_base.def.json134
-rw-r--r--resources/definitions/koonovo_elf.def.json26
-rw-r--r--resources/definitions/koonovo_kn3.def.json160
-rw-r--r--resources/definitions/koonovo_kn5.def.json159
-rw-r--r--resources/definitions/koonovo_pyramid.def.json26
-rw-r--r--resources/extruders/koonovo_base_extruder_0.def.json16
-rw-r--r--resources/extruders/koonovo_kn3_extruder_0.def.json21
-rw-r--r--resources/extruders/koonovo_kn3_extruder_1.def.json21
-rw-r--r--resources/extruders/koonovo_kn5_extruder_0.def.json21
-rw-r--r--resources/extruders/koonovo_kn5_extruder_1.def.json22
-rw-r--r--resources/images/koonovo.pngbin0 -> 59304 bytes
-rw-r--r--resources/meshes/koonovo.obj60
-rw-r--r--resources/meshes/koonovo_kn3.stlbin0 -> 756484 bytes
-rw-r--r--resources/meshes/koonovo_kn5.stlbin0 -> 872284 bytes
-rw-r--r--resources/quality/koonovo/koonovo_base_global_draft.inst.cfg17
-rw-r--r--resources/quality/koonovo/koonovo_base_global_standard.inst.cfg18
-rw-r--r--resources/quality/koonovo/koovono_base_global_high.inst.cfg18
17 files changed, 719 insertions, 0 deletions
diff --git a/resources/definitions/koonovo_base.def.json b/resources/definitions/koonovo_base.def.json
new file mode 100644
index 0000000000..2e7997d2ba
--- /dev/null
+++ b/resources/definitions/koonovo_base.def.json
@@ -0,0 +1,134 @@
+{
+ "name": "KOONOVO Base Printer",
+ "version": 2,
+ "inherits": "fdmprinter",
+ "metadata": {
+ "visible": false,
+ "author": "KOONOVO",
+ "manufacturer": "KOONOVO",
+ "file_formats": "text/x-gcode",
+ "platform": "koonovo.obj",
+ "platform_texture": "koonovo.png",
+
+ "first_start_actions": [ "MachineSettingsAction" ],
+ "machine_extruder_trains": {"0": "koonovo_base_extruder_0"},
+
+ "has_materials": true,
+ "has_machine_quality": true,
+
+
+ "preferred_quality_type": "standard",
+ "preferred_material": "generic_pla",
+
+"exclude_materials": [
+ ]
+
+
+ },
+
+
+ "overrides": {
+
+ "machine_start_gcode": {
+ "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Move to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nM117 Printing..."
+ },
+
+
+ "machine_end_gcode": {
+ "default_value": "M104 T0 S0 ;1st extruder heater off\nM104 T1 S0 ;2nd extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning"
+ },
+
+ "machine_max_feedrate_x": { "value": 200 },
+ "machine_max_feedrate_y": { "value": 200 },
+ "machine_max_feedrate_z": { "value": 50 },
+ "machine_max_feedrate_e": { "value": 100 },
+
+ "machine_max_acceleration_x": { "value": 500 },
+ "machine_max_acceleration_y": { "value": 500 },
+ "machine_max_acceleration_z": { "value": 50 },
+ "machine_max_acceleration_e": { "value": 2000 },
+ "machine_acceleration": { "value": 500 },
+
+ "machine_heated_bed": { "default_value": true },
+
+ "material_diameter": { "default_value": 1.75 },
+
+
+ "acceleration_print": { "value": 500 },
+ "acceleration_travel": { "value": 500 },
+
+ "line_width": { "value": "machine_nozzle_size" },
+
+ "wall_thickness": {"value": "line_width * 2" },
+
+ "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" },
+
+ "infill_sparse_density": { "value": "15" },
+ "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" },
+
+ "material_print_temperature": { "value": "195" },
+ "material_print_temperature_layer_0": { "value": "material_print_temperature" },
+ "material_initial_print_temperature": { "value": "material_print_temperature" },
+ "material_final_print_temperature": { "value": "material_print_temperature" },
+ "material_bed_temperature": { "value": "55" },
+ "material_bed_temperature_layer_0": { "value": "material_bed_temperature" },
+ "material_flow": { "value": 100 },
+ "material_standby_temperature": { "value": "material_print_temperature" },
+
+
+ "speed_print": { "value": 50.0 } ,
+ "speed_infill": { "value": "speed_print" },
+ "speed_wall": { "value": "speed_print / 2" },
+ "speed_wall_0": { "value": "speed_wall" },
+ "speed_wall_x": { "value": "speed_wall" },
+ "speed_topbottom": { "value": "speed_print / 2" },
+ "speed_travel": { "value": "120.0 if speed_print < 60 else 180.0 if speed_print > 100 else speed_print * 2.2" },
+ "speed_layer_0": { "value": 25.0 },
+ "speed_print_layer_0": { "value": "speed_layer_0" },
+ "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 25 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" },
+ "speed_prime_tower": { "value": "speed_topbottom" },
+ "speed_support": { "value": "speed_wall_0" },
+ "speed_z_hop": { "value": 5 },
+
+ "retraction_enable": { "value": true },
+ "retraction_amount": { "value": 2.5 },
+ "retraction_speed": { "value": 40 },
+
+ "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" },
+ "cool_fan_enabled": { "value": true },
+ "cool_min_layer_time": { "value": 10 },
+
+
+ "support_brim_enable": { "value": true },
+ "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" },
+ "support_pattern": { "value": "'zigzag'" },
+ "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" },
+ "support_use_towers": { "value": false },
+ "support_xy_distance": { "value": "wall_line_width_0 * 2" },
+ "support_xy_distance_overhang": { "value": "wall_line_width_0" },
+ "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" },
+ "support_xy_overrides_z": { "value": "'xy_overrides_z'" },
+ "support_wall_count": { "value": 1 },
+ "support_brim_width": { "value": 4 },
+
+ "support_enable": { "value": true },
+ "support_interface_enable": { "value": true },
+ "support_interface_height": { "value": "layer_height * 4" },
+ "support_interface_density": { "value": 33.333 },
+ "support_interface_pattern": { "value": "'grid'" },
+ "support_interface_skip_height": { "value": 0.2 },
+ "minimum_support_area": { "value": 2 },
+ "minimum_interface_area": { "value": 10 },
+
+ "fill_perimeter_gaps": { "value": "'everywhere'" },
+ "fill_outline_gaps": { "value": false },
+ "filter_out_tiny_gaps": { "value": false },
+
+ "adhesion_type": { "value": "'skirt'" },
+ "brim_replaces_support": { "value": false },
+ "skirt_gap": { "value": 6.0 },
+ "skirt_line_count": { "value": 3 }
+
+
+ }
+}
diff --git a/resources/definitions/koonovo_elf.def.json b/resources/definitions/koonovo_elf.def.json
new file mode 100644
index 0000000000..33d8ee0adf
--- /dev/null
+++ b/resources/definitions/koonovo_elf.def.json
@@ -0,0 +1,26 @@
+{
+ "name": "KOONOVO ELF",
+ "version": 2,
+ "inherits": "koonovo_base",
+ "overrides": {
+ "machine_name": { "default_value": "KOONOVO ELF" },
+ "machine_width": { "default_value": 310 },
+ "machine_depth": { "default_value": 310 },
+ "machine_height": { "default_value": 345 },
+ "machine_head_with_fans_polygon": { "default_value": [
+ [-26, 34],
+ [-26, -32],
+ [32, -32],
+ [32, 34]
+ ]
+ },
+
+ "gantry_height": { "value": 0 }
+
+ },
+ "metadata": {
+ "quality_definition": "koonovo_base",
+ "visible": true
+
+ }
+}
diff --git a/resources/definitions/koonovo_kn3.def.json b/resources/definitions/koonovo_kn3.def.json
new file mode 100644
index 0000000000..030e36d468
--- /dev/null
+++ b/resources/definitions/koonovo_kn3.def.json
@@ -0,0 +1,160 @@
+{
+ "name": "KOONOVO KN3 IDEX",
+ "version": 2,
+ "inherits": "fdmprinter",
+ "metadata": {
+ "visible": true,
+ "author": "KOONOVO",
+ "manufacturer": "KOONOVO",
+ "file_formats": "text/x-gcode",
+ "platform": "koonovo_kn3.stl",
+ "quality_definition": "koonovo_base",
+
+ "first_start_actions": ["MachineSettingsAction"],
+ "machine_extruder_trains":
+ {
+ "0": "koonovo_kn3_extruder_0",
+ "1": "koonovo_kn3_extruder_1"
+ },
+
+
+
+
+ "has_materials": true,
+ "has_machine_quality": true,
+
+
+ "preferred_quality_type": "standard",
+ "preferred_material": "generic_pla",
+
+
+"exclude_materials": [
+ ]
+
+
+ },
+
+
+ "overrides": {
+
+ "machine_name": { "default_value": "KOONOVO KN3" },
+ "machine_width": { "default_value": 310 },
+ "machine_depth": { "default_value": 310 },
+ "machine_height": { "default_value": 400 },
+ "machine_head_with_fans_polygon": { "default_value": [
+ [-26, 34],
+ [-26, -32],
+ [32, -32],
+ [32, 34]
+ ]
+ },
+
+ "gantry_height": { "value": 0 },
+
+
+ "machine_extruder_count": { "default_value": 2 },
+
+ "machine_start_gcode": {
+ "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Move to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nM117 Printing..."
+ },
+
+
+ "machine_end_gcode": {
+ "default_value": "M104 T0 S0 ;1st extruder heater off\nM104 T1 S0 ;2nd extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning"
+ },
+
+
+ "machine_max_feedrate_x": { "value": 200 },
+ "machine_max_feedrate_y": { "value": 200 },
+ "machine_max_feedrate_z": { "value": 50 },
+ "machine_max_feedrate_e": { "value": 100 },
+
+ "machine_max_acceleration_x": { "value": 500 },
+ "machine_max_acceleration_y": { "value": 500 },
+ "machine_max_acceleration_z": { "value": 50 },
+ "machine_max_acceleration_e": { "value": 2000 },
+ "machine_acceleration": { "value": 500 },
+
+ "machine_heated_bed": { "default_value": true },
+
+ "material_diameter": { "default_value": 1.75 },
+
+
+ "acceleration_print": { "value": 500 },
+ "acceleration_travel": { "value": 500 },
+
+ "line_width": { "value": "machine_nozzle_size" },
+
+ "wall_thickness": {"value": "line_width * 2" },
+
+ "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" },
+
+ "infill_sparse_density": { "value": "15" },
+ "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" },
+
+ "material_print_temperature": { "value": "195" },
+ "material_print_temperature_layer_0": { "value": "material_print_temperature" },
+ "material_initial_print_temperature": { "value": "material_print_temperature" },
+ "material_final_print_temperature": { "value": "material_print_temperature" },
+ "material_bed_temperature": { "value": "55" },
+ "material_bed_temperature_layer_0": { "value": "material_bed_temperature" },
+ "material_flow": { "value": 100 },
+ "material_standby_temperature": { "value": "material_print_temperature" },
+
+
+ "speed_print": { "value": 50.0 } ,
+ "speed_infill": { "value": "speed_print" },
+ "speed_wall": { "value": "speed_print / 2" },
+ "speed_wall_0": { "value": "speed_wall" },
+ "speed_wall_x": { "value": "speed_wall" },
+ "speed_topbottom": { "value": "speed_print / 2" },
+ "speed_travel": { "value": "120.0 if speed_print < 60 else 180.0 if speed_print > 100 else speed_print * 2.2" },
+ "speed_layer_0": { "value": 25.0 },
+ "speed_print_layer_0": { "value": "speed_layer_0" },
+ "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 25 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" },
+ "speed_prime_tower": { "value": "speed_topbottom" },
+ "speed_support": { "value": "speed_wall_0" },
+ "speed_z_hop": { "value": 5 },
+
+ "retraction_enable": { "value": true },
+ "retraction_amount": { "value": 2.5 },
+ "retraction_speed": { "value": 40 },
+
+ "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" },
+ "cool_fan_enabled": { "value": true },
+ "cool_min_layer_time": { "value": 10 },
+
+
+ "support_brim_enable": { "value": true },
+ "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" },
+ "support_pattern": { "value": "'zigzag'" },
+ "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" },
+ "support_use_towers": { "value": false },
+ "support_xy_distance": { "value": "wall_line_width_0 * 2" },
+ "support_xy_distance_overhang": { "value": "wall_line_width_0" },
+ "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" },
+ "support_xy_overrides_z": { "value": "'xy_overrides_z'" },
+ "support_wall_count": { "value": 1 },
+ "support_brim_width": { "value": 4 },
+
+ "support_enable": { "value": true },
+ "support_interface_enable": { "value": true },
+ "support_interface_height": { "value": "layer_height * 4" },
+ "support_interface_density": { "value": 33.333 },
+ "support_interface_pattern": { "value": "'grid'" },
+ "support_interface_skip_height": { "value": 0.2 },
+ "minimum_support_area": { "value": 2 },
+ "minimum_interface_area": { "value": 10 },
+
+ "fill_perimeter_gaps": { "value": "'everywhere'" },
+ "fill_outline_gaps": { "value": false },
+ "filter_out_tiny_gaps": { "value": false },
+
+ "adhesion_type": { "value": "'skirt'" },
+ "brim_replaces_support": { "value": false },
+ "skirt_gap": { "value": 6.0 },
+ "skirt_line_count": { "value": 3 }
+
+
+ }
+}
diff --git a/resources/definitions/koonovo_kn5.def.json b/resources/definitions/koonovo_kn5.def.json
new file mode 100644
index 0000000000..f705546bfd
--- /dev/null
+++ b/resources/definitions/koonovo_kn5.def.json
@@ -0,0 +1,159 @@
+{
+ "name": "KOONOVO KN5 IDEX",
+ "version": 2,
+ "inherits": "fdmprinter",
+ "metadata": {
+ "visible": true,
+ "author": "KOONOVO",
+ "manufacturer": "KOONOVO",
+ "file_formats": "text/x-gcode",
+ "platform": "koonovo_kn5.stl",
+ "quality_definition": "koonovo_base",
+
+ "first_start_actions": ["MachineSettingsAction"],
+ "machine_extruder_trains":
+ {
+ "0": "koonovo_kn5_extruder_0",
+ "1": "koonovo_kn5_extruder_1"
+ },
+
+
+
+
+ "has_materials": true,
+ "has_machine_quality": true,
+
+
+ "preferred_quality_type": "standard",
+ "preferred_material": "generic_pla",
+
+
+"exclude_materials": [
+ ]
+
+
+ },
+
+
+ "overrides": {
+
+ "machine_name": { "default_value": "KOONOVO KN5" },
+ "machine_width": { "default_value": 420 },
+ "machine_depth": { "default_value": 420 },
+ "machine_height": { "default_value": 400 },
+ "machine_head_with_fans_polygon": { "default_value": [
+ [-26, 34],
+ [-26, -32],
+ [32, -32],
+ [32, 34]
+ ]
+ },
+
+ "gantry_height": { "value": 0 },
+
+
+ "machine_extruder_count": { "default_value": 2 },
+
+ "machine_start_gcode": {
+ "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 ;Move to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nM117 Printing..."
+ },
+
+
+ "machine_end_gcode": {
+ "default_value": "M104 T0 S0 ;1st extruder heater off\nM104 T1 S0 ;2nd extruder heater off\nM140 S0 ;heated bed heater off (if you have it)\nG91 ;relative positioning\nG1 E-1 F300 ;retract the filament a bit before lifting the nozzle, to release some of the pressure\nG1 Z+0.5 E-5 X-20 Y-20 F9000 ;move Z up a bit and retract filament even more\nG28 X0 Y0 ;move X/Y to min endstops, so the head is out of the way\nM84 ;steppers off\nG90 ;absolute positioning"
+ },
+
+
+ "machine_max_feedrate_x": { "value": 200 },
+ "machine_max_feedrate_y": { "value": 200 },
+ "machine_max_feedrate_z": { "value": 50 },
+ "machine_max_feedrate_e": { "value": 100 },
+
+ "machine_max_acceleration_x": { "value": 500 },
+ "machine_max_acceleration_y": { "value": 500 },
+ "machine_max_acceleration_z": { "value": 50 },
+ "machine_max_acceleration_e": { "value": 2000 },
+ "machine_acceleration": { "value": 500 },
+
+ "machine_heated_bed": { "default_value": true },
+
+ "material_diameter": { "default_value": 1.75 },
+
+
+ "acceleration_print": { "value": 500 },
+ "acceleration_travel": { "value": 500 },
+
+ "line_width": { "value": "machine_nozzle_size" },
+
+ "wall_thickness": {"value": "line_width * 2" },
+
+ "top_bottom_thickness": {"value": "layer_height_0 + layer_height * 3" },
+
+ "infill_sparse_density": { "value": "15" },
+ "infill_pattern": { "value": "'lines' if infill_sparse_density > 50 else 'cubic'" },
+
+ "material_print_temperature": { "value": "195" },
+ "material_print_temperature_layer_0": { "value": "material_print_temperature" },
+ "material_initial_print_temperature": { "value": "material_print_temperature" },
+ "material_final_print_temperature": { "value": "material_print_temperature" },
+ "material_standby_temperature": { "value": "material_print_temperature" },
+ "material_bed_temperature": { "value": "45" },
+ "material_bed_temperature_layer_0": { "value": "material_bed_temperature" },
+ "material_flow": { "value": 100 },
+
+ "speed_print": { "value": 50.0 } ,
+ "speed_infill": { "value": "speed_print" },
+ "speed_wall": { "value": "speed_print / 2" },
+ "speed_wall_0": { "value": "speed_wall" },
+ "speed_wall_x": { "value": "speed_wall" },
+ "speed_topbottom": { "value": "speed_print / 2" },
+ "speed_travel": { "value": "120.0 if speed_print < 60 else 180.0 if speed_print > 100 else speed_print * 2.2" },
+ "speed_layer_0": { "value": 25.0 },
+ "speed_print_layer_0": { "value": "speed_layer_0" },
+ "speed_travel_layer_0": { "value": "100 if speed_layer_0 < 25 else 150 if speed_layer_0 > 30 else speed_layer_0 * 5" },
+ "speed_prime_tower": { "value": "speed_topbottom" },
+ "speed_support": { "value": "speed_wall_0" },
+ "speed_z_hop": { "value": 5 },
+
+ "retraction_enable": { "value": true },
+ "retraction_amount": { "value": 2.5 },
+ "retraction_speed": { "value": 40 },
+
+ "cool_fan_full_at_height": { "value": "layer_height_0 + 2 * layer_height" },
+ "cool_fan_enabled": { "value": true },
+ "cool_min_layer_time": { "value": 10 },
+
+
+ "support_brim_enable": { "value": true },
+ "support_angle": { "value": "math.floor(math.degrees(math.atan(line_width/2.0/layer_height)))" },
+ "support_pattern": { "value": "'zigzag'" },
+ "support_infill_rate": { "value": "0 if support_enable and support_structure == 'tree' else 20" },
+ "support_use_towers": { "value": false },
+ "support_xy_distance": { "value": "wall_line_width_0 * 2" },
+ "support_xy_distance_overhang": { "value": "wall_line_width_0" },
+ "support_z_distance": { "value": "layer_height if layer_height >= 0.16 else layer_height*2" },
+ "support_xy_overrides_z": { "value": "'xy_overrides_z'" },
+ "support_wall_count": { "value": 1 },
+ "support_brim_width": { "value": 4 },
+
+ "support_enable": { "value": true },
+ "support_interface_enable": { "value": true },
+ "support_interface_height": { "value": "layer_height * 4" },
+ "support_interface_density": { "value": 33.333 },
+ "support_interface_pattern": { "value": "'grid'" },
+ "support_interface_skip_height": { "value": 0.2 },
+ "minimum_support_area": { "value": 2 },
+ "minimum_interface_area": { "value": 10 },
+
+ "fill_perimeter_gaps": { "value": "'everywhere'" },
+ "fill_outline_gaps": { "value": false },
+ "filter_out_tiny_gaps": { "value": false },
+
+ "adhesion_type": { "value": "'skirt'" },
+ "brim_replaces_support": { "value": false },
+ "skirt_gap": { "value": 6.0 },
+ "skirt_line_count": { "value": 3 }
+
+
+ }
+} \ No newline at end of file
diff --git a/resources/definitions/koonovo_pyramid.def.json b/resources/definitions/koonovo_pyramid.def.json
new file mode 100644
index 0000000000..816ce4ccd9
--- /dev/null
+++ b/resources/definitions/koonovo_pyramid.def.json
@@ -0,0 +1,26 @@
+{
+ "name": "KOONOVO Pyramid",
+ "version": 2,
+ "inherits": "koonovo_base",
+ "overrides": {
+ "machine_name": { "default_value": "KOONOVO Pyramid" },
+ "machine_width": { "default_value": 310 },
+ "machine_depth": { "default_value": 310 },
+ "machine_height": { "default_value": 400 },
+ "machine_head_with_fans_polygon": { "default_value": [
+ [-26, 34],
+ [-26, -32],
+ [32, -32],
+ [32, 34]
+ ]
+ },
+
+ "gantry_height": { "value": 0 }
+
+ },
+ "metadata": {
+ "quality_definition": "koonovo_base",
+ "visible": true
+
+ }
+}
diff --git a/resources/extruders/koonovo_base_extruder_0.def.json b/resources/extruders/koonovo_base_extruder_0.def.json
new file mode 100644
index 0000000000..34e3e3bffb
--- /dev/null
+++ b/resources/extruders/koonovo_base_extruder_0.def.json
@@ -0,0 +1,16 @@
+{
+ "version": 2,
+ "name": "Extruder 0",
+ "inherits": "fdmextruder",
+ "metadata": {
+ "machine": "koonovo_base",
+ "position": "0"
+ },
+
+ "overrides": {
+ "extruder_nr": { "default_value": 0 },
+ "machine_nozzle_size": { "default_value": 0.4 },
+ "material_diameter": { "default_value": 1.75 }
+
+ }
+}
diff --git a/resources/extruders/koonovo_kn3_extruder_0.def.json b/resources/extruders/koonovo_kn3_extruder_0.def.json
new file mode 100644
index 0000000000..e507f9fdc5
--- /dev/null
+++ b/resources/extruders/koonovo_kn3_extruder_0.def.json
@@ -0,0 +1,21 @@
+{
+ "version": 2,
+ "name": "Left Extruder",
+ "inherits": "fdmextruder",
+ "metadata": {
+ "machine": "koonovo_kn3",
+ "position": "0"
+ },
+
+ "overrides": {
+ "extruder_nr": {
+ "default_value": 0
+
+ },
+ "machine_nozzle_offset_x": { "default_value": 0.0 },
+ "machine_nozzle_offset_y": { "default_value": 0.0 },
+ "machine_nozzle_size": { "default_value": 0.4},
+ "material_diameter": { "default_value": 1.75 }
+
+ }
+}
diff --git a/resources/extruders/koonovo_kn3_extruder_1.def.json b/resources/extruders/koonovo_kn3_extruder_1.def.json
new file mode 100644
index 0000000000..0aebad348a
--- /dev/null
+++ b/resources/extruders/koonovo_kn3_extruder_1.def.json
@@ -0,0 +1,21 @@
+{
+ "version": 2,
+ "name": "Right Extruder",
+ "inherits": "fdmextruder",
+ "metadata": {
+ "machine": "koonovo_kn3",
+ "position": "1"
+ },
+
+ "overrides": {
+ "extruder_nr": {
+ "default_value": 1
+
+ },
+ "machine_nozzle_offset_x": { "default_value": 0.0 },
+ "machine_nozzle_offset_y": { "default_value": 0.0 },
+ "machine_nozzle_size": { "default_value": 0.4 },
+ "material_diameter": { "default_value": 1.75 }
+
+ }
+}
diff --git a/resources/extruders/koonovo_kn5_extruder_0.def.json b/resources/extruders/koonovo_kn5_extruder_0.def.json
new file mode 100644
index 0000000000..53aa0a3ff1
--- /dev/null
+++ b/resources/extruders/koonovo_kn5_extruder_0.def.json
@@ -0,0 +1,21 @@
+{
+ "version": 2,
+ "name": "Left Extruder",
+ "inherits": "fdmextruder",
+ "metadata": {
+ "machine": "koonovo_kn5",
+ "position": "0"
+ },
+
+ "overrides": {
+ "extruder_nr": {
+ "default_value": 0
+
+ },
+ "machine_nozzle_offset_x": { "default_value": 0.0 },
+ "machine_nozzle_offset_y": { "default_value": 0.0 },
+ "machine_nozzle_size": { "default_value": 0.4},
+ "material_diameter": { "default_value": 1.75 }
+
+ }
+}
diff --git a/resources/extruders/koonovo_kn5_extruder_1.def.json b/resources/extruders/koonovo_kn5_extruder_1.def.json
new file mode 100644
index 0000000000..d526c5715c
--- /dev/null
+++ b/resources/extruders/koonovo_kn5_extruder_1.def.json
@@ -0,0 +1,22 @@
+{
+ "version": 2,
+ "name": "Right Extruder",
+ "inherits": "fdmextruder",
+ "metadata": {
+ "machine": "koonovo_kn5",
+ "position": "1"
+ },
+
+ "overrides": {
+ "extruder_nr": {
+ "default_value": 1
+
+ },
+ "machine_nozzle_offset_x": { "default_value": 0.0 },
+ "machine_nozzle_offset_y": { "default_value": 0.0 },
+ "machine_nozzle_size": { "default_value": 0.4 },
+ "material_diameter": { "default_value": 1.75 }
+
+
+ }
+}
diff --git a/resources/images/koonovo.png b/resources/images/koonovo.png
new file mode 100644
index 0000000000..1400647236
--- /dev/null
+++ b/resources/images/koonovo.png
Binary files differ
diff --git a/resources/meshes/koonovo.obj b/resources/meshes/koonovo.obj
new file mode 100644
index 0000000000..87212004c3
--- /dev/null
+++ b/resources/meshes/koonovo.obj
@@ -0,0 +1,60 @@
+v 200 200 0
+v 200 -200 0
+v 200 -200 -4
+v 200 200 -4
+v -200 200 0
+v -200 200 -4
+v -200 -200 0
+v -200 -200 -4
+vt 0 1
+vt 0 1
+vt 0 1
+vt 0 1
+vt 0 1
+vt 0 1
+vt 0 1
+vt 0 1
+vt 0 1
+vt 0 1
+vt 0 1
+vt 0 1
+vt 0 1
+vt 0 1
+vt 0 1
+vt 0 1
+vt 0 0
+vt 1 0
+vt 0 1
+vt 1 1
+vt 0 0
+vt 1 0
+vt 0 1
+vt 1 1
+f 1/1 2/2 4/3
+f 4/3 2/2 3/4
+f 5/5 1/6 6/7
+f 6/7 1/6 4/8
+f 7/9 5/10 8/11
+f 8/11 5/10 6/12
+f 2/13 7/14 3/15
+f 3/15 7/14 8/16
+f 6/21 4/22 3/24 8/23
+v -50 270.7 70.7
+v 50 270.7 70.7
+v 50 200 0
+v -50 200 0
+v -50 270.7 66.7
+v 50 270.7 66.7
+v 50 200 -4
+v -50 200 -4
+vt 0 1
+vt 0 0
+vt 1 0
+vt 1 1
+vt 0 1
+f 10/1 11/2 15/3 14/4
+f 9/4 10/8 14/7 13/8
+f 12/9 9/10 13/11 16/12
+f 11/13 12/14 16/15 15/16
+f 12/26 11/27 10/28 9/25
+f 13/13 14/14 15/15 16/16 \ No newline at end of file
diff --git a/resources/meshes/koonovo_kn3.stl b/resources/meshes/koonovo_kn3.stl
new file mode 100644
index 0000000000..710fa358a4
--- /dev/null
+++ b/resources/meshes/koonovo_kn3.stl
Binary files differ
diff --git a/resources/meshes/koonovo_kn5.stl b/resources/meshes/koonovo_kn5.stl
new file mode 100644
index 0000000000..ef51602d3a
--- /dev/null
+++ b/resources/meshes/koonovo_kn5.stl
Binary files differ
diff --git a/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg
new file mode 100644
index 0000000000..13f4b951e0
--- /dev/null
+++ b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg
@@ -0,0 +1,17 @@
+[general]
+version = 4
+name = Draft Quality
+definition = koonovo_base
+
+[metadata]
+setting_version = 16
+type = quality
+quality_type = draft
+global_quality = True
+
+[values]
+layer_height = 0.25
+layer_height_0 = 0.25
+top_bottom_thickness = =layer_height_0+layer_height*3
+wall_thickness = =line_width*2
+support_interface_height = =layer_height*4
diff --git a/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg
new file mode 100644
index 0000000000..4eb54bbcb4
--- /dev/null
+++ b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg
@@ -0,0 +1,18 @@
+[general]
+version = 4
+name = Standard Quality
+definition = koonovo_base
+
+[metadata]
+setting_version = 16
+type = quality
+quality_type = standard
+weight = -3
+global_quality = True
+
+[values]
+layer_height = 0.2
+layer_height_0 = 0.2
+top_bottom_thickness = =layer_height_0+layer_height*3
+wall_thickness = =line_width*2
+support_interface_height = =layer_height*4
diff --git a/resources/quality/koonovo/koovono_base_global_high.inst.cfg b/resources/quality/koonovo/koovono_base_global_high.inst.cfg
new file mode 100644
index 0000000000..ee5c69b135
--- /dev/null
+++ b/resources/quality/koonovo/koovono_base_global_high.inst.cfg
@@ -0,0 +1,18 @@
+[general]
+version = 4
+name = Super Quality
+definition = koonovo_base
+
+[metadata]
+setting_version = 16
+type = quality
+quality_type = high
+weight = -1
+global_quality = True
+
+[values]
+layer_height = 0.12
+layer_height_0 = 0.12
+top_bottom_thickness = =layer_height_0+layer_height*6
+wall_thickness = =line_width*3
+support_interface_height = =layer_height*8