diff --git a/CMakeLists.txt b/CMakeLists.txt
index eb51485e48..5b228b067b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,5 +1,50 @@
cmake_minimum_required(VERSION 3.13)
+# Verify that your CMake version is exactly 3.31.x series or lower on windows
+if(${CMAKE_VERSION} VERSION_LESS "3.13" OR ${CMAKE_VERSION} VERSION_GREATER_EQUAL "4.0")
+ message(FATAL_ERROR "Only CMake versions between 3.13.x and 3.31.x is supported. Detected version: ${CMAKE_VERSION}")
+endif()
+
+if (WIN32)
+ # Detect known CI environments
+ set(IS_CI FALSE)
+ if(DEFINED ENV{CI})
+ set(IS_CI TRUE)
+ elseif(DEFINED ENV{GITHUB_ACTIONS})
+ set(IS_CI TRUE)
+ elseif(DEFINED ENV{GITLAB_CI})
+ set(IS_CI TRUE)
+ elseif(DEFINED ENV{TF_BUILD})
+ set(IS_CI TRUE)
+ elseif(DEFINED ENV{BUILD_NUMBER}) # Jenkins
+ set(IS_CI TRUE)
+ endif()
+
+ # Detect common misconfiguration (Strawberry Perl in PATH before CMake)
+ # We use ENV to check the PATH order
+ string(REPLACE "\\" "/" ENV_PATH "$ENV{PATH}")
+ string(FIND "${ENV_PATH}" "Strawberry/c/bin" STRAWBERRY_POS)
+ string(FIND "${ENV_PATH}" "Program Files/CMake/bin" CMAKE_POS)
+
+ if (STRAWBERRY_POS GREATER -1 AND CMAKE_POS GREATER -1 AND STRAWBERRY_POS LESS CMAKE_POS)
+ set(_warning_text "
+#############################################################
+Detected Strawberry Perl's 'c/bin' appearing before CMake in PATH.
+This is known to cause CMake to misbehave (e.g., missing modules).
+Please adjust your PATH so that:
+C:\\Program Files\\CMake\\bin
+appears before:
+C:\\Strawberry\\c\\bin
+You can do this in Environment Variables settings.
+#############################################################
+ ")
+
+ if(NOT IS_CI)
+ message(FATAL_ERROR "${_warning_text}")
+ endif()
+ endif()
+endif ()
+
if (APPLE)
# if CMAKE_OSX_DEPLOYMENT_TARGET is not set, set it to 11.3
if (NOT CMAKE_OSX_DEPLOYMENT_TARGET)
diff --git a/README.md b/README.md
index effdfbe080..01f2104a69 100644
--- a/README.md
+++ b/README.md
@@ -4,6 +4,10 @@
[](https://github.com/SoftFever/OrcaSlicer/actions/workflows/build_all.yml)
Orca Slicer is an open source slicer for FDM printers.
+## Follow Us
+Stay connected with us:
+
+[](https://twitter.com/real_OrcaSlicer)
Join our Discord community here:
diff --git a/doc/Calibration.md b/doc/Calibration.md
index cede6ab376..efbfd2e386 100644
--- a/doc/Calibration.md
+++ b/doc/Calibration.md
@@ -315,8 +315,8 @@ The default value in Marlin is typically set to 0.08mm, which may be too high fo
M205 J0.012
M500
```
- 3. Recompile four MarlinFW
- 1. In Configuration.h set:
+ 3. Recompile your MarlinFW
+ 1. In Configuration.h uncomment and set:
```cpp
#define JUNCTION_DEVIATION_MM 0.012 // (mm) Distance from real junction edge
```
@@ -333,10 +333,10 @@ Because of the nature of these artifacts the methods to reduce them can be mecha
***
*Credits:*
-- *The Flowrate test and retraction test is inspired by [SuperSlicer](https://github.com/supermerill/SuperSlicer)*
-- *The PA Line method is inspired by [K-factor Calibration Pattern](https://marlinfw.org/tools/lin_advance/k-factor.html)*
-- *The PA Tower method is inspired by [Klipper](https://www.klipper3d.org/Pressure_Advance.html)*
-- *The temp tower model is remixed from [Smart compact temperature calibration tower](https://www.thingiverse.com/thing:2729076)
-- *The max flowrate test was inspired by Stefan(CNC Kitchen), and the model used in the test is a remix of his [Extrusion Test Structure](https://www.printables.com/model/342075-extrusion-test-structure).
-- *ZV Input Shaping is inspired by [Marlin Input Shaping](https://marlinfw.org/docs/features/input_shaping.html) and [Ringing Tower 3D STL](https://marlinfw.org/assets/stl/ringing_tower.stl)
+- *The Flowrate test and retraction test is inspired by [SuperSlicer](https://github.com/supermerill/SuperSlicer).*
+- *The PA Line method is inspired by [K-factor Calibration Pattern](https://marlinfw.org/tools/lin_advance/k-factor.html).*
+- *The PA Tower method is inspired by [Klipper](https://www.klipper3d.org/Pressure_Advance.html).*
+- *The temp tower model is remixed from [Smart compact temperature calibration tower](https://www.thingiverse.com/thing:2729076).*
+- *The max flowrate test was inspired by Stefan (CNC Kitchen), and the model used in the test is a remix of his [Extrusion Test Structure](https://www.printables.com/model/342075-extrusion-test-structure).*
+- *ZV Input Shaping is inspired by [Marlin Input Shaping](https://marlinfw.org/docs/features/input_shaping.html) and [Ringing Tower 3D STL](https://marlinfw.org/assets/stl/ringing_tower.stl).*
- *ChatGPT* ;)
diff --git a/localization/i18n/list.txt b/localization/i18n/list.txt
index 2cb4d18c5f..f922c7878b 100644
--- a/localization/i18n/list.txt
+++ b/localization/i18n/list.txt
@@ -47,7 +47,7 @@ src/slic3r/GUI/Jobs/UpgradeNetworkJob.cpp
src/slic3r/GUI/AboutDialog.cpp
src/slic3r/GUI/AMSMaterialsSetting.cpp
src/slic3r/GUI/ExtrusionCalibration.cpp
-src/slic3r/GUI/AMSMappingPopup.cpp
+src/slic3r/GUI/AmsMappingPopup.cpp
src/slic3r/GUI/AMSSetting.cpp
src/slic3r/GUI/BBLTopbar.cpp
src/slic3r/GUI/DownloadProgressDialog.cpp
@@ -172,4 +172,4 @@ src/slic3r/Utils/SimplyPrint.cpp
src/slic3r/Utils/Flashforge.cpp
src/slic3r/GUI/Jobs/OAuthJob.cpp
src/slic3r/GUI/BackgroundSlicingProcess.cpp
-src/slic3r/GUI/Gizmos/GLGizmoBrimEars.cpp
\ No newline at end of file
+src/slic3r/GUI/Gizmos/GLGizmoBrimEars.cpp
diff --git a/resources/images/param_filament_for_features.svg b/resources/images/param_filament_for_features.svg
new file mode 100644
index 0000000000..741e0bbb59
--- /dev/null
+++ b/resources/images/param_filament_for_features.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/resources/images/param_flow_ratio_and_pressure_advance.svg b/resources/images/param_flow_ratio_and_pressure_advance.svg
new file mode 100644
index 0000000000..2e6d20c588
--- /dev/null
+++ b/resources/images/param_flow_ratio_and_pressure_advance.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/resources/images/param_ooze_prevention.svg b/resources/images/param_ooze_prevention.svg
new file mode 100644
index 0000000000..1b8a686dae
--- /dev/null
+++ b/resources/images/param_ooze_prevention.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/resources/images/param_profile_dependencies.svg b/resources/images/param_profile_dependencies.svg
new file mode 100644
index 0000000000..ceb305e081
--- /dev/null
+++ b/resources/images/param_profile_dependencies.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/resources/images/param_toolchange_multi_extruder.svg b/resources/images/param_toolchange_multi_extruder.svg
new file mode 100644
index 0000000000..172511d7f2
--- /dev/null
+++ b/resources/images/param_toolchange_multi_extruder.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/resources/images/pellets.svg b/resources/images/pellets.svg
index 047de45dfe..047480da65 100644
--- a/resources/images/pellets.svg
+++ b/resources/images/pellets.svg
@@ -1,48 +1 @@
-
-
-
+
\ No newline at end of file
diff --git a/resources/images/plate_move_front.svg b/resources/images/plate_move_front.svg
index be453c9482..6138677a0e 100644
--- a/resources/images/plate_move_front.svg
+++ b/resources/images/plate_move_front.svg
@@ -1,74 +1 @@
-
-
+
\ No newline at end of file
diff --git a/resources/images/plate_move_front_dark.svg b/resources/images/plate_move_front_dark.svg
index ee7c1ac9c4..a7e397e0db 100644
--- a/resources/images/plate_move_front_dark.svg
+++ b/resources/images/plate_move_front_dark.svg
@@ -1,74 +1 @@
-
-
+
\ No newline at end of file
diff --git a/resources/images/plate_move_front_hover.svg b/resources/images/plate_move_front_hover.svg
index 02f81ab0d5..d9b3193695 100644
--- a/resources/images/plate_move_front_hover.svg
+++ b/resources/images/plate_move_front_hover.svg
@@ -1,74 +1 @@
-
-
+
\ No newline at end of file
diff --git a/resources/images/plate_move_front_hover_dark.svg b/resources/images/plate_move_front_hover_dark.svg
index 7d76f25021..c875a31f03 100644
--- a/resources/images/plate_move_front_hover_dark.svg
+++ b/resources/images/plate_move_front_hover_dark.svg
@@ -1,74 +1 @@
-
-
+
\ No newline at end of file
diff --git a/resources/images/search.svg b/resources/images/search.svg
index 931ce8143a..9e015b1c15 100644
--- a/resources/images/search.svg
+++ b/resources/images/search.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/resources/profiles/BBL.json b/resources/profiles/BBL.json
index cbc502fe7e..10383cb01e 100644
--- a/resources/profiles/BBL.json
+++ b/resources/profiles/BBL.json
@@ -1165,6 +1165,26 @@
"name": "Bambu ASA @BBL A1 0.4 nozzle",
"sub_path": "filament/Bambu ASA @BBL A1 0.4 nozzle.json"
},
+ {
+ "name": "FusRock ABS-GF @base",
+ "sub_path": "filament/FusRock/FusRock ABS-GF @base.json"
+ },
+ {
+ "name": "FusRock ABS-GF @BBL P1P",
+ "sub_path": "filament/FusRock/FusRock ABS-GF @BBL P1P.json"
+ },
+ {
+ "name": "FusRock ABS-GF @BBL H2D",
+ "sub_path": "filament/FusRock/FusRock ABS-GF @BBL H2D.json"
+ },
+ {
+ "name": "FusRock ABS-GF @BBL A1",
+ "sub_path": "filament/FusRock/FusRock ABS-GF @BBL A1.json"
+ },
+ {
+ "name": "FusRock ABS-GF @BBL X1C",
+ "sub_path": "filament/FusRock/FusRock ABS-GF @BBL X1C.json"
+ },
{
"name": "Bambu ASA @BBL A1 0.6 nozzle",
"sub_path": "filament/Bambu ASA @BBL A1 0.6 nozzle.json"
diff --git a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL A1.json b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL A1.json
new file mode 100644
index 0000000000..b0a7f99b42
--- /dev/null
+++ b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL A1.json
@@ -0,0 +1,20 @@
+{
+ "type": "filament",
+ "name": "FusRock ABS-GF @BBL A1",
+ "inherits": "FusRock ABS-GF @base",
+ "from": "system",
+ "setting_id": "GFSR00_01",
+ "instantiation": "true",
+ "filament_notes": "//EN\n1.Be sure to read it carefully before using (https://wiki.fusrock.com).\n2.When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials(https://wiki.fusrock.com).\\n3.Thank you for choosing FusRock. \n//CN\n1.使用前请务必仔细阅读(https://wiki.fusrock.com)。\n2.打印该耗材时,可能会出现喷嘴堵塞、拉丝、翘边以及层间附着力不足等问题。为了获得更好的打印效果,请参考此维基页面:高温 / 工程材料打印技巧(https://wiki.fusrock.com)。\n3.感谢您选择FusRock。",
+ "filament_long_retractions_when_cut": [
+ "1"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "18"
+ ],
+ "compatible_printers": [
+ "Bambu Lab A1 0.4 nozzle",
+ "Bambu Lab A1 0.6 nozzle",
+ "Bambu Lab A1 0.8 nozzle"
+ ]
+}
diff --git a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL H2D.json b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL H2D.json
new file mode 100644
index 0000000000..75b802ef86
--- /dev/null
+++ b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL H2D.json
@@ -0,0 +1,106 @@
+{
+ "type": "filament",
+ "name": "FusRock ABS-GF @BBL H2D",
+ "inherits": "FusRock ABS-GF @base",
+ "from": "system",
+ "setting_id": "GFSR00_03",
+ "instantiation": "true",
+ "chamber_temperatures": [
+ "60"
+ ],
+ "filament_deretraction_speed": [
+ "nil",
+ "nil"
+ ],
+ "filament_flow_ratio": [
+ "0.92",
+ "0.92"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil",
+ "nil"
+ ],
+ "filament_max_volumetric_speed": [
+ "20",
+ "20"
+ ],
+ "filament_retract_before_wipe": [
+ "nil",
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil",
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil",
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil",
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil",
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil",
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil",
+ "nil"
+ ],
+ "filament_wipe": [
+ "nil",
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil",
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil",
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil",
+ "nil"
+ ],
+ "filament_extruder_variant": [
+ "Direct Drive Standard",
+ "Direct Drive High Flow"
+ ],
+ "filament_ramming_volumetric_speed": [
+ "-1",
+ "-1"
+ ],
+ "filament_pre_cooling_temperature": [
+ "0",
+ "0"
+ ],
+ "filament_ramming_travel_time": [
+ "0",
+ "0"
+ ],
+ "nozzle_temperature": [
+ "270",
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260",
+ "260"
+ ],
+ "compatible_printers": [
+ "Bambu Lab H2D 0.4 nozzle",
+ "Bambu Lab H2D 0.6 nozzle",
+ "Bambu Lab H2D 0.8 nozzle"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\nM145 P1 ; set airduct mode to heating mode\n"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL P1P.json b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL P1P.json
new file mode 100644
index 0000000000..1e82554a8d
--- /dev/null
+++ b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL P1P.json
@@ -0,0 +1,19 @@
+{
+ "type": "filament",
+ "name": "FusRock ABS-GF @BBL P1P",
+ "inherits": "FusRock ABS-GF @base",
+ "from": "system",
+ "setting_id": "GFSR00_04",
+ "instantiation": "true",
+ "filament_long_retractions_when_cut": [
+ "1"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "18"
+ ],
+ "compatible_printers": [
+ "Bambu Lab P1P 0.8 nozzle",
+ "Bambu Lab P1P 0.6 nozzle",
+ "Bambu Lab P1P 0.4 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL X1C.json b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL X1C.json
new file mode 100644
index 0000000000..493c4c6c3e
--- /dev/null
+++ b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @BBL X1C.json
@@ -0,0 +1,28 @@
+{
+ "type": "filament",
+ "name": "FusRock ABS-GF @BBL X1C",
+ "inherits": "FusRock ABS-GF @base",
+ "from": "system",
+ "setting_id": "GFSR00_05",
+ "instantiation": "true",
+ "filament_long_retractions_when_cut": [
+ "1"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "18"
+ ],
+ "compatible_printers": [
+ "Bambu Lab P1S 0.4 nozzle",
+ "Bambu Lab P1S 0.6 nozzle",
+ "Bambu Lab P1S 0.8 nozzle",
+ "Bambu Lab X1 0.4 nozzle",
+ "Bambu Lab X1 0.6 nozzle",
+ "Bambu Lab X1 0.8 nozzle",
+ "Bambu Lab X1 Carbon 0.4 nozzle",
+ "Bambu Lab X1 Carbon 0.6 nozzle",
+ "Bambu Lab X1 Carbon 0.8 nozzle",
+ "Bambu Lab X1E 0.4 nozzle",
+ "Bambu Lab X1E 0.6 nozzle",
+ "Bambu Lab X1E 0.8 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @base.json b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @base.json
new file mode 100644
index 0000000000..29b77ca23a
--- /dev/null
+++ b/resources/profiles/BBL/filament/FusRock/FusRock ABS-GF @base.json
@@ -0,0 +1,110 @@
+{
+ "type": "filament",
+ "name": "FusRock ABS-GF @base",
+ "inherits": "fdm_filament_common",
+ "from": "system",
+ "filament_id": "GFR00",
+ "instantiation": "false",
+ "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials(https://wiki.fusrock.com).",
+ "filament_notes": "//EN\n1.Be sure to read it carefully before using (https://wiki.fusrock.com).\n2.When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials(https://wiki.fusrock.com).\\n3.Thank you for choosing us FusRock. \n//CN\n1.使用前请务必仔细阅读(https://wiki.fusrock.com)。\n2.打印该耗材时,可能会出现喷嘴堵塞、拉丝、翘边以及层间附着力不足等问题。为了获得更好的打印效果,请参考此维基页面:高温 / 工程材料打印技巧(https://wiki.fusrock.com)。\n3.感谢您选择FusRock。",
+ "activate_air_filtration": [
+ "1"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_type": [
+ "ABS-GF"
+ ],
+ "filament_vendor": [
+ "FusRock"
+ ],
+ "nozzle_temperature": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "0"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "0"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n\n"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_cost": [
+ "0"
+ ],
+ "filament_density": [
+ "1.05"
+ ],
+ "filament_extruder_variant": [
+ "Direct Drive Standard"
+ ],
+ "filament_flow_ratio": [
+ "0.92"
+ ],
+ "filament_max_volumetric_speed": [
+ "20"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "hot_plate_temp": [
+ "105"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "105"
+ ],
+ "overhang_fan_speed": [
+ "50"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "textured_plate_temp": [
+ "105"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "105"
+ ],
+ "version": "1.10.0.32"
+}
diff --git a/resources/profiles/CoLiDo.json b/resources/profiles/CoLiDo.json
new file mode 100644
index 0000000000..de2e1e312a
--- /dev/null
+++ b/resources/profiles/CoLiDo.json
@@ -0,0 +1,284 @@
+{
+ "name": "CoLiDo",
+ "version": "02.01.01.00",
+ "force_update": "0",
+ "description": "CoLiDo configurations",
+ "machine_model_list": [
+ {
+ "name": "CoLiDo DIY 4.0",
+ "sub_path": "machine/CoLiDo DIY 4.0.json"
+ },
+ {
+ "name": "CoLiDo X16",
+ "sub_path": "machine/CoLiDo X16.json"
+ },
+ {
+ "name": "CoLiDo 160 V2",
+ "sub_path": "machine/CoLiDo 160 V2.json"
+ },
+ {
+ "name": "CoLiDo SR1",
+ "sub_path": "machine/CoLiDo SR1.json"
+ },
+ {
+ "name": "CoLiDo DIY 4.0 V2",
+ "sub_path": "machine/CoLiDo DIY 4.0 V2.json"
+ }
+ ],
+ "process_list": [
+ {
+ "name": "fdm_process_common",
+ "sub_path": "process/fdm_process_common.json"
+ },
+ {
+ "name": "fdm_process_colido_common",
+ "sub_path": "process/fdm_process_colido_common.json"
+ },
+ {
+ "name": "fdm_process_colidodiy40_common",
+ "sub_path": "process/fdm_process_colidodiy40_common.json"
+ },
+ {
+ "name": "0.08mm Extra Fine @CoLiDo DIY 4.0",
+ "sub_path": "process/0.08mm Extra Fine @CoLiDo DIY 4.0.json"
+ },
+ {
+ "name": "0.12mm Fine @CoLiDo DIY 4.0",
+ "sub_path": "process/0.12mm Fine @CoLiDo DIY 4.0.json"
+ },
+ {
+ "name": "0.15mm Optimal @CoLiDo DIY 4.0",
+ "sub_path": "process/0.15mm Optimal @CoLiDo DIY 4.0.json"
+ },
+ {
+ "name": "0.20mm Standard @CoLiDo DIY 4.0",
+ "sub_path": "process/0.20mm Standard @CoLiDo DIY 4.0.json"
+ },
+ {
+ "name": "0.24mm Draft @CoLiDo DIY 4.0",
+ "sub_path": "process/0.24mm Draft @CoLiDo DIY 4.0.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @CoLiDo DIY 4.0",
+ "sub_path": "process/0.28mm Extra Draft @CoLiDo DIY 4.0.json"
+ }
+
+ ,
+ {
+ "name": "fdm_process_colidox16_common",
+ "sub_path": "process/fdm_process_colidox16_common.json"
+ },
+ {
+ "name": "0.08mm Extra Fine @CoLiDo X16",
+ "sub_path": "process/0.08mm Extra Fine @CoLiDo X16.json"
+ },
+ {
+ "name": "0.12mm Fine @CoLiDo X16",
+ "sub_path": "process/0.12mm Fine @CoLiDo X16.json"
+ },
+ {
+ "name": "0.15mm Optimal @CoLiDo X16",
+ "sub_path": "process/0.15mm Optimal @CoLiDo X16.json"
+ },
+ {
+ "name": "0.20mm Standard @CoLiDo X16",
+ "sub_path": "process/0.20mm Standard @CoLiDo X16.json"
+ },
+ {
+ "name": "0.24mm Draft @CoLiDo X16",
+ "sub_path": "process/0.24mm Draft @CoLiDo X16.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @CoLiDo X16",
+ "sub_path": "process/0.28mm Extra Draft @CoLiDo X16.json"
+ }
+
+ ,
+ {
+ "name": "fdm_process_colido160v2_common",
+ "sub_path": "process/fdm_process_colido160v2_common.json"
+ },
+ {
+ "name": "0.08mm Extra Fine @CoLiDo 160 V2",
+ "sub_path": "process/0.08mm Extra Fine @CoLiDo 160 V2.json"
+ },
+ {
+ "name": "0.12mm Fine @CoLiDo 160 V2",
+ "sub_path": "process/0.12mm Fine @CoLiDo 160 V2.json"
+ },
+ {
+ "name": "0.15mm Optimal @CoLiDo 160 V2",
+ "sub_path": "process/0.15mm Optimal @CoLiDo 160 V2.json"
+ },
+ {
+ "name": "0.20mm Standard @CoLiDo 160 V2",
+ "sub_path": "process/0.20mm Standard @CoLiDo 160 V2.json"
+ },
+ {
+ "name": "0.24mm Draft @CoLiDo 160 V2",
+ "sub_path": "process/0.24mm Draft @CoLiDo 160 V2.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @CoLiDo 160 V2",
+ "sub_path": "process/0.28mm Extra Draft @CoLiDo 160 V2.json"
+ }
+
+ ,
+ {
+ "name": "fdm_process_colidosr1_common",
+ "sub_path": "process/fdm_process_colidosr1_common.json"
+ },
+ {
+ "name": "0.08mm Extra Fine @CoLiDo SR1",
+ "sub_path": "process/0.08mm Extra Fine @CoLiDo SR1.json"
+ },
+ {
+ "name": "0.12mm Fine @CoLiDo SR1",
+ "sub_path": "process/0.12mm Fine @CoLiDo SR1.json"
+ },
+ {
+ "name": "0.15mm Optimal @CoLiDo SR1",
+ "sub_path": "process/0.15mm Optimal @CoLiDo SR1.json"
+ },
+ {
+ "name": "0.16mm Optimal @CoLiDo SR1",
+ "sub_path": "process/0.16mm Optimal @CoLiDo SR1.json"
+ },
+ {
+ "name": "0.20mm Standard @CoLiDo SR1",
+ "sub_path": "process/0.20mm Standard @CoLiDo SR1.json"
+ },
+ {
+ "name": "0.24mm Draft @CoLiDo SR1",
+ "sub_path": "process/0.24mm Draft @CoLiDo SR1.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @CoLiDo SR1",
+ "sub_path": "process/0.28mm Extra Draft @CoLiDo SR1.json"
+ },
+ {
+ "name": "0.32mm Standard @CoLiDo SR1",
+ "sub_path": "process/0.32mm Standard @CoLiDo SR1.json"
+ }
+
+ ,
+ {
+ "name": "fdm_process_colidodiy40v2_common",
+ "sub_path": "process/fdm_process_colidodiy40v2_common.json"
+ },
+ {
+ "name": "0.20mm Standard @CoLiDo DIY 4.0 V2",
+ "sub_path": "process/0.20mm Standard @CoLiDo DIY 4.0 V2.json"
+ }
+ ],
+ "filament_list": [
+ {
+ "name": "fdm_filament_common",
+ "sub_path": "filament/fdm_filament_common.json"
+ },
+ {
+ "name": "fdm_filament_pet",
+ "sub_path": "filament/fdm_filament_pet.json"
+ },
+ {
+ "name": "fdm_filament_pla",
+ "sub_path": "filament/fdm_filament_pla.json"
+ },
+ {
+ "name": "fdm_filament_tpu",
+ "sub_path": "filament/fdm_filament_tpu.json"
+ },
+ {
+ "name": "fdm_filament_abs",
+ "sub_path": "filament/fdm_filament_abs.json"
+ },
+ {
+ "name": "CoLiDo Generic PETG @CoLiDo DIY 4.0",
+ "sub_path": "filament/CoLiDo Generic PETG @CoLiDo DIY 4.0.json"
+ },
+ {
+ "name": "CoLiDo Generic PLA @CoLiDo DIY 4.0",
+ "sub_path": "filament/CoLiDo Generic PLA @CoLiDo DIY 4.0.json"
+ },
+ {
+ "name": "CoLiDo Generic TPU @CoLiDo DIY 4.0",
+ "sub_path": "filament/CoLiDo Generic TPU @CoLiDo DIY 4.0.json"
+ },
+ {
+ "name": "CoLiDo Generic ABS @CoLiDo DIY 4.0",
+ "sub_path": "filament/CoLiDo Generic ABS @CoLiDo DIY 4.0.json"
+ }
+
+ ,
+ {
+ "name": "CoLiDo Generic PETG @CoLiDo X16",
+ "sub_path": "filament/CoLiDo Generic PETG @CoLiDo X16.json"
+ },
+ {
+ "name": "CoLiDo Generic PLA @CoLiDo X16",
+ "sub_path": "filament/CoLiDo Generic PLA @CoLiDo X16.json"
+ },
+ {
+ "name": "CoLiDo Generic TPU @CoLiDo X16",
+ "sub_path": "filament/CoLiDo Generic TPU @CoLiDo X16.json"
+ },
+ {
+ "name": "CoLiDo Generic ABS @CoLiDo X16",
+ "sub_path": "filament/CoLiDo Generic ABS @CoLiDo X16.json"
+ }
+
+ ,
+ {
+ "name": "CoLiDo PETG @CoLiDo SR1",
+ "sub_path": "filament/CoLiDo PETG @CoLiDo SR1.json"
+ },
+ {
+ "name": "CoLiDo PLA @CoLiDo SR1",
+ "sub_path": "filament/CoLiDo PLA @CoLiDo SR1.json"
+ },
+ {
+ "name": "CoLiDo PLA Silk @CoLiDo SR1",
+ "sub_path": "filament/CoLiDo PLA Silk @CoLiDo SR1.json"
+ },
+ {
+ "name": "CoLiDo ABS @CoLiDo SR1",
+ "sub_path": "filament/CoLiDo ABS @CoLiDo SR1.json"
+ }
+
+ ,
+ {
+ "name": "CoLiDo PLA+ @CoLiDo DIY 4.0 V2",
+ "sub_path": "filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json"
+ }
+ ],
+ "machine_list": [
+ {
+ "name": "fdm_machine_common",
+ "sub_path": "machine/fdm_machine_common.json"
+ },
+ {
+ "name": "fdm_klipper_common",
+ "sub_path": "machine/fdm_klipper_common.json"
+ },
+ {
+ "name": "CoLiDo DIY 4.0 0.4 nozzle",
+ "sub_path": "machine/CoLiDo DIY 4.0 0.4 nozzle.json"
+ },
+ {
+ "name": "CoLiDo X16 0.4 nozzle",
+ "sub_path": "machine/CoLiDo X16 0.4 nozzle.json"
+ },
+ {
+ "name": "CoLiDo 160 V2 0.4 nozzle",
+ "sub_path": "machine/CoLiDo 160 V2 0.4 nozzle.json"
+ },
+ {
+ "name": "CoLiDo SR1 0.4 nozzle",
+ "sub_path": "machine/CoLiDo SR1 0.4 nozzle.json"
+ },
+ {
+ "name": "CoLiDo DIY 4.0 V2 0.4 nozzle",
+ "sub_path": "machine/CoLiDo DIY 4.0 V2 0.4 nozzle.json"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/CoLiDo/CoLiDo 160 V2_cover.png b/resources/profiles/CoLiDo/CoLiDo 160 V2_cover.png
new file mode 100644
index 0000000000..fab6d2e503
Binary files /dev/null and b/resources/profiles/CoLiDo/CoLiDo 160 V2_cover.png differ
diff --git a/resources/profiles/CoLiDo/CoLiDo DIY 4.0 V2_cover.png b/resources/profiles/CoLiDo/CoLiDo DIY 4.0 V2_cover.png
new file mode 100644
index 0000000000..5fb9fe40a4
Binary files /dev/null and b/resources/profiles/CoLiDo/CoLiDo DIY 4.0 V2_cover.png differ
diff --git a/resources/profiles/CoLiDo/CoLiDo DIY 4.0_cover.png b/resources/profiles/CoLiDo/CoLiDo DIY 4.0_cover.png
new file mode 100644
index 0000000000..c1ae08c6dc
Binary files /dev/null and b/resources/profiles/CoLiDo/CoLiDo DIY 4.0_cover.png differ
diff --git a/resources/profiles/CoLiDo/CoLiDo SR1_cover.png b/resources/profiles/CoLiDo/CoLiDo SR1_cover.png
new file mode 100644
index 0000000000..bc315ea182
Binary files /dev/null and b/resources/profiles/CoLiDo/CoLiDo SR1_cover.png differ
diff --git a/resources/profiles/CoLiDo/CoLiDo X16_cover.png b/resources/profiles/CoLiDo/CoLiDo X16_cover.png
new file mode 100644
index 0000000000..fab6d2e503
Binary files /dev/null and b/resources/profiles/CoLiDo/CoLiDo X16_cover.png differ
diff --git a/resources/profiles/CoLiDo/filament/CoLiDo ABS @CoLiDo SR1.json b/resources/profiles/CoLiDo/filament/CoLiDo ABS @CoLiDo SR1.json
new file mode 100644
index 0000000000..1f15fdfa0d
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/CoLiDo ABS @CoLiDo SR1.json
@@ -0,0 +1,47 @@
+{
+ "type": "filament",
+ "filament_id": "GFB99",
+ "setting_id": "GFSB99_06",
+ "name": "CoLiDo ABS @CoLiDo SR1",
+ "from": "system",
+ "instantiation": "true",
+ "filament_vendor": [
+ "CoLiDo"
+ ],
+ "compatible_printers": [
+ "CoLiDo SR1 0.4 nozzle"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "filament_settings_id": [
+ "CoLiDo ABS @CoLiDo SR1"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "inherits": "fdm_filament_abs",
+ "is_custom_defined": "0",
+ "nozzle_temperature": [
+ "245"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "245"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "230"
+ ],
+ "version": "2.2.0.4",
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ]
+}
diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo DIY 4.0.json
new file mode 100644
index 0000000000..0d134907e5
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo DIY 4.0.json
@@ -0,0 +1,42 @@
+{
+ "type": "filament",
+ "filament_id": "GFB99",
+ "setting_id": "GFSB99",
+ "name": "CoLiDo Generic ABS @CoLiDo DIY 4.0",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_abs",
+ "fan_max_speed": [
+ "80"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "filament_vendor": [
+ "CoLiDo"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "textured_plate_temp": [
+ "100"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "100"
+ ],
+ "compatible_printers": [
+ "CoLiDo DIY 4.0 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo X16.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo X16.json
new file mode 100644
index 0000000000..8050821df8
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo X16.json
@@ -0,0 +1,43 @@
+{
+ "type": "filament",
+ "filament_id": "GFB99",
+ "setting_id": "GFSB99_05",
+ "name": "CoLiDo Generic ABS @CoLiDo X16",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_abs",
+ "fan_max_speed": [
+ "20"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "filament_vendor": [
+ "CoLiDo"
+ ],
+ "hot_plate_temp": [
+ "95"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "95"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "textured_plate_temp": [
+ "100"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "100"
+ ],
+ "compatible_printers": [
+ "CoLiDo X16 0.4 nozzle",
+ "CoLiDo 160 V2 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo DIY 4.0.json
new file mode 100644
index 0000000000..c5fa575e92
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo DIY 4.0.json
@@ -0,0 +1,84 @@
+{
+ "type": "filament",
+ "filament_id": "GFG99",
+ "setting_id": "GFSG99",
+ "name": "CoLiDo Generic PETG @CoLiDo DIY 4.0",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_pet",
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "70"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "70"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "40"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_flow_ratio": [
+ "0.94"
+ ],
+ "filament_max_volumetric_speed": [
+ "9"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ],
+ "filament_vendor": [
+ "CoLiDo"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "hot_plate_temp": [
+ "70"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "70"
+ ],
+ "nozzle_temperature_range_high": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "230"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "textured_plate_temp": [
+ "70"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "70"
+ ],
+ "compatible_printers": [
+ "CoLiDo DIY 4.0 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo X16.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo X16.json
new file mode 100644
index 0000000000..424775aeb2
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo X16.json
@@ -0,0 +1,85 @@
+{
+ "type": "filament",
+ "filament_id": "GFG99",
+ "setting_id": "GFSG99_05",
+ "name": "CoLiDo Generic PETG @CoLiDo X16",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_pet",
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "70"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "70"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "40"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_flow_ratio": [
+ "0.94"
+ ],
+ "filament_max_volumetric_speed": [
+ "9"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ],
+ "filament_vendor": [
+ "CoLiDo"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "hot_plate_temp": [
+ "70"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "70"
+ ],
+ "nozzle_temperature_range_high": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "230"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "textured_plate_temp": [
+ "70"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "70"
+ ],
+ "compatible_printers": [
+ "CoLiDo X16 0.4 nozzle",
+ "CoLiDo 160 V2 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo DIY 4.0.json
new file mode 100644
index 0000000000..ab6122fd47
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo DIY 4.0.json
@@ -0,0 +1,54 @@
+{
+ "type": "filament",
+ "filament_id": "GFA99",
+ "setting_id": "GFSA99",
+ "name": "CoLiDo Generic PLA @CoLiDo DIY 4.0",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_pla",
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "60"
+ ],
+ "filament_flow_ratio": [
+ "1.05"
+ ],
+ "filament_max_volumetric_speed": [
+ "19.5"
+ ],
+ "filament_vendor": [
+ "CoLiDo"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "pressure_advance": [
+ "0.03686"
+ ],
+ "slow_down_layer_time": [
+ "4"
+ ],
+ "textured_plate_temp": [
+ "65"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "65"
+ ],
+ "compatible_printers": [
+ "CoLiDo DIY 4.0 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo X16.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo X16.json
new file mode 100644
index 0000000000..b227f211cd
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo X16.json
@@ -0,0 +1,52 @@
+{
+ "type": "filament",
+ "filament_id": "GFA99",
+ "setting_id": "GFSA99_05",
+ "name": "CoLiDo Generic PLA @CoLiDo X16",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_pla",
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "80"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "filament_vendor": [
+ "CoLiDo"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "200"
+ ],
+ "nozzle_temperature": [
+ "200"
+ ],
+ "slow_down_layer_time": [
+ "6"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ],
+ "compatible_printers": [
+ "CoLiDo X16 0.4 nozzle",
+ "CoLiDo 160 V2 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo DIY 4.0.json
new file mode 100644
index 0000000000..f2a45d6a03
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo DIY 4.0.json
@@ -0,0 +1,42 @@
+{
+ "type": "filament",
+ "filament_id": "GFU99",
+ "setting_id": "GFSU99",
+ "name": "CoLiDo Generic TPU @CoLiDo DIY 4.0",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_tpu",
+ "filament_density": [
+ "1.22"
+ ],
+ "filament_max_volumetric_speed": [
+ "3.6"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ],
+ "filament_vendor": [
+ "CoLiDo"
+ ],
+ "hot_plate_temp": [
+ "45"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "45"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "textured_plate_temp": [
+ "45"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "45"
+ ],
+ "compatible_printers": [
+ "CoLiDo DIY 4.0 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo X16.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo X16.json
new file mode 100644
index 0000000000..ebb49ba46a
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo X16.json
@@ -0,0 +1,43 @@
+{
+ "type": "filament",
+ "filament_id": "GFU99",
+ "setting_id": "GFSU99_05",
+ "name": "CoLiDo Generic TPU @CoLiDo X16",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_tpu",
+ "filament_density": [
+ "1.22"
+ ],
+ "filament_max_volumetric_speed": [
+ "3.6"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ],
+ "filament_vendor": [
+ "CoLiDo"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "180"
+ ],
+ "nozzle_temperature": [
+ "180"
+ ],
+ "textured_plate_temp": [
+ "45"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "45"
+ ],
+ "compatible_printers": [
+ "CoLiDo X16 0.4 nozzle",
+ "CoLiDo 160 V2 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/CoLiDo/filament/CoLiDo PETG @CoLiDo SR1.json b/resources/profiles/CoLiDo/filament/CoLiDo PETG @CoLiDo SR1.json
new file mode 100644
index 0000000000..33ae5e39b9
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/CoLiDo PETG @CoLiDo SR1.json
@@ -0,0 +1,74 @@
+{
+ "type": "filament",
+ "filament_id": "GFG99",
+ "setting_id": "GFSG99_06",
+ "name": "CoLiDo PETG @CoLiDo SR1",
+ "from": "system",
+ "instantiation": "true",
+ "filament_vendor": [
+ "CoLiDo"
+ ],
+ "compatible_printers": [
+ "CoLiDo SR1 0.4 nozzle"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "filament_flow_ratio": [
+ "0.9975"
+ ],
+ "filament_retraction_length": [
+ "0.5"
+ ],
+ "filament_settings_id": [
+ "CoLiDo PETG @CoLiDo SR1"
+ ],
+ "inherits": "fdm_filament_pet",
+ "is_custom_defined": "0",
+ "nozzle_temperature": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "210"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "pressure_advance": [
+ "0.028"
+ ],
+ "version": "2.2.0.4",
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "fan_max_speed": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ]
+}
diff --git a/resources/profiles/CoLiDo/filament/CoLiDo PLA @CoLiDo SR1.json b/resources/profiles/CoLiDo/filament/CoLiDo PLA @CoLiDo SR1.json
new file mode 100644
index 0000000000..c76108a43e
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/CoLiDo PLA @CoLiDo SR1.json
@@ -0,0 +1,38 @@
+{
+ "type": "filament",
+ "filament_id": "GFA99",
+ "setting_id": "GFSA99_06",
+ "name": "CoLiDo PLA @CoLiDo SR1",
+ "from": "system",
+ "instantiation": "true",
+ "filament_vendor": [
+ "CoLiDo"
+ ],
+ "compatible_printers": [
+ "CoLiDo SR1 0.4 nozzle"
+ ],
+ "additional_cooling_fan_speed": [
+ "100"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_flow_ratio": [
+ "1.05"
+ ],
+ "filament_max_volumetric_speed": [
+ "21"
+ ],
+ "filament_settings_id": [
+ "CoLiDo PLA @CoLiDo SR1"
+ ],
+ "inherits": "fdm_filament_pla",
+ "is_custom_defined": "0",
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "version": "2.1.1.0"
+}
diff --git a/resources/profiles/CoLiDo/filament/CoLiDo PLA Silk @CoLiDo SR1.json b/resources/profiles/CoLiDo/filament/CoLiDo PLA Silk @CoLiDo SR1.json
new file mode 100644
index 0000000000..982733f7cf
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/CoLiDo PLA Silk @CoLiDo SR1.json
@@ -0,0 +1,44 @@
+{
+ "type": "filament",
+ "filament_id": "GFA99",
+ "setting_id": "GFSA99_06",
+ "name": "CoLiDo PLA Silk @CoLiDo SR1",
+ "from": "system",
+ "instantiation": "true",
+ "filament_vendor": [
+ "CoLiDo"
+ ],
+ "compatible_printers": [
+ "CoLiDo SR1 0.4 nozzle"
+ ],
+ "additional_cooling_fan_speed": [
+ "100"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_flow_ratio": [
+ "0.84"
+ ],
+ "filament_max_volumetric_speed": [
+ "21"
+ ],
+ "filament_settings_id": [
+ "CoLiDo PLA Silk @CoLiDo SR1"
+ ],
+ "inherits": "fdm_filament_pla",
+ "is_custom_defined": "0",
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "pressure_advance": [
+ "0.026"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "version": "2.1.1.0"
+}
diff --git a/resources/profiles/CoLiDo/filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json b/resources/profiles/CoLiDo/filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json
new file mode 100644
index 0000000000..e3574cab54
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json
@@ -0,0 +1,50 @@
+{
+ "type": "filament",
+ "filament_id": "GFA99",
+ "setting_id": "GFSA99_07",
+ "name": "CoLiDo PLA+ @CoLiDo DIY 4.0 V2",
+ "from": "system",
+ "instantiation": "true",
+ "filament_vendor": [
+ "CoLiDo"
+ ],
+ "compatible_printers": [
+ "CoLiDo DIY 4.0 V2 0.4 nozzle"
+ ],
+ "additional_cooling_fan_speed": [
+ "100"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_flow_ratio": [
+ "0.967"
+ ],
+ "filament_max_volumetric_speed": [
+ "18"
+ ],
+ "filament_retraction_length": [
+ "0.6"
+ ],
+ "filament_settings_id": [
+ "CoLiDo PLA+ @CoLiDo DIY 4.0 V2"
+ ],
+ "inherits": "fdm_filament_pla",
+ "is_custom_defined": "0",
+ "nozzle_temperature": [
+ "200"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "200"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "pressure_advance": [
+ "0.024"
+ ],
+ "version": "2.1.1.0"
+}
diff --git a/resources/profiles/CoLiDo/filament/fdm_filament_abs.json b/resources/profiles/CoLiDo/filament/fdm_filament_abs.json
new file mode 100644
index 0000000000..1832014c3f
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/fdm_filament_abs.json
@@ -0,0 +1,82 @@
+{
+ "type": "filament",
+ "name": "fdm_filament_abs",
+ "inherits": "fdm_filament_common",
+ "from": "system",
+ "instantiation": "false",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "90"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "90"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "25"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.04"
+ ],
+ "filament_max_volumetric_speed": [
+ "28.6"
+ ],
+ "filament_type": [
+ "ABS"
+ ],
+ "hot_plate_temp": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "nozzle_temperature_range_low": [
+ "230"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "textured_plate_temp": [
+ "90"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "90"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/CoLiDo/filament/fdm_filament_common.json b/resources/profiles/CoLiDo/filament/fdm_filament_common.json
new file mode 100644
index 0000000000..8f33d4d9f5
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/fdm_filament_common.json
@@ -0,0 +1,147 @@
+{
+ "type": "filament",
+ "name": "fdm_filament_common",
+ "from": "system",
+ "instantiation": "false",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "cool_plate_temp" : [
+ "60"
+ ],
+ "eng_plate_temp" : [
+ "60"
+ ],
+ "hot_plate_temp" : [
+ "60"
+ ],
+ "textured_plate_temp" : [
+ "60"
+ ],
+ "cool_plate_temp_initial_layer" : [
+ "60"
+ ],
+ "eng_plate_temp_initial_layer" : [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer" : [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer" : [
+ "60"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "60"
+ ],
+ "filament_cost": [
+ "0"
+ ],
+ "filament_density": [
+ "0"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_max_volumetric_speed": [
+ "0"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_settings_id": [
+ ""
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "bed_type": [
+ "Cool Plate"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "200"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "35"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "filament_start_gcode": [
+ "; Filament gcode\n"
+ ],
+ "nozzle_temperature": [
+ "200"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ]
+}
diff --git a/resources/profiles/CoLiDo/filament/fdm_filament_pet.json b/resources/profiles/CoLiDo/filament/fdm_filament_pet.json
new file mode 100644
index 0000000000..4a5f6085ca
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/fdm_filament_pet.json
@@ -0,0 +1,64 @@
+{
+ "type": "filament",
+ "name": "fdm_filament_pet",
+ "inherits": "fdm_filament_common",
+ "from": "system",
+ "instantiation": "false",
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "20"
+ ],
+ "fan_min_speed": [
+ "20"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_max_volumetric_speed": [
+ "25"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "nozzle_temperature": [
+ "255"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "255"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "textured_plate_temp": [
+ "80"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "80"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S180\n{elsif (bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S255\n{endif};Prevent PLA from jamming\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/CoLiDo/filament/fdm_filament_pla.json b/resources/profiles/CoLiDo/filament/fdm_filament_pla.json
new file mode 100644
index 0000000000..c2fb97ed10
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/fdm_filament_pla.json
@@ -0,0 +1,244 @@
+{
+ "type": "filament",
+ "name": "fdm_filament_pla",
+ "from": "system",
+ "instantiation": "false",
+ "inherits": "fdm_filament_common",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "70"
+ ],
+ "chamber_temperatures": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "70"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "70"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "filament_cooling_final_speed": [
+ "3.4"
+ ],
+ "filament_cooling_initial_speed": [
+ "2.2"
+ ],
+ "filament_cooling_moves": [
+ "4"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_load_time": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "28"
+ ],
+ "filament_loading_speed_start": [
+ "3"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "10"
+ ],
+ "filament_multitool_ramming_volume": [
+ "10"
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_settings_id": [
+ ""
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "filament_unload_time": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "90"
+ ],
+ "filament_unloading_speed_start": [
+ "100"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "nozzle_temperature": [
+ "200"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "200"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "160"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "4"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ]
+}
diff --git a/resources/profiles/CoLiDo/filament/fdm_filament_tpu.json b/resources/profiles/CoLiDo/filament/fdm_filament_tpu.json
new file mode 100644
index 0000000000..8ec0a4fec3
--- /dev/null
+++ b/resources/profiles/CoLiDo/filament/fdm_filament_tpu.json
@@ -0,0 +1,79 @@
+{
+ "type": "filament",
+ "name": "fdm_filament_tpu",
+ "inherits": "fdm_filament_common",
+ "from": "system",
+ "instantiation": "false",
+ "additional_cooling_fan_speed": [
+ "70"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "cool_plate_temp": [
+ "30"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "30"
+ ],
+ "eng_plate_temp": [
+ "30"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "30"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_max_volumetric_speed": [
+ "15"
+ ],
+ "filament_retraction_length": [
+ "0.4"
+ ],
+ "filament_type": [
+ "TPU"
+ ],
+ "hot_plate_temp": [
+ "35"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "35"
+ ],
+ "nozzle_temperature": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "temperature_vitrification": [
+ "30"
+ ],
+ "textured_plate_temp": [
+ "35"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n{if (bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >30)||(bed_temperature_initial_layer[current_extruder] >30)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/CoLiDo/machine/CoLiDo 160 V2 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo 160 V2 0.4 nozzle.json
new file mode 100644
index 0000000000..ec52174eb5
--- /dev/null
+++ b/resources/profiles/CoLiDo/machine/CoLiDo 160 V2 0.4 nozzle.json
@@ -0,0 +1,223 @@
+{
+ "type": "machine",
+ "setting_id": "GM001",
+ "name": "CoLiDo 160 V2 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "printer_model": "CoLiDo 160 V2",
+ "adaptive_bed_mesh_margin": "0",
+ "auxiliary_fan": "0",
+ "bbl_use_printhost": "0",
+ "bed_custom_model": "",
+ "bed_custom_texture": "",
+ "bed_exclude_area": [
+ "0x0"
+ ],
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_extrusion_role_gcode": "",
+ "change_filament_gcode": "",
+ "cooling_tube_length": "5",
+ "cooling_tube_retraction": "91.5",
+ "default_filament_profile": [
+ "CoLiDo Generic PLA @CoLiDo X16"
+ ],
+ "default_print_profile": "0.20mm Standard @CoLiDo X16",
+ "deretraction_speed": [
+ "30"
+ ],
+ "disable_m73": "1",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "1",
+ "enable_long_retraction_when_cut": "0",
+ "extra_loading_move": "-2",
+ "extruder_clearance_height_to_lid": "88",
+ "extruder_clearance_height_to_rod": "27",
+ "extruder_clearance_radius": "65",
+ "extruder_colour": [
+ "#FCE94F"
+ ],
+ "extruder_offset": [
+ "-5x0"
+ ],
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "gcode_flavor": "marlin2",
+ "head_wrap_detect_zone": [],
+ "high_current_on_filament_swap": "0",
+ "host_type": "mks",
+ "is_custom_defined": "0",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "long_retractions_when_cut": [
+ "0"
+ ],
+ "machine_end_gcode": "G1 E-1.0 F2100 ; retract\nG92 E0.0\nG1{if max_layer_z < max_print_height} Z{z_offset+min(max_layer_z+30, max_print_height)}{endif} E-3.0 F720 ; move print head up & retract filament\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y0 F3000 ; park print head\nM84 ; disable motors",
+ "machine_load_filament_time": "0",
+ "machine_max_acceleration_e": [
+ "5000"
+ ],
+ "machine_max_acceleration_extruding": [
+ "1000"
+ ],
+ "machine_max_acceleration_retracting": [
+ "1000"
+ ],
+ "machine_max_acceleration_travel": [
+ "0",
+ "0"
+ ],
+ "machine_max_acceleration_x": [
+ "1000"
+ ],
+ "machine_max_acceleration_y": [
+ "1000"
+ ],
+ "machine_max_acceleration_z": [
+ "500"
+ ],
+ "machine_max_jerk_e": [
+ "5"
+ ],
+ "machine_max_jerk_x": [
+ "8"
+ ],
+ "machine_max_jerk_y": [
+ "8"
+ ],
+ "machine_max_jerk_z": [
+ "0.4"
+ ],
+ "machine_max_speed_e": [
+ "60"
+ ],
+ "machine_max_speed_x": [
+ "300"
+ ],
+ "machine_max_speed_y": [
+ "300"
+ ],
+ "machine_max_speed_z": [
+ "10"
+ ],
+ "machine_min_extruding_rate": [
+ "0"
+ ],
+ "machine_min_travel_rate": [
+ "0"
+ ],
+ "machine_pause_gcode": "",
+ "machine_start_gcode": "G90 ; use absolute coordinates\nM83 ; extruder relative mode\nM204 S[machine_max_acceleration_extruding] T[machine_max_acceleration_retracting]\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nG28 ; home all\nG1 X3.0 Y3.0 Z0.3 F1000 ; move print head up\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG92 E0.0\n; initial load\nG1 E2 F300\nG1 Y153.0 E10.2 F1000\nG1 X4 E0.05 F1000\nG0 Y152.5\nG1 E0.2\nG1 X3.5 E0.05\nG1 Y3 E10.2 F1000\nG92 E0.0",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "max_layer_height": [
+ "0.32"
+ ],
+ "min_layer_height": [
+ "0.08"
+ ],
+ "nozzle_diameter": [
+ "0.4"
+ ],
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_type": "brass",
+ "nozzle_volume": "0",
+ "parking_pos_retraction": "92",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "print_host": "",
+ "print_host_webui": "",
+ "printable_area": [
+ "0x0",
+ "160x0",
+ "160x160",
+ "0x160"
+ ],
+ "printable_height": "180",
+ "printer_notes": "",
+ "printer_settings_id": "CoLiDo X16 0.4 nozzle",
+ "printer_structure": "undefine",
+ "printer_technology": "FFF",
+ "printer_variant": "0.4",
+ "printhost_apikey": "",
+ "printhost_authorization_type": "key",
+ "printhost_cafile": "",
+ "printhost_password": "",
+ "printhost_port": "",
+ "printhost_ssl_ignore_revoke": "0",
+ "printhost_user": "",
+ "printing_by_object_gcode": "",
+ "purge_in_prime_tower": "1",
+ "retract_before_wipe": [
+ "70%"
+ ],
+ "retract_length_toolchange": [
+ "1"
+ ],
+ "retract_lift_above": [
+ "0"
+ ],
+ "retract_lift_below": [
+ "0"
+ ],
+ "retract_lift_enforce": [
+ "All Surfaces"
+ ],
+ "retract_restart_extra": [
+ "0"
+ ],
+ "retract_restart_extra_toolchange": [
+ "0"
+ ],
+ "retract_when_changing_layer": [
+ "0"
+ ],
+ "retraction_distances_when_cut": [
+ "18"
+ ],
+ "retraction_length": [
+ "1.2"
+ ],
+ "retraction_minimum_travel": [
+ "0.4"
+ ],
+ "retraction_speed": [
+ "30"
+ ],
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "1",
+ "support_chamber_temp_control": "1",
+ "support_multi_bed_types": "0",
+ "template_custom_gcode": "",
+ "thumbnails": "",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "time_lapse_gcode": "",
+ "travel_slope": [
+ "3"
+ ],
+ "upward_compatible_machine": [],
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "version": "2.1.1.0",
+ "wipe": [
+ "0"
+ ],
+ "wipe_distance": [
+ "1"
+ ],
+ "z_hop": [
+ "0.4"
+ ],
+ "z_hop_types": [
+ "Auto Lift"
+ ],
+ "z_offset": "0"
+}
diff --git a/resources/profiles/CoLiDo/machine/CoLiDo 160 V2.json b/resources/profiles/CoLiDo/machine/CoLiDo 160 V2.json
new file mode 100644
index 0000000000..8b4614ff23
--- /dev/null
+++ b/resources/profiles/CoLiDo/machine/CoLiDo 160 V2.json
@@ -0,0 +1,12 @@
+{
+ "type": "machine_model",
+ "name": "CoLiDo 160 V2",
+ "model_id": "CoLiDo_160_V2",
+ "nozzle_diameter": "0.4",
+ "machine_tech": "FFF",
+ "family": "CoLiDo",
+ "bed_model": "",
+ "bed_texture": "",
+ "hotend_model": "",
+ "default_materials": "CoLiDo Generic PLA @CoLiDo X16;CoLiDo Generic ABS @CoLiDo X16;CoLiDo Generic PETG @CoLiDo X16;CoLiDo Generic TPU @CoLiDo X16"
+}
diff --git a/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 0.4 nozzle.json
new file mode 100644
index 0000000000..bb4604d196
--- /dev/null
+++ b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 0.4 nozzle.json
@@ -0,0 +1,234 @@
+{
+ "type": "machine",
+ "setting_id": "GM001",
+ "name": "CoLiDo DIY 4.0 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "printer_model": "CoLiDo DIY 4.0",
+ "adaptive_bed_mesh_margin": "0",
+ "auxiliary_fan": "0",
+ "bbl_use_printhost": "0",
+ "bed_custom_model": "",
+ "bed_custom_texture": "",
+ "bed_exclude_area": [
+ "0x0"
+ ],
+ "bed_mesh_max": "235,220",
+ "bed_mesh_min": "46,20",
+ "bed_mesh_probe_distance": "37.8,40",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_extrusion_role_gcode": "",
+ "change_filament_gcode": "",
+ "cooling_tube_length": "5",
+ "cooling_tube_retraction": "91.5",
+ "default_filament_profile": [
+ "CoLiDo Generic PLA @CoLiDo DIY 4.0"
+ ],
+ "default_print_profile": "0.20mm Standard @CoLiDo DIY 4.0",
+ "deretraction_speed": [
+ "20"
+ ],
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "1",
+ "enable_long_retraction_when_cut": "0",
+ "extra_loading_move": "-2",
+ "extruder_clearance_height_to_lid": "135",
+ "extruder_clearance_height_to_rod": "35",
+ "extruder_clearance_radius": "40",
+ "extruder_colour": [
+ "#FCE94F"
+ ],
+ "extruder_offset": [
+ "-32x0"
+ ],
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "gcode_flavor": "klipper",
+ "head_wrap_detect_zone": [],
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "is_custom_defined": "0",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]\n",
+ "long_retractions_when_cut": [
+ "0"
+ ],
+ "machine_end_gcode": "PRINT_END\n",
+ "machine_load_filament_time": "0",
+ "machine_max_acceleration_e": [
+ "5000",
+ "5000"
+ ],
+ "machine_max_acceleration_extruding": [
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_retracting": [
+ "5000",
+ "5000"
+ ],
+ "machine_max_acceleration_travel": [
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_x": [
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_y": [
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_z": [
+ "500",
+ "200"
+ ],
+ "machine_max_jerk_e": [
+ "2.5",
+ "2.5"
+ ],
+ "machine_max_jerk_x": [
+ "12",
+ "12"
+ ],
+ "machine_max_jerk_y": [
+ "12",
+ "12"
+ ],
+ "machine_max_jerk_z": [
+ "0.2",
+ "0.4"
+ ],
+ "machine_max_speed_e": [
+ "25",
+ "25"
+ ],
+ "machine_max_speed_x": [
+ "800",
+ "200"
+ ],
+ "machine_max_speed_y": [
+ "800",
+ "200"
+ ],
+ "machine_max_speed_z": [
+ "12",
+ "12"
+ ],
+ "machine_min_extruding_rate": [
+ "0",
+ "0"
+ ],
+ "machine_min_travel_rate": [
+ "0",
+ "0"
+ ],
+ "machine_pause_gcode": "PAUSE",
+ "machine_start_gcode": "PRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single] SPEED_WALL=[initial_layer_speed]\n; You can use following code instead if your PRINT_START macro support Chamber and print area bedmesh\n",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "max_layer_height": [
+ "0.32"
+ ],
+ "min_layer_height": [
+ "0.08"
+ ],
+ "nozzle_diameter": [
+ "0.4"
+ ],
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_type": "brass",
+ "nozzle_volume": "0",
+ "parking_pos_retraction": "92",
+ "preferred_orientation": "0",
+ "print_host": "",
+ "print_host_webui": "",
+ "printable_area": [
+ "0x0",
+ "225x0",
+ "225x220",
+ "0x220"
+ ],
+ "printable_height": "230",
+ "printer_notes": "",
+ "printer_settings_id": "CoLiDo DIY 4.0 0.4 nozzle",
+ "printer_structure": "undefine",
+ "printer_technology": "FFF",
+ "printer_variant": "0.4",
+ "printhost_apikey": "",
+ "printhost_authorization_type": "key",
+ "printhost_cafile": "",
+ "printhost_password": "",
+ "printhost_port": "",
+ "printhost_ssl_ignore_revoke": "0",
+ "printhost_user": "",
+ "printing_by_object_gcode": "",
+ "purge_in_prime_tower": "1",
+ "retract_before_wipe": [
+ "70%"
+ ],
+ "retract_length_toolchange": [
+ "2"
+ ],
+ "retract_lift_above": [
+ "0"
+ ],
+ "retract_lift_below": [
+ "0"
+ ],
+ "retract_lift_enforce": [
+ "All Surfaces"
+ ],
+ "retract_restart_extra": [
+ "0"
+ ],
+ "retract_restart_extra_toolchange": [
+ "0"
+ ],
+ "retract_when_changing_layer": [
+ "1"
+ ],
+ "retraction_distances_when_cut": [
+ "18"
+ ],
+ "retraction_length": [
+ "0.8"
+ ],
+ "retraction_minimum_travel": [
+ "1"
+ ],
+ "retraction_speed": [
+ "20"
+ ],
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "1",
+ "support_chamber_temp_control": "1",
+ "support_multi_bed_types": "0",
+ "template_custom_gcode": "",
+ "thumbnails": "48x48/PNG, 300x300/PNG",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "time_lapse_gcode": "",
+ "upward_compatible_machine": [],
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "version": "2.1.1.0",
+ "wipe": [
+ "1"
+ ],
+ "wipe_distance": [
+ "1"
+ ],
+ "z_hop": [
+ "0.4"
+ ],
+ "z_hop_types": [
+ "Auto Lift"
+ ],
+ "z_offset": "0"
+}
diff --git a/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2 0.4 nozzle.json
new file mode 100644
index 0000000000..8a58226995
--- /dev/null
+++ b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2 0.4 nozzle.json
@@ -0,0 +1,38 @@
+{
+ "type": "machine",
+ "setting_id": "GM003",
+ "name": "CoLiDo DIY 4.0 V2 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "printer_model": "CoLiDo DIY 4.0 V2",
+ "default_filament_profile": [
+ "CoLiDo PLA+ @CoLiDo DIY 4.0 V2"
+ ],
+ "default_print_profile": "0.20mm Standard @CoLiDo DIY 4.0 V2",
+ "printer_settings_id": "CoLiDo DIY 4.0 V2 0.4 nozzle",
+ "nozzle_diameter": [
+ "0.4"
+ ],
+ "auxiliary_fan": "1",
+ "deretraction_speed": [
+ "50"
+ ],
+ "inherits": "fdm_klipper_common",
+ "is_custom_defined": "0",
+ "print_host": "192.168.0.30",
+ "printer_variant": "0.4",
+ "printable_area": [
+ "0x0",
+ "230x0",
+ "230x230",
+ "0x230"
+ ],
+ "printable_height": "255",
+ "retraction_length": [
+ "0.4"
+ ],
+ "version": "2.1.1.0",
+ "z_hop_types": [
+ "Auto Lift"
+ ]
+}
diff --git a/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2.json b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2.json
new file mode 100644
index 0000000000..f794c8015d
--- /dev/null
+++ b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2.json
@@ -0,0 +1,12 @@
+{
+ "type": "machine_model",
+ "name": "CoLiDo DIY 4.0 V2",
+ "model_id": "CoLiDo_DIY_4_0_V2",
+ "nozzle_diameter": "0.4",
+ "machine_tech": "FFF",
+ "family": "CoLiDo",
+ "bed_model": "",
+ "bed_texture": "",
+ "hotend_model": "",
+ "default_materials": "CoLiDo PLA+ @CoLiDo DIY 4.0 V2"
+}
diff --git a/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0.json
new file mode 100644
index 0000000000..a7ae257b59
--- /dev/null
+++ b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0.json
@@ -0,0 +1,12 @@
+{
+ "type": "machine_model",
+ "name": "CoLiDo DIY 4.0",
+ "model_id": "CoLiDo_DIY_4_0",
+ "nozzle_diameter": "0.4",
+ "machine_tech": "FFF",
+ "family": "CoLiDo",
+ "bed_model": "",
+ "bed_texture": "",
+ "hotend_model": "",
+ "default_materials": "CoLiDo Generic PLA @CoLiDo DIY 4.0;CoLiDo Generic ABS @CoLiDo DIY 4.0;CoLiDo Generic PETG @CoLiDo DIY 4.0;CoLiDo Generic TPU @CoLiDo DIY 4.0"
+}
diff --git a/resources/profiles/CoLiDo/machine/CoLiDo SR1 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo SR1 0.4 nozzle.json
new file mode 100644
index 0000000000..80897b1c79
--- /dev/null
+++ b/resources/profiles/CoLiDo/machine/CoLiDo SR1 0.4 nozzle.json
@@ -0,0 +1,38 @@
+{
+ "type": "machine",
+ "setting_id": "GM002",
+ "name": "CoLiDo SR1 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "printer_model": "CoLiDo SR1",
+ "default_filament_profile": [
+ "CoLiDo PLA @CoLiDo SR1"
+ ],
+ "default_print_profile": "0.20mm Standard @CoLiDo SR1",
+ "printer_settings_id": "CoLiDo SR1 0.4 nozzle",
+ "nozzle_diameter": [
+ "0.4"
+ ],
+ "auxiliary_fan": "1",
+ "deretraction_speed": [
+ "50"
+ ],
+ "inherits": "fdm_klipper_common",
+ "is_custom_defined": "0",
+ "print_host": "192.168.1.224",
+ "printer_variant": "0.4",
+ "printable_area": [
+ "0x0",
+ "220x0",
+ "220x220",
+ "0x220"
+ ],
+ "printable_height": "251",
+ "retraction_length": [
+ "0.4"
+ ],
+ "version": "2.1.1.0",
+ "z_hop_types": [
+ "Auto Lift"
+ ]
+}
diff --git a/resources/profiles/CoLiDo/machine/CoLiDo SR1.json b/resources/profiles/CoLiDo/machine/CoLiDo SR1.json
new file mode 100644
index 0000000000..563a875975
--- /dev/null
+++ b/resources/profiles/CoLiDo/machine/CoLiDo SR1.json
@@ -0,0 +1,12 @@
+{
+ "type": "machine_model",
+ "name": "CoLiDo SR1",
+ "model_id": "CoLiDo_SR1",
+ "nozzle_diameter": "0.4",
+ "machine_tech": "FFF",
+ "family": "CoLiDo",
+ "bed_model": "",
+ "bed_texture": "",
+ "hotend_model": "",
+ "default_materials": "CoLiDo PLA @CoLiDo SR1;CoLiDo ABS @CoLiDo SR1;CoLiDo PETG @CoLiDo SR1;CoLiDo PLA Silk @CoLiDo SR1"
+}
diff --git a/resources/profiles/CoLiDo/machine/CoLiDo X16 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo X16 0.4 nozzle.json
new file mode 100644
index 0000000000..4e570cdc39
--- /dev/null
+++ b/resources/profiles/CoLiDo/machine/CoLiDo X16 0.4 nozzle.json
@@ -0,0 +1,223 @@
+{
+ "type": "machine",
+ "setting_id": "GM001",
+ "name": "CoLiDo X16 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "printer_model": "CoLiDo X16",
+ "adaptive_bed_mesh_margin": "0",
+ "auxiliary_fan": "0",
+ "bbl_use_printhost": "0",
+ "bed_custom_model": "",
+ "bed_custom_texture": "",
+ "bed_exclude_area": [
+ "0x0"
+ ],
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_extrusion_role_gcode": "",
+ "change_filament_gcode": "",
+ "cooling_tube_length": "5",
+ "cooling_tube_retraction": "91.5",
+ "default_filament_profile": [
+ "CoLiDo Generic PLA @CoLiDo X16"
+ ],
+ "default_print_profile": "0.20mm Standard @CoLiDo X16",
+ "deretraction_speed": [
+ "30"
+ ],
+ "disable_m73": "1",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "1",
+ "enable_long_retraction_when_cut": "0",
+ "extra_loading_move": "-2",
+ "extruder_clearance_height_to_lid": "88",
+ "extruder_clearance_height_to_rod": "27",
+ "extruder_clearance_radius": "65",
+ "extruder_colour": [
+ "#FCE94F"
+ ],
+ "extruder_offset": [
+ "-5x0"
+ ],
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "gcode_flavor": "marlin2",
+ "head_wrap_detect_zone": [],
+ "high_current_on_filament_swap": "0",
+ "host_type": "mks",
+ "is_custom_defined": "0",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "long_retractions_when_cut": [
+ "0"
+ ],
+ "machine_end_gcode": "G1 E-1.0 F2100 ; retract\nG92 E0.0\nG1{if max_layer_z < max_print_height} Z{z_offset+min(max_layer_z+30, max_print_height)}{endif} E-3.0 F720 ; move print head up & retract filament\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y0 F3000 ; park print head\nM84 ; disable motors",
+ "machine_load_filament_time": "0",
+ "machine_max_acceleration_e": [
+ "5000"
+ ],
+ "machine_max_acceleration_extruding": [
+ "1000"
+ ],
+ "machine_max_acceleration_retracting": [
+ "1000"
+ ],
+ "machine_max_acceleration_travel": [
+ "0",
+ "0"
+ ],
+ "machine_max_acceleration_x": [
+ "1000"
+ ],
+ "machine_max_acceleration_y": [
+ "1000"
+ ],
+ "machine_max_acceleration_z": [
+ "500"
+ ],
+ "machine_max_jerk_e": [
+ "5"
+ ],
+ "machine_max_jerk_x": [
+ "8"
+ ],
+ "machine_max_jerk_y": [
+ "8"
+ ],
+ "machine_max_jerk_z": [
+ "0.4"
+ ],
+ "machine_max_speed_e": [
+ "60"
+ ],
+ "machine_max_speed_x": [
+ "300"
+ ],
+ "machine_max_speed_y": [
+ "300"
+ ],
+ "machine_max_speed_z": [
+ "10"
+ ],
+ "machine_min_extruding_rate": [
+ "0"
+ ],
+ "machine_min_travel_rate": [
+ "0"
+ ],
+ "machine_pause_gcode": "",
+ "machine_start_gcode": "G90 ; use absolute coordinates\nM83 ; extruder relative mode\nM204 S[machine_max_acceleration_extruding] T[machine_max_acceleration_retracting]\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nG28 ; home all\nG1 X3.0 Y3.0 Z0.3 F1000 ; move print head up\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG92 E0.0\n; initial load\nG1 E2 F300\nG1 Y153.0 E10.2 F1000\nG1 X4 E0.05 F1000\nG0 Y152.5\nG1 E0.2\nG1 X3.5 E0.05\nG1 Y3 E10.2 F1000\nG92 E0.0",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "max_layer_height": [
+ "0.32"
+ ],
+ "min_layer_height": [
+ "0.08"
+ ],
+ "nozzle_diameter": [
+ "0.4"
+ ],
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_type": "brass",
+ "nozzle_volume": "0",
+ "parking_pos_retraction": "92",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "print_host": "",
+ "print_host_webui": "",
+ "printable_area": [
+ "0x0",
+ "160x0",
+ "160x160",
+ "0x160"
+ ],
+ "printable_height": "180",
+ "printer_notes": "",
+ "printer_settings_id": "CoLiDo X16 0.4 nozzle",
+ "printer_structure": "undefine",
+ "printer_technology": "FFF",
+ "printer_variant": "0.4",
+ "printhost_apikey": "",
+ "printhost_authorization_type": "key",
+ "printhost_cafile": "",
+ "printhost_password": "",
+ "printhost_port": "",
+ "printhost_ssl_ignore_revoke": "0",
+ "printhost_user": "",
+ "printing_by_object_gcode": "",
+ "purge_in_prime_tower": "1",
+ "retract_before_wipe": [
+ "70%"
+ ],
+ "retract_length_toolchange": [
+ "1"
+ ],
+ "retract_lift_above": [
+ "0"
+ ],
+ "retract_lift_below": [
+ "0"
+ ],
+ "retract_lift_enforce": [
+ "All Surfaces"
+ ],
+ "retract_restart_extra": [
+ "0"
+ ],
+ "retract_restart_extra_toolchange": [
+ "0"
+ ],
+ "retract_when_changing_layer": [
+ "0"
+ ],
+ "retraction_distances_when_cut": [
+ "18"
+ ],
+ "retraction_length": [
+ "1.2"
+ ],
+ "retraction_minimum_travel": [
+ "0.4"
+ ],
+ "retraction_speed": [
+ "30"
+ ],
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "1",
+ "support_chamber_temp_control": "1",
+ "support_multi_bed_types": "0",
+ "template_custom_gcode": "",
+ "thumbnails": "",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "time_lapse_gcode": "",
+ "travel_slope": [
+ "3"
+ ],
+ "upward_compatible_machine": [],
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "version": "2.1.1.0",
+ "wipe": [
+ "0"
+ ],
+ "wipe_distance": [
+ "1"
+ ],
+ "z_hop": [
+ "0.4"
+ ],
+ "z_hop_types": [
+ "Auto Lift"
+ ],
+ "z_offset": "0"
+}
diff --git a/resources/profiles/CoLiDo/machine/CoLiDo X16.json b/resources/profiles/CoLiDo/machine/CoLiDo X16.json
new file mode 100644
index 0000000000..866c50f0c9
--- /dev/null
+++ b/resources/profiles/CoLiDo/machine/CoLiDo X16.json
@@ -0,0 +1,12 @@
+{
+ "type": "machine_model",
+ "name": "CoLiDo X16",
+ "model_id": "CoLiDo_X16",
+ "nozzle_diameter": "0.4",
+ "machine_tech": "FFF",
+ "family": "CoLiDo",
+ "bed_model": "",
+ "bed_texture": "",
+ "hotend_model": "",
+ "default_materials": "CoLiDo Generic PLA @CoLiDo X16;CoLiDo Generic ABS @CoLiDo X16;CoLiDo Generic PETG @CoLiDo X16;CoLiDo Generic TPU @CoLiDo X16"
+}
diff --git a/resources/profiles/CoLiDo/machine/fdm_klipper_common.json b/resources/profiles/CoLiDo/machine/fdm_klipper_common.json
new file mode 100644
index 0000000000..af307008b9
--- /dev/null
+++ b/resources/profiles/CoLiDo/machine/fdm_klipper_common.json
@@ -0,0 +1,60 @@
+{
+ "type": "machine",
+ "name": "fdm_klipper_common",
+ "from": "system",
+ "instantiation": "false",
+ "inherits": "fdm_machine_common",
+ "gcode_flavor": "klipper",
+ "machine_max_acceleration_e": ["5000", "5000"],
+ "machine_max_acceleration_extruding": ["20000", "20000"],
+ "machine_max_acceleration_retracting": ["5000", "5000"],
+ "machine_max_acceleration_travel": ["20000", "20000"],
+ "machine_max_acceleration_x": ["20000", "20000"],
+ "machine_max_acceleration_y": ["20000", "20000"],
+ "machine_max_acceleration_z": ["500", "200"],
+ "machine_max_speed_e": ["25", "25"],
+ "machine_max_speed_x": ["500", "200"],
+ "machine_max_speed_y": ["500", "200"],
+ "machine_max_speed_z": ["12", "12"],
+ "machine_max_jerk_e": ["2.5", "2.5"],
+ "machine_max_jerk_x": ["9", "9"],
+ "machine_max_jerk_y": ["9", "9"],
+ "machine_max_jerk_z": ["0.2", "0.4"],
+ "machine_min_extruding_rate": ["0", "0"],
+ "machine_min_travel_rate": ["0", "0"],
+ "max_layer_height": ["0.32"],
+ "min_layer_height": ["0.08"],
+ "printable_height": "250",
+ "extruder_clearance_radius": "65",
+ "extruder_clearance_height_to_rod": "36",
+ "extruder_clearance_height_to_lid": "140",
+ "printer_settings_id": "",
+ "printer_technology": "FFF",
+ "printer_variant": "0.4",
+ "retraction_minimum_travel": ["1"],
+ "retract_before_wipe": ["70%"],
+ "retract_when_changing_layer": ["1"],
+ "retraction_length": ["0.8"],
+ "retract_length_toolchange": ["2"],
+ "z_hop": ["0.4"],
+ "retract_restart_extra": ["0"],
+ "retract_restart_extra_toolchange": ["0"],
+ "retraction_speed": ["30"],
+ "deretraction_speed": ["30"],
+ "z_hop_types": "Normal Lift",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "change_filament_gcode": "",
+ "wipe": ["1"],
+ "default_filament_profile": ["My Generic ABS"],
+ "default_print_profile": "0.20mm Standard @MyKlipper",
+ "bed_exclude_area": ["0x0"],
+ "machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nPRINT_START EXTRUDER=[nozzle_temperature_initial_layer] BED=[bed_temperature_initial_layer_single]\n",
+ "machine_end_gcode": "PRINT_END",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "machine_pause_gcode": "PAUSE",
+ "scan_first_layer": "0",
+ "nozzle_type": "undefine",
+ "auxiliary_fan": "0"
+}
diff --git a/resources/profiles/CoLiDo/machine/fdm_machine_common.json b/resources/profiles/CoLiDo/machine/fdm_machine_common.json
new file mode 100644
index 0000000000..5785f57b19
--- /dev/null
+++ b/resources/profiles/CoLiDo/machine/fdm_machine_common.json
@@ -0,0 +1,119 @@
+{
+ "type": "machine",
+ "name": "fdm_machine_common",
+ "from": "system",
+ "instantiation": "false",
+ "printer_technology": "FFF",
+ "deretraction_speed": [
+ "40"
+ ],
+ "extruder_colour": [
+ "#FCE94F"
+ ],
+ "extruder_offset": [
+ "0x0"
+ ],
+ "gcode_flavor": "marlin",
+ "silent_mode": "0",
+ "machine_max_acceleration_e": [
+ "5000"
+ ],
+ "machine_max_acceleration_extruding": [
+ "10000"
+ ],
+ "machine_max_acceleration_retracting": [
+ "1000"
+ ],
+ "machine_max_acceleration_x": [
+ "10000"
+ ],
+ "machine_max_acceleration_y": [
+ "10000"
+ ],
+ "machine_max_acceleration_z": [
+ "500"
+ ],
+ "machine_max_speed_e": [
+ "60"
+ ],
+ "machine_max_speed_x": [
+ "500"
+ ],
+ "machine_max_speed_y": [
+ "500"
+ ],
+ "machine_max_speed_z": [
+ "10"
+ ],
+ "machine_max_jerk_e": [
+ "5"
+ ],
+ "machine_max_jerk_x": [
+ "8"
+ ],
+ "machine_max_jerk_y": [
+ "8"
+ ],
+ "machine_max_jerk_z": [
+ "0.4"
+ ],
+ "machine_min_extruding_rate": [
+ "0"
+ ],
+ "machine_min_travel_rate": [
+ "0"
+ ],
+ "max_layer_height": [
+ "0.32"
+ ],
+ "min_layer_height": [
+ "0.08"
+ ],
+ "printable_height": "250",
+ "extruder_clearance_radius": "65",
+ "extruder_clearance_height_to_rod": "36",
+ "extruder_clearance_height_to_lid": "140",
+ "nozzle_diameter": [
+ "0.4"
+ ],
+ "printer_settings_id": "",
+ "printer_variant": "0.4",
+ "retraction_minimum_travel": [
+ "2"
+ ],
+ "retract_before_wipe": [
+ "70%"
+ ],
+ "retract_when_changing_layer": [
+ "1"
+ ],
+ "retraction_length": [
+ "5"
+ ],
+ "retract_length_toolchange": [
+ "1"
+ ],
+ "z_hop": [
+ "0"
+ ],
+ "retract_restart_extra": [
+ "0"
+ ],
+ "retract_restart_extra_toolchange": [
+ "0"
+ ],
+ "retraction_speed": [
+ "60"
+ ],
+ "single_extruder_multi_material": "1",
+ "change_filament_gcode": "",
+ "wipe": [
+ "1"
+ ],
+ "default_print_profile": "",
+ "machine_start_gcode": "G0 Z20 F9000\nG92 E0; G1 E-10 F1200\nG28\nM970 Q1 A10 B10 C130 K0\nM970 Q1 A10 B131 C250 K1\nM974 Q1 S1 P0\nM970 Q0 A10 B10 C130 H20 K0\nM970 Q0 A10 B131 C250 K1\nM974 Q0 S1 P0\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nG29 ;Home\nG90;\nG92 E0 ;Reset Extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 X10.1 Y20 Z0.28 F5000.0 ;Move to start position\nM109 S205;\nG1 X10.1 Y200.0 Z0.28 F1500.0 E15 ;Draw the first line\nG1 X10.4 Y200.0 Z0.28 F5000.0 ;Move to side a little\nG1 X10.4 Y20 Z0.28 F1500.0 E30 ;Draw the second line\nG92 E0 ;Reset Extruder \nG1 X110 Y110 Z2.0 F3000 ;Move Z Axis up",
+ "machine_end_gcode": "M400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-4.0 F3600; retract \nG91\nG1 Z3;\nM104 S0 ; turn off hotend\nM140 S0 ; turn off bed\nM106 S0 ; turn off fan\nG90 \nG0 X110 Y200 F3600 \nprint_end",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "machine_pause_gcode": "M601"
+}
diff --git a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo 160 V2.json
new file mode 100644
index 0000000000..6ef9227c24
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo 160 V2.json
@@ -0,0 +1,11 @@
+{
+ "type": "process",
+ "setting_id": "GP005",
+ "name": "0.08mm Extra Fine @CoLiDo 160 V2",
+ "from": "system",
+ "inherits": "fdm_process_colido160v2_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "7",
+ "layer_height": "0.08",
+ "top_shell_layers": "9"
+}
diff --git a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo DIY 4.0.json
new file mode 100644
index 0000000000..8d8823cd3f
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo DIY 4.0.json
@@ -0,0 +1,11 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.08mm Extra Fine @CoLiDo DIY 4.0",
+ "from": "system",
+ "inherits": "fdm_process_colidodiy40_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "7",
+ "layer_height": "0.08",
+ "top_shell_layers": "9"
+}
diff --git a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo SR1.json
new file mode 100644
index 0000000000..6a241af5b7
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo SR1.json
@@ -0,0 +1,21 @@
+{
+ "type": "process",
+ "setting_id": "GP006",
+ "name": "0.08mm Extra Fine @CoLiDo SR1",
+ "from": "system",
+ "inherits": "fdm_process_colidosr1_common",
+ "instantiation": "true",
+ "layer_height": "0.08",
+ "bottom_shell_layers": "7",
+ "top_shell_layers": "9",
+ "support_top_z_distance": "0.08",
+ "support_bottom_z_distance": "0.08",
+ "initial_layer_print_height": "0.2",
+ "default_acceleration": "10000",
+ "enable_support": "1",
+ "is_custom_defined": "0",
+ "print_settings_id": "0.08mm Extra Fine @CoLiDo SR1",
+ "support_style": "tree_hybrid",
+ "support_type": "tree(auto)",
+ "travel_speed": "300"
+}
diff --git a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo X16.json
new file mode 100644
index 0000000000..8fb49d404e
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo X16.json
@@ -0,0 +1,11 @@
+{
+ "type": "process",
+ "setting_id": "GP005",
+ "name": "0.08mm Extra Fine @CoLiDo X16",
+ "from": "system",
+ "inherits": "fdm_process_colidox16_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "7",
+ "layer_height": "0.08",
+ "top_shell_layers": "9"
+}
diff --git a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo 160 V2.json
new file mode 100644
index 0000000000..bbbcf787fa
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo 160 V2.json
@@ -0,0 +1,11 @@
+{
+ "type": "process",
+ "setting_id": "GP005",
+ "name": "0.12mm Fine @CoLiDo 160 V2",
+ "from": "system",
+ "inherits": "fdm_process_colido160v2_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "5",
+ "layer_height": "0.12",
+ "top_shell_layers": "6"
+}
diff --git a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo DIY 4.0.json
new file mode 100644
index 0000000000..465b7bd045
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo DIY 4.0.json
@@ -0,0 +1,11 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.12mm Fine @CoLiDo DIY 4.0",
+ "from": "system",
+ "inherits": "fdm_process_colidodiy40_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "5",
+ "layer_height": "0.12",
+ "top_shell_layers": "6"
+}
diff --git a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo SR1.json
new file mode 100644
index 0000000000..283b8e9f1f
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo SR1.json
@@ -0,0 +1,21 @@
+{
+ "type": "process",
+ "setting_id": "GP006",
+ "name": "0.12mm Fine @CoLiDo SR1",
+ "from": "system",
+ "inherits": "fdm_process_colidosr1_common",
+ "instantiation": "true",
+ "layer_height": "0.12",
+ "bottom_shell_layers": "5",
+ "top_shell_layers": "6",
+ "support_top_z_distance": "0.08",
+ "support_bottom_z_distance": "0.08",
+ "initial_layer_print_height": "0.2",
+ "default_acceleration": "10000",
+ "enable_support": "1",
+ "is_custom_defined": "0",
+ "print_settings_id": "0.12mm Fine @CoLiDo SR1",
+ "support_style": "tree_hybrid",
+ "support_type": "tree(auto)",
+ "travel_speed": "300"
+}
diff --git a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo X16.json
new file mode 100644
index 0000000000..ab2326334c
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo X16.json
@@ -0,0 +1,11 @@
+{
+ "type": "process",
+ "setting_id": "GP005",
+ "name": "0.12mm Fine @CoLiDo X16",
+ "from": "system",
+ "inherits": "fdm_process_colidox16_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "5",
+ "layer_height": "0.12",
+ "top_shell_layers": "6"
+}
diff --git a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo 160 V2.json
new file mode 100644
index 0000000000..10ddd8f740
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo 160 V2.json
@@ -0,0 +1,11 @@
+{
+ "type": "process",
+ "setting_id": "GP005",
+ "name": "0.15mm Optimal @CoLiDo 160 V2",
+ "from": "system",
+ "inherits": "fdm_process_colido160v2_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "4",
+ "layer_height": "0.15",
+ "top_shell_layers": "5"
+}
diff --git a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo DIY 4.0.json
new file mode 100644
index 0000000000..e328cc9ae3
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo DIY 4.0.json
@@ -0,0 +1,11 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.15mm Optimal @CoLiDo DIY 4.0",
+ "from": "system",
+ "inherits": "fdm_process_colidodiy40_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "4",
+ "layer_height": "0.15",
+ "top_shell_layers": "5"
+}
diff --git a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo SR1.json
new file mode 100644
index 0000000000..5c358cc135
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo SR1.json
@@ -0,0 +1,21 @@
+{
+ "type": "process",
+ "setting_id": "GP006",
+ "name": "0.15mm Optimal @CoLiDo SR1",
+ "from": "system",
+ "inherits": "fdm_process_colidosr1_common",
+ "instantiation": "true",
+ "layer_height": "0.15",
+ "bottom_shell_layers": "4",
+ "top_shell_layers": "5",
+ "support_top_z_distance": "0.15",
+ "support_bottom_z_distance": "0.15",
+ "initial_layer_print_height": "0.2",
+ "default_acceleration": "10000",
+ "enable_support": "1",
+ "is_custom_defined": "0",
+ "print_settings_id": "0.15mm Optimal @CoLiDo SR1",
+ "support_style": "tree_hybrid",
+ "support_type": "tree(auto)",
+ "travel_speed": "300"
+}
diff --git a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo X16.json
new file mode 100644
index 0000000000..a360f16c55
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo X16.json
@@ -0,0 +1,11 @@
+{
+ "type": "process",
+ "setting_id": "GP005",
+ "name": "0.15mm Optimal @CoLiDo X16",
+ "from": "system",
+ "inherits": "fdm_process_colidox16_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "4",
+ "layer_height": "0.15",
+ "top_shell_layers": "5"
+}
diff --git a/resources/profiles/CoLiDo/process/0.16mm Optimal @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.16mm Optimal @CoLiDo SR1.json
new file mode 100644
index 0000000000..57e9dc1505
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.16mm Optimal @CoLiDo SR1.json
@@ -0,0 +1,21 @@
+{
+ "type": "process",
+ "setting_id": "GP006",
+ "name": "0.16mm Optimal @CoLiDo SR1",
+ "from": "system",
+ "inherits": "fdm_process_colidosr1_common",
+ "instantiation": "true",
+ "layer_height": "0.16",
+ "bottom_shell_layers": "4",
+ "top_shell_layers": "5",
+ "support_top_z_distance": "0.16",
+ "support_bottom_z_distance": "0.16",
+ "initial_layer_print_height": "0.2",
+ "default_acceleration": "10000",
+ "enable_support": "1",
+ "is_custom_defined": "0",
+ "print_settings_id": "0.16mm Optimal @CoLiDo SR1",
+ "support_style": "tree_hybrid",
+ "support_type": "tree(auto)",
+ "travel_speed": "300"
+}
diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo 160 V2.json
new file mode 100644
index 0000000000..3dd1ea40b1
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo 160 V2.json
@@ -0,0 +1,11 @@
+{
+ "type": "process",
+ "setting_id": "GP005",
+ "name": "0.20mm Standard @CoLiDo 160 V2",
+ "from": "system",
+ "inherits": "fdm_process_colido160v2_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "3",
+ "layer_height": "0.2",
+ "top_shell_layers": "4"
+}
\ No newline at end of file
diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0 V2.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0 V2.json
new file mode 100644
index 0000000000..9dfd74c0b0
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0 V2.json
@@ -0,0 +1,10 @@
+{
+ "type": "process",
+ "setting_id": "GP007",
+ "name": "0.20mm Standard @CoLiDo DIY 4.0 V2",
+ "from": "system",
+ "inherits": "fdm_process_colidodiy40v2_common",
+ "instantiation": "true",
+ "layer_height": "0.2",
+ "print_settings_id": "0.20mm Standard @CoLiDo DIY 4.0 V2"
+}
\ No newline at end of file
diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0.json
new file mode 100644
index 0000000000..ddfad22433
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0.json
@@ -0,0 +1,11 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.20mm Standard @CoLiDo DIY 4.0",
+ "from": "system",
+ "inherits": "fdm_process_colidodiy40_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "3",
+ "layer_height": "0.2",
+ "top_shell_layers": "4"
+}
\ No newline at end of file
diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo SR1.json
new file mode 100644
index 0000000000..e5164dfa36
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo SR1.json
@@ -0,0 +1,10 @@
+{
+ "type": "process",
+ "setting_id": "GP006",
+ "name": "0.20mm Standard @CoLiDo SR1",
+ "from": "system",
+ "inherits": "fdm_process_colidosr1_common",
+ "instantiation": "true",
+ "layer_height": "0.2",
+ "print_settings_id": "0.20mm Standard @CoLiDo SR1"
+}
\ No newline at end of file
diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo X16.json
new file mode 100644
index 0000000000..69da0f5920
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo X16.json
@@ -0,0 +1,11 @@
+{
+ "type": "process",
+ "setting_id": "GP005",
+ "name": "0.20mm Standard @CoLiDo X16",
+ "from": "system",
+ "inherits": "fdm_process_colidox16_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "3",
+ "layer_height": "0.2",
+ "top_shell_layers": "4"
+}
\ No newline at end of file
diff --git a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo 160 V2.json
new file mode 100644
index 0000000000..5d33b79d42
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo 160 V2.json
@@ -0,0 +1,12 @@
+{
+ "type": "process",
+ "setting_id": "GP005",
+ "name": "0.24mm Draft @CoLiDo 160 V2",
+ "from": "system",
+ "inherits": "fdm_process_colido160v2_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "3",
+ "layer_height": "0.24",
+ "top_shell_layers": "4",
+ "top_surface_line_width": "0.45"
+}
diff --git a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo DIY 4.0.json
new file mode 100644
index 0000000000..01a7a9661b
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo DIY 4.0.json
@@ -0,0 +1,12 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.24mm Draft @CoLiDo DIY 4.0",
+ "from": "system",
+ "inherits": "fdm_process_colidodiy40_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "3",
+ "layer_height": "0.24",
+ "top_shell_layers": "4",
+ "top_surface_line_width": "0.45"
+}
diff --git a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo SR1.json
new file mode 100644
index 0000000000..affd7b5da7
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo SR1.json
@@ -0,0 +1,19 @@
+{
+ "type": "process",
+ "setting_id": "GP006",
+ "name": "0.24mm Draft @CoLiDo SR1",
+ "from": "system",
+ "inherits": "fdm_process_colidosr1_common",
+ "instantiation": "true",
+ "layer_height": "0.24",
+ "support_top_z_distance": "0.2",
+ "support_bottom_z_distance": "0.2",
+ "initial_layer_print_height": "0.2",
+ "default_acceleration": "10000",
+ "enable_support": "1",
+ "is_custom_defined": "0",
+ "print_settings_id": "0.24mm Draft @CoLiDo SR1",
+ "support_style": "tree_hybrid",
+ "support_type": "tree(auto)",
+ "travel_speed": "300"
+}
diff --git a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo X16.json
new file mode 100644
index 0000000000..b7782cbf82
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo X16.json
@@ -0,0 +1,12 @@
+{
+ "type": "process",
+ "setting_id": "GP005",
+ "name": "0.24mm Draft @CoLiDo X16",
+ "from": "system",
+ "inherits": "fdm_process_colidox16_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "3",
+ "layer_height": "0.24",
+ "top_shell_layers": "4",
+ "top_surface_line_width": "0.45"
+}
diff --git a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo 160 V2.json
new file mode 100644
index 0000000000..392cfac88f
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo 160 V2.json
@@ -0,0 +1,12 @@
+{
+ "type": "process",
+ "setting_id": "GP005",
+ "name": "0.28mm Extra Draft @CoLiDo 160 V2",
+ "from": "system",
+ "inherits": "fdm_process_colido160v2_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "3",
+ "layer_height": "0.28",
+ "top_shell_layers": "4",
+ "top_surface_line_width": "0.45"
+}
diff --git a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo DIY 4.0.json
new file mode 100644
index 0000000000..f6cf092073
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo DIY 4.0.json
@@ -0,0 +1,12 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.28mm Extra Draft @CoLiDo DIY 4.0",
+ "from": "system",
+ "inherits": "fdm_process_colidodiy40_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "3",
+ "layer_height": "0.28",
+ "top_shell_layers": "4",
+ "top_surface_line_width": "0.45"
+}
diff --git a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo SR1.json
new file mode 100644
index 0000000000..7256ad541b
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo SR1.json
@@ -0,0 +1,17 @@
+{
+ "type": "process",
+ "setting_id": "GP006",
+ "name": "0.28mm Extra Draft @CoLiDo SR1",
+ "from": "system",
+ "inherits": "fdm_process_colidosr1_common",
+ "instantiation": "true",
+ "layer_height": "0.28",
+ "initial_layer_print_height": "0.2",
+ "default_acceleration": "10000",
+ "enable_support": "1",
+ "is_custom_defined": "0",
+ "print_settings_id": "0.28mm Extra Draft @CoLiDo SR1",
+ "support_style": "tree_hybrid",
+ "support_type": "tree(auto)",
+ "travel_speed": "300"
+}
diff --git a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo X16.json
new file mode 100644
index 0000000000..5f068610f8
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo X16.json
@@ -0,0 +1,12 @@
+{
+ "type": "process",
+ "setting_id": "GP005",
+ "name": "0.28mm Extra Draft @CoLiDo X16",
+ "from": "system",
+ "inherits": "fdm_process_colidox16_common",
+ "instantiation": "true",
+ "bottom_shell_layers": "3",
+ "layer_height": "0.28",
+ "top_shell_layers": "4",
+ "top_surface_line_width": "0.45"
+}
diff --git a/resources/profiles/CoLiDo/process/0.32mm Standard @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.32mm Standard @CoLiDo SR1.json
new file mode 100644
index 0000000000..1ef273cc81
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/0.32mm Standard @CoLiDo SR1.json
@@ -0,0 +1,19 @@
+{
+ "type": "process",
+ "setting_id": "GP006",
+ "name": "0.32mm Standard @CoLiDo SR1",
+ "from": "system",
+ "inherits": "fdm_process_colidosr1_common",
+ "instantiation": "true",
+ "layer_height": "0.32",
+ "support_top_z_distance": "0.24",
+ "support_bottom_z_distance": "0.24",
+ "initial_layer_print_height": "0.2",
+ "default_acceleration": "10000",
+ "enable_support": "1",
+ "is_custom_defined": "0",
+ "print_settings_id": "0.32mm Standard @CoLiDo SR1",
+ "support_style": "tree_hybrid",
+ "support_type": "tree(auto)",
+ "travel_speed": "300"
+}
diff --git a/resources/profiles/CoLiDo/process/fdm_process_colido160v2_common.json b/resources/profiles/CoLiDo/process/fdm_process_colido160v2_common.json
new file mode 100644
index 0000000000..47925c8887
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/fdm_process_colido160v2_common.json
@@ -0,0 +1,10 @@
+{
+ "type": "process",
+ "name": "fdm_process_colido160v2_common",
+ "inherits": "fdm_process_colidox16_common",
+ "from": "system",
+ "instantiation": "false",
+ "compatible_printers": [
+ "CoLiDo 160 V2 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/CoLiDo/process/fdm_process_colido_common.json b/resources/profiles/CoLiDo/process/fdm_process_colido_common.json
new file mode 100644
index 0000000000..d364836edf
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/fdm_process_colido_common.json
@@ -0,0 +1,74 @@
+{
+ "type": "process",
+ "name": "fdm_process_colido_common",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "instantiation": "false",
+ "max_travel_detour_distance": "0",
+ "bottom_surface_pattern": "monotonic",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bridge_speed": "50",
+ "brim_object_gap": "0.1",
+ "compatible_printers_condition": "",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0",
+ "enable_arc_fitting": "1",
+ "outer_wall_acceleration": "5000",
+ "wall_infill_order": "inner wall/outer wall/infill",
+ "line_width": "0.42",
+ "internal_bridge_support_thickness": "0.8",
+ "initial_layer_acceleration": "500",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_speed": "30",
+ "gap_infill_speed": "50",
+ "sparse_infill_speed": "250",
+ "ironing_flow": "10%",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "layer_height": "0.2",
+ "reduce_infill_retraction": "1",
+ "filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
+ "detect_overhang_wall": "1",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "only_one_wall_top": "1",
+ "inner_wall_speed": "150",
+ "seam_position": "aligned",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "minimum_sparse_infill_area": "15",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_speed": "150",
+ "initial_layer_infill_speed": "60",
+ "resolution": "0.012",
+ "support_type": "normal(auto)",
+ "support_style": "default",
+ "support_top_z_distance": "0.2",
+ "support_bottom_z_distance": "0.2",
+ "support_interface_bottom_layers": "2",
+ "support_interface_spacing": "0.5",
+ "support_expansion": "0",
+ "support_base_pattern_spacing": "2.5",
+ "support_speed": "150",
+ "support_threshold_angle": "30",
+ "support_object_xy_distance": "0.35",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_angle": "45",
+ "tree_support_wall_count": "0",
+ "max_bridge_length": "0",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_acceleration": "2000",
+ "top_surface_speed": "200",
+ "top_shell_layers": "3",
+ "top_shell_thickness": "0.8",
+ "travel_speed": "500",
+ "enable_prime_tower": "1",
+ "wipe_tower_no_sparse_layers": "0",
+ "prime_tower_width": "35",
+ "wall_generator": "classic",
+ "compatible_printers": []
+}
\ No newline at end of file
diff --git a/resources/profiles/CoLiDo/process/fdm_process_colidodiy40_common.json b/resources/profiles/CoLiDo/process/fdm_process_colidodiy40_common.json
new file mode 100644
index 0000000000..fbf7a8e1b5
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/fdm_process_colidodiy40_common.json
@@ -0,0 +1,291 @@
+{
+ "type": "process",
+ "name": "fdm_process_colidodiy40_common",
+ "inherits": "fdm_process_colido_common",
+ "from": "system",
+ "instantiation": "false",
+ "accel_to_decel_enable": "0",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "CoLiDo DIY 4.0 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "4000",
+ "default_jerk": "0",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "0",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "0",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "nowhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.45",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "50",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "4000",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.4",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.4",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_custom_defined": "0",
+ "is_infill_first": "0",
+ "layer_height": "0.2",
+ "line_width": "0.4",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.4",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "35",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "print_settings_id": "",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.4",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "270",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "35",
+ "support_top_z_distance": "0.2",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "25%",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.6",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.4",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "4000",
+ "travel_jerk": "12",
+ "travel_speed": "400",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "version": "1.7.0.2",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_extruder": "0",
+ "wipe_tower_max_purge_speed": "90",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/CoLiDo/process/fdm_process_colidodiy40v2_common.json b/resources/profiles/CoLiDo/process/fdm_process_colidodiy40v2_common.json
new file mode 100644
index 0000000000..52300208e0
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/fdm_process_colidodiy40v2_common.json
@@ -0,0 +1,118 @@
+{
+ "type": "process",
+ "name": "fdm_process_colidodiy40v2_common",
+ "inherits": "fdm_process_colido_common",
+ "from": "system",
+ "instantiation": "false",
+ "compatible_printers": [
+ "CoLiDo DIY 4.0 V2 0.4 nozzle"
+ ],
+ "brim_type": "no_brim",
+ "default_acceleration": "10000",
+ "enable_support": "1",
+ "initial_layer_print_height": "0.25",
+ "internal_solid_infill_pattern": "zig-zag",
+ "is_custom_defined": "0",
+ "print_settings_id": "",
+ "seam_gap": "2%",
+ "sparse_infill_pattern": "grid",
+ "support_interface_bottom_layers": "4",
+ "support_interface_top_layers": "4",
+ "support_on_build_plate_only": "1",
+ "support_type": "tree(auto)",
+ "top_shell_layers": "3",
+ "travel_speed": "500",
+ "version": "2.1.1.0",
+ "wall_sequence": "outer wall/inner wall",
+ "xy_hole_compensation": "0.2",
+ "layer_height": "0.2",
+ "top_surface_acceleration": "3000",
+ "travel_acceleration": "7000",
+ "inner_wall_acceleration": "5000",
+ "outer_wall_acceleration": "3000",
+ "initial_layer_acceleration": "500",
+ "initial_layer_speed": "50",
+ "initial_layer_infill_speed": "105",
+ "outer_wall_speed": "120",
+ "inner_wall_speed": "200",
+ "internal_solid_infill_speed": "200",
+ "top_surface_speed": "100",
+ "gap_infill_speed": "100",
+ "sparse_infill_speed": "200",
+ "exclude_object": "1",
+ "adaptive_layer_height": "0",
+ "reduce_crossing_wall": "0",
+ "max_travel_detour_distance": "0",
+ "bottom_surface_pattern": "monotonic",
+ "bottom_shell_thickness": "0",
+ "bridge_speed": "50",
+ "brim_width": "5",
+ "brim_object_gap": "0.1",
+ "compatible_printers_condition": "",
+ "print_sequence": "by layer",
+ "bridge_no_support": "0",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0",
+ "enable_arc_fitting": "0",
+ "wall_infill_order": "inner wall/outer wall/infill",
+ "infill_direction": "45",
+ "sparse_infill_density": "15%",
+ "infill_combination": "0",
+ "infill_wall_overlap": "25%",
+ "interface_shells": "0",
+ "ironing_flow": "10%",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "reduce_infill_retraction": "1",
+ "filename_format": "{input_filename_base}_{layer_height}mm_{filament_type[initial_tool]}_{printer_model}_{print_time}.gcode",
+ "detect_overhang_wall": "1",
+ "slowdown_for_curled_perimeters": "1",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "line_width": "110%",
+ "inner_wall_line_width": "110%",
+ "outer_wall_line_width": "100%",
+ "top_surface_line_width": "93.75%",
+ "sparse_infill_line_width": "110%",
+ "initial_layer_line_width": "120%",
+ "internal_solid_infill_line_width": "120%",
+ "support_line_width": "96%",
+ "wall_loops": "3",
+ "raft_layers": "0",
+ "seam_position": "aligned",
+ "skirt_distance": "2",
+ "skirt_height": "3",
+ "min_skirt_length": "4",
+ "skirt_loops": "0",
+ "minimum_sparse_infill_area": "15",
+ "spiral_mode": "0",
+ "standby_temperature_delta": "-5",
+ "resolution": "0.012",
+ "support_top_z_distance": "0.2",
+ "support_bottom_z_distance": "0.2",
+ "support_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_filament": "0",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_speed": "150",
+ "support_threshold_angle": "30",
+ "support_object_xy_distance": "0.35",
+ "tree_support_branch_angle": "30",
+ "tree_support_wall_count": "0",
+ "tree_support_with_infill": "0",
+ "detect_thin_wall": "0",
+ "top_surface_pattern": "monotonicline",
+ "top_shell_thickness": "0.8",
+ "enable_prime_tower": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "prime_tower_width": "60",
+ "xy_contour_compensation": "0",
+ "bottom_shell_layers": "3",
+ "bridge_flow": "1"
+}
diff --git a/resources/profiles/CoLiDo/process/fdm_process_colidosr1_common.json b/resources/profiles/CoLiDo/process/fdm_process_colidosr1_common.json
new file mode 100644
index 0000000000..741891d9a1
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/fdm_process_colidosr1_common.json
@@ -0,0 +1,117 @@
+{
+ "type": "process",
+ "name": "fdm_process_colidosr1_common",
+ "inherits": "fdm_process_colido_common",
+ "from": "system",
+ "instantiation": "false",
+ "compatible_printers": [
+ "CoLiDo SR1 0.4 nozzle"
+ ],
+ "brim_type": "no_brim",
+ "default_acceleration": "10000",
+ "enable_support": "1",
+ "initial_layer_print_height": "0.25",
+ "internal_solid_infill_pattern": "zig-zag",
+ "is_custom_defined": "0",
+ "print_settings_id": "",
+ "sparse_infill_pattern": "grid",
+ "support_interface_bottom_layers": "4",
+ "support_interface_top_layers": "4",
+ "support_on_build_plate_only": "1",
+ "support_type": "tree(auto)",
+ "top_shell_layers": "3",
+ "travel_speed": "300",
+ "version": "2.1.1.0",
+ "wall_sequence": "outer wall/inner wall",
+ "xy_hole_compensation": "0.25",
+ "layer_height": "0.2",
+ "top_surface_acceleration": "3000",
+ "travel_acceleration": "7000",
+ "inner_wall_acceleration": "5000",
+ "outer_wall_acceleration": "3000",
+ "initial_layer_acceleration": "500",
+ "initial_layer_speed": "50",
+ "initial_layer_infill_speed": "105",
+ "outer_wall_speed": "120",
+ "inner_wall_speed": "200",
+ "internal_solid_infill_speed": "200",
+ "top_surface_speed": "100",
+ "gap_infill_speed": "100",
+ "sparse_infill_speed": "200",
+ "exclude_object": "1",
+ "adaptive_layer_height": "0",
+ "reduce_crossing_wall": "0",
+ "max_travel_detour_distance": "0",
+ "bottom_surface_pattern": "monotonic",
+ "bottom_shell_thickness": "0",
+ "bridge_speed": "50",
+ "brim_width": "5",
+ "brim_object_gap": "0.1",
+ "compatible_printers_condition": "",
+ "print_sequence": "by layer",
+ "bridge_no_support": "0",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0",
+ "enable_arc_fitting": "0",
+ "wall_infill_order": "inner wall/outer wall/infill",
+ "infill_direction": "45",
+ "sparse_infill_density": "15%",
+ "infill_combination": "0",
+ "infill_wall_overlap": "25%",
+ "interface_shells": "0",
+ "ironing_flow": "10%",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "reduce_infill_retraction": "1",
+ "filename_format": "{input_filename_base}_{layer_height}mm_{filament_type[initial_tool]}_{printer_model}_{print_time}.gcode",
+ "detect_overhang_wall": "1",
+ "slowdown_for_curled_perimeters": "1",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "line_width": "110%",
+ "inner_wall_line_width": "110%",
+ "outer_wall_line_width": "100%",
+ "top_surface_line_width": "93.75%",
+ "sparse_infill_line_width": "110%",
+ "initial_layer_line_width": "120%",
+ "internal_solid_infill_line_width": "120%",
+ "support_line_width": "96%",
+ "wall_loops": "3",
+ "raft_layers": "0",
+ "seam_position": "aligned",
+ "skirt_distance": "2",
+ "skirt_height": "3",
+ "min_skirt_length": "4",
+ "skirt_loops": "0",
+ "minimum_sparse_infill_area": "15",
+ "spiral_mode": "0",
+ "standby_temperature_delta": "-5",
+ "resolution": "0.012",
+ "support_top_z_distance": "0.2",
+ "support_bottom_z_distance": "0.2",
+ "support_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_filament": "0",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_speed": "150",
+ "support_threshold_angle": "30",
+ "support_object_xy_distance": "0.35",
+ "tree_support_branch_angle": "30",
+ "tree_support_wall_count": "0",
+ "tree_support_with_infill": "0",
+ "detect_thin_wall": "0",
+ "top_surface_pattern": "monotonicline",
+ "top_shell_thickness": "0.8",
+ "enable_prime_tower": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "prime_tower_width": "60",
+ "xy_contour_compensation": "0",
+ "bottom_shell_layers": "3",
+ "bridge_flow": "1"
+}
diff --git a/resources/profiles/CoLiDo/process/fdm_process_colidox16_common.json b/resources/profiles/CoLiDo/process/fdm_process_colidox16_common.json
new file mode 100644
index 0000000000..2f764cb7df
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/fdm_process_colidox16_common.json
@@ -0,0 +1,303 @@
+{
+ "type": "process",
+ "name": "fdm_process_colidox16_common",
+ "inherits": "fdm_process_colido_common",
+ "from": "system",
+ "instantiation": "false",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "CoLiDo X16 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "1000",
+ "default_jerk": "0",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "0",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "0",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[0]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "nowhere",
+ "gap_infill_speed": "90",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "70",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.4",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "45",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "1000",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.4",
+ "inner_wall_speed": "50",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.4",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "90",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_custom_defined": "0",
+ "is_infill_first": "0",
+ "layer_height": "0.2",
+ "line_width": "0.4",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "1000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.4",
+ "outer_wall_speed": "15",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "30",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "35",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "print_settings_id": "",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.4",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "90",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "45",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "45",
+ "support_style": "default",
+ "support_threshold_angle": "43",
+ "support_top_z_distance": "0.2",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "25%",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.6",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "1000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.4",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "70",
+ "travel_acceleration": "2000",
+ "travel_jerk": "12",
+ "travel_speed": "150",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "35",
+ "tree_support_branch_angle_organic": "35",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "2",
+ "version": "1.7.0.2",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_max_purge_speed": "90",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/CoLiDo/process/fdm_process_common.json b/resources/profiles/CoLiDo/process/fdm_process_common.json
new file mode 100644
index 0000000000..1723f8835e
--- /dev/null
+++ b/resources/profiles/CoLiDo/process/fdm_process_common.json
@@ -0,0 +1,75 @@
+{
+ "type": "process",
+ "name": "fdm_process_common",
+ "from": "system",
+ "instantiation": "false",
+ "adaptive_layer_height": "0",
+ "reduce_crossing_wall": "0",
+ "bridge_flow": "0.95",
+ "bridge_speed": "25",
+ "brim_width": "5",
+ "print_sequence": "by layer",
+ "default_acceleration": "10000",
+ "bridge_no_support": "0",
+ "elefant_foot_compensation": "0.1",
+ "outer_wall_line_width": "0.42",
+ "ironing_inset": "0.21",
+ "outer_wall_speed": "120",
+ "line_width": "0.45",
+ "infill_direction": "45",
+ "sparse_infill_density": "15%",
+ "sparse_infill_pattern": "grid",
+ "initial_layer_line_width": "0.42",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "20",
+ "gap_infill_speed": "30",
+ "infill_combination": "0",
+ "sparse_infill_line_width": "0.45",
+ "infill_wall_overlap": "15%",
+ "sparse_infill_speed": "50",
+ "interface_shells": "0",
+ "detect_overhang_wall": "0",
+ "reduce_infill_retraction": "0",
+ "filename_format": "{input_filename_base}.gcode",
+ "wall_loops": "2",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "40",
+ "print_settings_id": "",
+ "raft_layers": "0",
+ "seam_position": "nearest",
+ "skirt_distance": "2",
+ "skirt_height": "2",
+ "minimum_sparse_infill_area": "0",
+ "internal_solid_infill_line_width": "0.45",
+ "internal_solid_infill_speed": "40",
+ "spiral_mode": "0",
+ "standby_temperature_delta": "-5",
+ "enable_support": "0",
+ "support_filament": "0",
+ "support_line_width": "0.42",
+ "support_interface_filament": "0",
+ "support_on_build_plate_only": "0",
+ "support_top_z_distance": "0.15",
+ "support_interface_loop_pattern": "0",
+ "support_interface_top_layers": "2",
+ "support_interface_spacing": "0",
+ "support_interface_speed": "80",
+ "support_interface_pattern": "auto",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2",
+ "support_speed": "40",
+ "support_threshold_angle": "40",
+ "support_object_xy_distance": "0.5",
+ "detect_thin_wall": "0",
+ "top_surface_line_width": "0.42",
+ "top_surface_speed": "30",
+ "travel_speed": "400",
+ "enable_prime_tower": "0",
+ "prime_tower_width": "60",
+ "xy_hole_compensation": "0",
+ "xy_contour_compensation": "0",
+ "compatible_printers": [],
+ "smooth_coefficient": "80",
+ "overhang_totally_speed": "19",
+ "scarf_angle_threshold": "155"
+}
\ No newline at end of file
diff --git a/resources/profiles/Custom/orcaslicer_bed_texture.svg b/resources/profiles/Custom/orcaslicer_bed_texture.svg
index b7eddc79a2..cf5e77f9c5 100644
--- a/resources/profiles/Custom/orcaslicer_bed_texture.svg
+++ b/resources/profiles/Custom/orcaslicer_bed_texture.svg
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json
index 64abbad738..da65514971 100644
--- a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json
+++ b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json
@@ -51,6 +51,6 @@
"gcode_flavor": "klipper",
"change_filament_gcode": "M600",
"machine_pause_gcode": "M600",
- "machine_start_gcode": ";;===== date: 20240520 =====================\n;printer_model:[printer_model]\n;initial_filament:{filament_type[initial_extruder]}\n;curr_bed_type:{curr_bed_type}\nM400 ; wait for buffer to clear\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nM104 S140\nM190 S[bed_temperature_initial_layer_single]\nG90\nG28 ;home\nM729 ;Clean Nozzle\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\n\n;enable_pressure_advance:{enable_pressure_advance[initial_extruder]}\n;This value is called if pressure advance is enabled\n{if enable_pressure_advance[initial_extruder] == \"true\"}\nSET_PRESSURE_ADVANCE ADVANCE=[pressure_advance] ;\nM400\n{endif}\nM204 S{min(20000,max(1000,outer_wall_acceleration))} ;Call exterior wall print acceleration\n\n\nG1 X{print_bed_max[0]*0.5} Y-1.2 F20000\nG1 Z0.3 F900\nM109 S[nozzle_temperature_initial_layer]\nM83\nG92 E0 ;Reset Extruder\nG1 F{min(6000, max(900, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X-1.2 E10.156 ;Draw the first line\nG1 Y98.8 E7.934\nG1 X-0.5 Y100 E0.1\nG1 Y-0.3 E7.934\nG1 X{print_bed_max[0]*0.5-50} E6.284\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-10} E2\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+10} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+50} E2\n;End PA test.\n\n\nG3 I-1 J0 Z0.6 F1200.0 ;Move to side a little\nG1 F20000\nG92 E0 ;Reset Extruder\n;LAYER_COUNT:[total_layer_count]\n;LAYER:0",
+ "machine_start_gcode": ";;===== date: 20240520 =====================\n;printer_model:[printer_model]\n;initial_filament:{filament_type[initial_extruder]}\n;curr_bed_type:{curr_bed_type}\nM400 ; wait for buffer to clear\nM220 S100 ;Set the feed speed to 100%\nM221 S100 ;Set the flow rate to 100%\nM104 S140\nM190 S[bed_temperature_initial_layer_single]\nG90\nG28 ;home\nM729 ;Clean Nozzle\n\n\n;=============turn on fans to prevent PLA jamming=================\n{if filament_type[initial_no_support_extruder]==\"PLA\"}\n {if (bed_temperature[initial_no_support_extruder] >50)||(bed_temperature_initial_layer[initial_no_support_extruder] >50)}\n M106 P3 S255\n {elsif (bed_temperature[initial_no_support_extruder] >45)||(bed_temperature_initial_layer[initial_no_support_extruder] >45)}\n M106 P3 S180\n {endif};Prevent PLA from jamming\n{endif}\n\n;enable_pressure_advance:{enable_pressure_advance[initial_extruder]}\n;This value is called if pressure advance is enabled\n{if enable_pressure_advance[initial_extruder] == \"true\"}\nSET_PRESSURE_ADVANCE ADVANCE=[pressure_advance] ;\nM400\n{endif}\nM204 S{min(20000,max(1000,outer_wall_acceleration))} ;Call exterior wall print acceleration\n\n\nG1 X{print_bed_max[0]*0.5} Y-1.2 F20000\nG1 Z0.3 F900\nM109 S[nozzle_temperature_initial_layer]\nM83\nG92 E0 ;Reset Extruder\nG1 F{min(6000, max(900, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X-1.2 E10.156 ;Draw the first line\nG1 Y98.8 E7.934\nG1 X-0.5 Y100 E0.1\nG1 Y-0.3 E7.934\nG1 X{print_bed_max[0]*0.5-50} E6.284\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5-10} E2\nG1 F{0.2*min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+10} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+30} E2\nG1 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]/0.5/0.3*60))} \nG1 X{print_bed_max[0]*0.5+50} E2\n;End PA test.\n\n\nG3 I-1 J0 Z0.6 F1200.0 ;Move to side a little\nG1 F20000\nG92 E0 ;Reset Extruder\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count]\n;LAYER_COUNT:[total_layer_count]\n;LAYER:0",
"machine_end_gcode": ";===== date: 20250109 =====================\nM400 ; wait for buffer to clear\nM140 S0 ;Turn-off bed\nM106 S255 ;Cooling nozzle\nM83\nG92 E0 ; zero the extruder\nG2 I1 J0 Z{max_layer_z+0.5} E-1 F3000 ; lower z a little\nG90\n{if max_layer_z > 50}G1 Z{min(max_layer_z+50, printable_height+0.5)} F20000{else}G1 Z100 F20000 {endif}; Move print head up \nM204 S5000\nM400\nM83\nG1 X202 F20000\nM400\nG1 Y250 F20000\nG1 Y264.5 F1200\nM400\nG92 E0\nM104 S0 ;Turn-off hotend\nM140 S0 ;Turn-off bed\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM84 ;Disable all steppers"
-}
\ No newline at end of file
+}
diff --git a/resources/profiles/Elegoo/machine/ECC/fdm_machine_ecc_common.json b/resources/profiles/Elegoo/machine/ECC/fdm_machine_ecc_common.json
index 129aa8fcef..d59d411196 100644
--- a/resources/profiles/Elegoo/machine/ECC/fdm_machine_ecc_common.json
+++ b/resources/profiles/Elegoo/machine/ECC/fdm_machine_ecc_common.json
@@ -120,11 +120,11 @@
],
"default_filament_profile": [],
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
- "layer_change_gcode": ";LAYER:{layer_num+1}\n",
+ "layer_change_gcode": ";LAYER:{layer_num+1}\nSET_PRINT_STATS_INFO CURRENT_LAYER={layer_num + 1}\n",
"machine_start_gcode": "",
"machine_end_gcode": "",
"change_filament_gcode": "",
"purge_in_prime_tower": "0",
"manual_filament_change": "1",
"enable_filament_ramming": "0"
-}
\ No newline at end of file
+}
diff --git a/resources/profiles/Flashforge/filament/Generic ASA @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic ASA @Flashforge AD4.json
index aa1849bb7b..a51765bd55 100644
--- a/resources/profiles/Flashforge/filament/Generic ASA @Flashforge AD4.json
+++ b/resources/profiles/Flashforge/filament/Generic ASA @Flashforge AD4.json
@@ -3,6 +3,7 @@
"filament_id": "GFL99",
"setting_id": "GFSA04",
"name": "Generic ASA @Flashforge AD4",
+ "renamed_from": "Generic ASA @AD4",
"from": "system",
"instantiation": "true",
"inherits": "Flashforge Generic ASA",
diff --git a/resources/profiles/Flashforge/filament/Generic PLA Silk @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic PLA Silk @Flashforge AD4.json
index 571d943ff4..6c2db8a46b 100644
--- a/resources/profiles/Flashforge/filament/Generic PLA Silk @Flashforge AD4.json
+++ b/resources/profiles/Flashforge/filament/Generic PLA Silk @Flashforge AD4.json
@@ -2,7 +2,8 @@
"type": "filament",
"filament_id": "GFL99",
"setting_id": "GFSA04",
- "name": "PLA Silk @Flashforge AD4",
+ "name": "Generic PLA Silk @Flashforge AD4",
+ "renamed_from": "PLA Silk @Flashforge AD4",
"from": "system",
"instantiation": "true",
"inherits": "Flashforge Generic PLA-Silk",
diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.25 nozzle.json
index ebedc49518..242a846b19 100644
--- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.25 nozzle.json
+++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.25 nozzle.json
@@ -1,6 +1,7 @@
{
"type": "filament",
"name": "SUNLU PETG @FF AD5M 0.25 Nozzle",
+ "renamed_from": "SUNLU PETG @FF AD5M 0.25 nozzle",
"inherits": "SUNLU PETG @base",
"from": "system",
"setting_id": "GFSNLS08_00",
diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json
index dc16fed525..d97075dafd 100644
--- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json
+++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json
@@ -1,6 +1,7 @@
{
"type": "filament",
"name": "SUNLU PETG @FF AD5M 0.8 Nozzle",
+ "renamed_from": "SUNLU PETG @FF AD5M 0.8 nozzle",
"inherits": "SUNLU PETG @base",
"from": "system",
"setting_id": "GFSNLS08_01",
diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @base.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @base.json
index 3416ae82d3..04bd581291 100644
--- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @base.json
+++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @base.json
@@ -1,6 +1,7 @@
{
"type": "filament",
"name": "SUNLU PLA Marble @base",
+ "renamed_from": "SUNLU Marble PLA @base",
"inherits": "fdm_filament_pla",
"from": "system",
"filament_id": "GFSNL06",
diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M 0.25 nozzle.json
index 6e06b8f693..088e032a5b 100644
--- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M 0.25 nozzle.json
+++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M 0.25 nozzle.json
@@ -1,6 +1,7 @@
{
"type": "filament",
"name": "SUNLU PLA Matte @FF AD5M 0.25 Nozzle",
+ "renamed_from": "SUNLU PLA Matte @FF AD5M 0.25 nozzle",
"inherits": "SUNLU PLA Matte @base",
"from": "system",
"setting_id": "GFSNLS02_00",
diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle.json
index 7a8bf15d34..97d816cf37 100644
--- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle.json
+++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle.json
@@ -1,6 +1,7 @@
{
"type": "filament",
"name": "SUNLU PLA+ 2.0 @FF AD5M 0.25 Nozzle",
+ "renamed_from": "SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle",
"inherits": "SUNLU PLA+ 2.0 @base",
"from": "system",
"setting_id": "GFSNLS04_01",
diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M 0.25 nozzle.json
index 7d607ba94b..4bf0c5ae14 100644
--- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M 0.25 nozzle.json
+++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M 0.25 nozzle.json
@@ -1,6 +1,7 @@
{
"type": "filament",
"name": "SUNLU PLA+ @FF AD5M 0.25 Nozzle",
+ "renamed_from": "SUNLU PLA+ @FF AD5M 0.25 nozzle",
"inherits": "SUNLU PLA+ @base",
"from": "system",
"setting_id": "GFSNLS03_01",
diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M 0.25 nozzle.json
index d2ebf074da..0d75d8abfd 100644
--- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M 0.25 nozzle.json
+++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M 0.25 nozzle.json
@@ -1,6 +1,7 @@
{
"type": "filament",
"name": "SUNLU Silk PLA+ @FF AD5M 0.25 Nozzle",
+ "renamed_from": "SUNLU Silk PLA+ @FF AD5M 0.25 nozzle",
"inherits": "SUNLU Silk PLA+ @base",
"from": "system",
"setting_id": "GFSNLS05_01",
diff --git a/resources/profiles/Ginger Additive.json b/resources/profiles/Ginger Additive.json
index 9612e2b8a1..d30a3617cf 100644
--- a/resources/profiles/Ginger Additive.json
+++ b/resources/profiles/Ginger Additive.json
@@ -6,7 +6,7 @@
"machine_model_list": [
{
"name": "ginger G1",
- "sub_path": "machine/ginger G1.json"
+ "sub_path": "machine/Ginger G1.json"
}
],
"machine_list": [
@@ -16,23 +16,23 @@
},
{
"name": "ginger_one_common",
- "sub_path": "machine/ginger_one_common.json"
+ "sub_path": "machine/Ginger_G1_common.json"
},
{
"name": "ginger G1 1.2 nozzle",
- "sub_path": "machine/ginger G1 1.2 nozzle.json"
+ "sub_path": "machine/Ginger G1 1.2 nozzle.json"
},
{
"name": "ginger G1 3.0 nozzle",
- "sub_path": "machine/ginger G1 3.0 nozzle.json"
+ "sub_path": "machine/Ginger G1 3.0 nozzle.json"
},
{
"name": "ginger G1 5.0 nozzle",
- "sub_path": "machine/ginger G1 5.0 nozzle.json"
+ "sub_path": "machine/Ginger G1 5.0 nozzle.json"
},
{
"name": "ginger G1 8.0 nozzle",
- "sub_path": "machine/ginger G1 8.0 nozzle.json"
+ "sub_path": "machine/Ginger G1 8.0 nozzle.json"
}
],
"process_list": [
@@ -66,22 +66,6 @@
"name": "fdm_filament_common",
"sub_path": "filament/fdm_filament_common.json"
},
- {
- "name": "fdm_filament_petg",
- "sub_path": "filament/fdm_filament_petg.json"
- },
- {
- "name": "fdm_filament_pla",
- "sub_path": "filament/fdm_filament_pla.json"
- },
- {
- "name": "fdm_filament_rpetg",
- "sub_path": "filament/fdm_filament_rpetg.json"
- },
- {
- "name": "fdm_filament_rpla",
- "sub_path": "filament/fdm_filament_rpla.json"
- },
{
"name": "Ginger Generic PETG",
"sub_path": "filament/Ginger Generic PETG.json"
@@ -89,14 +73,6 @@
{
"name": "Ginger Generic PLA",
"sub_path": "filament/Ginger Generic PLA.json"
- },
- {
- "name": "Ginger Generic rPETG",
- "sub_path": "filament/Ginger Generic rPETG.json"
- },
- {
- "name": "Ginger Generic rPLA",
- "sub_path": "filament/Ginger Generic rPLA.json"
}
]
}
diff --git a/resources/profiles/Ginger Additive/Ginger_One.stl b/resources/profiles/Ginger Additive/Ginger_G1.stl
similarity index 100%
rename from resources/profiles/Ginger Additive/Ginger_One.stl
rename to resources/profiles/Ginger Additive/Ginger_G1.stl
diff --git a/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json b/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json
index 8fd8e38915..2b76d509e0 100644
--- a/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json
+++ b/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json
@@ -1,29 +1,55 @@
{
+ "from": "system",
"type": "filament",
+ "instantiation": "true",
+ "version": "0.1.0.0",
+ "filament_vendor": ["Generic"],
+ "inherits": "fdm_filament_common",
+ "name": "Ginger Generic PETG",
+ "close_fan_the_first_x_layers": ["4"],
"enable_overhang_bridge_fan": ["0"],
+ "enable_pressure_advance": ["1"],
+ "extruder_rotation_volume": "624",
+ "fan_cooling_layer_time": ["100"],
"fan_max_speed": ["0"],
"fan_min_speed": ["0"],
- "filament_diameter": ["1.12838"],
- "filament_max_volumetric_speed": ["220"],
+ "filament_cost": ["6"],
+ "filament_density": ["1.23"],
+ "filament_deretraction_speed": ["nil"],
+ "filament_max_volumetric_speed": ["200"],
+ "filament_retract_before_wipe": ["nil"],
+ "filament_retract_lift_above": ["nil"],
+ "filament_retract_lift_below": ["nil"],
+ "filament_retract_lift_enforce": ["nil"],
+ "filament_retract_restart_extra": ["nil"],
+ "filament_retract_when_changing_layer": ["nil"],
+ "filament_retraction_length": ["nil"],
+ "filament_retraction_minimum_travel": ["nil"],
+ "filament_retraction_speed": ["nil"],
"filament_settings_id": ["PETG"],
+ "filament_start_gcode": ["SET_PRESSURE_ADVANCE EXTRUDER=extruder SMOOTH_TIME=0.5"],
"filament_type": ["PETG"],
- "filament_vendor": ["Generic"],
- "from": "system",
- "hot_plate_temp": ["100"],
- "hot_plate_temp_initial_layer": ["90"],
- "inherits": "fdm_filament_petg",
+ "filament_wipe": ["nil"],
+ "filament_wipe_distance": ["nil"],
+ "filament_z_hop": ["nil"],
+ "filament_z_hop_types": ["nil"],
+ "hot_plate_temp": ["80"],
+ "hot_plate_temp_initial_layer": ["75"],
"is_custom_defined": "0",
- "name": "Ginger Generic PETG",
- "pellet_flow_coefficient": ["1"],
- "pressure_advance": ["0.01"],
+ "mixing_stepper_rotation_volume": "8000",
+ "multi_zone_1_initial_layer": "240",
+ "multi_zone_1_temperature": "240",
+ "multi_zone_2_initial_layer": "240",
+ "multi_zone_2_temperature": "240",
+ "multi_zone_3_initial_layer": "220",
+ "multi_zone_3_temperature": "220",
+ "nozzle_temperature_range_high": ["260"],
+ "nozzle_temperature_range_low": ["210"],
+ "overhang_fan_speed": ["100"],
+ "overhang_fan_threshold": ["50%"],
+ "pressure_advance": ["0.3"],
+ "reduce_fan_stop_start_freq": ["0"],
"slow_down_layer_time": ["30"],
- "slow_down_min_speed": ["1"],
- "version": "0.1.0.0",
- "compatible_printers": [
- "ginger G1 1.2 nozzle",
- "ginger G1 3.0 nozzle",
- "ginger G1 5.0 nozzle",
- "ginger G1 8.0 nozzle"
- ],
- "instantiation": "true"
+ "slow_down_min_speed": ["1"],
+ "temperature_vitrification": ["75"]
}
diff --git a/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json b/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json
index 8242c91b28..eb51947efc 100644
--- a/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json
+++ b/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json
@@ -1,30 +1,55 @@
{
- "type": "filament",
- "fan_cooling_layer_time": ["60"],
- "fan_max_speed": ["60"],
- "fan_min_speed": ["20"],
- "filament_cost": ["6"],
- "filament_diameter": ["1.12838"],
- "filament_max_volumetric_speed": ["250"],
- "filament_settings_id": ["PLA"],
- "filament_vendor": ["Generic"],
"from": "system",
- "inherits": "fdm_filament_pla",
- "is_custom_defined": "0",
- "name": "Ginger Generic PLA",
- "nozzle_temperature": ["210"],
- "nozzle_temperature_initial_layer": ["210"],
- "nozzle_temperature_range_high": ["220"],
- "pellet_flow_coefficient": ["1"],
- "required_nozzle_HRC": ["0"],
- "slow_down_layer_time": ["20"],
- "slow_down_min_speed": ["3"],
+ "type": "filament",
+ "instantiation": "true",
"version": "0.1.0.0",
- "compatible_printers": [
- "ginger G1 1.2 nozzle",
- "ginger G1 3.0 nozzle",
- "ginger G1 5.0 nozzle",
- "ginger G1 8.0 nozzle"
- ],
- "instantiation": "true"
+ "filament_vendor": ["Generic"],
+ "inherits": "fdm_filament_common",
+ "name": "Ginger Generic PLA",
+ "close_fan_the_first_x_layers": ["4"],
+ "enable_overhang_bridge_fan": ["0"],
+ "enable_pressure_advance": ["1"],
+ "extruder_rotation_volume": "456",
+ "fan_cooling_layer_time": ["100"],
+ "fan_max_speed": ["0"],
+ "fan_min_speed": ["0"],
+ "filament_cost": ["6"],
+ "filament_density": ["1.24"],
+ "filament_deretraction_speed": ["nil"],
+ "filament_max_volumetric_speed": ["250"],
+ "filament_retract_before_wipe": ["nil"],
+ "filament_retract_lift_above": ["nil"],
+ "filament_retract_lift_below": ["nil"],
+ "filament_retract_lift_enforce": ["nil"],
+ "filament_retract_restart_extra": ["nil"],
+ "filament_retract_when_changing_layer": ["nil"],
+ "filament_retraction_length": ["nil"],
+ "filament_retraction_minimum_travel": ["nil"],
+ "filament_retraction_speed": ["nil"],
+ "filament_settings_id": ["PLA"],
+ "filament_start_gcode": ["SET_PRESSURE_ADVANCE EXTRUDER=extruder SMOOTH_TIME=0.5"],
+ "filament_type": ["PLA"],
+ "filament_wipe": ["nil"],
+ "filament_wipe_distance": ["nil"],
+ "filament_z_hop": ["nil"],
+ "filament_z_hop_types": ["nil"],
+ "hot_plate_temp": ["50"],
+ "hot_plate_temp_initial_layer": ["50"],
+ "is_custom_defined": "0",
+ "mixing_stepper_rotation_volume": "8000",
+ "multi_zone_1_initial_layer": "200",
+ "multi_zone_1_temperature": "200",
+ "multi_zone_2_initial_layer": "200",
+ "multi_zone_2_temperature": "200",
+ "multi_zone_3_initial_layer": "200",
+ "multi_zone_3_temperature": "200",
+ "nozzle_temperature_range_high": ["220"],
+ "nozzle_temperature_range_low": ["180"],
+ "overhang_fan_speed": ["100"],
+ "overhang_fan_threshold": ["50%"],
+ "pressure_advance": ["0.3"],
+ "reduce_fan_stop_start_freq": ["0"],
+ "slow_down_layer_time": ["50"],
+ "slow_down_min_speed": ["1"],
+ "temperature_vitrification": ["55"]
}
diff --git a/resources/profiles/Ginger Additive/filament/Ginger Generic rPETG.json b/resources/profiles/Ginger Additive/filament/Ginger Generic rPETG.json
deleted file mode 100644
index 489744aeff..0000000000
--- a/resources/profiles/Ginger Additive/filament/Ginger Generic rPETG.json
+++ /dev/null
@@ -1,31 +0,0 @@
-{
- "type": "filament",
- "fan_cooling_layer_time": ["50"],
- "fan_min_speed": ["0"],
- "filament_density": ["1.27"],
- "filament_diameter": ["1.12838"],
- "filament_settings_id": ["rPETG"],
- "filament_type": ["rPETG"],
- "filament_vendor": ["Generic"],
- "from": "system",
- "hot_plate_temp": ["90"],
- "hot_plate_temp_initial_layer": ["80"],
- "inherits": "fdm_filament_rpetg",
- "is_custom_defined": "0",
- "name": "Ginger Generic rPETG",
- "nozzle_temperature_range_high": ["260"],
- "nozzle_temperature_range_low": ["230"],
- "pellet_flow_coefficient": ["1"],
- "pressure_advance": ["0.01"],
- "required_nozzle_HRC": ["0"],
- "slow_down_min_speed": ["2"],
- "temperature_vitrification": ["85"],
- "version": "0.1.0.0",
- "compatible_printers": [
- "ginger G1 1.2 nozzle",
- "ginger G1 3.0 nozzle",
- "ginger G1 5.0 nozzle",
- "ginger G1 8.0 nozzle"
- ],
- "instantiation": "true"
-}
diff --git a/resources/profiles/Ginger Additive/filament/Ginger Generic rPLA.json b/resources/profiles/Ginger Additive/filament/Ginger Generic rPLA.json
deleted file mode 100644
index 65dc0c13b0..0000000000
--- a/resources/profiles/Ginger Additive/filament/Ginger Generic rPLA.json
+++ /dev/null
@@ -1,22 +0,0 @@
-{
- "type": "filament",
- "fan_max_speed": ["0"],
- "fan_min_speed": ["0"],
- "filament_diameter": ["1.12838"],
- "filament_settings_id": ["rPLA"],
- "filament_type": ["rPLA"],
- "filament_vendor": ["Generic"],
- "from": "system",
- "inherits": "fdm_filament_rpla",
- "is_custom_defined": "0",
- "name": "Ginger Generic rPLA",
- "pellet_flow_coefficient": ["1"],
- "version": "0.1.0.0",
- "compatible_printers": [
- "ginger G1 1.2 nozzle",
- "ginger G1 3.0 nozzle",
- "ginger G1 5.0 nozzle",
- "ginger G1 8.0 nozzle"
- ],
- "instantiation": "true"
-}
diff --git a/resources/profiles/Ginger Additive/filament/fdm_filament_common.json b/resources/profiles/Ginger Additive/filament/fdm_filament_common.json
index ffd1d27d7c..5bcaf14091 100644
--- a/resources/profiles/Ginger Additive/filament/fdm_filament_common.json
+++ b/resources/profiles/Ginger Additive/filament/fdm_filament_common.json
@@ -1,95 +1,255 @@
{
- "type": "filament",
- "activate_air_filtration": ["0"],
- "activate_chamber_temp_control": ["0"],
- "additional_cooling_fan_speed": ["70"],
- "chamber_temperature": ["0"],
- "close_fan_the_first_x_layers": ["1"],
- "compatible_printers": ["Ginger Additive ginger G1 1.0 nozzle"],
- "compatible_printers_condition": "",
- "compatible_prints": [],
- "compatible_prints_condition": "",
- "complete_print_exhaust_fan_speed": ["70"],
- "cool_plate_temp": ["35"],
- "cool_plate_temp_initial_layer": ["35"],
- "default_filament_colour": [""],
- "during_print_exhaust_fan_speed": ["70"],
- "enable_overhang_bridge_fan": ["1"],
- "enable_pressure_advance": ["1"],
- "eng_plate_temp": ["0"],
- "eng_plate_temp_initial_layer": ["0"],
- "fan_cooling_layer_time": ["60"],
- "fan_max_speed": ["0"],
- "fan_min_speed": ["0"],
- "filament_cooling_final_speed": ["3.4"],
- "filament_cooling_initial_speed": ["2.2"],
- "filament_cooling_moves": ["4"],
- "filament_cost": ["5"],
- "filament_density": ["1.24"],
- "filament_deretraction_speed": ["nil"],
- "filament_diameter": ["2.8"],
- "filament_end_gcode": ["; filament end gcode \nM106 P3 S0\n"],
- "filament_flow_ratio": ["1"],
- "filament_id": "P510eff9",
- "filament_is_support": ["0"],
- "filament_load_time": ["0"],
- "filament_loading_speed": ["28"],
- "filament_loading_speed_start": ["3"],
- "filament_max_volumetric_speed": ["300"],
- "filament_minimal_purge_on_wipe_tower": ["15"],
- "filament_multitool_ramming": ["0"],
- "filament_multitool_ramming_flow": ["10"],
- "filament_multitool_ramming_volume": ["10"],
- "filament_notes": [""],
- "filament_ramming_parameters": [
- "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
- ],
- "filament_retract_before_wipe": ["nil"],
- "filament_retract_lift_above": ["nil"],
- "filament_retract_lift_below": ["nil"],
- "filament_retract_lift_enforce": ["nil"],
- "filament_retract_restart_extra": ["nil"],
- "filament_retract_when_changing_layer": ["nil"],
- "filament_retraction_length": ["nil"],
- "filament_retraction_minimum_travel": ["nil"],
- "filament_retraction_speed": ["nil"],
- "filament_settings_id": ["Ginger Filaments Common"],
- "filament_shrink": ["100%"],
- "filament_soluble": ["0"],
- "filament_start_gcode": [
- "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
- ],
- "filament_toolchange_delay": ["0"],
- "filament_unload_time": ["0"],
- "filament_unloading_speed": ["90"],
- "filament_unloading_speed_start": ["100"],
- "filament_vendor": ["Generic"],
- "filament_wipe": ["nil"],
- "filament_wipe_distance": ["nil"],
- "filament_z_hop": ["nil"],
- "filament_z_hop_types": ["nil"],
- "from": "system",
- "full_fan_speed_layer": ["0"],
- "hot_plate_temp": ["1"],
- "hot_plate_temp_initial_layer": ["60"],
- "is_custom_defined": "0",
- "name": "fdm_filament_common",
- "nozzle_temperature": ["220"],
- "nozzle_temperature_initial_layer": ["220"],
- "nozzle_temperature_range_high": ["240"],
- "nozzle_temperature_range_low": ["190"],
- "overhang_fan_speed": ["100"],
- "overhang_fan_threshold": ["50%"],
- "pressure_advance": ["0.4"],
- "reduce_fan_stop_start_freq": ["0"],
- "required_nozzle_HRC": ["3"],
- "slow_down_for_layer_cooling": ["1"],
- "slow_down_layer_time": ["30"],
- "slow_down_min_speed": ["20"],
- "support_material_interface_fan_speed": ["-1"],
- "temperature_vitrification": ["55"],
- "textured_plate_temp": ["55"],
- "textured_plate_temp_initial_layer": ["55"],
- "version": "1.7.0.2",
- "instantiation": "false"
-}
+ "type": "filament",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "70"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers": [
+ "Ginger G1 1.2 nozzle",
+ "Ginger G1 3.0 nozzle",
+ "Ginger G1 5.0 nozzle",
+ "Ginger G1 8.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "70"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "during_print_exhaust_fan_speed": [
+ "70"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "60"
+ ],
+ "fan_max_speed": [
+ "0"
+ ],
+ "fan_min_speed": [
+ "0"
+ ],
+ "filament_cooling_final_speed": [
+ "3.4"
+ ],
+ "filament_cooling_initial_speed": [
+ "2.2"
+ ],
+ "filament_cooling_moves": [
+ "4"
+ ],
+ "filament_cost": [
+ "5"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.12838"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \nM106 P3 S0\n"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_id": "P510eff9",
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_load_time": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "28"
+ ],
+ "filament_loading_speed_start": [
+ "3"
+ ],
+ "filament_max_volumetric_speed": [
+ "300"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "10"
+ ],
+ "filament_multitool_ramming_volume": [
+ "10"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_settings_id": [
+ "Ginger Filaments Common"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n{if (bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S255\n{elsif(bed_temperature[current_extruder] >35)||(bed_temperature_initial_layer[current_extruder] >35)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unload_time": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "90"
+ ],
+ "filament_unloading_speed_start": [
+ "100"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "from": "system",
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "1"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "is_custom_defined": "0",
+ "name": "fdm_filament_common",
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pressure_advance": [
+ "0.4"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "30"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ],
+ "version": "1.7.0.2",
+ "pellet_flow_coefficient": [
+ "1"
+ ],
+ "instantiation": "false"
+}
\ No newline at end of file
diff --git a/resources/profiles/Ginger Additive/filament/fdm_filament_petg.json b/resources/profiles/Ginger Additive/filament/fdm_filament_petg.json
deleted file mode 100644
index 3046df8a81..0000000000
--- a/resources/profiles/Ginger Additive/filament/fdm_filament_petg.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "type": "filament",
- "filament_type": ["PETG"],
- "close_fan_the_first_x_layers": ["4"],
- "fan_cooling_layer_time": ["100"],
- "fan_max_speed": ["50"],
- "fan_min_speed": ["5"],
- "filament_diameter": ["2.4"],
- "filament_settings_id": ["PETG"],
- "filament_vendor": ["Generic"],
- "from": "system",
- "hot_plate_temp": ["50"],
- "hot_plate_temp_initial_layer": ["50"],
- "inherits": "fdm_filament_common",
- "name": "fdm_filament_petg",
- "pressure_advance": ["0"],
- "slow_down_layer_time": ["25"],
- "version": "1.7.0.2",
- "instantiation": "false"
-}
diff --git a/resources/profiles/Ginger Additive/filament/fdm_filament_pla.json b/resources/profiles/Ginger Additive/filament/fdm_filament_pla.json
deleted file mode 100644
index d10da9b052..0000000000
--- a/resources/profiles/Ginger Additive/filament/fdm_filament_pla.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "type": "filament",
- "filament_type": ["PLA"],
- "close_fan_the_first_x_layers": ["4"],
- "fan_cooling_layer_time": ["100"],
- "fan_max_speed": ["50"],
- "fan_min_speed": ["5"],
- "filament_diameter": ["2.4"],
- "filament_settings_id": ["PLA"],
- "filament_vendor": ["Generic"],
- "from": "system",
- "hot_plate_temp": ["50"],
- "hot_plate_temp_initial_layer": ["50"],
- "inherits": "fdm_filament_common",
- "name": "fdm_filament_pla",
- "pressure_advance": ["0"],
- "slow_down_layer_time": ["25"],
- "version": "1.7.0.2",
- "instantiation": "false"
-}
diff --git a/resources/profiles/Ginger Additive/filament/fdm_filament_rpetg.json b/resources/profiles/Ginger Additive/filament/fdm_filament_rpetg.json
deleted file mode 100644
index 826d04babf..0000000000
--- a/resources/profiles/Ginger Additive/filament/fdm_filament_rpetg.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "type": "filament",
- "filament_type": ["rPETG"],
- "close_fan_the_first_x_layers": ["4"],
- "fan_cooling_layer_time": ["100"],
- "fan_max_speed": ["50"],
- "fan_min_speed": ["5"],
- "filament_diameter": ["2.4"],
- "filament_settings_id": ["rPETG"],
- "filament_vendor": ["Generic"],
- "from": "system",
- "hot_plate_temp": ["50"],
- "hot_plate_temp_initial_layer": ["50"],
- "inherits": "fdm_filament_common",
- "name": "fdm_filament_rpetg",
- "pressure_advance": ["0"],
- "slow_down_layer_time": ["25"],
- "version": "1.7.0.2",
- "instantiation": "false"
-}
diff --git a/resources/profiles/Ginger Additive/filament/fdm_filament_rpla.json b/resources/profiles/Ginger Additive/filament/fdm_filament_rpla.json
deleted file mode 100644
index 05a73700c7..0000000000
--- a/resources/profiles/Ginger Additive/filament/fdm_filament_rpla.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "type": "filament",
- "filament_type": ["rPLA"],
- "close_fan_the_first_x_layers": ["4"],
- "fan_cooling_layer_time": ["100"],
- "fan_max_speed": ["50"],
- "fan_min_speed": ["5"],
- "filament_diameter": ["2.4"],
- "filament_settings_id": ["rPLA"],
- "filament_vendor": ["Generic"],
- "from": "system",
- "hot_plate_temp": ["50"],
- "hot_plate_temp_initial_layer": ["50"],
- "inherits": "fdm_filament_common",
- "name": "fdm_filament_rpla",
- "pressure_advance": ["0"],
- "slow_down_layer_time": ["25"],
- "version": "1.7.0.2",
- "instantiation": "false"
-}
diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1 1.2 nozzle.json b/resources/profiles/Ginger Additive/machine/Ginger G1 1.2 nozzle.json
new file mode 100644
index 0000000000..1070fe5735
--- /dev/null
+++ b/resources/profiles/Ginger Additive/machine/Ginger G1 1.2 nozzle.json
@@ -0,0 +1,13 @@
+{
+ "type": "machine",
+ "name": "Ginger G1 1.2 nozzle",
+ "renamed_from":"ginger G1 1.2 nozzle",
+ "printer_settings_id": "Ginger G1 1.2 nozzle",
+ "instantiation": "true",
+ "inherits": "Ginger_G1_common",
+ "max_layer_height": ["1"],
+ "nozzle_diameter": ["1.2"],
+ "printer_variant": "1.2",
+ "printer_model": "ginger G1",
+ "version": "0.1.0.0"
+}
diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1 3.0 nozzle.json b/resources/profiles/Ginger Additive/machine/Ginger G1 3.0 nozzle.json
new file mode 100644
index 0000000000..2969b6bf18
--- /dev/null
+++ b/resources/profiles/Ginger Additive/machine/Ginger G1 3.0 nozzle.json
@@ -0,0 +1,13 @@
+{
+ "type": "machine",
+ "name": "Ginger G1 3.0 nozzle",
+ "renamed_from":"ginger G1 3.0 nozzle",
+ "printer_settings_id": "Ginger G1 3.0 nozzle",
+ "instantiation": "true",
+ "inherits": "Ginger_G1_common",
+ "max_layer_height": ["2.5"],
+ "nozzle_diameter": ["3.0"],
+ "printer_variant": "3.0",
+ "printer_model": "ginger G1",
+ "version": "0.1.0.0"
+}
diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1 5.0 nozzle.json b/resources/profiles/Ginger Additive/machine/Ginger G1 5.0 nozzle.json
new file mode 100644
index 0000000000..7efa58a40f
--- /dev/null
+++ b/resources/profiles/Ginger Additive/machine/Ginger G1 5.0 nozzle.json
@@ -0,0 +1,13 @@
+{
+ "type": "machine",
+ "name": "Ginger G1 5.0 nozzle",
+ "renamed_from":"ginger G1 5.0 nozzle",
+ "printer_settings_id": "Ginger G1 5.0 nozzle",
+ "instantiation": "true",
+ "inherits": "Ginger_G1_common",
+ "max_layer_height": ["3.5"],
+ "nozzle_diameter": ["5.0"],
+ "printer_variant": "5.0",
+ "printer_model": "ginger G1",
+ "version": "0.1.0.0"
+}
diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1 8.0 nozzle.json b/resources/profiles/Ginger Additive/machine/Ginger G1 8.0 nozzle.json
new file mode 100644
index 0000000000..74469794e2
--- /dev/null
+++ b/resources/profiles/Ginger Additive/machine/Ginger G1 8.0 nozzle.json
@@ -0,0 +1,13 @@
+{
+ "type": "machine",
+ "name": "Ginger G1 8.0 nozzle",
+ "renamed_from":"ginger G1 8.0 nozzle",
+ "printer_settings_id": "Ginger G1 8.0 nozzle",
+ "instantiation": "true",
+ "inherits": "Ginger_G1_common",
+ "max_layer_height": ["5.0"],
+ "nozzle_diameter": ["8.0"],
+ "printer_variant": "8.0",
+ "printer_model": "ginger G1",
+ "version": "0.1.0.0"
+}
diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1.json b/resources/profiles/Ginger Additive/machine/Ginger G1.json
new file mode 100644
index 0000000000..a8b81438b6
--- /dev/null
+++ b/resources/profiles/Ginger Additive/machine/Ginger G1.json
@@ -0,0 +1,11 @@
+{
+ "type": "machine_model",
+ "name": "Ginger G1",
+ "renamed_from":"ginger G1",
+ "model_id": "Ginger_G1",
+ "nozzle_diameter": "1.2;3.0;5.0;8.0",
+ "machine_tech": "FGF",
+ "family": "Ginger",
+ "bed_model": "Ginger_G1.stl",
+ "default_materials": "Ginger Generic PETG;Ginger Generic PLA"
+}
diff --git a/resources/profiles/Ginger Additive/machine/Ginger_G1_common.json b/resources/profiles/Ginger Additive/machine/Ginger_G1_common.json
new file mode 100644
index 0000000000..3bbb18eea8
--- /dev/null
+++ b/resources/profiles/Ginger Additive/machine/Ginger_G1_common.json
@@ -0,0 +1,50 @@
+{
+ "type": "machine",
+ "name": "Ginger_G1_common",
+ "renamed_from":"ginger_one_common",
+ "printer_settings_id": "Ginger_G1_common",
+ "from": "system",
+ "inherits": "fdm_machine_common",
+ "instantiation": "false",
+ "is_custom_defined": "0",
+ "default_filament_profile": ["Ginger Generic PLA"],
+ "default_print_profile": "1.50mm Standard @Ginger G1",
+ "deretraction_speed": ["200"],
+ "extruder_clearance_height_to_lid": "200",
+ "extruder_clearance_height_to_rod": "100",
+ "extruder_clearance_radius": "200",
+ "machine_end_gcode": "END_PRINT",
+ "machine_max_acceleration_e": ["1000", "5000"],
+ "machine_max_acceleration_extruding": ["2500", "20000"],
+ "machine_max_acceleration_retracting": ["2500", "5000"],
+ "machine_max_acceleration_x": ["2500", "20000"],
+ "machine_max_acceleration_y": ["2500", "20000"],
+ "machine_max_jerk_e": ["30", "2.5"],
+ "machine_max_jerk_x": ["7", "9"],
+ "machine_max_jerk_y": ["7", "9"],
+ "machine_max_jerk_z": ["7", "0.4"],
+ "machine_max_speed_e": ["500", "25"],
+ "machine_max_speed_x": ["300", "200"],
+ "machine_max_speed_y": ["300", "200"],
+ "machine_max_speed_z": ["12", "12"],
+ "machine_start_gcode": "START_PRINT BED_TEMPERATURE=[bed_temperature_initial_layer] KAMP_LEVELING=1 EXTRUDER_ROTATION_VOLUME={extruder_rotation_volume[0]} MIXING_STEPPER_ROTATION_VOLUME={mixing_stepper_rotation_volume[0]} PURGE_LAYER_HEIGHT=2 PURGE_PARKING_SPEED=10000 PURGE_LENGHT=500 PURGE_SPEED=500 PURGE_MATERIAL_QUANTITY=10000 EXTRUDER_TEMPERATURE=[nozzle_temperature] EXTRUDER_TEMPERATURE_INITIAL_LAYER=[nozzle_temperature_initial_layer] PRESSURE_ADVANCE=0.2 PRESSURE_ADVANCE_SMOOTH_TIME=0.5 ZONE_1_TEMPERATURE={multi_zone_1_initial_layer[0]} ZONE_2_TEMPERATURE={multi_zone_2_initial_layer[0]} ZONE_3_TEMPERATURE={multi_zone_3_initial_layer[0]}",
+ "print_host": "G1OS.local",
+ "printer_model": "Ginger G1",
+ "retract_before_wipe": ["0%"],
+ "retract_restart_extra": ["35"],
+ "retraction_length": ["20"],
+ "retraction_minimum_travel": ["10"],
+ "retraction_speed": ["200"],
+ "support_air_filtration": "0",
+ "support_chamber_temp_control": "0",
+ "version": "1.9.0.2",
+ "wipe_distance": ["10"],
+ "z_hop": ["1.5"],
+ "z_hop_types": ["Normal Lift"],
+ "pellet_modded_printer": "1",
+ "use_extruder_rotation_volume": "1",
+ "use_active_pellet_feeding": "1",
+ "multi_zone": "1",
+ "multi_zone_number": "3",
+ "active_feeder_motor_name": ["mixing_stepper"]
+}
diff --git a/resources/profiles/Ginger Additive/machine/fdm_machine_common.json b/resources/profiles/Ginger Additive/machine/fdm_machine_common.json
index a26021c545..d91e06b1c0 100644
--- a/resources/profiles/Ginger Additive/machine/fdm_machine_common.json
+++ b/resources/profiles/Ginger Additive/machine/fdm_machine_common.json
@@ -67,7 +67,6 @@
"nozzle_type": "undefine",
"nozzle_volume": "0",
"parking_pos_retraction": "92",
- "pellet_modded_printer": "1",
"preferred_orientation": "0",
"print_host": "http://10.0.1.200/",
"print_host_webui": "",
@@ -94,7 +93,7 @@
"retract_lift_enforce": ["All Surfaces"],
"retract_restart_extra": ["0"],
"retract_restart_extra_toolchange": ["0"],
- "retract_when_changing_layer": ["1"],
+ "retract_when_changing_layer": ["0"],
"retraction_length": ["0.8"],
"retraction_minimum_travel": ["1"],
"retraction_speed": ["30"],
diff --git a/resources/profiles/Ginger Additive/machine/ginger G1 1.2 nozzle.json b/resources/profiles/Ginger Additive/machine/ginger G1 1.2 nozzle.json
deleted file mode 100644
index 76a80a20d4..0000000000
--- a/resources/profiles/Ginger Additive/machine/ginger G1 1.2 nozzle.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "type": "machine",
- "deretraction_speed": ["300"],
- "extruder_clearance_height_to_lid": "200",
- "extruder_clearance_height_to_rod": "200",
- "extruder_clearance_radius": "180",
- "from": "system",
- "inherits": "ginger_one_common",
- "is_custom_defined": "0",
- "machine_max_speed_e": ["250", "25"],
- "machine_max_speed_x": ["250", "200"],
- "machine_max_speed_y": ["250", "200"],
- "machine_max_speed_z": ["12", "12"],
- "machine_start_gcode": "START_PRINT BED_TEMPERATURE=[bed_temperature_initial_layer] MATERIAL=[filament_type] KAMP_LEVELING=1 PURGE_LAYER_HEIGHT=2 PURGE_PARKING_SPEED=10000 PURGE_LENGHT=300 PURGE_SPEED=500 PURGE_MATERIAL_QUANTITY=3000 EXTRUDER_TEMPERATURE=[nozzle_temperature] EXTRUDER_TEMPERATURE_INITIAL_LAYER=[nozzle_temperature_initial_layer]",
- "max_layer_height": ["1"],
- "name": "ginger G1 1.2 nozzle",
- "nozzle_diameter": ["1.2"],
- "printer_variant": "1.2",
- "printer_model": "ginger G1",
- "print_host": "192.168.1.97",
- "printer_settings_id": "ginger G1 1.2 nozzle",
- "retract_before_wipe": ["20%"],
- "retract_restart_extra": ["12"],
- "retraction_length": ["20"],
- "retraction_speed": ["250"],
- "support_air_filtration": "0",
- "support_chamber_temp_control": "0",
- "version": "0.1.0.0",
- "wipe_distance": ["20"],
- "z_hop": ["0.8"],
- "z_hop_types": ["Slope Lift"],
- "instantiation": "true"
-}
diff --git a/resources/profiles/Ginger Additive/machine/ginger G1 3.0 nozzle.json b/resources/profiles/Ginger Additive/machine/ginger G1 3.0 nozzle.json
deleted file mode 100644
index 8976a3ce37..0000000000
--- a/resources/profiles/Ginger Additive/machine/ginger G1 3.0 nozzle.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "type": "machine",
- "deretraction_speed": ["250"],
- "extruder_clearance_height_to_lid": "200",
- "extruder_clearance_height_to_rod": "200",
- "extruder_clearance_radius": "180",
- "from": "system",
- "inherits": "ginger_one_common",
- "is_custom_defined": "0",
- "machine_max_speed_e": ["300", "25"],
- "machine_max_speed_x": ["250", "200"],
- "machine_max_speed_y": ["250", "200"],
- "machine_max_speed_z": ["12", "12"],
- "machine_start_gcode": "START_PRINT BED_TEMPERATURE=[bed_temperature_initial_layer] MATERIAL=[filament_type] KAMP_LEVELING=1 PURGE_LAYER_HEIGHT=2 PURGE_PARKING_SPEED=10000 PURGE_LENGHT=300 PURGE_SPEED=500 PURGE_MATERIAL_QUANTITY=3000 EXTRUDER_TEMPERATURE=[nozzle_temperature] EXTRUDER_TEMPERATURE_INITIAL_LAYER=[nozzle_temperature_initial_layer]",
- "max_layer_height": ["2.2"],
- "nozzle_diameter": ["3.0"],
- "printer_variant": "3.0",
- "printer_model": "ginger G1",
- "name": "ginger G1 3.0 nozzle",
- "print_host": "192.168.1.39",
- "printer_settings_id": "ginger G1 3.0 nozzle",
- "retract_before_wipe": ["20%"],
- "retract_restart_extra": ["5"],
- "retraction_length": ["15"],
- "retraction_speed": ["250"],
- "support_air_filtration": "0",
- "support_chamber_temp_control": "0",
- "version": "0.1.0.0",
- "wipe_distance": ["15"],
- "z_hop": ["1.2"],
- "z_hop_types": ["Normal Lift"],
- "instantiation": "true"
-}
diff --git a/resources/profiles/Ginger Additive/machine/ginger G1 5.0 nozzle.json b/resources/profiles/Ginger Additive/machine/ginger G1 5.0 nozzle.json
deleted file mode 100644
index 02231c1ad7..0000000000
--- a/resources/profiles/Ginger Additive/machine/ginger G1 5.0 nozzle.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "type": "machine",
- "deretraction_speed": ["300"],
- "extruder_clearance_height_to_lid": "200",
- "extruder_clearance_height_to_rod": "200",
- "extruder_clearance_radius": "180",
- "from": "system",
- "inherits": "ginger_one_common",
- "is_custom_defined": "0",
- "machine_max_speed_e": ["300", "25"],
- "machine_max_speed_x": ["250", "200"],
- "machine_max_speed_y": ["250", "200"],
- "machine_max_speed_z": ["12", "12"],
- "machine_start_gcode": "START_PRINT BED_TEMPERATURE=[bed_temperature_initial_layer] MATERIAL=[filament_type] KAMP_LEVELING=1 PURGE_LAYER_HEIGHT=2 PURGE_PARKING_SPEED=10000 PURGE_LENGHT=300 PURGE_SPEED=500 PURGE_MATERIAL_QUANTITY=3000 EXTRUDER_TEMPERATURE=[nozzle_temperature] EXTRUDER_TEMPERATURE_INITIAL_LAYER=[nozzle_temperature_initial_layer]",
- "max_layer_height": ["3.5"],
- "name": "ginger G1 5.0 nozzle",
- "nozzle_diameter": ["5.0"],
- "printer_variant": "5.0",
- "printer_model": "ginger G1",
- "print_host": "192.168.1.97",
- "printer_settings_id": "ginger G1 5.0 nozzle",
- "retract_before_wipe": ["20%"],
- "retract_restart_extra": ["15"],
- "retraction_length": ["25"],
- "retraction_speed": ["300"],
- "support_air_filtration": "0",
- "support_chamber_temp_control": "0",
- "version": "0.1.0.0",
- "wipe_distance": ["20"],
- "z_hop": ["2"],
- "z_hop_types": ["Normal Lift"],
- "instantiation": "true"
-}
diff --git a/resources/profiles/Ginger Additive/machine/ginger G1 8.0 nozzle.json b/resources/profiles/Ginger Additive/machine/ginger G1 8.0 nozzle.json
deleted file mode 100644
index b9a1e9b5d4..0000000000
--- a/resources/profiles/Ginger Additive/machine/ginger G1 8.0 nozzle.json
+++ /dev/null
@@ -1,34 +0,0 @@
-{
- "type": "machine",
- "deretraction_speed": ["300"],
- "extruder_clearance_height_to_lid": "200",
- "extruder_clearance_height_to_rod": "200",
- "extruder_clearance_radius": "180",
- "from": "system",
- "inherits": "ginger_one_common",
- "is_custom_defined": "0",
- "machine_max_speed_e": ["300", "25"],
- "machine_max_speed_x": ["250", "200"],
- "machine_max_speed_y": ["250", "200"],
- "machine_max_speed_z": ["12", "12"],
- "machine_start_gcode": "START_PRINT BED_TEMPERATURE=[bed_temperature_initial_layer] MATERIAL=[filament_type] KAMP_LEVELING=1 PURGE_LAYER_HEIGHT=2 PURGE_PARKING_SPEED=10000 PURGE_LENGHT=300 PURGE_SPEED=500 PURGE_MATERIAL_QUANTITY=3000 EXTRUDER_TEMPERATURE=[nozzle_temperature] EXTRUDER_TEMPERATURE_INITIAL_LAYER=[nozzle_temperature_initial_layer]",
- "max_layer_height": ["6"],
- "name": "ginger G1 8.0 nozzle",
- "nozzle_diameter": ["8.0"],
- "printer_variant": "8.0",
- "printer_model": "ginger G1",
- "print_host": "192.168.1.39",
- "printer_settings_id": "ginger G1 8.0 nozzle",
- "retract_before_wipe": ["20%"],
- "retract_length_toolchange": ["4"],
- "retract_restart_extra": ["30"],
- "retraction_length": ["40"],
- "retraction_speed": ["300"],
- "support_air_filtration": "0",
- "support_chamber_temp_control": "0",
- "version": "0.1.0.0",
- "wipe_distance": ["30"],
- "z_hop": ["2"],
- "z_hop_types": ["Normal Lift"],
- "instantiation": "true"
-}
diff --git a/resources/profiles/Ginger Additive/machine/ginger G1.json b/resources/profiles/Ginger Additive/machine/ginger G1.json
deleted file mode 100644
index e74982b250..0000000000
--- a/resources/profiles/Ginger Additive/machine/ginger G1.json
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "type": "machine_model",
- "name": "ginger G1",
- "model_id": "Ginger_One",
- "nozzle_diameter": "1.2;3.0;5.0;8.0",
- "machine_tech": "FFF",
- "family": "Ginger",
- "bed_model": "Ginger_One.stl",
- "bed_texture": "Ginger_One_texture.png",
- "default_materials": "Ginger Generic PETG;Ginger Generic PLA;Ginger Generic rPETG;Ginger Generic rPLA"
-}
diff --git a/resources/profiles/Ginger Additive/machine/ginger_one_common.json b/resources/profiles/Ginger Additive/machine/ginger_one_common.json
deleted file mode 100644
index 1917e0c170..0000000000
--- a/resources/profiles/Ginger Additive/machine/ginger_one_common.json
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- "type": "machine",
- "instantiation": "false",
- "deretraction_speed": ["60"],
- "from": "system",
- "inherits": "fdm_machine_common",
- "machine_end_gcode": "END_PRINT",
- "machine_max_acceleration_e": ["1000", "5000"],
- "machine_max_acceleration_extruding": ["2500", "20000"],
- "machine_max_acceleration_retracting": ["2500", "5000"],
- "machine_max_acceleration_x": ["2500", "20000"],
- "machine_max_acceleration_y": ["2500", "20000"],
- "machine_max_jerk_e": ["30", "2.5"],
- "machine_max_jerk_x": ["7", "9"],
- "machine_max_jerk_y": ["7", "9"],
- "machine_max_jerk_z": ["7", "0.4"],
- "machine_max_speed_e": ["100", "25"],
- "machine_max_speed_x": ["350", "200"],
- "machine_max_speed_y": ["300", "200"],
- "machine_max_speed_z": ["5", "12"],
- "machine_start_gcode": "START_PRINT MATERIAL=[filament_type] BED=[bed_temperature_initial_layer]\n",
- "name": "ginger_one_common",
- "print_host": "192.168.0.167",
- "printer_settings_id": "ginger_one_common",
- "retract_restart_extra": ["0.5"],
- "retraction_length": ["3"],
- "retraction_minimum_travel": ["10"],
- "retraction_speed": ["60"],
- "version": "1.9.0.2",
- "wipe_distance": ["10"],
- "z_hop": ["0.1"],
- "z_hop_types": ["Auto Lift"]
-}
diff --git a/resources/profiles/Ginger Additive/process/0.60mm Standard.json b/resources/profiles/Ginger Additive/process/0.60mm Standard.json
index 8c0030b50e..0b08cb66bb 100644
--- a/resources/profiles/Ginger Additive/process/0.60mm Standard.json
+++ b/resources/profiles/Ginger Additive/process/0.60mm Standard.json
@@ -2,16 +2,16 @@
"type": "process",
"accel_to_decel_enable": "0",
"bottom_shell_layers": "0",
- "bottom_solid_infill_flow_ratio": "0.98",
+ "bottom_solid_infill_flow_ratio": "1",
"bridge_flow": "0.95",
"brim_object_gap": "0.05",
"brim_type": "no_brim",
"brim_width": "10",
"default_acceleration": "2500",
"default_jerk": "5",
- "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation": "0",
"exclude_object": "1",
- "extra_perimeters_on_overhangs": "1",
+ "extra_perimeters_on_overhangs": "0",
"from": "User",
"gap_fill_target": "nowhere",
"gap_infill_speed": "100",
@@ -20,11 +20,10 @@
"infill_wall_overlap": "30%",
"inherits": "fdm_process_common",
"initial_layer_acceleration": "1000",
- "initial_layer_infill_speed": "70",
"initial_layer_jerk": "5",
"initial_layer_line_width": "1.26",
"initial_layer_print_height": "0.6",
- "initial_layer_speed": "50",
+ "initial_layer_speed": "70",
"inner_wall_acceleration": "2500",
"inner_wall_jerk": "5",
"inner_wall_line_width": "1.26",
@@ -45,25 +44,23 @@
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "overhang_reverse": "1",
+ "overhang_reverse": "0",
"overhang_reverse_internal_only": "1",
"overhang_reverse_threshold": "0%",
"print_settings_id": "0.60mm Standard",
"reduce_infill_retraction": "1",
- "role_based_wipe_speed": "0",
+ "role_based_wipe_speed": "1",
"skirt_distance": "10",
"skirt_loops": "3",
"sparse_infill_density": "0%",
"sparse_infill_line_width": "1.26",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "200",
- "spiral_mode_max_xy_smoothing": "1e+07",
- "spiral_mode_smooth": "1",
"support_line_width": "1.26",
"support_speed": "100",
"thick_internal_bridges": "0",
"top_shell_layers": "0",
- "top_solid_infill_flow_ratio": "0.92",
+ "top_solid_infill_flow_ratio": "1",
"top_surface_acceleration": "2500",
"top_surface_jerk": "5",
"top_surface_line_width": "1.26",
@@ -73,8 +70,8 @@
"version": "0.0.0.0",
"wipe_on_loops": "1",
"wipe_speed": "30",
- "xy_contour_compensation": "-0.05",
- "xy_hole_compensation": "0.1",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0",
"instantiation": "true",
- "compatible_printers": ["ginger G1 1.2 nozzle"]
+ "compatible_printers": ["Ginger G1 1.2 nozzle"]
}
diff --git a/resources/profiles/Ginger Additive/process/1.50mm Standard.json b/resources/profiles/Ginger Additive/process/1.50mm Standard.json
index f3491f0285..9657edc661 100644
--- a/resources/profiles/Ginger Additive/process/1.50mm Standard.json
+++ b/resources/profiles/Ginger Additive/process/1.50mm Standard.json
@@ -1,16 +1,15 @@
{
"type": "process",
"accel_to_decel_enable": "0",
- "bottom_solid_infill_flow_ratio": "0.8",
+ "bottom_solid_infill_flow_ratio": "1",
"brim_type": "outer_only",
"brim_width": "20",
"default_acceleration": "2500",
"default_jerk": "5",
- "elefant_foot_compensation": "0.2",
- "enable_overhang_speed": "0",
+ "elefant_foot_compensation": "0",
"ensure_vertical_shell_thickness": "none",
"exclude_object": "1",
- "extra_perimeters_on_overhangs": "1",
+ "extra_perimeters_on_overhangs": "0",
"from": "User",
"gap_fill_target": "nowhere",
"gap_infill_speed": "120",
@@ -21,7 +20,7 @@
"initial_layer_acceleration": "2500",
"initial_layer_jerk": "5",
"initial_layer_print_height": "1",
- "initial_layer_speed": "40",
+ "initial_layer_speed": "70",
"inner_wall_acceleration": "2500",
"inner_wall_jerk": "5",
"inner_wall_speed": "120",
@@ -32,27 +31,25 @@
"outer_wall_acceleration": "2500",
"outer_wall_jerk": "5",
"outer_wall_speed": "120",
- "overhang_1_4_speed": "20",
- "overhang_2_4_speed": "30",
- "overhang_3_4_speed": "40",
- "overhang_4_4_speed": "40",
- "overhang_reverse": "1",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "40",
+ "overhang_3_4_speed": "20",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
"overhang_reverse_internal_only": "1",
"overhang_reverse_threshold": "0%",
"print_settings_id": "1.50mm Standard",
- "role_based_wipe_speed": "0",
+ "role_based_wipe_speed": "1",
"seam_position": "aligned",
"skirt_distance": "10",
"sparse_infill_density": "10%",
"sparse_infill_line_width": "3.2",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "120",
- "spiral_mode_max_xy_smoothing": "1e+07",
- "spiral_mode_smooth": "1",
"support_speed": "120",
"thick_internal_bridges": "0",
"top_shell_layers": "0",
- "top_solid_infill_flow_ratio": "0.9",
+ "top_solid_infill_flow_ratio": "1",
"top_surface_acceleration": "2500",
"top_surface_jerk": "5",
"top_surface_speed": "120",
@@ -60,12 +57,12 @@
"travel_jerk": "7",
"travel_speed": "250",
"version": "0.0.0.0",
- "wall_generator": "classic",
+ "wall_generator": "arachne",
"wall_loops": "1",
"wipe_on_loops": "1",
"wipe_speed": "40",
- "xy_contour_compensation": "-0.15",
- "xy_hole_compensation": "0.2",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0",
"instantiation": "true",
- "compatible_printers": ["ginger G1 3.0 nozzle"]
+ "compatible_printers": ["Ginger G1 3.0 nozzle"]
}
diff --git a/resources/profiles/Ginger Additive/process/1.80mm Vasemode.json b/resources/profiles/Ginger Additive/process/1.80mm Vasemode.json
index e33db41d6a..d081db4351 100644
--- a/resources/profiles/Ginger Additive/process/1.80mm Vasemode.json
+++ b/resources/profiles/Ginger Additive/process/1.80mm Vasemode.json
@@ -1,16 +1,15 @@
{
"type": "process",
"accel_to_decel_enable": "0",
- "bottom_solid_infill_flow_ratio": "0.8",
+ "bottom_solid_infill_flow_ratio": "1",
"brim_type": "no_brim",
"brim_width": "20",
"default_acceleration": "2500",
"default_jerk": "5",
- "elefant_foot_compensation": "0.2",
- "enable_overhang_speed": "0",
+ "elefant_foot_compensation": "0",
"ensure_vertical_shell_thickness": "none",
"exclude_object": "1",
- "extra_perimeters_on_overhangs": "1",
+ "extra_perimeters_on_overhangs": "0",
"from": "User",
"gap_fill_target": "nowhere",
"gap_infill_speed": "120",
@@ -22,7 +21,7 @@
"initial_layer_jerk": "5",
"initial_layer_line_width": "4.2",
"initial_layer_print_height": "1",
- "initial_layer_speed": "40",
+ "initial_layer_speed": "70",
"inner_wall_acceleration": "2500",
"inner_wall_jerk": "5",
"inner_wall_line_width": "4.2",
@@ -44,7 +43,7 @@
"overhang_reverse_internal_only": "1",
"overhang_reverse_threshold": "0%",
"print_settings_id": "1.80mm Vasemode",
- "role_based_wipe_speed": "0",
+ "role_based_wipe_speed": "1",
"seam_position": "aligned",
"skirt_distance": "10",
"sparse_infill_density": "0%",
@@ -52,13 +51,11 @@
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "120",
"spiral_mode": "1",
- "spiral_mode_max_xy_smoothing": "1e+07",
- "spiral_mode_smooth": "1",
"support_line_width": "4.2",
"support_speed": "120",
"thick_internal_bridges": "0",
"top_shell_layers": "0",
- "top_solid_infill_flow_ratio": "0.9",
+ "top_solid_infill_flow_ratio": "1",
"top_surface_acceleration": "2500",
"top_surface_jerk": "5",
"top_surface_line_width": "4.2",
@@ -70,8 +67,8 @@
"wall_loops": "1",
"wipe_on_loops": "1",
"wipe_speed": "40",
- "xy_contour_compensation": "-0.15",
- "xy_hole_compensation": "0.2",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0",
"instantiation": "true",
- "compatible_printers": ["ginger G1 3.0 nozzle"]
+ "compatible_printers": ["Ginger G1 3.0 nozzle"]
}
diff --git a/resources/profiles/Ginger Additive/process/2.50mm Standard.json b/resources/profiles/Ginger Additive/process/2.50mm Standard.json
index b72b6fb9b6..f43aca97b2 100644
--- a/resources/profiles/Ginger Additive/process/2.50mm Standard.json
+++ b/resources/profiles/Ginger Additive/process/2.50mm Standard.json
@@ -1,16 +1,15 @@
{
"type": "process",
"accel_to_decel_enable": "0",
- "bottom_solid_infill_flow_ratio": "0.8",
+ "bottom_solid_infill_flow_ratio": "1",
"brim_type": "outer_only",
"brim_width": "20",
"default_acceleration": "2500",
"default_jerk": "5",
- "elefant_foot_compensation": "0.2",
- "enable_overhang_speed": "0",
+ "elefant_foot_compensation": "0",
"ensure_vertical_shell_thickness": "none",
"exclude_object": "1",
- "extra_perimeters_on_overhangs": "1",
+ "extra_perimeters_on_overhangs": "0",
"from": "User",
"gap_fill_target": "nowhere",
"gap_infill_speed": "120",
@@ -22,7 +21,7 @@
"initial_layer_jerk": "5",
"initial_layer_line_width": "5.5",
"initial_layer_print_height": "1",
- "initial_layer_speed": "40",
+ "initial_layer_speed": "70",
"inner_wall_acceleration": "2500",
"inner_wall_jerk": "5",
"inner_wall_line_width": "5.5",
@@ -41,24 +40,22 @@
"overhang_2_4_speed": "30",
"overhang_3_4_speed": "40",
"overhang_4_4_speed": "40",
- "overhang_reverse": "1",
+ "overhang_reverse": "0",
"overhang_reverse_internal_only": "1",
"overhang_reverse_threshold": "0%",
"print_settings_id": "2.50mm Standard",
- "role_based_wipe_speed": "0",
+ "role_based_wipe_speed": "1",
"seam_position": "aligned",
"skirt_distance": "10",
"sparse_infill_density": "10%",
"sparse_infill_line_width": "5.5",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "120",
- "spiral_mode_max_xy_smoothing": "1e+07",
- "spiral_mode_smooth": "1",
"support_line_width": "5.5",
"support_speed": "120",
"thick_internal_bridges": "0",
"top_shell_layers": "0",
- "top_solid_infill_flow_ratio": "0.9",
+ "top_solid_infill_flow_ratio": "1",
"top_surface_acceleration": "2500",
"top_surface_jerk": "5",
"top_surface_line_width": "5.5",
@@ -67,12 +64,12 @@
"travel_jerk": "7",
"travel_speed": "250",
"version": "0.0.0.0",
- "wall_generator": "classic",
+ "wall_generator": "arachne",
"wall_loops": "1",
"wipe_on_loops": "1",
"wipe_speed": "40",
- "xy_contour_compensation": "-0.15",
- "xy_hole_compensation": "0.2",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0",
"instantiation": "true",
- "compatible_printers": ["ginger G1 5.0 nozzle"]
+ "compatible_printers": ["Ginger G1 5.0 nozzle"]
}
diff --git a/resources/profiles/Ginger Additive/process/4.00mm Standard.json b/resources/profiles/Ginger Additive/process/4.00mm Standard.json
index dd39cdb20f..fe057dc3f1 100644
--- a/resources/profiles/Ginger Additive/process/4.00mm Standard.json
+++ b/resources/profiles/Ginger Additive/process/4.00mm Standard.json
@@ -5,11 +5,10 @@
"brim_width": "40",
"default_acceleration": "2500",
"default_jerk": "5",
- "elefant_foot_compensation": "0.2",
- "enable_overhang_speed": "0",
+ "elefant_foot_compensation": "0",
"ensure_vertical_shell_thickness": "none",
"exclude_object": "1",
- "extra_perimeters_on_overhangs": "1",
+ "extra_perimeters_on_overhangs": "0",
"from": "User",
"gap_fill_target": "nowhere",
"gap_infill_speed": "120",
@@ -21,7 +20,7 @@
"initial_layer_jerk": "5",
"initial_layer_line_width": "9.5",
"initial_layer_print_height": "1",
- "initial_layer_speed": "40",
+ "initial_layer_speed": "70",
"inner_wall_acceleration": "2500",
"inner_wall_jerk": "5",
"inner_wall_line_width": "9.5",
@@ -40,19 +39,17 @@
"overhang_2_4_speed": "30",
"overhang_3_4_speed": "40",
"overhang_4_4_speed": "40",
- "overhang_reverse": "1",
+ "overhang_reverse": "0",
"overhang_reverse_internal_only": "1",
"overhang_reverse_threshold": "0%",
"print_settings_id": "4.00mm Standard",
- "role_based_wipe_speed": "0",
+ "role_based_wipe_speed": "1",
"seam_position": "aligned",
"skirt_distance": "10",
"sparse_infill_density": "10%",
"sparse_infill_line_width": "9.5",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "120",
- "spiral_mode_max_xy_smoothing": "1e+07",
- "spiral_mode_smooth": "1",
"support_line_width": "9.5",
"support_speed": "120",
"thick_internal_bridges": "0",
@@ -65,12 +62,12 @@
"travel_jerk": "7",
"travel_speed": "250",
"version": "0.0.0.0",
- "wall_generator": "classic",
+ "wall_generator": "arachne",
"wall_loops": "1",
"wipe_on_loops": "1",
"wipe_speed": "40",
- "xy_contour_compensation": "-0.15",
- "xy_hole_compensation": "0.2",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0",
"instantiation": "true",
- "compatible_printers": ["ginger G1 8.0 nozzle"]
+ "compatible_printers": ["Ginger G1 8.0 nozzle"]
}
diff --git a/resources/profiles/Ginger Additive/process/fdm_process_common.json b/resources/profiles/Ginger Additive/process/fdm_process_common.json
index 81075c236f..c8cabdeea2 100644
--- a/resources/profiles/Ginger Additive/process/fdm_process_common.json
+++ b/resources/profiles/Ginger Additive/process/fdm_process_common.json
@@ -64,12 +64,12 @@
"infill_jerk": "9",
"infill_wall_overlap": "15%",
"initial_layer_acceleration": "300",
- "initial_layer_infill_speed": "60",
+ "initial_layer_infill_speed": "70",
"initial_layer_jerk": "9",
"initial_layer_line_width": "3.2",
"initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "1.5",
- "initial_layer_speed": "30",
+ "initial_layer_speed": "70",
"initial_layer_travel_speed": "100%",
"inner_wall_acceleration": "10000",
"inner_wall_jerk": "9",
@@ -153,7 +153,7 @@
"seam_slope_min_length": "20",
"seam_slope_start_height": "0",
"seam_slope_steps": "10",
- "seam_slope_type": "external",
+ "seam_slope_type": "none",
"single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
@@ -187,7 +187,7 @@
"sparse_infill_speed": "100",
"spiral_mode": "0",
"spiral_mode_max_xy_smoothing": "200%",
- "spiral_mode_smooth": "0",
+ "spiral_mode_smooth": "1",
"staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
"support_angle": "0",
diff --git a/resources/profiles/Prusa.json b/resources/profiles/Prusa.json
index e019ada90b..efdb9c7028 100644
--- a/resources/profiles/Prusa.json
+++ b/resources/profiles/Prusa.json
@@ -270,6 +270,10 @@
"name": "process_common_MK3.5",
"sub_path": "process/process_common_MK3.5.json"
},
+ {
+ "name": "process_highflow_MK3.5",
+ "sub_path": "process/process_highflow_MK3.5.json"
+ },
{
"name": "process_speed_MK3.5",
"sub_path": "process/process_speed_MK3.5.json"
@@ -318,6 +322,22 @@
"name": "0.15mm Speed @MK3.5 0.25",
"sub_path": "process/0.15mm Speed @MK3.5 0.25.json"
},
+ {
+ "name": "0.15mm High Flow @MK3.5",
+ "sub_path": "process/0.15mm High Flow @MK3.5.json"
+ },
+ {
+ "name": "0.20mm High Flow @MK3.5 0.6",
+ "sub_path": "process/0.20mm High Flow @MK3.5 0.6.json"
+ },
+ {
+ "name": "0.20mm High Flow @MK3.5",
+ "sub_path": "process/0.20mm High Flow @MK3.5.json"
+ },
+ {
+ "name": "0.25mm High Flow @MK3.5",
+ "sub_path": "process/0.25mm High Flow @MK3.5.json"
+ },
{
"name": "0.20mm Standard @MK3.5",
"sub_path": "process/0.20mm Standard @MK3.5.json"
@@ -334,6 +354,14 @@
"name": "0.20mm Speed @MK3.5 0.6",
"sub_path": "process/0.20mm Speed @MK3.5 0.6.json"
},
+ {
+ "name": "0.32mm High Flow @MK3.5",
+ "sub_path": "process/0.32mm High Flow @MK3.5.json"
+ },
+ {
+ "name": "0.40mm High Flow @MK3.5",
+ "sub_path": "process/0.40mm High Flow @MK3.5.json"
+ },
{
"name": "0.25mm Standard @MK3.5",
"sub_path": "process/0.25mm Standard @MK3.5.json"
@@ -346,6 +374,10 @@
"name": "0.30mm Detail @MK3.5",
"sub_path": "process/0.30mm Detail @MK3.5.json"
},
+ {
+ "name": "0.32mm Standard @MK3.5",
+ "sub_path": "process/0.32mm Standard @MK3.5.json"
+ },
{
"name": "0.35mm Standard @MK3.5",
"sub_path": "process/0.35mm Standard @MK3.5.json"
@@ -1349,6 +1381,82 @@
"name": "Prusa Generic PA-CF @MK3.5 0.8",
"sub_path": "filament/Prusa Generic PA-CF @MK3.5 0.8.json"
},
+ {
+ "name": "Prusa Generic PLA HF @MK3.5 0.6",
+ "sub_path": "filament/Prusa Generic PLA HF @MK3.5 0.6.json"
+ },
+ {
+ "name": "Prusa Generic PLA HF @MK3.5 0.8",
+ "sub_path": "filament/Prusa Generic PLA HF @MK3.5 0.8.json"
+ },
+ {
+ "name": "Prusa Generic PLA HF @MK3.5",
+ "sub_path": "filament/Prusa Generic PLA HF @MK3.5.json"
+ },
+ {
+ "name": "Prusa Generic PETG HF @MK3.5",
+ "sub_path": "filament/Prusa Generic PETG HF @MK3.5.json"
+ },
+ {
+ "name": "Prusa Generic PETG HF @MK3.5 0.6",
+ "sub_path": "filament/Prusa Generic PETG HF @MK3.5 0.6.json"
+ },
+ {
+ "name": "Prusa Generic PETG HF @MK3.5 0.8",
+ "sub_path": "filament/Prusa Generic PETG HF @MK3.5 0.8.json"
+ },
+ {
+ "name": "Prusa Generic ABS HF @MK3.5",
+ "sub_path": "filament/Prusa Generic ABS HF @MK3.5.json"
+ },
+ {
+ "name": "Prusa Generic ABS HF @MK3.5 0.6",
+ "sub_path": "filament/Prusa Generic ABS HF @MK3.5 0.6.json"
+ },
+ {
+ "name": "Prusa Generic ABS HF @MK3.5 0.8",
+ "sub_path": "filament/Prusa Generic ABS HF @MK3.5 0.8.json"
+ },
+ {
+ "name": "Prusa Generic TPU HF @MK3.5",
+ "sub_path": "filament/Prusa Generic TPU HF @MK3.5.json"
+ },
+ {
+ "name": "Prusa Generic ASA HF @MK3.5",
+ "sub_path": "filament/Prusa Generic ASA HF @MK3.5.json"
+ },
+ {
+ "name": "Prusa Generic ASA HF @MK3.5 0.6",
+ "sub_path": "filament/Prusa Generic ASA HF @MK3.5 0.6.json"
+ },
+ {
+ "name": "Prusa Generic ASA HF @MK3.5 0.8",
+ "sub_path": "filament/Prusa Generic ASA HF @MK3.5 0.8.json"
+ },
+ {
+ "name": "Prusa Generic PC HF @MK3.5",
+ "sub_path": "filament/Prusa Generic PC HF @MK3.5.json"
+ },
+ {
+ "name": "Prusa Generic PC HF @MK3.5 0.6",
+ "sub_path": "filament/Prusa Generic PC HF @MK3.5 0.6.json"
+ },
+ {
+ "name": "Prusa Generic PC HF @MK3.5 0.8",
+ "sub_path": "filament/Prusa Generic PC HF @MK3.5 0.8.json"
+ },
+ {
+ "name": "Prusa Generic PVA HF @MK3.5",
+ "sub_path": "filament/Prusa Generic PVA HF @MK3.5.json"
+ },
+ {
+ "name": "Prusa Generic PVA HF @MK3.5 0.6",
+ "sub_path": "filament/Prusa Generic PVA HF @MK3.5 0.6.json"
+ },
+ {
+ "name": "Prusa Generic PVA HF @MK3.5 0.8",
+ "sub_path": "filament/Prusa Generic PVA HF @MK3.5 0.8.json"
+ },
{
"name": "Prusa Generic ABS @MK4S",
"sub_path": "filament/Prusa Generic ABS @MK4S.json"
diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.6.json
new file mode 100644
index 0000000000..b7b688ca88
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.6.json
@@ -0,0 +1,52 @@
+{
+ "type": "filament",
+ "filament_id": "GFB99_6",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic ABS HF @MK3.5 0.6",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_abs",
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "cool_plate_temp" : [
+ "100"
+ ],
+ "eng_plate_temp" : [
+ "100"
+ ],
+ "hot_plate_temp" : [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "eng_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "filament_max_volumetric_speed": [
+ "34"
+ ],
+ "fan_max_speed": [
+ "15"
+ ],
+ "fan_min_speed": [
+ "15"
+ ],
+ "slow_down_layer_time": [
+ "20"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.012"
+ ],
+
+ "compatible_printers": [
+ "Prusa MK3.5 0.6 nozzle"
+ ]
+}
diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.8.json
new file mode 100644
index 0000000000..a2238c22d1
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.8.json
@@ -0,0 +1,52 @@
+{
+ "type": "filament",
+ "filament_id": "GFB99_7",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic ABS HF @MK3.5 0.8",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_abs",
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "cool_plate_temp" : [
+ "100"
+ ],
+ "eng_plate_temp" : [
+ "100"
+ ],
+ "hot_plate_temp" : [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "eng_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "filament_max_volumetric_speed": [
+ "36"
+ ],
+ "fan_max_speed": [
+ "15"
+ ],
+ "fan_min_speed": [
+ "15"
+ ],
+ "slow_down_layer_time": [
+ "20"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.01"
+ ],
+
+ "compatible_printers": [
+ "Prusa MK3.5 0.8 nozzle"
+ ]
+}
diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5.json
new file mode 100644
index 0000000000..a6fff49bca
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5.json
@@ -0,0 +1,52 @@
+{
+ "type": "filament",
+ "filament_id": "GFB99_5",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic ABS HF @MK3.5",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_abs",
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "cool_plate_temp" : [
+ "100"
+ ],
+ "eng_plate_temp" : [
+ "100"
+ ],
+ "hot_plate_temp" : [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "eng_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "filament_max_volumetric_speed": [
+ "25"
+ ],
+ "fan_max_speed": [
+ "15"
+ ],
+ "fan_min_speed": [
+ "15"
+ ],
+ "slow_down_layer_time": [
+ "20"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.02"
+ ],
+
+ "compatible_printers": [
+ "Prusa MK3.5 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.25.json
index c731f9ffa2..5b3b62b43d 100644
--- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.25.json
+++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.25.json
@@ -28,7 +28,7 @@
"100"
],
"filament_max_volumetric_speed": [
- "1^"
+ "11"
],
"fan_max_speed": [
"15"
diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.6.json
index 7007f13239..ee8b67532c 100644
--- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.6.json
+++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.6.json
@@ -28,7 +28,7 @@
"100"
],
"filament_max_volumetric_speed": [
- "1^"
+ "11"
],
"fan_max_speed": [
"15"
diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.8.json
index a4d7807711..bc524d2d74 100644
--- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.8.json
+++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.8.json
@@ -28,7 +28,7 @@
"100"
],
"filament_max_volumetric_speed": [
- "1^"
+ "11"
],
"fan_max_speed": [
"15"
diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.6.json
new file mode 100644
index 0000000000..45343bfce7
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.6.json
@@ -0,0 +1,52 @@
+{
+ "type": "filament",
+ "filament_id": "GFB98_6",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic ASA HF @MK3.5 0.6",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_asa",
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "cool_plate_temp" : [
+ "100"
+ ],
+ "eng_plate_temp" : [
+ "100"
+ ],
+ "hot_plate_temp" : [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "eng_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "filament_max_volumetric_speed": [
+ "34"
+ ],
+ "fan_max_speed": [
+ "15"
+ ],
+ "fan_min_speed": [
+ "15"
+ ],
+ "slow_down_layer_time": [
+ "20"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.012"
+ ],
+
+ "compatible_printers": [
+ "Prusa MK3.5 0.6 nozzle"
+ ]
+}
diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.8.json
new file mode 100644
index 0000000000..111a381488
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.8.json
@@ -0,0 +1,52 @@
+{
+ "type": "filament",
+ "filament_id": "GFB98_7",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic ASA HF @MK3.5 0.8",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_asa",
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "cool_plate_temp" : [
+ "100"
+ ],
+ "eng_plate_temp" : [
+ "100"
+ ],
+ "hot_plate_temp" : [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "eng_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "filament_max_volumetric_speed": [
+ "36"
+ ],
+ "fan_max_speed": [
+ "15"
+ ],
+ "fan_min_speed": [
+ "15"
+ ],
+ "slow_down_layer_time": [
+ "20"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.01"
+ ],
+
+ "compatible_printers": [
+ "Prusa MK3.5 0.8 nozzle"
+ ]
+}
diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5.json
new file mode 100644
index 0000000000..3ed53bb320
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5.json
@@ -0,0 +1,52 @@
+{
+ "type": "filament",
+ "filament_id": "GFB98_5",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic ASA HF @MK3.5",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_asa",
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "cool_plate_temp" : [
+ "100"
+ ],
+ "eng_plate_temp" : [
+ "100"
+ ],
+ "hot_plate_temp" : [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "eng_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer" : [
+ "100"
+ ],
+ "filament_max_volumetric_speed": [
+ "26"
+ ],
+ "fan_max_speed": [
+ "15"
+ ],
+ "fan_min_speed": [
+ "15"
+ ],
+ "slow_down_layer_time": [
+ "20"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.02"
+ ],
+
+ "compatible_printers": [
+ "Prusa MK3.5 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.6.json
new file mode 100644
index 0000000000..0eb69ff2d2
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.6.json
@@ -0,0 +1,25 @@
+{
+ "type": "filament",
+ "filament_id": "GFC99_5",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic PC HF @MK3.5 0.6",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_pc",
+ "filament_max_volumetric_speed": [
+ "30"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.022"
+ ],
+
+ "compatible_printers": [
+ "Prusa MK3.5 0.6 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.8.json
new file mode 100644
index 0000000000..c637a2c04c
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.8.json
@@ -0,0 +1,25 @@
+{
+ "type": "filament",
+ "filament_id": "GFC99_6",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic PC HF @MK3.5 0.8",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_pc",
+ "filament_max_volumetric_speed": [
+ "36"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.016"
+ ],
+
+ "compatible_printers": [
+ "Prusa MK3.5 0.8 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5.json
new file mode 100644
index 0000000000..2f65c55619
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5.json
@@ -0,0 +1,25 @@
+{
+ "type": "filament",
+ "filament_id": "GFC99_4",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic PC HF @MK3.5",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_pc",
+ "filament_max_volumetric_speed": [
+ "24"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.05"
+ ],
+
+ "compatible_printers": [
+ "Prusa MK3.5 0.4 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.6.json
new file mode 100644
index 0000000000..5dda00269d
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.6.json
@@ -0,0 +1,64 @@
+{
+ "type": "filament",
+ "filament_id": "GFG99_6",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic PETG HF @MK3.5 0.6",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_pet",
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "overhang_fan_speed": [
+ "50"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "slow_down_layer_time": [
+ "17"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "nozzle_temperature": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "hot_plate_temp": [
+ "85"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "85"
+ ],
+ "filament_max_volumetric_speed": [
+ "30"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.025"
+ ],
+
+ "compatible_printers": [
+ "Prusa MK3.5 0.6 nozzle"
+ ]
+}
diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.8.json
new file mode 100644
index 0000000000..8586b39f4f
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.8.json
@@ -0,0 +1,64 @@
+{
+ "type": "filament",
+ "filament_id": "GFG99_7",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic PETG HF @MK3.5 0.8",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_pet",
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "overhang_fan_speed": [
+ "50"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "slow_down_layer_time": [
+ "20"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "nozzle_temperature": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "hot_plate_temp": [
+ "85"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "85"
+ ],
+ "filament_max_volumetric_speed": [
+ "37"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.018"
+ ],
+
+ "compatible_printers": [
+ "Prusa MK3.5 0.8 nozzle"
+ ]
+}
diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5.json
new file mode 100644
index 0000000000..b120a45d33
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5.json
@@ -0,0 +1,64 @@
+{
+ "type": "filament",
+ "filament_id": "GFG99_5",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic PETG HF @MK3.5",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_pet",
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "overhang_fan_speed": [
+ "50"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "nozzle_temperature": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "hot_plate_temp": [
+ "85"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "85"
+ ],
+ "filament_max_volumetric_speed": [
+ "24"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.052"
+ ],
+
+ "compatible_printers": [
+ "Prusa MK3.5 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.6.json
new file mode 100644
index 0000000000..c9be9da971
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.6.json
@@ -0,0 +1,28 @@
+{
+ "type": "filament",
+ "filament_id": "GFL99_6",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic PLA HF @MK3.5 0.6",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_pla",
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "30"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.02"
+ ],
+
+ "compatible_printers": [
+ "Prusa MK3.5 0.6 nozzle"
+ ]
+}
diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.8.json
new file mode 100644
index 0000000000..52bf04bd36
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.8.json
@@ -0,0 +1,28 @@
+{
+ "type": "filament",
+ "filament_id": "GFL99_7",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic PLA HF @MK3.5 0.8",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_pla",
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "37"
+ ],
+ "slow_down_layer_time": [
+ "15"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.014"
+ ],
+
+ "compatible_printers": [
+ "Prusa MK3.5 0.8 nozzle"
+ ]
+}
diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5.json
new file mode 100644
index 0000000000..2f854648e0
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5.json
@@ -0,0 +1,28 @@
+{
+ "type": "filament",
+ "filament_id": "GFL99_5",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic PLA HF @MK3.5",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_pla",
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "24"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.035"
+ ],
+
+ "compatible_printers": [
+ "Prusa MK3.5 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.6.json
new file mode 100644
index 0000000000..c7758719a5
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.6.json
@@ -0,0 +1,31 @@
+{
+ "type": "filament",
+ "filament_id": "GFS99_5",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic PVA HF @MK3.5 0.6",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_pva",
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "5"
+ ],
+ "slow_down_layer_time": [
+ "7"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.012"
+ ],
+
+ "compatible_printers": [
+ "Prusa MK3.5 0.6 nozzle"
+ ]
+}
diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.8.json
new file mode 100644
index 0000000000..48fa920b19
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.8.json
@@ -0,0 +1,31 @@
+{
+ "type": "filament",
+ "filament_id": "GFS99_6",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic PVA HF @MK3.5 0.8",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_pva",
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "slow_down_layer_time": [
+ "7"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.01"
+ ],
+
+ "compatible_printers": [
+ "Prusa MK3.5 0.8 nozzle"
+ ]
+}
diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5.json
new file mode 100644
index 0000000000..2bc8209614
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5.json
@@ -0,0 +1,30 @@
+{
+ "type": "filament",
+ "filament_id": "GFS99_4",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic PVA HF @MK3.5",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_pva",
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "4"
+ ],
+ "slow_down_layer_time": [
+ "7"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "pressure_advance": [
+ "0.02"
+ ],
+ "compatible_printers": [
+ "Prusa MK3.5 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MK3.5.json
new file mode 100644
index 0000000000..5a558e1b2d
--- /dev/null
+++ b/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MK3.5.json
@@ -0,0 +1,87 @@
+{
+ "type": "filament",
+ "filament_id": "GFU99_3",
+ "setting_id": "GFSA04",
+ "name": "Prusa Generic TPU HF @MK3.5",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_filament_tpu",
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "filament_flow_ratio": [
+ "1.15"
+ ],
+ "hot_plate_temp" : [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer" : [
+ "50"
+ ],
+ "filament_type": [
+ "FLEX"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature": [
+ "210"
+ ],
+ "filament_retraction_length": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "45"
+ ],
+ "filament_deretraction_speed": [
+ "20"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "full_fan_speed_layer": [
+ "3"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "slow_down_layer_time": [
+ "4"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "overhang_fan_speed": [
+ "50"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "pressure_advance": [
+ "0"
+ ],
+ "compatible_printers": [
+ "Prusa MK3.5 0.4 nozzle",
+ "Prusa MK3.5 0.25 nozzle",
+ "Prusa MK3.5 0.6 nozzle",
+ "Prusa MK3.5 0.8 nozzle"
+ ]
+}
diff --git a/resources/profiles/Prusa/process/0.15mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.15mm High Flow @MK3.5.json
new file mode 100644
index 0000000000..32c7accd49
--- /dev/null
+++ b/resources/profiles/Prusa/process/0.15mm High Flow @MK3.5.json
@@ -0,0 +1,35 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.15mm High Flow @MK3.5",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "process_highflow_MK3.5",
+ "line_width": "0.45",
+ "inner_wall_line_width": "0.45",
+ "outer_wall_line_width": "0.45",
+ "top_surface_line_width": "0.42",
+ "sparse_infill_line_width": "0.45",
+ "initial_layer_line_width": "0.5",
+ "internal_solid_infill_line_width": "0.45",
+ "support_line_width": "0.36",
+ "layer_height": "0.15",
+ "initial_layer_print_height": "0.20",
+ "top_shell_thickness": "0.7",
+ "top_shell_layers": "5",
+ "bottom_shell_thickness": "0.5",
+ "bottom_shell_layers": "4",
+ "bridge_speed": "45",
+ "default_acceleration": "3000",
+ "initial_layer_acceleration": "500",
+ "top_surface_acceleration": "3000",
+ "travel_acceleration": "4000",
+ "sparse_infill_acceleration": "4000",
+ "internal_solid_infill_acceleration": "3500",
+ "inner_wall_acceleration": "3500",
+ "outer_wall_acceleration": "2500",
+ "bridge_acceleration": "1500",
+ "compatible_printers": [
+ "Prusa MK3.5 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5 0.6.json b/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5 0.6.json
new file mode 100644
index 0000000000..3adc88d1cb
--- /dev/null
+++ b/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5 0.6.json
@@ -0,0 +1,40 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.20mm High Flow @MK3.5 0.6",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "process_highflow_MK3.5",
+ "compatible_printers": [
+ "Prusa MK3.5 0.6 nozzle"
+ ],
+ "layer_height": "0.20",
+ "initial_layer_print_height": "0.25",
+ "line_width": "0.68",
+ "inner_wall_line_width": "0.62",
+ "outer_wall_line_width": "0.62",
+ "top_surface_line_width": "0.5",
+ "sparse_infill_line_width": "0.62",
+ "initial_layer_line_width": "0.68",
+ "internal_solid_infill_line_width": "0.62",
+ "support_line_width": "0.5",
+ "wall_loops": "2",
+ "outer_wall_speed": "200",
+ "inner_wall_speed": "220",
+ "small_perimeter_speed": "170",
+ "sparse_infill_speed": "200",
+ "internal_solid_infill_speed": "200",
+ "top_surface_speed": "70",
+ "gap_infill_speed": "80",
+ "support_speed": "110",
+ "bridge_speed": "40",
+ "travel_speed": "300",
+ "default_acceleration": "2500",
+ "initial_layer_acceleration": "500",
+ "top_surface_acceleration": "1500",
+ "inner_wall_acceleration": "4000",
+ "outer_wall_acceleration": "4000",
+ "bridge_acceleration": "1500",
+ "internal_solid_infill_acceleration": "3000",
+ "overhang_1_4_speed": "45"
+}
diff --git a/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5.json
new file mode 100644
index 0000000000..1e1c85214e
--- /dev/null
+++ b/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5.json
@@ -0,0 +1,39 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.20mm High Flow @MK3.5",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "process_highflow_MK3.5",
+ "compatible_printers": [
+ "Prusa MK3.5 0.4 nozzle"
+ ],
+ "layer_height": "0.20",
+ "initial_layer_print_height": "0.20",
+ "line_width": "0.45",
+ "inner_wall_line_width": "0.45",
+ "outer_wall_line_width": "0.45",
+ "top_surface_line_width": "0.42",
+ "sparse_infill_line_width": "0.45",
+ "initial_layer_line_width": "0.5",
+ "internal_solid_infill_line_width": "0.45",
+ "support_line_width": "0.36",
+ "wall_loops": "3",
+ "outer_wall_speed": "200",
+ "inner_wall_speed": "250",
+ "small_perimeter_speed": "170",
+ "sparse_infill_speed": "250",
+ "internal_solid_infill_speed": "250",
+ "top_surface_speed": "100",
+ "gap_infill_speed": "120",
+ "support_speed": "120",
+ "bridge_speed": "50",
+ "travel_speed": "300",
+ "initial_layer_acceleration": "500",
+ "top_surface_acceleration": "2000",
+ "inner_wall_acceleration": "4000",
+ "outer_wall_acceleration": "4000",
+ "bridge_acceleration": "1500",
+ "internal_solid_infill_acceleration": "4000",
+ "overhang_1_4_speed": "45"
+}
\ No newline at end of file
diff --git a/resources/profiles/Prusa/process/0.25mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.25mm High Flow @MK3.5.json
new file mode 100644
index 0000000000..5d8fb04ef3
--- /dev/null
+++ b/resources/profiles/Prusa/process/0.25mm High Flow @MK3.5.json
@@ -0,0 +1,46 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.25mm High Flow @MK3.5",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "process_highflow_MK3.5",
+ "line_width": "0.68",
+ "inner_wall_line_width": "0.68",
+ "outer_wall_line_width": "0.68",
+ "top_surface_line_width": "0.55",
+ "sparse_infill_line_width": "0.68",
+ "initial_layer_line_width": "0.68",
+ "internal_solid_infill_line_width": "0.68",
+ "support_line_width": "0.5",
+ "layer_height": "0.25",
+ "initial_layer_print_height": "0.25",
+ "wall_loops": "2",
+ "top_shell_thickness": "0.9",
+ "top_shell_layers": "4",
+ "bottom_shell_thickness": "0.6",
+ "bottom_shell_layers": "3",
+ "initial_layer_speed": "40",
+ "initial_layer_infill_speed": "70",
+ "outer_wall_speed": "180",
+ "inner_wall_speed": "180",
+ "small_perimeter_speed": "170",
+ "sparse_infill_speed": "190",
+ "internal_solid_infill_speed": "190",
+ "top_surface_speed": "60",
+ "gap_infill_speed": "70",
+ "support_speed": "110",
+ "bridge_speed": "40",
+ "travel_speed": "300",
+ "default_acceleration": "2500",
+ "initial_layer_acceleration": "500",
+ "top_surface_acceleration": "2000",
+ "inner_wall_acceleration": "4000",
+ "outer_wall_acceleration": "4000",
+ "bridge_acceleration": "1500",
+ "internal_solid_infill_acceleration": "3000",
+ "overhang_1_4_speed": "45",
+ "compatible_printers": [
+ "Prusa MK3.5 0.6 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Prusa/process/0.32mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.32mm High Flow @MK3.5.json
new file mode 100644
index 0000000000..80473edccd
--- /dev/null
+++ b/resources/profiles/Prusa/process/0.32mm High Flow @MK3.5.json
@@ -0,0 +1,45 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.32mm High Flow @MK3.5",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "process_highflow_MK3.5",
+ "line_width": "0.68",
+ "inner_wall_line_width": "0.68",
+ "outer_wall_line_width": "0.68",
+ "top_surface_line_width": "0.55",
+ "sparse_infill_line_width": "0.68",
+ "initial_layer_line_width": "0.68",
+ "internal_solid_infill_line_width": "0.68",
+ "support_line_width": "0.5",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.32",
+ "wall_loops": "2",
+ "initial_layer_speed": "40",
+ "initial_layer_infill_speed": "70",
+ "top_shell_thickness": "0.9",
+ "top_shell_layers": "4",
+ "bottom_shell_thickness": "0.6",
+ "bottom_shell_layers": "3",
+ "outer_wall_speed": "145",
+ "inner_wall_speed": "145",
+ "bridge_speed": "40",
+ "support_speed": "110",
+ "small_perimeter_speed": "145",
+ "sparse_infill_speed": "145",
+ "internal_solid_infill_speed": "140",
+ "top_surface_speed": "60",
+ "gap_infill_speed": "60",
+ "travel_speed": "300",
+ "default_acceleration": "2500",
+ "initial_layer_acceleration": "500",
+ "top_surface_acceleration": "2000",
+ "inner_wall_acceleration": "4000",
+ "outer_wall_acceleration": "4000",
+ "bridge_acceleration": "1500",
+ "internal_solid_infill_acceleration": "3000",
+ "compatible_printers": [
+ "Prusa MK3.5 0.6 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Prusa/process/0.32mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.32mm Standard @MK3.5.json
new file mode 100644
index 0000000000..6ef599b7e8
--- /dev/null
+++ b/resources/profiles/Prusa/process/0.32mm Standard @MK3.5.json
@@ -0,0 +1,36 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.32mm Standard @MK3.5",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "process_common_MK3.5",
+ "line_width": "0.68",
+ "inner_wall_line_width": "0.68",
+ "outer_wall_line_width": "0.68",
+ "top_surface_line_width": "0.55",
+ "sparse_infill_line_width": "0.68",
+ "initial_layer_line_width": "0.68",
+ "internal_solid_infill_line_width": "0.68",
+ "support_line_width": "0.5",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.32",
+ "wall_loops": "2",
+ "top_shell_thickness": "0.9",
+ "top_shell_layers": "4",
+ "bottom_shell_thickness": "0.6",
+ "bottom_shell_layers": "3",
+ "outer_wall_speed": "45",
+ "inner_wall_speed": "60",
+ "bridge_speed": "30",
+ "support_speed": "60",
+ "small_perimeter_speed": "45",
+ "sparse_infill_speed": "70",
+ "internal_solid_infill_speed": "60",
+ "top_surface_speed": "55",
+ "gap_infill_speed": "45",
+ "travel_speed": "300",
+ "compatible_printers": [
+ "Prusa MK3.5 0.6 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Prusa/process/0.35mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.35mm Standard @MK3.5.json
index f7690532a8..5f4f75853d 100644
--- a/resources/profiles/Prusa/process/0.35mm Standard @MK3.5.json
+++ b/resources/profiles/Prusa/process/0.35mm Standard @MK3.5.json
@@ -33,4 +33,4 @@
"compatible_printers": [
"Prusa MK3.5 0.6 nozzle"
]
-}
\ No newline at end of file
+}
diff --git a/resources/profiles/Prusa/process/0.40mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.40mm High Flow @MK3.5.json
new file mode 100644
index 0000000000..2f7f204a59
--- /dev/null
+++ b/resources/profiles/Prusa/process/0.40mm High Flow @MK3.5.json
@@ -0,0 +1,47 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.40mm High Flow @MK3.5",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "process_highflow_MK3.5",
+ "line_width": "0.9",
+ "inner_wall_line_width": "0.9",
+ "outer_wall_line_width": "0.9",
+ "top_surface_line_width": "0.75",
+ "sparse_infill_line_width": "0.9",
+ "initial_layer_line_width": "1",
+ "internal_solid_infill_line_width": "0.9",
+ "support_line_width": "0.65",
+ "layer_height": "0.4",
+ "initial_layer_print_height": "0.3",
+ "wall_loops": "2",
+ "top_shell_thickness": "1.2",
+ "top_shell_layers": "4",
+ "bottom_shell_thickness": "0.8",
+ "bottom_shell_layers": "3",
+ "initial_layer_speed": "40",
+ "initial_layer_infill_speed": "55",
+ "outer_wall_speed": "90",
+ "inner_wall_speed": "100",
+ "bridge_speed": "22",
+ "support_speed": "90",
+ "small_perimeter_speed": "90",
+ "sparse_infill_speed": "105",
+ "internal_solid_infill_speed": "100",
+ "top_surface_speed": "75",
+ "gap_infill_speed": "65",
+ "travel_speed": "300",
+ "default_acceleration": "2000",
+ "initial_layer_acceleration": "500",
+ "top_surface_acceleration": "1500",
+ "travel_acceleration": "4000",
+ "sparse_infill_acceleration": "4000",
+ "internal_solid_infill_acceleration": "3000",
+ "inner_wall_acceleration": "3000",
+ "outer_wall_acceleration": "2500",
+ "bridge_acceleration": "1000",
+ "compatible_printers": [
+ "Prusa MK3.5 0.8 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Prusa/process/0.40mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.40mm Standard @MK3.5.json
index 3919357a9b..cbe605f5cd 100644
--- a/resources/profiles/Prusa/process/0.40mm Standard @MK3.5.json
+++ b/resources/profiles/Prusa/process/0.40mm Standard @MK3.5.json
@@ -21,6 +21,7 @@
"bottom_shell_thickness": "0.8",
"bottom_shell_layers": "3",
"initial_layer_speed": "30",
+ "initial_layer_infill_speed": "55",
"outer_wall_speed": "40",
"inner_wall_speed": "40",
"bridge_speed": "22",
diff --git a/resources/profiles/Prusa/process/process_detail_MK3.5.json b/resources/profiles/Prusa/process/process_detail_MK3.5.json
index 3e9e82439c..33a9267cdb 100644
--- a/resources/profiles/Prusa/process/process_detail_MK3.5.json
+++ b/resources/profiles/Prusa/process/process_detail_MK3.5.json
@@ -6,6 +6,7 @@
"inherits": "process_common_MK3.5",
"travel_speed": "300",
"initial_layer_speed": "20",
+ "initial_layer_infill_speed": "35",
"outer_wall_speed": "40",
"inner_wall_speed": "60",
"bridge_speed": "30",
diff --git a/resources/profiles/Prusa/process/process_highflow_MK3.5.json b/resources/profiles/Prusa/process/process_highflow_MK3.5.json
new file mode 100644
index 0000000000..31eb657703
--- /dev/null
+++ b/resources/profiles/Prusa/process/process_highflow_MK3.5.json
@@ -0,0 +1,24 @@
+{
+ "type": "process",
+ "name": "process_highflow_MK3.5",
+ "from": "system",
+ "instantiation": "false",
+ "inherits": "process_common_MK3.5",
+ "initial_layer_speed": "40",
+ "initial_layer_infill_speed": "100",
+ "outer_wall_speed": "200",
+ "inner_wall_speed": "250",
+ "small_perimeter_speed": "170",
+ "sparse_infill_speed": "250",
+ "internal_solid_infill_speed": "250",
+ "top_surface_speed": "100",
+ "gap_infill_speed": "120",
+ "default_acceleration": "4000",
+ "initial_layer_acceleration": "500",
+ "top_surface_acceleration": "2000",
+ "inner_wall_acceleration": "4000",
+ "outer_wall_acceleration": "4000",
+ "bridge_acceleration": "1500",
+ "internal_solid_infill_acceleration": "3000",
+ "overhang_1_4_speed": "60"
+}
\ No newline at end of file
diff --git a/resources/profiles/Prusa/process/process_speed_MK3.5.json b/resources/profiles/Prusa/process/process_speed_MK3.5.json
index bad53ee00a..46f8e50341 100644
--- a/resources/profiles/Prusa/process/process_speed_MK3.5.json
+++ b/resources/profiles/Prusa/process/process_speed_MK3.5.json
@@ -4,6 +4,7 @@
"from": "system",
"instantiation": "false",
"inherits": "process_common_MK3.5",
+ "initial_layer_infill_speed": "100",
"outer_wall_speed": "150",
"inner_wall_speed": "150",
"small_perimeter_speed": "150",
diff --git a/resources/profiles/Sovol.json b/resources/profiles/Sovol.json
index e0b4b3b3a3..fe2f3f5446 100644
--- a/resources/profiles/Sovol.json
+++ b/resources/profiles/Sovol.json
@@ -44,6 +44,10 @@
{
"name": "Sovol SV08",
"sub_path": "machine/Sovol SV08.json"
+ },
+ {
+ "name": "Sovol Zero",
+ "sub_path": "machine/Sovol Zero.json"
}
],
"process_list": [
@@ -158,7 +162,12 @@
{
"name": "0.20mm High-Speed @Sovol SV06",
"sub_path": "process/0.20mm High-Speed @Sovol SV06.json"
+ },
+ {
+ "name": "0.20mm Standard @Sovol Zero 0.4 nozzle",
+ "sub_path": "process/0.20mm Standard @Sovol Zero 0.4 nozzle.json"
}
+
],
"filament_list": [
{
@@ -216,6 +225,42 @@
{
"name": "Sovol SV08 TPU",
"sub_path": "filament/Sovol SV08 TPU.json"
+ },
+ {
+ "name": "Sovol Zero ABS",
+ "sub_path": "filament/Sovol Zero ABS.json"
+ },
+ {
+ "name": "Sovol Zero PC",
+ "sub_path": "filament/Sovol Zero PC.json"
+ },
+ {
+ "name": "Sovol Zero PETG",
+ "sub_path": "filament/Sovol Zero PETG.json"
+ },
+ {
+ "name": "Sovol Zero PETG HS Nozzle",
+ "sub_path": "filament/Sovol Zero PETG HS Nozzle.json"
+ },
+ {
+ "name": "Sovol Zero PLA Basic",
+ "sub_path": "filament/Sovol Zero PLA Basic.json"
+ },
+ {
+ "name": "Sovol Zero PLA Basic HS Nozzle",
+ "sub_path": "filament/Sovol Zero PLA Basic HS Nozzle.json"
+ },
+ {
+ "name": "Sovol Zero PLA Silk",
+ "sub_path": "filament/Sovol Zero PLA Silk.json"
+ },
+ {
+ "name": "Sovol Zero PLA Silk HS Nozzle",
+ "sub_path": "filament/Sovol Zero PLA Silk HS Nozzle.json"
+ },
+ {
+ "name": "Sovol Zero TPU",
+ "sub_path": "filament/Sovol Zero TPU.json"
}
],
"machine_list": [
@@ -290,6 +335,10 @@
{
"name": "Sovol SV08 0.8 nozzle",
"sub_path": "machine/Sovol SV08 0.8 nozzle.json"
+ },
+ {
+ "name": "Sovol Zero 0.4 nozzle",
+ "sub_path": "machine/Sovol Zero 0.4 nozzle.json"
}
]
-}
\ No newline at end of file
+}
diff --git a/resources/profiles/Sovol/Sovol Zero_cover.png b/resources/profiles/Sovol/Sovol Zero_cover.png
new file mode 100755
index 0000000000..dbffd91ed2
Binary files /dev/null and b/resources/profiles/Sovol/Sovol Zero_cover.png differ
diff --git a/resources/profiles/Sovol/filament/Sovol Zero ABS.json b/resources/profiles/Sovol/filament/Sovol Zero ABS.json
new file mode 100644
index 0000000000..8578e0009b
--- /dev/null
+++ b/resources/profiles/Sovol/filament/Sovol Zero ABS.json
@@ -0,0 +1,73 @@
+{
+ "type": "filament",
+ "filament_id": "GFL99",
+ "setting_id": "GFSA04",
+ "name": "Sovol Zero ABS",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "Generic ABS @System",
+ "filament_flow_ratio": ["0.98"],
+ "filament_max_volumetric_speed": ["21"],
+ "nozzle_temperature_initial_layer": [
+ "280"
+ ],
+ "nozzle_temperature": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "fan_max_speed": [
+ "30"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "full_fan_speed_layer": [
+ "3"
+ ],
+ "slow_down_layer_time": [
+ "5"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "overhang_fan_speed": [
+ "30"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "activate_air_filtration": [
+ "1"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "50"
+ ],
+ "additional_cooling_fan_speed":["0"],
+ "is_custom_defined": "0",
+ "compatible_printers": [
+ "Sovol Zero 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/Sovol/filament/Sovol Zero PC.json b/resources/profiles/Sovol/filament/Sovol Zero PC.json
new file mode 100644
index 0000000000..6c6eed3f2b
--- /dev/null
+++ b/resources/profiles/Sovol/filament/Sovol Zero PC.json
@@ -0,0 +1,64 @@
+{
+ "type": "filament",
+ "filament_id": "GFL99",
+ "setting_id": "GFSA04",
+ "name": "Sovol Zero PC",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "Generic PC @System",
+ "filament_flow_ratio": ["0.98"],
+ "filament_max_volumetric_speed": ["21"],
+ "compatible_printers": [
+ "Sovol Zero 0.4 nozzle"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "290"
+ ],
+ "nozzle_temperature": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "nozzle_temperature_range_high": [
+ "350"
+ ],
+ "hot_plate_temp" : [
+ "110"
+ ],
+ "hot_plate_temp_initial_layer" : [
+ "110"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "fan_max_speed": [
+ "20"
+ ],
+ "fan_cooling_layer_time": [
+ "40"
+ ],
+ "full_fan_speed_layer": [
+ "3"
+ ],
+ "slow_down_layer_time": [
+ "5"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "dont_slow_down_outer_wall": "0",
+ "overhang_fan_speed": [
+ "20"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "additional_cooling_fan_speed": "0",
+ "activate_air_filtration": "1",
+ "during_print_exhaust_fan_speed": "50",
+ "complete_print_exhaust_fan_speed": "50"
+}
diff --git a/resources/profiles/Sovol/filament/Sovol Zero PETG HS Nozzle.json b/resources/profiles/Sovol/filament/Sovol Zero PETG HS Nozzle.json
new file mode 100644
index 0000000000..0eb1800b20
--- /dev/null
+++ b/resources/profiles/Sovol/filament/Sovol Zero PETG HS Nozzle.json
@@ -0,0 +1,76 @@
+{
+ "type": "filament",
+ "filament_id": "GFL99",
+ "setting_id": "GFSA04",
+ "name": "Sovol Zero PETG HS Nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "Generic PETG @System",
+ "filament_flow_ratio": ["0.98"],
+ "enable_pressure_advance": "1",
+ "pressure_advance": "0.048",
+ "filament_max_volumetric_speed": [
+ "15"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "265"
+ ],
+ "nozzle_temperature": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "hot_plate_temp": [
+ "85"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "85"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "fan_max_speed": [
+ "40"
+ ],
+ "fan_cooling_layer_time": [
+ "50"
+ ],
+ "full_fan_speed_layer": [
+ "3"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "filament_retraction_length": [
+ "0.5"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "is_custom_defined": "0",
+ "activate_air_filtration": "1",
+ "during_print_exhaust_fan_speed": "50",
+ "complete_print_exhaust_fan_speed": "50",
+ "compatible_printers": [
+ "Sovol Zero 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/Sovol/filament/Sovol Zero PETG.json b/resources/profiles/Sovol/filament/Sovol Zero PETG.json
new file mode 100644
index 0000000000..3ff77ba7db
--- /dev/null
+++ b/resources/profiles/Sovol/filament/Sovol Zero PETG.json
@@ -0,0 +1,76 @@
+{
+ "type": "filament",
+ "filament_id": "GFL99",
+ "setting_id": "GFSA04",
+ "name": "Sovol Zero PETG",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "Generic PETG @System",
+ "filament_flow_ratio": ["1.0348"],
+ "enable_pressure_advance": "1",
+ "pressure_advance": "0.046",
+ "filament_max_volumetric_speed": [
+ "15"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "265"
+ ],
+ "nozzle_temperature": [
+ "245"
+ ],
+ "nozzle_temperature_range_low": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "hot_plate_temp": [
+ "85"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "85"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "fan_max_speed": [
+ "40"
+ ],
+ "fan_cooling_layer_time": [
+ "50"
+ ],
+ "full_fan_speed_layer": [
+ "3"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "filament_retraction_length": [
+ "0.5"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "is_custom_defined": "0",
+ "activate_air_filtration": "1",
+ "during_print_exhaust_fan_speed": "50",
+ "complete_print_exhaust_fan_speed": "50",
+ "compatible_printers": [
+ "Sovol Zero 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/Sovol/filament/Sovol Zero PLA Basic HS Nozzle.json b/resources/profiles/Sovol/filament/Sovol Zero PLA Basic HS Nozzle.json
new file mode 100644
index 0000000000..4d5b2815ab
--- /dev/null
+++ b/resources/profiles/Sovol/filament/Sovol Zero PLA Basic HS Nozzle.json
@@ -0,0 +1,66 @@
+{
+ "type": "filament",
+ "filament_id": "GFL99",
+ "setting_id": "GFSA04",
+ "name": "Sovol Zero PLA Basic HS Nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "Generic PLA @System",
+ "filament_flow_ratio": ["1.0348"],
+ "filament_max_volumetric_speed": ["21"],
+ "enable_pressure_advance": "1",
+ "pressure_advance": "0.03",
+ "compatible_printers": [
+ "Sovol Zero 0.4 nozzle"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "245"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "hot_plate_temp" : [
+ "65"
+ ],
+ "hot_plate_temp_initial_layer" : [
+ "65"
+ ],
+ "fan_min_speed": [
+ "70"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "full_fan_speed_layer": [
+ "3"
+ ],
+ "slow_down_layer_time": [
+ "5"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "dont_slow_down_outer_wall": "0",
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "additional_cooling_fan_speed": "75%",
+ "activate_air_filtration": "1",
+ "during_print_exhaust_fan_speed": "80%",
+ "complete_print_exhaust_fan_speed": "80%"
+}
diff --git a/resources/profiles/Sovol/filament/Sovol Zero PLA Basic.json b/resources/profiles/Sovol/filament/Sovol Zero PLA Basic.json
new file mode 100644
index 0000000000..7701516b7a
--- /dev/null
+++ b/resources/profiles/Sovol/filament/Sovol Zero PLA Basic.json
@@ -0,0 +1,66 @@
+{
+ "type": "filament",
+ "filament_id": "GFL99",
+ "setting_id": "GFSA04",
+ "name": "Sovol Zero PLA Basic",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "Generic PLA @System",
+ "filament_flow_ratio": ["0.98"],
+ "filament_max_volumetric_speed": ["21"],
+ "enable_pressure_advance": "1",
+ "pressure_advance": "0.032",
+ "compatible_printers": [
+ "Sovol Zero 0.4 nozzle"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature": [
+ "210"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "hot_plate_temp" : [
+ "65"
+ ],
+ "hot_plate_temp_initial_layer" : [
+ "65"
+ ],
+ "fan_min_speed": [
+ "70"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "full_fan_speed_layer": [
+ "3"
+ ],
+ "slow_down_layer_time": [
+ "5"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "dont_slow_down_outer_wall": "0",
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "additional_cooling_fan_speed": "75%",
+ "activate_air_filtration": "1",
+ "during_print_exhaust_fan_speed": "80%",
+ "complete_print_exhaust_fan_speed": "80%"
+}
diff --git a/resources/profiles/Sovol/filament/Sovol Zero PLA Silk HS Nozzle.json b/resources/profiles/Sovol/filament/Sovol Zero PLA Silk HS Nozzle.json
new file mode 100644
index 0000000000..2069c0d8f0
--- /dev/null
+++ b/resources/profiles/Sovol/filament/Sovol Zero PLA Silk HS Nozzle.json
@@ -0,0 +1,66 @@
+{
+ "type": "filament",
+ "filament_id": "GFL99",
+ "setting_id": "GFSA04",
+ "name": "Sovol Zero PLA Silk HS Nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "Generic PLA @System",
+ "filament_flow_ratio": ["0.98"],
+ "filament_max_volumetric_speed": ["15"],
+ "enable_pressure_advance": "1",
+ "pressure_advance": "0.027",
+ "compatible_printers": [
+ "Sovol Zero 0.4 nozzle"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "245"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "hot_plate_temp" : [
+ "65"
+ ],
+ "hot_plate_temp_initial_layer" : [
+ "65"
+ ],
+ "fan_min_speed": [
+ "70"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "full_fan_speed_layer": [
+ "3"
+ ],
+ "slow_down_layer_time": [
+ "5"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "dont_slow_down_outer_wall": "0",
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "additional_cooling_fan_speed": "75%",
+ "activate_air_filtration": "1",
+ "during_print_exhaust_fan_speed": "80%",
+ "complete_print_exhaust_fan_speed": "80%"
+}
diff --git a/resources/profiles/Sovol/filament/Sovol Zero PLA Silk.json b/resources/profiles/Sovol/filament/Sovol Zero PLA Silk.json
new file mode 100644
index 0000000000..26cc7116df
--- /dev/null
+++ b/resources/profiles/Sovol/filament/Sovol Zero PLA Silk.json
@@ -0,0 +1,66 @@
+{
+ "type": "filament",
+ "filament_id": "GFL99",
+ "setting_id": "GFSA04",
+ "name": "Sovol Zero PLA Silk",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "Generic PLA @System",
+ "filament_flow_ratio": ["0.98"],
+ "filament_max_volumetric_speed": ["15"],
+ "enable_pressure_advance": "1",
+ "pressure_advance": "0.029",
+ "compatible_printers": [
+ "Sovol Zero 0.4 nozzle"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "245"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "hot_plate_temp" : [
+ "65"
+ ],
+ "hot_plate_temp_initial_layer" : [
+ "65"
+ ],
+ "fan_min_speed": [
+ "70"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "full_fan_speed_layer": [
+ "3"
+ ],
+ "slow_down_layer_time": [
+ "7"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "dont_slow_down_outer_wall": "0",
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "additional_cooling_fan_speed": "75%",
+ "activate_air_filtration": "1",
+ "during_print_exhaust_fan_speed": "80%",
+ "complete_print_exhaust_fan_speed": "80%"
+}
diff --git a/resources/profiles/Sovol/filament/Sovol Zero TPU.json b/resources/profiles/Sovol/filament/Sovol Zero TPU.json
new file mode 100644
index 0000000000..fbc1f997d8
--- /dev/null
+++ b/resources/profiles/Sovol/filament/Sovol Zero TPU.json
@@ -0,0 +1,69 @@
+{
+ "type": "filament",
+ "filament_id": "GFL99",
+ "setting_id": "GFSA04",
+ "name": "Sovol Zero TPU",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "Generic TPU @System",
+ "filament_flow_ratio": ["0.98"],
+ "filament_max_volumetric_speed": [
+ "3.2"
+ ],
+ "nozzle_temperature": [
+ "235"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "hot_plate_temp" : [
+ "85"
+ ],
+ "hot_plate_temp_initial_layer" : [
+ "85"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "80"
+ ],
+ "fan_cooling_layer_time": [
+ "50"
+ ],
+ "full_fan_speed_layer": [
+ "3"
+ ],
+ "slow_down_layer_time": [
+ "5"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "is_custom_defined": "0",
+ "additional_cooling_fan_speed": "50",
+ "activate_air_filtration": "1",
+ "during_print_exhaust_fan_speed": "100",
+ "complete_print_exhaust_fan_speed": "50",
+ "compatible_printers": [
+ "Sovol Zero 0.4 nozzle"
+ ]
+}
diff --git a/resources/profiles/Sovol/machine/Sovol Zero 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol Zero 0.4 nozzle.json
new file mode 100644
index 0000000000..94004be836
--- /dev/null
+++ b/resources/profiles/Sovol/machine/Sovol Zero 0.4 nozzle.json
@@ -0,0 +1,112 @@
+{
+ "type": "machine",
+ "setting_id": "GM001",
+ "name": "Sovol Zero 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_machine_common",
+ "printer_model": "Sovol Zero",
+ "default_print_profile": "0.20mm Standard @Sovol Zero 0.4 nozzle",
+ "printer_variant": "0.4",
+ "nozzle_diameter": [
+ "0.4"
+ ],
+ "retract_before_wipe": [
+ "100%"
+ ],
+ "printable_area": [
+ "0x0",
+ "152.4x0",
+ "152.4x152.4",
+ "0x152.4"
+ ],
+ "printable_height": "152.4",
+ "gcode_flavor": "klipper",
+ "retraction_length": [
+ "0.8"
+ ],
+ "machine_max_speed_e": [
+ "50"
+ ],
+ "machine_max_speed_x": [
+ "1200"
+ ],
+ "machine_max_speed_y": [
+ "1200"
+ ],
+ "machine_max_speed_z": [
+ "30"
+ ],
+ "machine_max_acceleration_e": [
+ "20000"
+ ],
+ "machine_max_acceleration_extruding": [
+ "40000"
+ ],
+ "machine_max_acceleration_retracting": [
+ "20000"
+ ],
+ "machine_max_acceleration_travel": [
+ "40000"
+ ],
+ "machine_max_acceleration_x": [
+ "40000"
+ ],
+ "machine_max_acceleration_y": [
+ "40000"
+ ],
+ "machine_max_acceleration_z": [
+ "1000"
+ ],
+ "machine_max_jerk_e": [
+ "2.5"
+ ],
+ "machine_max_jerk_x": [
+ "5"
+ ],
+ "machine_max_jerk_y": [
+ "5"
+ ],
+ "machine_max_jerk_z": [
+ "0.5"
+ ],
+ "z_hop": [
+ "0.4"
+ ],
+ "retraction_speed": [
+ "40"
+ ],
+ "deretraction_speed": [
+ "40"
+ ],
+ "retraction_minimum_travel": [
+ "0"
+ ],
+ "retract_length_toolchange": [
+ "2"
+ ],
+ "wipe": [
+ "1"
+ ],
+ "wipe_distance": [
+ "2"
+ ],
+ "z_hop_types": [
+ "Auto Lift"
+ ],
+ "thumbnails": [
+ "300x300",
+ "32x32"
+ ],
+ "retract_lift_below": [
+ "150"
+ ],
+ "auxiliary_fan": "1",
+ "thumbnails_format": "PNG",
+ "before_layer_change_gcode": "TIMELAPSE_TAKE_FRAME\nG92 E0\nSET_PRINT_STATS_INFO CURRENT_LAYER=[layer_num]\n",
+ "machine_start_gcode": "M140 S[bed_temperature_initial_layer_single] ;set bed temp\nM190 S[bed_temperature_initial_layer_single] ;wait for bed temp\nG28\nSTART_PRINT\nG28\nG90\nG1 X0 Y0 F12000\nG1 Z0.300 F600\nM104 S[nozzle_temperature_initial_layer] ;set extruder temp\nM109 S[nozzle_temperature_initial_layer];wait for extruder temp\n{if first_layer_print_min[1] - 6 > print_bed_min[1]}\nG90\nM83\nG1 E-0.5 F600\nG1 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4} Y{first_layer_print_min[1] - 5} F12000\nG0 Z0.3 F600 ;Move to start position\nG1 E0.200 F600\n{if first_layer_print_max[0] - first_layer_print_min[0] > 50}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*1} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*2} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*3} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*4} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*5} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*6} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*7} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*8} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*9} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*10} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n{else}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 2} E{(first_layer_print_max[0] - first_layer_print_min[0]) / 2 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0])} E{(first_layer_print_max[0] - first_layer_print_min[0]) / 2 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n{endif}\nG1 E-0.300 F600\nG0 Z1 F600\nG1 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4} Y{first_layer_print_min[1] - 4} F12000\nG0 Z0.3 F600 ;Move to start position\nG1 E0.200 F600\n{if first_layer_print_max[0] - first_layer_print_min[0] > 50}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*1} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*2} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*3} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*4} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*5} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*6} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*7} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*8} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*9} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 4 + 5*10} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n{else}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0]) / 2} E{(first_layer_print_max[0] - first_layer_print_min[0]) / 2 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG0 X{first_layer_print_min[0] + (first_layer_print_max[0] - first_layer_print_min[0])} E{(first_layer_print_max[0] - first_layer_print_min[0]) / 2 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\n{endif}\nG1 E-0.300 F600\nG0 Z5 F600\nM400\n{else}\nG90\nM83\nG1 E-0.300 Z3 F600\nG1 X{print_bed_max[1] / 3} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 Z0.3 F600\nG1 E0.300 F600\nG1 X{print_bed_max[1] / 3 + 5*1} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*2} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*3} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*4} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*5} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*6} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*7} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*8} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*9} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*10} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3} Y1 F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*1} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*2} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*3} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*4} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*5} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*6} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*7} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*8} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 X{print_bed_max[1] / 3 + 5*9} E{5 * 0.2} F{outer_wall_volumetric_speed/(24/20) * 60}\nG1 X{print_bed_max[1] / 3 + 5*10} E{5 * 0.2} F{outer_wall_volumetric_speed/(0.3*0.5)/4 * 60}\nG1 E-0.300 Z3 F600\nM400\n{endif}\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count]\n\n",
+ "machine_end_gcode": "END_PRINT\n",
+ "default_filament_profile": [
+ "Sovol Zero PLA Basic"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Sovol/machine/Sovol Zero.json b/resources/profiles/Sovol/machine/Sovol Zero.json
new file mode 100644
index 0000000000..a12599db21
--- /dev/null
+++ b/resources/profiles/Sovol/machine/Sovol Zero.json
@@ -0,0 +1,12 @@
+{
+ "type": "machine_model",
+ "name": "Sovol Zero",
+ "model_id": "Sovol-Zero",
+ "nozzle_diameter": "0.4",
+ "machine_tech": "FFF",
+ "family": "Sovol",
+ "bed_model": "sovol_zero_buildplate_model.stl",
+ "bed_texture": "sovol_zero_buildplate_texture.png",
+ "hotend_model": "",
+ "default_materials": "Sovol Zero PLA Basic;Sovol Zero PLA Basic HS Nozzle;Sovol Zero PLA Silk;Sovol Zero PLA Silk HS Nozzle;Sovol Zero ABS;Sovol Zero PETG;Sovol Zero PETG HS Nozzle;Sovol Zero TPU;Sovol Zero PC"
+}
diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol Zero 0.4 nozzle.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol Zero 0.4 nozzle.json
new file mode 100644
index 0000000000..bd8c83ba43
--- /dev/null
+++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol Zero 0.4 nozzle.json
@@ -0,0 +1,142 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.20mm Standard @Sovol Zero 0.4 nozzle",
+ "from": "system",
+ "inherits": "fdm_process_common",
+ "instantiation": "true",
+ "adaptive_layer_height": "1",
+ "reduce_crossing_wall": "1",
+ "max_travel_detour_distance": "100%",
+ "layer_height": "0.20",
+ "bottom_surface_pattern": "monotonic",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bridge_flow": "1.2",
+ "internal_bridge_flow": "1.2",
+ "bridge_speed": "50",
+ "internal_bridge_speed" : "200",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "brim_object_gap": "0",
+ "compatible_printers_condition": "",
+ "print_sequence": "by layer",
+ "default_acceleration": "40000",
+ "outer_wall_acceleration": "10000",
+ "top_surface_acceleration": "5000",
+ "bridge_no_support": "0",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "enable_arc_fitting": "0",
+ "exclude_object": "1",
+ "outer_wall_line_width": "0.4",
+ "wall_infill_order": "inner wall/outer wall/infill",
+ "line_width": "0.4",
+ "infill_direction": "45",
+ "sparse_infill_density": "10%",
+ "sparse_infill_pattern": "grid",
+ "internal_solid_infill_acceleration": "50%",
+ "initial_layer_acceleration": "1000",
+ "initial_solid_infill_acceleration": "3000",
+ "travel_acceleration": "40000",
+ "inner_wall_acceleration": "12000",
+ "outer_wall_jerk": "5",
+ "inner_wall_jerk": "5",
+ "infill_jerk": "5",
+ "top_surface_jerk": "5",
+ "initial_layer_jerk": "5",
+ "travel_jerk": "5",
+ "initial_layer_line_width": "0.42",
+ "initial_layer_print_height": "0.25",
+ "infill_combination": "0",
+ "sparse_infill_line_width": "0.45",
+ "infill_wall_overlap": "15%",
+ "interface_shells": "0",
+ "ironing_flow": "15%",
+ "ironing_spacing": "0.25",
+ "ironing_speed": "15",
+ "ironing_type": "no ironing",
+ "reduce_infill_retraction": "1",
+ "filename_format": "{printer_model}_{input_filename_base}_{filament_type[0]}_{layer_height}_{print_time}.gcode",
+ "detect_overhang_wall": "1",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "20",
+ "inner_wall_line_width": "0.4",
+ "wall_loops": "2",
+ "print_settings_id": "",
+ "raft_layers": "0",
+ "seam_position": "aligned",
+ "skirt_distance": "0.8",
+ "skirt_height": "1",
+ "skirt_loops": "1",
+ "minimum_sparse_infill_area": "15",
+ "internal_solid_infill_line_width": "0.45",
+ "spiral_mode": "0",
+ "standby_temperature_delta": "-5",
+ "enable_support": "0",
+ "resolution": "0.012",
+ "support_type": "tree(auto)",
+ "support_style": "default",
+ "support_on_build_plate_only": "0",
+ "support_top_z_distance": "0.235",
+ "support_bottom_z_distance": "0.235",
+ "support_filament": "0",
+ "support_line_width": "0.45",
+ "support_interface_loop_pattern": "0",
+ "support_interface_filament": "0",
+ "support_interface_top_layers": "5",
+ "support_interface_bottom_layers": "-1",
+ "support_interface_spacing": "0.2",
+ "support_bottom_interface_spacing": "0.2",
+ "support_interface_speed": "100%",
+ "support_interface_pattern": "grid",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "3.5",
+ "support_speed": "100",
+ "support_threshold_angle": "20",
+ "support_object_xy_distance": "0.35",
+ "tree_support_branch_angle": "40",
+ "tree_support_wall_count": "0",
+ "detect_thin_wall": "1",
+ "top_surface_pattern": "monotonic",
+ "top_surface_line_width": "0.38",
+ "top_shell_layers": "4",
+ "top_shell_thickness": "1",
+ "initial_layer_speed": "55",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_travel_speed": "60%",
+ "outer_wall_speed": "350",
+ "inner_wall_speed": "400",
+ "small_perimeter_speed": "50%",
+ "internal_solid_infill_speed": "200",
+ "top_surface_speed": "200",
+ "gap_infill_speed": "200",
+ "sparse_infill_speed": "500",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "25%",
+ "travel_speed": "1000",
+ "enable_prime_tower": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "prime_tower_width": "60",
+ "xy_hole_compensation": "0",
+ "xy_contour_compensation": "0",
+ "bridge_acceleration": "50%",
+ "seam_gap": "10%",
+ "precise_outer_wall": "1",
+ "wall_generator": "classic",
+ "gcode_label_objects": "1",
+ "slow_down_layers": "3",
+ "top_solid_infill_flow_ratio": "0.9",
+ "only_one_wall_top": "1",
+ "wall_loop_direction": "clockwise",
+ "top_bottom_infill_wall_overlap": "25%",
+ "filter_out_gap_fill": "0",
+ "detect_narrow_internal_solid_infill": "1",
+ "thick_bridges": "1",
+ "bridge_angle": "0",
+ "compatible_printers": [
+ "Sovol Zero 0.4 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Sovol/sovol_zero_buildplate_model.stl b/resources/profiles/Sovol/sovol_zero_buildplate_model.stl
new file mode 100755
index 0000000000..33c03ed18a
Binary files /dev/null and b/resources/profiles/Sovol/sovol_zero_buildplate_model.stl differ
diff --git a/resources/profiles/Sovol/sovol_zero_buildplate_texture.png b/resources/profiles/Sovol/sovol_zero_buildplate_texture.png
new file mode 100755
index 0000000000..f4333808ed
Binary files /dev/null and b/resources/profiles/Sovol/sovol_zero_buildplate_texture.png differ
diff --git a/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT @0.4 nozzle.json b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT @0.4 nozzle.json
index 5ce57d965c..91b1a0e4d5 100644
--- a/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT @0.4 nozzle.json
+++ b/resources/profiles/Z-Bolt/filament/Z-Bolt ABS HT @0.4 nozzle.json
@@ -1,6 +1,7 @@
{
"type": "filament",
- "name": "Z-Bolt ABS HT@0.4 nozzle",
+ "name": "Z-Bolt ABS HT @0.4 nozzle",
+ "renamed_from": "Z-Bolt ABS HT@0.4 nozzle",
"inherits": "Z-Bolt ABS HT @base",
"from": "system",
"instantiation": "true",
diff --git a/resources/web/homepage/css/home.css b/resources/web/homepage/css/home.css
index ce70b28692..f85275d207 100644
--- a/resources/web/homepage/css/home.css
+++ b/resources/web/homepage/css/home.css
@@ -95,10 +95,11 @@ body
height:36px;
line-height: 36px;
display: flex;
- justify-content: center;
+ flex-direction: column; /*ORCA*/
+ align-items: center; /*Allow icon centered vertically*/
+ justify-content: center; /*and use login button in new line*/
user-select: none;
}
-
#LoginBtn
{
cursor:pointer;
@@ -138,7 +139,7 @@ body
#BBLIcon
{
- height:36px;
+ height:96px; /*ORCA use bigger icon to fit logo size*/
}
#Login2
diff --git a/resources/web/homepage/img/d.png b/resources/web/homepage/img/d.png
index bddeb8cc4d..0a51db57d3 100644
Binary files a/resources/web/homepage/img/d.png and b/resources/web/homepage/img/d.png differ
diff --git a/resources/web/homepage/img/i4.png b/resources/web/homepage/img/i4.png
index 8a376b4faf..83aa2592ac 100644
Binary files a/resources/web/homepage/img/i4.png and b/resources/web/homepage/img/i4.png differ
diff --git a/resources/web/homepage/img/i5.png b/resources/web/homepage/img/i5.png
index 1663e06a51..3bee33faaf 100644
Binary files a/resources/web/homepage/img/i5.png and b/resources/web/homepage/img/i5.png differ
diff --git a/resources/web/homepage/index.html b/resources/web/homepage/index.html
index f748e44a4f..72e65e4b6f 100644
--- a/resources/web/homepage/index.html
+++ b/resources/web/homepage/index.html
@@ -22,7 +22,7 @@