From d2c211a7f52cac268fbb54745c9efa464da4b642 Mon Sep 17 00:00:00 2001 From: lukicsl Date: Mon, 30 Oct 2023 14:26:49 +0100 Subject: [PATCH] Added 0.2mm, 0.6mm, 0.8mm nozzle support for Voron 2.4 (#2543) --- resources/profiles/Voron.json | 108 ++++++++++++++++++ .../Voron/filament/Voron Generic ABS.json | 9 ++ .../Voron/filament/Voron Generic ASA.json | 27 +++-- .../Voron/filament/Voron Generic PA-CF.json | 29 +++-- .../Voron/filament/Voron Generic PA.json | 29 +++-- .../Voron/filament/Voron Generic PC.json | 29 +++-- .../Voron/filament/Voron Generic PETG.json | 28 +++-- .../Voron/filament/Voron Generic PLA-CF.json | 30 +++-- .../Voron/filament/Voron Generic PLA.json | 28 +++-- .../Voron/filament/Voron Generic PVA.json | 27 +++-- .../Voron/filament/Voron Generic TPU.json | 28 +++-- .../machine/Voron 2.4 250 0.2 nozzle.json | 26 +++++ .../machine/Voron 2.4 250 0.6 nozzle.json | 26 +++++ .../machine/Voron 2.4 250 0.8 nozzle.json | 26 +++++ .../profiles/Voron/machine/Voron 2.4 250.json | 2 +- .../machine/Voron 2.4 300 0.2 nozzle.json | 26 +++++ .../machine/Voron 2.4 300 0.6 nozzle.json | 26 +++++ .../machine/Voron 2.4 300 0.8 nozzle.json | 26 +++++ .../profiles/Voron/machine/Voron 2.4 300.json | 2 +- .../machine/Voron 2.4 350 0.2 nozzle.json | 26 +++++ .../machine/Voron 2.4 350 0.6 nozzle.json | 26 +++++ .../machine/Voron 2.4 350 0.8 nozzle.json | 26 +++++ .../profiles/Voron/machine/Voron 2.4 350.json | 2 +- .../0.06mm Fine 0.2 nozzle @Voron.json | 14 +++ .../0.08mm Optimal 0.2 nozzle @Voron.json | 14 +++ .../0.10mm Standard 0.2 nozzle @Voron.json | 11 ++ .../0.12mm Draft 0.2 nozzle @Voron.json | 11 ++ .../0.14mm Extra Draft 0.2 nozzle @Voron.json | 11 ++ .../0.18mm Fine 0.6 nozzle @Voron.json | 11 ++ .../0.24mm Fine 0.8 nozzle @Voron.json | 11 ++ .../0.24mm Optimal 0.6 nozzle @Voron.json | 11 ++ .../0.30mm Standard 0.6 nozzle @Voron.json | 11 ++ .../0.32mm Optimal 0.6 nozzle @Voron.json | 11 ++ .../0.36mm Draft 0.6 nozzle @Voron.json | 11 ++ .../0.40mm Standard 0.8 nozzle @Voron.json | 11 ++ .../0.42mm Extra Draft 0.6 nozzle @Voron.json | 11 ++ .../0.48mm Draft 0.8 nozzle @Voron.json | 11 ++ .../0.56mm Extra Draft 0.8 nozzle @Voron.json | 11 ++ .../process/fdm_process_voron_common_0_2.json | 21 ++++ .../process/fdm_process_voron_common_0_6.json | 21 ++++ .../process/fdm_process_voron_common_0_8.json | 21 ++++ 41 files changed, 754 insertions(+), 92 deletions(-) create mode 100644 resources/profiles/Voron/machine/Voron 2.4 250 0.2 nozzle.json create mode 100644 resources/profiles/Voron/machine/Voron 2.4 250 0.6 nozzle.json create mode 100644 resources/profiles/Voron/machine/Voron 2.4 250 0.8 nozzle.json create mode 100644 resources/profiles/Voron/machine/Voron 2.4 300 0.2 nozzle.json create mode 100644 resources/profiles/Voron/machine/Voron 2.4 300 0.6 nozzle.json create mode 100644 resources/profiles/Voron/machine/Voron 2.4 300 0.8 nozzle.json create mode 100644 resources/profiles/Voron/machine/Voron 2.4 350 0.2 nozzle.json create mode 100644 resources/profiles/Voron/machine/Voron 2.4 350 0.6 nozzle.json create mode 100644 resources/profiles/Voron/machine/Voron 2.4 350 0.8 nozzle.json create mode 100644 resources/profiles/Voron/process/0.06mm Fine 0.2 nozzle @Voron.json create mode 100644 resources/profiles/Voron/process/0.08mm Optimal 0.2 nozzle @Voron.json create mode 100644 resources/profiles/Voron/process/0.10mm Standard 0.2 nozzle @Voron.json create mode 100644 resources/profiles/Voron/process/0.12mm Draft 0.2 nozzle @Voron.json create mode 100644 resources/profiles/Voron/process/0.14mm Extra Draft 0.2 nozzle @Voron.json create mode 100644 resources/profiles/Voron/process/0.18mm Fine 0.6 nozzle @Voron.json create mode 100644 resources/profiles/Voron/process/0.24mm Fine 0.8 nozzle @Voron.json create mode 100644 resources/profiles/Voron/process/0.24mm Optimal 0.6 nozzle @Voron.json create mode 100644 resources/profiles/Voron/process/0.30mm Standard 0.6 nozzle @Voron.json create mode 100644 resources/profiles/Voron/process/0.32mm Optimal 0.6 nozzle @Voron.json create mode 100644 resources/profiles/Voron/process/0.36mm Draft 0.6 nozzle @Voron.json create mode 100644 resources/profiles/Voron/process/0.40mm Standard 0.8 nozzle @Voron.json create mode 100644 resources/profiles/Voron/process/0.42mm Extra Draft 0.6 nozzle @Voron.json create mode 100644 resources/profiles/Voron/process/0.48mm Draft 0.8 nozzle @Voron.json create mode 100644 resources/profiles/Voron/process/0.56mm Extra Draft 0.8 nozzle @Voron.json create mode 100644 resources/profiles/Voron/process/fdm_process_voron_common_0_2.json create mode 100644 resources/profiles/Voron/process/fdm_process_voron_common_0_6.json create mode 100644 resources/profiles/Voron/process/fdm_process_voron_common_0_8.json diff --git a/resources/profiles/Voron.json b/resources/profiles/Voron.json index 2b6e4bcc1e7..7fa1c56822e 100644 --- a/resources/profiles/Voron.json +++ b/resources/profiles/Voron.json @@ -46,18 +46,54 @@ "name": "fdm_process_voron_common", "sub_path": "process/fdm_process_voron_common.json" }, + { + "name": "fdm_process_voron_common_0_2", + "sub_path": "process/fdm_process_voron_common_0_2.json" + }, + { + "name": "fdm_process_voron_common_0_6", + "sub_path": "process/fdm_process_voron_common_0_6.json" + }, + { + "name": "fdm_process_voron_common_0_8", + "sub_path": "process/fdm_process_voron_common_0_8.json" + }, + { + "name": "0.06mm Fine 0.2 nozzle @Voron", + "sub_path": "process/0.06mm Fine 0.2 nozzle @Voron.json" + }, { "name": "0.08mm Extra Fine @Voron", "sub_path": "process/0.08mm Extra Fine @Voron.json" }, + { + "name": "0.08mm Optimal 0.2 nozzle @Voron", + "sub_path": "process/0.08mm Optimal 0.2 nozzle @Voron.json" + }, + { + "name": "0.10mm Standard 0.2 nozzle @Voron", + "sub_path": "process/0.10mm Standard 0.2 nozzle @Voron.json" + }, { "name": "0.12mm Fine @Voron", "sub_path": "process/0.12mm Fine @Voron.json" }, + { + "name": "0.12mm Draft 0.2 nozzle @Voron", + "sub_path": "process/0.12mm Draft 0.2 nozzle @Voron.json" + }, + { + "name": "0.14mm Extra Draft 0.2 nozzle @Voron", + "sub_path": "process/0.14mm Extra Draft 0.2 nozzle @Voron.json" + }, { "name": "0.15mm Optimal @Voron", "sub_path": "process/0.15mm Optimal @Voron.json" }, + { + "name": "0.18mm Fine 0.6 nozzle @Voron", + "sub_path": "process/0.18mm Fine 0.6 nozzle @Voron.json" + }, { "name": "0.20mm Standard @Voron", "sub_path": "process/0.20mm Standard @Voron.json" @@ -66,9 +102,45 @@ "name": "0.24mm Draft @Voron", "sub_path": "process/0.24mm Draft @Voron.json" }, + { + "name": "0.24mm Optimal 0.6 nozzle @Voron", + "sub_path": "process/0.24mm Optimal 0.6 nozzle @Voron.json" + }, + { + "name": "0.24mm Fine 0.8 nozzle @Voron", + "sub_path": "process/0.24mm Fine 0.8 nozzle @Voron.json" + }, { "name": "0.28mm Extra Draft @Voron", "sub_path": "process/0.28mm Extra Draft @Voron.json" + }, + { + "name": "0.30mm Standard 0.6 nozzle @Voron", + "sub_path": "process/0.30mm Standard 0.6 nozzle @Voron.json" + }, + { + "name": "0.32mm Optimal 0.6 nozzle @Voron", + "sub_path": "process/0.32mm Optimal 0.6 nozzle @Voron.json" + }, + { + "name": "0.36mm Draft 0.6 nozzle @Voron", + "sub_path": "process/0.36mm Draft 0.6 nozzle @Voron.json" + }, + { + "name": "0.40mm Standard 0.8 nozzle @Voron", + "sub_path": "process/0.40mm Standard 0.8 nozzle @Voron.json" + }, + { + "name": "0.42mm Extra Draft 0.6 nozzle @Voron", + "sub_path": "process/0.42mm Extra Draft 0.6 nozzle @Voron.json" + }, + { + "name": "0.48mm Draft 0.8 nozzle @Voron", + "sub_path": "process/0.48mm Draft 0.8 nozzle @Voron.json" + }, + { + "name": "0.56mm Extra Draft 0.8 nozzle @Voron", + "sub_path": "process/0.56mm Extra Draft 0.8 nozzle @Voron.json" } ], "filament_list": [ @@ -162,14 +234,50 @@ "name": "Voron 2.4 250 0.4 nozzle", "sub_path": "machine/Voron 2.4 250 0.4 nozzle.json" }, + { + "name": "Voron 2.4 250 0.2 nozzle", + "sub_path": "machine/Voron 2.4 250 0.2 nozzle.json" + }, + { + "name": "Voron 2.4 250 0.6 nozzle", + "sub_path": "machine/Voron 2.4 250 0.6 nozzle.json" + }, + { + "name": "Voron 2.4 250 0.8 nozzle", + "sub_path": "machine/Voron 2.4 250 0.8 nozzle.json" + }, { "name": "Voron 2.4 300 0.4 nozzle", "sub_path": "machine/Voron 2.4 300 0.4 nozzle.json" }, + { + "name": "Voron 2.4 300 0.2 nozzle", + "sub_path": "machine/Voron 2.4 300 0.2 nozzle.json" + }, + { + "name": "Voron 2.4 300 0.6 nozzle", + "sub_path": "machine/Voron 2.4 300 0.6 nozzle.json" + }, + { + "name": "Voron 2.4 300 0.8 nozzle", + "sub_path": "machine/Voron 2.4 300 0.8 nozzle.json" + }, { "name": "Voron 2.4 350 0.4 nozzle", "sub_path": "machine/Voron 2.4 350 0.4 nozzle.json" }, + { + "name": "Voron 2.4 350 0.2 nozzle", + "sub_path": "machine/Voron 2.4 350 0.2 nozzle.json" + }, + { + "name": "Voron 2.4 350 0.6 nozzle", + "sub_path": "machine/Voron 2.4 350 0.6 nozzle.json" + }, + { + "name": "Voron 2.4 350 0.8 nozzle", + "sub_path": "machine/Voron 2.4 350 0.8 nozzle.json" + }, { "name": "Voron Trident 250 0.4 nozzle", "sub_path": "machine/Voron Trident 250 0.4 nozzle.json" diff --git a/resources/profiles/Voron/filament/Voron Generic ABS.json b/resources/profiles/Voron/filament/Voron Generic ABS.json index 0d05960e1fa..b30a308f62a 100644 --- a/resources/profiles/Voron/filament/Voron Generic ABS.json +++ b/resources/profiles/Voron/filament/Voron Generic ABS.json @@ -14,8 +14,17 @@ ], "compatible_printers": [ "Voron 2.4 250 0.4 nozzle", + "Voron 2.4 250 0.2 nozzle", + "Voron 2.4 250 0.6 nozzle", + "Voron 2.4 250 0.8 nozzle", "Voron 2.4 300 0.4 nozzle", + "Voron 2.4 300 0.2 nozzle", + "Voron 2.4 300 0.6 nozzle", + "Voron 2.4 300 0.8 nozzle", "Voron 2.4 350 0.4 nozzle", + "Voron 2.4 350 0.2 nozzle", + "Voron 2.4 350 0.6 nozzle", + "Voron 2.4 350 0.8 nozzle", "Voron Trident 250 0.4 nozzle", "Voron Trident 300 0.4 nozzle", "Voron Trident 350 0.4 nozzle", diff --git a/resources/profiles/Voron/filament/Voron Generic ASA.json b/resources/profiles/Voron/filament/Voron Generic ASA.json index 5a05b451137..8e8c29b7781 100644 --- a/resources/profiles/Voron/filament/Voron Generic ASA.json +++ b/resources/profiles/Voron/filament/Voron Generic ASA.json @@ -13,12 +13,21 @@ "12" ], "compatible_printers": [ - "Voron 2.4 250 0.4 nozzle", - "Voron 2.4 300 0.4 nozzle", - "Voron 2.4 350 0.4 nozzle", - "Voron Trident 250 0.4 nozzle", - "Voron Trident 300 0.4 nozzle", - "Voron Trident 350 0.4 nozzle", - "Voron 0.1 0.4 nozzle" - ] -} + "Voron 2.4 250 0.4 nozzle", + "Voron 2.4 250 0.2 nozzle", + "Voron 2.4 250 0.6 nozzle", + "Voron 2.4 250 0.8 nozzle", + "Voron 2.4 300 0.4 nozzle", + "Voron 2.4 300 0.2 nozzle", + "Voron 2.4 300 0.6 nozzle", + "Voron 2.4 300 0.8 nozzle", + "Voron 2.4 350 0.4 nozzle", + "Voron 2.4 350 0.2 nozzle", + "Voron 2.4 350 0.6 nozzle", + "Voron 2.4 350 0.8 nozzle", + "Voron Trident 250 0.4 nozzle", + "Voron Trident 300 0.4 nozzle", + "Voron Trident 350 0.4 nozzle", + "Voron 0.1 0.4 nozzle" + ] + } diff --git a/resources/profiles/Voron/filament/Voron Generic PA-CF.json b/resources/profiles/Voron/filament/Voron Generic PA-CF.json index bdf028e4082..a1e50004e62 100644 --- a/resources/profiles/Voron/filament/Voron Generic PA-CF.json +++ b/resources/profiles/Voron/filament/Voron Generic PA-CF.json @@ -18,13 +18,22 @@ "filament_max_volumetric_speed": [ "8" ], -"compatible_printers": [ - "Voron 2.4 250 0.4 nozzle", - "Voron 2.4 300 0.4 nozzle", - "Voron 2.4 350 0.4 nozzle", - "Voron Trident 250 0.4 nozzle", - "Voron Trident 300 0.4 nozzle", - "Voron Trident 350 0.4 nozzle", - "Voron 0.1 0.4 nozzle" - ] -} + "compatible_printers": [ + "Voron 2.4 250 0.4 nozzle", + "Voron 2.4 250 0.2 nozzle", + "Voron 2.4 250 0.6 nozzle", + "Voron 2.4 250 0.8 nozzle", + "Voron 2.4 300 0.4 nozzle", + "Voron 2.4 300 0.2 nozzle", + "Voron 2.4 300 0.6 nozzle", + "Voron 2.4 300 0.8 nozzle", + "Voron 2.4 350 0.4 nozzle", + "Voron 2.4 350 0.2 nozzle", + "Voron 2.4 350 0.6 nozzle", + "Voron 2.4 350 0.8 nozzle", + "Voron Trident 250 0.4 nozzle", + "Voron Trident 300 0.4 nozzle", + "Voron Trident 350 0.4 nozzle", + "Voron 0.1 0.4 nozzle" + ] + } diff --git a/resources/profiles/Voron/filament/Voron Generic PA.json b/resources/profiles/Voron/filament/Voron Generic PA.json index bf1bf35dddf..ec0b77f9073 100644 --- a/resources/profiles/Voron/filament/Voron Generic PA.json +++ b/resources/profiles/Voron/filament/Voron Generic PA.json @@ -15,13 +15,22 @@ "filament_max_volumetric_speed": [ "12" ], -"compatible_printers": [ - "Voron 2.4 250 0.4 nozzle", - "Voron 2.4 300 0.4 nozzle", - "Voron 2.4 350 0.4 nozzle", - "Voron Trident 250 0.4 nozzle", - "Voron Trident 300 0.4 nozzle", - "Voron Trident 350 0.4 nozzle", - "Voron 0.1 0.4 nozzle" - ] -} + "compatible_printers": [ + "Voron 2.4 250 0.4 nozzle", + "Voron 2.4 250 0.2 nozzle", + "Voron 2.4 250 0.6 nozzle", + "Voron 2.4 250 0.8 nozzle", + "Voron 2.4 300 0.4 nozzle", + "Voron 2.4 300 0.2 nozzle", + "Voron 2.4 300 0.6 nozzle", + "Voron 2.4 300 0.8 nozzle", + "Voron 2.4 350 0.4 nozzle", + "Voron 2.4 350 0.2 nozzle", + "Voron 2.4 350 0.6 nozzle", + "Voron 2.4 350 0.8 nozzle", + "Voron Trident 250 0.4 nozzle", + "Voron Trident 300 0.4 nozzle", + "Voron Trident 350 0.4 nozzle", + "Voron 0.1 0.4 nozzle" + ] + } diff --git a/resources/profiles/Voron/filament/Voron Generic PC.json b/resources/profiles/Voron/filament/Voron Generic PC.json index 772c4f307c6..e5b849644f4 100644 --- a/resources/profiles/Voron/filament/Voron Generic PC.json +++ b/resources/profiles/Voron/filament/Voron Generic PC.json @@ -12,13 +12,22 @@ "filament_flow_ratio": [ "0.94" ], -"compatible_printers": [ - "Voron 2.4 250 0.4 nozzle", - "Voron 2.4 300 0.4 nozzle", - "Voron 2.4 350 0.4 nozzle", - "Voron Trident 250 0.4 nozzle", - "Voron Trident 300 0.4 nozzle", - "Voron Trident 350 0.4 nozzle", - "Voron 0.1 0.4 nozzle" - ] -} + "compatible_printers": [ + "Voron 2.4 250 0.4 nozzle", + "Voron 2.4 250 0.2 nozzle", + "Voron 2.4 250 0.6 nozzle", + "Voron 2.4 250 0.8 nozzle", + "Voron 2.4 300 0.4 nozzle", + "Voron 2.4 300 0.2 nozzle", + "Voron 2.4 300 0.6 nozzle", + "Voron 2.4 300 0.8 nozzle", + "Voron 2.4 350 0.4 nozzle", + "Voron 2.4 350 0.2 nozzle", + "Voron 2.4 350 0.6 nozzle", + "Voron 2.4 350 0.8 nozzle", + "Voron Trident 250 0.4 nozzle", + "Voron Trident 300 0.4 nozzle", + "Voron Trident 350 0.4 nozzle", + "Voron 0.1 0.4 nozzle" + ] + } diff --git a/resources/profiles/Voron/filament/Voron Generic PETG.json b/resources/profiles/Voron/filament/Voron Generic PETG.json index 839a560790b..03b5dc2b38c 100644 --- a/resources/profiles/Voron/filament/Voron Generic PETG.json +++ b/resources/profiles/Voron/filament/Voron Generic PETG.json @@ -43,13 +43,21 @@ "; filament start gcode\n" ], "compatible_printers": [ - "Voron 2.4 250 0.4 nozzle", - "Voron 2.4 300 0.4 nozzle", - "Voron 2.4 350 0.4 nozzle", - "Voron Trident 250 0.4 nozzle", - "Voron Trident 300 0.4 nozzle", - "Voron Trident 350 0.4 nozzle", - "Voron 0.1 0.4 nozzle", - "Voron Switchwire 250 0.4 nozzle" - ] -} + "Voron 2.4 250 0.4 nozzle", + "Voron 2.4 250 0.2 nozzle", + "Voron 2.4 250 0.6 nozzle", + "Voron 2.4 250 0.8 nozzle", + "Voron 2.4 300 0.4 nozzle", + "Voron 2.4 300 0.2 nozzle", + "Voron 2.4 300 0.6 nozzle", + "Voron 2.4 300 0.8 nozzle", + "Voron 2.4 350 0.4 nozzle", + "Voron 2.4 350 0.2 nozzle", + "Voron 2.4 350 0.6 nozzle", + "Voron 2.4 350 0.8 nozzle", + "Voron Trident 250 0.4 nozzle", + "Voron Trident 300 0.4 nozzle", + "Voron Trident 350 0.4 nozzle", + "Voron 0.1 0.4 nozzle" + ] + } diff --git a/resources/profiles/Voron/filament/Voron Generic PLA-CF.json b/resources/profiles/Voron/filament/Voron Generic PLA-CF.json index 9d27942ded1..a7f831d23f2 100644 --- a/resources/profiles/Voron/filament/Voron Generic PLA-CF.json +++ b/resources/profiles/Voron/filament/Voron Generic PLA-CF.json @@ -18,14 +18,22 @@ "slow_down_layer_time": [ "7" ], -"compatible_printers": [ - "Voron 2.4 250 0.4 nozzle", - "Voron 2.4 300 0.4 nozzle", - "Voron 2.4 350 0.4 nozzle", - "Voron Trident 250 0.4 nozzle", - "Voron Trident 300 0.4 nozzle", - "Voron Trident 350 0.4 nozzle", - "Voron 0.1 0.4 nozzle", - "Voron Switchwire 250 0.4 nozzle" - ] -} + "compatible_printers": [ + "Voron 2.4 250 0.4 nozzle", + "Voron 2.4 250 0.2 nozzle", + "Voron 2.4 250 0.6 nozzle", + "Voron 2.4 250 0.8 nozzle", + "Voron 2.4 300 0.4 nozzle", + "Voron 2.4 300 0.2 nozzle", + "Voron 2.4 300 0.6 nozzle", + "Voron 2.4 300 0.8 nozzle", + "Voron 2.4 350 0.4 nozzle", + "Voron 2.4 350 0.2 nozzle", + "Voron 2.4 350 0.6 nozzle", + "Voron 2.4 350 0.8 nozzle", + "Voron Trident 250 0.4 nozzle", + "Voron Trident 300 0.4 nozzle", + "Voron Trident 350 0.4 nozzle", + "Voron 0.1 0.4 nozzle" + ] + } diff --git a/resources/profiles/Voron/filament/Voron Generic PLA.json b/resources/profiles/Voron/filament/Voron Generic PLA.json index aaf11991579..1f1026ae1c7 100644 --- a/resources/profiles/Voron/filament/Voron Generic PLA.json +++ b/resources/profiles/Voron/filament/Voron Generic PLA.json @@ -16,13 +16,21 @@ "8" ], "compatible_printers": [ - "Voron 2.4 250 0.4 nozzle", - "Voron 2.4 300 0.4 nozzle", - "Voron 2.4 350 0.4 nozzle", - "Voron Trident 250 0.4 nozzle", - "Voron Trident 300 0.4 nozzle", - "Voron Trident 350 0.4 nozzle", - "Voron 0.1 0.4 nozzle", - "Voron Switchwire 250 0.4 nozzle" - ] -} + "Voron 2.4 250 0.4 nozzle", + "Voron 2.4 250 0.2 nozzle", + "Voron 2.4 250 0.6 nozzle", + "Voron 2.4 250 0.8 nozzle", + "Voron 2.4 300 0.4 nozzle", + "Voron 2.4 300 0.2 nozzle", + "Voron 2.4 300 0.6 nozzle", + "Voron 2.4 300 0.8 nozzle", + "Voron 2.4 350 0.4 nozzle", + "Voron 2.4 350 0.2 nozzle", + "Voron 2.4 350 0.6 nozzle", + "Voron 2.4 350 0.8 nozzle", + "Voron Trident 250 0.4 nozzle", + "Voron Trident 300 0.4 nozzle", + "Voron Trident 350 0.4 nozzle", + "Voron 0.1 0.4 nozzle" + ] + } diff --git a/resources/profiles/Voron/filament/Voron Generic PVA.json b/resources/profiles/Voron/filament/Voron Generic PVA.json index c29c77163fb..8d38ae527bc 100644 --- a/resources/profiles/Voron/filament/Voron Generic PVA.json +++ b/resources/profiles/Voron/filament/Voron Generic PVA.json @@ -19,12 +19,21 @@ "10" ], "compatible_printers": [ - "Voron 2.4 250 0.4 nozzle", - "Voron 2.4 300 0.4 nozzle", - "Voron 2.4 350 0.4 nozzle", - "Voron Trident 250 0.4 nozzle", - "Voron Trident 300 0.4 nozzle", - "Voron Trident 350 0.4 nozzle", - "Voron 0.1 0.4 nozzle" - ] -} + "Voron 2.4 250 0.4 nozzle", + "Voron 2.4 250 0.2 nozzle", + "Voron 2.4 250 0.6 nozzle", + "Voron 2.4 250 0.8 nozzle", + "Voron 2.4 300 0.4 nozzle", + "Voron 2.4 300 0.2 nozzle", + "Voron 2.4 300 0.6 nozzle", + "Voron 2.4 300 0.8 nozzle", + "Voron 2.4 350 0.4 nozzle", + "Voron 2.4 350 0.2 nozzle", + "Voron 2.4 350 0.6 nozzle", + "Voron 2.4 350 0.8 nozzle", + "Voron Trident 250 0.4 nozzle", + "Voron Trident 300 0.4 nozzle", + "Voron Trident 350 0.4 nozzle", + "Voron 0.1 0.4 nozzle" + ] + } diff --git a/resources/profiles/Voron/filament/Voron Generic TPU.json b/resources/profiles/Voron/filament/Voron Generic TPU.json index 049cd09a73b..d0be4e95b9d 100644 --- a/resources/profiles/Voron/filament/Voron Generic TPU.json +++ b/resources/profiles/Voron/filament/Voron Generic TPU.json @@ -10,13 +10,21 @@ "3.2" ], "compatible_printers": [ - "Voron 2.4 250 0.4 nozzle", - "Voron 2.4 300 0.4 nozzle", - "Voron 2.4 350 0.4 nozzle", - "Voron Trident 250 0.4 nozzle", - "Voron Trident 300 0.4 nozzle", - "Voron Trident 350 0.4 nozzle", - "Voron 0.1 0.4 nozzle", - "Voron Switchwire 250 0.4 nozzle" - ] -} + "Voron 2.4 250 0.4 nozzle", + "Voron 2.4 250 0.2 nozzle", + "Voron 2.4 250 0.6 nozzle", + "Voron 2.4 250 0.8 nozzle", + "Voron 2.4 300 0.4 nozzle", + "Voron 2.4 300 0.2 nozzle", + "Voron 2.4 300 0.6 nozzle", + "Voron 2.4 300 0.8 nozzle", + "Voron 2.4 350 0.4 nozzle", + "Voron 2.4 350 0.2 nozzle", + "Voron 2.4 350 0.6 nozzle", + "Voron 2.4 350 0.8 nozzle", + "Voron Trident 250 0.4 nozzle", + "Voron Trident 300 0.4 nozzle", + "Voron Trident 350 0.4 nozzle", + "Voron 0.1 0.4 nozzle" + ] + } diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 0.2 nozzle.json new file mode 100644 index 00000000000..5922119c28f --- /dev/null +++ b/resources/profiles/Voron/machine/Voron 2.4 250 0.2 nozzle.json @@ -0,0 +1,26 @@ +{ + "type": "machine", + "setting_id": "GM002", + "name": "Voron 2.4 250 0.2 nozzle", + "from": "system", + "instantiation": "true", + "inherits": "fdm_klipper_common", + "printer_model": "Voron 2.4 250", + "max_layer_height": [ + "0.32" + ], + "min_layer_height": [ + "0.08" + ], + "nozzle_diameter": [ + "0.2" + ], + "printable_area": [ + "0x0", + "250x0", + "250x250", + "0x250" + ], + "printable_height": "225" + } + \ No newline at end of file diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 0.6 nozzle.json new file mode 100644 index 00000000000..0d5cf333678 --- /dev/null +++ b/resources/profiles/Voron/machine/Voron 2.4 250 0.6 nozzle.json @@ -0,0 +1,26 @@ +{ + "type": "machine", + "setting_id": "GM003", + "name": "Voron 2.4 250 0.6 nozzle", + "from": "system", + "instantiation": "true", + "inherits": "fdm_klipper_common", + "printer_model": "Voron 2.4 250", + "max_layer_height": [ + "0.45" + ], + "min_layer_height": [ + "0.15" + ], + "nozzle_diameter": [ + "0.6" + ], + "printable_area": [ + "0x0", + "250x0", + "250x250", + "0x250" + ], + "printable_height": "225" + } + \ No newline at end of file diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 0.8 nozzle.json new file mode 100644 index 00000000000..1dfaa58e322 --- /dev/null +++ b/resources/profiles/Voron/machine/Voron 2.4 250 0.8 nozzle.json @@ -0,0 +1,26 @@ +{ + "type": "machine", + "setting_id": "GM004", + "name": "Voron 2.4 250 0.8 nozzle", + "from": "system", + "instantiation": "true", + "inherits": "fdm_klipper_common", + "printer_model": "Voron 2.4 250", + "max_layer_height": [ + "0.65" + ], + "min_layer_height": [ + "0.20" + ], + "nozzle_diameter": [ + "0.8" + ], + "printable_area": [ + "0x0", + "250x0", + "250x250", + "0x250" + ], + "printable_height": "225" + } + \ No newline at end of file diff --git a/resources/profiles/Voron/machine/Voron 2.4 250.json b/resources/profiles/Voron/machine/Voron 2.4 250.json index 5099f066d40..ba598b835e7 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 250.json +++ b/resources/profiles/Voron/machine/Voron 2.4 250.json @@ -2,7 +2,7 @@ "type": "machine_model", "name": "Voron 2.4 250", "model_id": "Voron2_250", - "nozzle_diameter": "0.4", + "nozzle_diameter": "0.4;0.2;0.6;0.8", "machine_tech": "FFF", "family": "VoronDesign", "bed_model": "", diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.2 nozzle.json new file mode 100644 index 00000000000..ca8e1d944c5 --- /dev/null +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.2 nozzle.json @@ -0,0 +1,26 @@ +{ + "type": "machine", + "setting_id": "GM002", + "name": "Voron 2.4 300 0.2 nozzle", + "from": "system", + "instantiation": "true", + "inherits": "fdm_klipper_common", + "printer_model": "Voron 2.4 300", + "max_layer_height": [ + "0.32" + ], + "min_layer_height": [ + "0.08" + ], + "nozzle_diameter": [ + "0.2" + ], + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "printable_height": "2755" + } + \ No newline at end of file diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.6 nozzle.json new file mode 100644 index 00000000000..0716665d49a --- /dev/null +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.6 nozzle.json @@ -0,0 +1,26 @@ +{ + "type": "machine", + "setting_id": "GM003", + "name": "Voron 2.4 300 0.6 nozzle", + "from": "system", + "instantiation": "true", + "inherits": "fdm_klipper_common", + "printer_model": "Voron 2.4 300", + "max_layer_height": [ + "0.45" + ], + "min_layer_height": [ + "0.15" + ], + "nozzle_diameter": [ + "0.6" + ], + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "printable_height": "275" + } + \ No newline at end of file diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.8 nozzle.json new file mode 100644 index 00000000000..91ce5ad0ec2 --- /dev/null +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.8 nozzle.json @@ -0,0 +1,26 @@ +{ + "type": "machine", + "setting_id": "GM004", + "name": "Voron 2.4 300 0.8 nozzle", + "from": "system", + "instantiation": "true", + "inherits": "fdm_klipper_common", + "printer_model": "Voron 2.4 300", + "max_layer_height": [ + "0.65" + ], + "min_layer_height": [ + "0.20" + ], + "nozzle_diameter": [ + "0.8" + ], + "printable_area": [ + "0x0", + "300x0", + "300x300", + "0x300" + ], + "printable_height": "275" + } + \ No newline at end of file diff --git a/resources/profiles/Voron/machine/Voron 2.4 300.json b/resources/profiles/Voron/machine/Voron 2.4 300.json index 37d3632e0f5..8d22eaffbce 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300.json @@ -2,7 +2,7 @@ "type": "machine_model", "name": "Voron 2.4 300", "model_id": "Voron2_300", - "nozzle_diameter": "0.4", + "nozzle_diameter": "0.4;0.2;0.6;0.8", "machine_tech": "FFF", "family": "VoronDesign", "bed_model": "", diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 0.2 nozzle.json new file mode 100644 index 00000000000..13431c8ae53 --- /dev/null +++ b/resources/profiles/Voron/machine/Voron 2.4 350 0.2 nozzle.json @@ -0,0 +1,26 @@ +{ + "type": "machine", + "setting_id": "GM002", + "name": "Voron 2.4 350 0.2 nozzle", + "from": "system", + "instantiation": "true", + "inherits": "fdm_klipper_common", + "printer_model": "Voron 2.4 350", + "max_layer_height": [ + "0.32" + ], + "min_layer_height": [ + "0.08" + ], + "nozzle_diameter": [ + "0.2" + ], + "printable_area": [ + "0x0", + "350x0", + "350x350", + "0x350" + ], + "printable_height": "325" + } + \ No newline at end of file diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 0.6 nozzle.json new file mode 100644 index 00000000000..b07342e7af9 --- /dev/null +++ b/resources/profiles/Voron/machine/Voron 2.4 350 0.6 nozzle.json @@ -0,0 +1,26 @@ +{ + "type": "machine", + "setting_id": "GM003", + "name": "Voron 2.4 350 0.6 nozzle", + "from": "system", + "instantiation": "true", + "inherits": "fdm_klipper_common", + "printer_model": "Voron 2.4 350", + "max_layer_height": [ + "0.45" + ], + "min_layer_height": [ + "0.15" + ], + "nozzle_diameter": [ + "0.6" + ], + "printable_area": [ + "0x0", + "350x0", + "350x350", + "0x350" + ], + "printable_height": "325" + } + \ No newline at end of file diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 0.8 nozzle.json new file mode 100644 index 00000000000..f5d3758ad95 --- /dev/null +++ b/resources/profiles/Voron/machine/Voron 2.4 350 0.8 nozzle.json @@ -0,0 +1,26 @@ +{ + "type": "machine", + "setting_id": "GM004", + "name": "Voron 2.4 350 0.8 nozzle", + "from": "system", + "instantiation": "true", + "inherits": "fdm_klipper_common", + "printer_model": "Voron 2.4 350", + "max_layer_height": [ + "0.65" + ], + "min_layer_height": [ + "0.20" + ], + "nozzle_diameter": [ + "0.8" + ], + "printable_area": [ + "0x0", + "350x0", + "350x350", + "0x350" + ], + "printable_height": "325" + } + \ No newline at end of file diff --git a/resources/profiles/Voron/machine/Voron 2.4 350.json b/resources/profiles/Voron/machine/Voron 2.4 350.json index 228bfbc8fa4..b6f285ad419 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 350.json +++ b/resources/profiles/Voron/machine/Voron 2.4 350.json @@ -2,7 +2,7 @@ "type": "machine_model", "name": "Voron 2.4 350", "model_id": "Voron2_350", - "nozzle_diameter": "0.4", + "nozzle_diameter": "0.4;0.2;0.6;0.8", "machine_tech": "FFF", "family": "VoronDesign", "bed_model": "", diff --git a/resources/profiles/Voron/process/0.06mm Fine 0.2 nozzle @Voron.json b/resources/profiles/Voron/process/0.06mm Fine 0.2 nozzle @Voron.json new file mode 100644 index 00000000000..43cd6ac3805 --- /dev/null +++ b/resources/profiles/Voron/process/0.06mm Fine 0.2 nozzle @Voron.json @@ -0,0 +1,14 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.06mm Fine 0.2 nozzle @Voron", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_voron_common_0_2", + "layer_height": "0.06", + "bottom_shell_layers": "7", + "top_shell_layers": "9" +} + + + diff --git a/resources/profiles/Voron/process/0.08mm Optimal 0.2 nozzle @Voron.json b/resources/profiles/Voron/process/0.08mm Optimal 0.2 nozzle @Voron.json new file mode 100644 index 00000000000..12050c3be40 --- /dev/null +++ b/resources/profiles/Voron/process/0.08mm Optimal 0.2 nozzle @Voron.json @@ -0,0 +1,14 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.08mm Optimal 0.2 nozzle @Voron", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_voron_common_0_2", + "layer_height": "0.08", + "bottom_shell_layers": "7", + "top_shell_layers": "9" +} + + + diff --git a/resources/profiles/Voron/process/0.10mm Standard 0.2 nozzle @Voron.json b/resources/profiles/Voron/process/0.10mm Standard 0.2 nozzle @Voron.json new file mode 100644 index 00000000000..64547890abb --- /dev/null +++ b/resources/profiles/Voron/process/0.10mm Standard 0.2 nozzle @Voron.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.10mm Standard 0.2 nozzle @Voron", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_voron_common_0_2", + "layer_height": "0.10", + "bottom_shell_layers": "5", + "top_shell_layers": "6" +} diff --git a/resources/profiles/Voron/process/0.12mm Draft 0.2 nozzle @Voron.json b/resources/profiles/Voron/process/0.12mm Draft 0.2 nozzle @Voron.json new file mode 100644 index 00000000000..15deb9fb23f --- /dev/null +++ b/resources/profiles/Voron/process/0.12mm Draft 0.2 nozzle @Voron.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.12mm Draft 0.2 nozzle @Voron", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_voron_common_0_2", + "layer_height": "0.12", + "bottom_shell_layers": "5", + "top_shell_layers": "6" +} diff --git a/resources/profiles/Voron/process/0.14mm Extra Draft 0.2 nozzle @Voron.json b/resources/profiles/Voron/process/0.14mm Extra Draft 0.2 nozzle @Voron.json new file mode 100644 index 00000000000..0384ec48bd3 --- /dev/null +++ b/resources/profiles/Voron/process/0.14mm Extra Draft 0.2 nozzle @Voron.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.14mm Extra Draft 0.2 nozzle @Voron", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_voron_common_0_2", + "bottom_shell_layers": "4", + "top_shell_layers": "5", + "layer_height": "0.14" +} diff --git a/resources/profiles/Voron/process/0.18mm Fine 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.18mm Fine 0.6 nozzle @Voron.json new file mode 100644 index 00000000000..27b977f8605 --- /dev/null +++ b/resources/profiles/Voron/process/0.18mm Fine 0.6 nozzle @Voron.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.18mm Fine 0.6 nozzle @Voron", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_voron_common_0_6", + "bottom_shell_layers": "4", + "top_shell_layers": "5", + "layer_height": "0.18" +} diff --git a/resources/profiles/Voron/process/0.24mm Fine 0.8 nozzle @Voron.json b/resources/profiles/Voron/process/0.24mm Fine 0.8 nozzle @Voron.json new file mode 100644 index 00000000000..26e931adec5 --- /dev/null +++ b/resources/profiles/Voron/process/0.24mm Fine 0.8 nozzle @Voron.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.24mm Fine 0.6 nozzle @Voron", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_voron_common_0_8", + "bottom_shell_layers": "4", + "top_shell_layers": "5", + "layer_height": "0.24" +} diff --git a/resources/profiles/Voron/process/0.24mm Optimal 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.24mm Optimal 0.6 nozzle @Voron.json new file mode 100644 index 00000000000..713f89c257a --- /dev/null +++ b/resources/profiles/Voron/process/0.24mm Optimal 0.6 nozzle @Voron.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.24mm Optimal 0.6 nozzle @Voron", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_voron_common_0_6", + "bottom_shell_layers": "4", + "top_shell_layers": "5", + "layer_height": "0.24" +} diff --git a/resources/profiles/Voron/process/0.30mm Standard 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.30mm Standard 0.6 nozzle @Voron.json new file mode 100644 index 00000000000..3426885c274 --- /dev/null +++ b/resources/profiles/Voron/process/0.30mm Standard 0.6 nozzle @Voron.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.30mm Standard 0.6 nozzle @Voron", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_voron_common_0_6", + "bottom_shell_layers": "3", + "top_shell_layers": "3", + "layer_height": "0.30" +} diff --git a/resources/profiles/Voron/process/0.32mm Optimal 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.32mm Optimal 0.6 nozzle @Voron.json new file mode 100644 index 00000000000..4260cc8b00c --- /dev/null +++ b/resources/profiles/Voron/process/0.32mm Optimal 0.6 nozzle @Voron.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.32mm Optimal 0.8 nozzle @Voron", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_voron_common_0_8", + "bottom_shell_layers": "3", + "top_shell_layers": "3", + "layer_height": "0.32" +} diff --git a/resources/profiles/Voron/process/0.36mm Draft 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.36mm Draft 0.6 nozzle @Voron.json new file mode 100644 index 00000000000..72dc8fe92be --- /dev/null +++ b/resources/profiles/Voron/process/0.36mm Draft 0.6 nozzle @Voron.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.36mm Draft 0.6 nozzle @Voron", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_voron_common_0_6", + "bottom_shell_layers": "3", + "top_shell_layers": "3", + "layer_height": "0.36" +} diff --git a/resources/profiles/Voron/process/0.40mm Standard 0.8 nozzle @Voron.json b/resources/profiles/Voron/process/0.40mm Standard 0.8 nozzle @Voron.json new file mode 100644 index 00000000000..060c9122936 --- /dev/null +++ b/resources/profiles/Voron/process/0.40mm Standard 0.8 nozzle @Voron.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.40mm Standard 0.8 nozzle @Voron", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_voron_common_0_8", + "bottom_shell_layers": "3", + "top_shell_layers": "4", + "layer_height": "0.40" +} diff --git a/resources/profiles/Voron/process/0.42mm Extra Draft 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.42mm Extra Draft 0.6 nozzle @Voron.json new file mode 100644 index 00000000000..23dbc6338a6 --- /dev/null +++ b/resources/profiles/Voron/process/0.42mm Extra Draft 0.6 nozzle @Voron.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.42mm Extra Draft 0.6 nozzle @Voron", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_voron_common_0_6", + "bottom_shell_layers": "3", + "top_shell_layers": "4", + "layer_height": "0.42" +} diff --git a/resources/profiles/Voron/process/0.48mm Draft 0.8 nozzle @Voron.json b/resources/profiles/Voron/process/0.48mm Draft 0.8 nozzle @Voron.json new file mode 100644 index 00000000000..0f4e27d8f05 --- /dev/null +++ b/resources/profiles/Voron/process/0.48mm Draft 0.8 nozzle @Voron.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.48mm Draft 0.8 nozzle @Voron", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_voron_common_0_8", + "bottom_shell_layers": "3", + "top_shell_layers": "4", + "layer_height": "0.48" +} diff --git a/resources/profiles/Voron/process/0.56mm Extra Draft 0.8 nozzle @Voron.json b/resources/profiles/Voron/process/0.56mm Extra Draft 0.8 nozzle @Voron.json new file mode 100644 index 00000000000..ba9209ee4e3 --- /dev/null +++ b/resources/profiles/Voron/process/0.56mm Extra Draft 0.8 nozzle @Voron.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "setting_id": "GP004", + "name": "0.56mm Extra Draft 0.8 nozzle @Voron", + "from": "system", + "instantiation": "true", + "inherits": "fdm_process_voron_common_0_8", + "bottom_shell_layers": "3", + "top_shell_layers": "4", + "layer_height": "0.56" +} diff --git a/resources/profiles/Voron/process/fdm_process_voron_common_0_2.json b/resources/profiles/Voron/process/fdm_process_voron_common_0_2.json new file mode 100644 index 00000000000..d4428d53d67 --- /dev/null +++ b/resources/profiles/Voron/process/fdm_process_voron_common_0_2.json @@ -0,0 +1,21 @@ +{ + "type": "process", + "name": "fdm_process_voron_common_0_2", + "from": "system", + "instantiation": "false", + "inherits": "fdm_process_voron_common", + "outer_wall_line_width": "0.22", + "line_width": "0.22", + "sparse_infill_line_width": "0.22", + "initial_layer_line_width": "0.25", + "initial_layer_print_height": "0.1", + "inner_wall_line_width": "0.22", + "internal_solid_infill_line_width": "0.22", + "support_line_width": "0.22", + "top_surface_line_width": "0.22", + "compatible_printers": [ + "Voron 2.4 250 0.2 nozzle", + "Voron 2.4 300 0.2 nozzle", + "Voron 2.4 350 0.2 nozzle" + ] +} diff --git a/resources/profiles/Voron/process/fdm_process_voron_common_0_6.json b/resources/profiles/Voron/process/fdm_process_voron_common_0_6.json new file mode 100644 index 00000000000..f6fd5d10e81 --- /dev/null +++ b/resources/profiles/Voron/process/fdm_process_voron_common_0_6.json @@ -0,0 +1,21 @@ +{ + "type": "process", + "name": "fdm_process_voron_common_0_6", + "from": "system", + "instantiation": "false", + "inherits": "fdm_process_voron_common", + "initial_layer_line_width": "0.62", + "initial_layer_print_height": "0.3", + "outer_wall_line_width": "0.62", + "line_width": "0.62", + "sparse_infill_line_width": "0.62", + "inner_wall_line_width": "0.62", + "internal_solid_infill_line_width": "0.62", + "support_line_width": "0.62", + "top_surface_line_width": "0.62", + "compatible_printers": [ + "Voron 2.4 250 0.6 nozzle", + "Voron 2.4 300 0.6 nozzle", + "Voron 2.4 350 0.6 nozzle" + ] +} diff --git a/resources/profiles/Voron/process/fdm_process_voron_common_0_8.json b/resources/profiles/Voron/process/fdm_process_voron_common_0_8.json new file mode 100644 index 00000000000..629b80c2b3e --- /dev/null +++ b/resources/profiles/Voron/process/fdm_process_voron_common_0_8.json @@ -0,0 +1,21 @@ +{ + "type": "process", + "name": "fdm_process_voron_common_0_8", + "from": "system", + "instantiation": "false", + "inherits": "fdm_process_voron_common", + "initial_layer_line_width": "0.82", + "initial_layer_print_height": "0.4", + "outer_wall_line_width": "0.82", + "line_width": "0.82", + "sparse_infill_line_width": "0.82", + "inner_wall_line_width": "0.82", + "internal_solid_infill_line_width": "0.82", + "support_line_width": "0.82", + "top_surface_line_width": "0.82", + "compatible_printers": [ + "Voron 2.4 250 0.8 nozzle", + "Voron 2.4 300 0.8 nozzle", + "Voron 2.4 350 0.8 nozzle" + ] +}