Add 0.2mm and 0.25mm nozzle profiles to AnkerMake printers (#4260)

* Add .02 nozzle profiles

* Remove carbon fiber 0.2 profiles

* Flag Filament Types Correctly

* Add missing PC 0.2 profile

* Correct PLA nozzle name typo

* Tune supports for the thinner layer lines

* Pull in latest main branch updates

* Correct Support bottom distance

* Correct the numbering

* Add 0.25mm Nozzle Profiles

* Enable manual filament changing for all AnkerMake Printers

* Pull in latest main branch updates

* Remove extra white space from file name

---------

Co-authored-by: Geofrey Ward <Xelinor@mail.com>
Co-authored-by: SoftFever <softfeverever@gmail.com>
This commit is contained in:
Geoffrey Ward 2024-03-01 05:37:08 -08:00 committed by GitHub
parent ad9779f08a
commit a5029c263c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
40 changed files with 852 additions and 98 deletions

View file

@ -0,0 +1,14 @@
{
"type": "process",
"setting_id": "GP010",
"name": "0.05mm Optimal 0.2 nozzle @Anker",
"from": "system",
"inherits": "fdm_process_anker_common_0_2",
"instantiation": "true",
"layer_height": "0.05",
"initial_layer_print_height": "0.15",
"bottom_shell_layers": "10",
"top_shell_layers": "14",
"bridge_flow": "0.75",
"skirt_height": "3"
}

View file

@ -0,0 +1,14 @@
{
"type": "process",
"setting_id": "GP013",
"name": "0.05mm Optimal 0.25 nozzle @Anker",
"from": "system",
"inherits": "fdm_process_anker_common_0_25",
"instantiation": "true",
"layer_height": "0.05",
"initial_layer_print_height": "0.15",
"bottom_shell_layers": "10",
"top_shell_layers": "14",
"bridge_flow": "0.75",
"skirt_height": "3"
}

View file

@ -0,0 +1,14 @@
{
"type": "process",
"setting_id": "GP011",
"name": "0.10mm Standard 0.2 nozzle @Anker",
"from": "system",
"inherits": "fdm_process_anker_common_0_2",
"instantiation": "true",
"layer_height": "0.10",
"initial_layer_print_height": "0.15",
"bottom_shell_layers": "7",
"top_shell_layers": "9",
"bridge_flow": "0.75",
"skirt_height": "3"
}

View file

@ -0,0 +1,14 @@
{
"type": "process",
"setting_id": "GP014",
"name": "0.10mm Standard 0.25 nozzle @Anker",
"from": "system",
"inherits": "fdm_process_anker_common_0_25",
"instantiation": "true",
"layer_height": "0.10",
"initial_layer_print_height": "0.15",
"bottom_shell_layers": "7",
"top_shell_layers": "9",
"bridge_flow": "0.75",
"skirt_height": "3"
}

View file

@ -0,0 +1,13 @@
{
"type": "process",
"setting_id": "GP012",
"name": "0.15mm Draft 0.2 nozzle @Anker",
"from": "system",
"inherits": "fdm_process_anker_common_0_2",
"instantiation": "true",
"layer_height": "0.15",
"initial_layer_print_height": "0.15",
"bottom_shell_layers": "5",
"top_shell_layers": "6",
"bridge_flow": "0.85"
}

View file

@ -0,0 +1,13 @@
{
"type": "process",
"setting_id": "GP015",
"name": "0.15mm Draft 0.25 nozzle @Anker",
"from": "system",
"inherits": "fdm_process_anker_common_0_25",
"instantiation": "true",
"layer_height": "0.15",
"initial_layer_print_height": "0.15",
"bottom_shell_layers": "5",
"top_shell_layers": "6",
"bridge_flow": "0.85"
}

View file

@ -0,0 +1,24 @@
{
"type": "process",
"name": "fdm_process_anker_common_0_2",
"from": "system",
"instantiation": "false",
"inherits": "fdm_process_common",
"line_width": "0.22",
"initial_layer_line_width": "0.25",
"outer_wall_line_width": "0.22",
"inner_wall_line_width": "0.22",
"top_surface_line_width": "0.22",
"sparse_infill_line_width": "0.22",
"internal_solid_infill_line_width": "0.22",
"support_line_width": "0.22",
"bridge_flow": "0.98",
"support_threshold_angle": "30",
"support_top_z_distance": "0.15",
"support_bottom_z_distance": "0.15",
"compatible_printers": [
"Anker M5 0.2 nozzle",
"Anker M5 All-Metal 0.2 nozzle",
"Anker M5C 0.2 nozzle"
]
}

View file

@ -0,0 +1,24 @@
{
"type": "process",
"name": "fdm_process_anker_common_0_25",
"from": "system",
"instantiation": "false",
"inherits": "fdm_process_common",
"line_width": "0.27",
"initial_layer_line_width": "0.28",
"outer_wall_line_width": "0.27",
"inner_wall_line_width": "0.27",
"top_surface_line_width": "0.27",
"sparse_infill_line_width": "0.27",
"internal_solid_infill_line_width": "0.27",
"support_line_width": "0.27",
"bridge_flow": "0.98",
"support_threshold_angle": "30",
"support_top_z_distance": "0.15",
"support_bottom_z_distance": "0.15",
"compatible_printers": [
"Anker M5 0.25 nozzle",
"Anker M5 All-Metal 0.25 nozzle",
"Anker M5C 0.25 nozzle"
]
}