Merge branch 'main' into bugfox/bed-shape-orientation
|
@ -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)
|
||||
|
|
|
@ -4,6 +4,10 @@
|
|||
[](https://github.com/SoftFever/OrcaSlicer/actions/workflows/build_all.yml)
|
||||
<br>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:<br>
|
||||
<a href="https://discord.gg/P4VE9UY9gJ"><img src="https://img.shields.io/static/v1?message=Discord&logo=discord&label=&color=7289DA&logoColor=white&labelColor=&style=for-the-badge" height="35" alt="discord logo"/> </a>
|
||||
|
|
|
@ -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* ;)
|
||||
|
|
|
@ -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
|
||||
src/slic3r/GUI/Gizmos/GLGizmoBrimEars.cpp
|
||||
|
|
1
resources/images/param_filament_for_features.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><path d="M3.5,15.58c-.29.58-.64.92-1,.92-1.1,0-2-4.21-2-8S1.4.5,2.5.5c.37,0,.71.34,1,.92" style="fill:none; stroke:#949494; stroke-linecap:round; stroke-linejoin:round;"/><path d="M4.5,16.5c-1.1,0-2-4.21-2-8S3.4.5,4.5.5" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><ellipse cx="6.5" cy="8.5" rx="2" ry="8" style="fill:none; stroke:#949494; stroke-linecap:round; stroke-linejoin:round;"/><rect x="12" y="12" width="1" height="1" style="fill:#009688;"/><line x1="14.5" y1="4.5" x2="16.5" y2="4.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="14.5" y1="6.5" x2="16.5" y2="6.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="14.5" y1="8.5" x2="16.5" y2="8.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="14.5" y1="10.5" x2="16.5" y2="10.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="14.5" y1="12.5" x2="16.5" y2="12.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><path d="M9.5.5h6c.55,0,1,.45,1,1v1h-6" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><path d="M10.5,14.5h6v1c0,.55-.45,1-1,1h-6" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="12.5" y1="4.5" x2="10.5" y2="6.5" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><line x1="12.5" y1="8.5" x2="10.5" y2="10.5" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/></svg>
|
After Width: | Height: | Size: 1.7 KiB |
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><rect x=".5" y=".5" width="16" height="16" rx="1" ry="1" transform="translate(17 0) rotate(90)" style="fill:none; stroke:#949494; stroke-linecap:square; stroke-linejoin:round;"/><polyline points="10.5 2.5 6.5 5.5 2.5 2.5" style="fill:none; opacity:.55; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><polyline points="10.5 5.5 6.5 8.5 2.5 5.5" style="fill:none; opacity:.7; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><polyline points="10.5 8.5 6.5 11.5 2.5 8.5" style="fill:none; opacity:.85; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><polyline points="10.5 11.5 6.5 14.5 2.5 11.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="12.5" y1="2.5" x2="14.5" y2="2.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="12.5" y1="5.5" x2="14.5" y2="5.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="12.5" y1="8.5" x2="14.5" y2="8.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="12.5" y1="11.5" x2="14.5" y2="11.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
resources/images/param_ooze_prevention.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><line x1="6.5" y1="15.5" x2="10.5" y2="12.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="13.5" y1="13.5" x2="10.5" y2="12.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="10.5" y1="12.5" x2="14.5" y2="10.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="6.5" y1="12.5" x2="9.5" y2="6.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="8.5" y1="8.5" x2="12.5" y2="7.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="13.5" y1="4.5" x2="12.5" y2="7.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="9.5" y1="6.5" x2="8.5" y2="4.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="9.5" y1="5.5" x2="11.5" y2="2.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="9.5" y1=".5" x2="11.5" y2="2.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="13.5" y1="4.5" x2="16.5" y2=".5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="13.5" y1=".5" x2="15.5" y2="2.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="7.5" y1="2.5" x2="6.5" y2="4.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><line x1="11.5" y1="12.5" x2="10.5" y2="10.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/><rect x=".5" y=".5" width="6" height="16" rx="1" ry="1" style="fill:none; stroke:#949494; stroke-linecap:round; stroke-linejoin:round;"/><line x1="12.5" y1="7.5" x2="15.5" y2="6.5" style="fill:none; stroke:#009688; stroke-linecap:square; stroke-linejoin:round;"/></svg>
|
After Width: | Height: | Size: 2 KiB |
1
resources/images/param_profile_dependencies.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><path d="M15.75,1.25c-1-1-2.63-1-3.63,0l-2.72,2.72c-1,1-1,2.63,0,3.63,1,1,2.63,1,3.63,0l2.72-2.72c1-1,1-2.63,0-3.63Z" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><path d="M7.59,9.41c-1-1-2.63-1-3.63,0l-2.72,2.72c-1,1-1,2.63,0,3.63s2.63,1,3.63,0l2.72-2.72c1-1,1-2.63,0-3.63Z" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><line x1=".5" y1="2.5" x2="1.5" y2="2.5" style="fill:none; stroke:#949494; stroke-linecap:square; stroke-linejoin:round;"/><polygon points="8 3 4 3 4 2 9 2 8 3" style="fill:#949494;"/><rect x="1.5" y=".5" width="3" height="4" rx=".82" ry=".82" style="fill:none; stroke:#949494; stroke-linecap:square; stroke-linejoin:round;"/><polygon points="13 15 8 15 9 14 13 14 13 15" style="fill:#949494;"/><line x1="4.5" y1="12.5" x2="12.5" y2="4.5" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><line x1="15.5" y1="14.5" x2="16.5" y2="14.5" style="fill:none; stroke:#949494; stroke-linecap:square; stroke-linejoin:round;"/><rect x="12.5" y="12.5" width="3" height="4" rx=".82" ry=".82" style="fill:none; stroke:#949494; stroke-linecap:square; stroke-linejoin:round;"/></svg>
|
After Width: | Height: | Size: 1.3 KiB |
1
resources/images/param_toolchange_multi_extruder.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18"><path d="M7.5,4.5h3c.55,0,1,.45,1,1v5c0,.55-.45,1-1,1h-3" style="fill:none; stroke:#949494; stroke-linecap:round; stroke-linejoin:round;"/><circle cx="8.5" cy="8.5" r="1" style="fill:none; stroke:#949494; stroke-linecap:round; stroke-linejoin:round;"/><polyline points="7.5 11.5 8.5 12.5 8.5 12.5 9.5 11.5" style="fill:none; stroke:#949494; stroke-linecap:round; stroke-linejoin:round;"/><path d="M12.5,4.5h3c.55,0,1,.45,1,1v5c0,.55-.45,1-1,1h-3" style="fill:none; stroke:#949494; stroke-linecap:round; stroke-linejoin:round;"/><circle cx="13.5" cy="8.5" r="1" style="fill:none; stroke:#949494; stroke-linecap:round; stroke-linejoin:round;"/><polyline points="12.5 11.5 13.5 12.5 13.5 12.5 14.5 11.5" style="fill:none; stroke:#949494; stroke-linecap:round; stroke-linejoin:round;"/><rect x=".5" y="4.5" width="6" height="7" rx="1" ry="1" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><circle cx="3.5" cy="8.5" r="1" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><polyline points="2.5 11.5 3.5 12.5 3.5 12.5 4.5 11.5" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><line x1="11.5" y1="16.5" x2="13.5" y2="14.5" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><line x1="15.5" y1="16.5" x2="13.5" y2="14.5" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><path d="M15.5,16.5H4.5c-.55,0-1-.45-1-1v-1" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><line x1="5.5" y1=".5" x2="3.5" y2="2.5" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><line x1="1.5" y1=".5" x2="3.5" y2="2.5" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><path d="M1.5.5h11c.55,0,1,.45,1,1v1" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/></svg>
|
After Width: | Height: | Size: 2 KiB |
|
@ -1,48 +1 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 25.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 16 16" style="enable-background:new 0 0 16 16;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#6B6B6B;}
|
||||
.st1{fill:#009688;}
|
||||
</style>
|
||||
<path class="st0" d="M3.1,9C3.1,9,3,9,3,9C2.5,9,1.8,8.6,1.3,8C0.6,7,0.4,6,0.9,5.5l4.9-4c0,0,0,0,0,0l0,0C6,1.4,6.2,1.3,6.5,1.3
|
||||
C7,1.4,7.6,1.8,8.1,2.4c0.4,0.4,0.6,0.9,0.7,1.3c0.1,0.5,0,0.9-0.3,1.1c0,0,0,0,0,0l-4.9,4C3.5,9,3.3,9,3.1,9z M5.5,2.3L1.2,5.8
|
||||
C0.9,6.1,1,6.9,1.6,7.7c0.4,0.5,1,0.9,1.4,0.9c0.2,0,0.3,0,0.4-0.1L7.8,5C7.7,5,7.5,4.9,7.4,4.9C7,4.7,6.6,4.4,6.2,3.9
|
||||
C5.8,3.4,5.5,2.8,5.5,2.3z M6.1,1.8L6.1,1.8C6,1.9,5.9,2,5.9,2.1c0,0.4,0.2,1,0.6,1.6c0.3,0.4,0.7,0.7,1,0.8c0.3,0.1,0.6,0.1,0.7,0
|
||||
l0,0c0.2-0.1,0.2-0.4,0.1-0.7C8.4,3.4,8.1,3,7.8,2.6c-0.4-0.5-1-0.9-1.4-0.9C6.3,1.7,6.2,1.7,6.1,1.8L6.1,1.8z"/>
|
||||
<path class="st0" d="M11.5,6.6C11.5,6.6,11.5,6.6,11.5,6.6c-0.3,0.2-0.6,0.2-1,0.1C10,6.6,9.6,6.2,9.7,5.9L10.4,3c0,0,0,0,0,0l0,0
|
||||
c0-0.1,0.1-0.2,0.2-0.2c0.2-0.1,0.6-0.2,0.9-0.1C11.8,2.8,12,2.9,12.1,3c0.2,0.2,0.2,0.3,0.2,0.5c0,0,0,0,0,0l-0.7,2.9
|
||||
C11.6,6.5,11.6,6.5,11.5,6.6z M10.5,3.4L9.9,5.9c0,0.2,0.2,0.5,0.7,0.6c0.3,0.1,0.6,0.1,0.8,0c0.1,0,0.1-0.1,0.1-0.1l0.6-2.6
|
||||
c0,0-0.1,0-0.2,0.1c-0.2,0.1-0.5,0-0.7,0C10.9,3.7,10.6,3.6,10.5,3.4z M10.6,3.1L10.6,3.1c0,0.1,0,0.1,0,0.2
|
||||
c0.1,0.2,0.4,0.3,0.7,0.4c0.2,0.1,0.4,0.1,0.6,0c0.2,0,0.3-0.1,0.3-0.2l0,0c0-0.1,0-0.2-0.2-0.3c-0.1-0.1-0.3-0.2-0.6-0.3
|
||||
c-0.3-0.1-0.6-0.1-0.8,0C10.6,3,10.6,3,10.6,3.1L10.6,3.1z"/>
|
||||
<path class="st0" d="M3.5,10.5C3.5,10.5,3.5,10.5,3.5,10.5c0.1-0.3,0.4-0.5,0.8-0.6c0.5-0.2,1-0.1,1.1,0.2L6.3,13c0,0,0,0,0,0l0,0
|
||||
c0,0.1,0,0.2,0,0.3c-0.1,0.2-0.4,0.4-0.7,0.5C5.3,14,5,14,4.8,13.9c-0.2,0-0.4-0.1-0.4-0.3c0,0,0,0,0,0l-0.9-2.8
|
||||
C3.5,10.7,3.5,10.6,3.5,10.5z M6.1,12.8l-0.8-2.5c-0.1-0.2-0.4-0.3-0.9-0.1c-0.3,0.1-0.6,0.3-0.6,0.4c0,0.1,0,0.1,0,0.2l0.8,2.5
|
||||
c0,0,0.1-0.1,0.1-0.1c0.1-0.1,0.4-0.3,0.6-0.4C5.5,12.7,5.8,12.7,6.1,12.8z M6.2,13.1L6.2,13.1C6.1,13,6.1,13,6,13
|
||||
c-0.2-0.1-0.5-0.1-0.8,0C5,13,4.8,13.1,4.7,13.3c-0.1,0.1-0.2,0.2-0.1,0.3l0,0c0,0.1,0.1,0.2,0.3,0.2c0.2,0,0.4,0,0.6-0.1
|
||||
c0.3-0.1,0.6-0.3,0.6-0.4C6.2,13.2,6.2,13.1,6.2,13.1L6.2,13.1z"/>
|
||||
<path class="st1" d="M2.2,12.2C2.2,12.2,2.2,12.2,2.2,12.2c-0.1,0.1-0.3,0.1-0.5,0.1c-0.3-0.1-0.5-0.2-0.4-0.4l0.4-1.5c0,0,0,0,0,0
|
||||
l0,0c0-0.1,0-0.1,0.1-0.1c0.1-0.1,0.3-0.1,0.5,0c0.1,0,0.2,0.1,0.3,0.2c0.1,0.1,0.1,0.2,0.1,0.3c0,0,0,0,0,0l-0.4,1.5
|
||||
C2.3,12.1,2.3,12.2,2.2,12.2z M1.7,10.5l-0.3,1.3c0,0.1,0.1,0.2,0.4,0.3c0.2,0,0.3,0,0.4,0c0,0,0.1,0,0.1-0.1l0.3-1.3
|
||||
c0,0-0.1,0-0.1,0c-0.1,0-0.2,0-0.4,0C1.9,10.7,1.8,10.6,1.7,10.5z"/>
|
||||
<path class="st1" d="M14.9,6.4C14.9,6.5,14.9,6.5,14.9,6.4c0,0.2-0.1,0.3-0.2,0.5c-0.2,0.2-0.4,0.3-0.6,0.2l-1.1-1c0,0,0,0,0,0l0,0
|
||||
c0,0-0.1-0.1-0.1-0.2c0-0.1,0.1-0.3,0.2-0.4c0.1-0.1,0.2-0.2,0.3-0.2c0.1,0,0.2,0,0.3,0c0,0,0,0,0,0l1.1,1
|
||||
C14.9,6.4,14.9,6.4,14.9,6.4z M13.2,6.1l1,0.9c0.1,0.1,0.3,0,0.4-0.2c0.1-0.1,0.2-0.3,0.2-0.4c0,0,0-0.1,0-0.1l-1-0.9
|
||||
c0,0,0,0.1,0,0.1c0,0.1-0.1,0.2-0.2,0.3C13.4,6,13.3,6.1,13.2,6.1z"/>
|
||||
<path class="st1" d="M15.2,2.5C15.2,2.5,15.2,2.5,15.2,2.5c0,0.2-0.1,0.3-0.2,0.5c-0.2,0.2-0.4,0.3-0.6,0.2l-1.1-1c0,0,0,0,0,0l0,0
|
||||
c0,0-0.1-0.1-0.1-0.2c0-0.1,0.1-0.3,0.2-0.4c0.1-0.1,0.2-0.2,0.3-0.2c0.1,0,0.2,0,0.3,0c0,0,0,0,0,0l1.1,1
|
||||
C15.1,2.4,15.1,2.5,15.2,2.5z M13.4,2.2l1,0.9c0.1,0.1,0.3,0,0.4-0.2c0.1-0.1,0.2-0.3,0.2-0.4c0,0,0-0.1,0-0.1l-1-0.9
|
||||
c0,0,0,0.1,0,0.1c0,0.1-0.1,0.2-0.2,0.3C13.7,2.1,13.6,2.2,13.4,2.2z"/>
|
||||
<path class="st1" d="M2.9,2C2.9,2,2.9,2,2.9,2c0,0.2-0.1,0.3-0.2,0.5C2.5,2.7,2.2,2.7,2.1,2.6L1,1.6c0,0,0,0,0,0l0,0
|
||||
c0,0-0.1-0.1-0.1-0.2C0.9,1.3,1,1.1,1.1,1c0.1-0.1,0.2-0.2,0.3-0.2c0.1,0,0.2,0,0.3,0c0,0,0,0,0,0l1.1,1C2.8,1.9,2.9,1.9,2.9,2z
|
||||
M1.1,1.6l1,0.9c0.1,0.1,0.3,0,0.4-0.2C2.7,2.3,2.8,2.1,2.8,2c0,0,0-0.1,0-0.1L1.7,1c0,0,0,0.1,0,0.1c0,0.1-0.1,0.2-0.2,0.3
|
||||
C1.4,1.5,1.3,1.6,1.1,1.6z"/>
|
||||
<path class="st0" d="M6.6,9.9c0,0,0-0.1,0-0.1c0-0.5,0.3-1.2,0.8-1.8c0.8-0.9,1.8-1.2,2.3-0.7l4.6,4.3c0,0,0,0,0,0l0,0
|
||||
c0.2,0.1,0.2,0.4,0.3,0.6c0,0.5-0.3,1.2-0.8,1.8c-0.4,0.4-0.8,0.7-1.2,0.9c-0.5,0.2-0.9,0.1-1.1-0.1c0,0,0,0,0,0l-4.6-4.3
|
||||
C6.7,10.3,6.6,10.1,6.6,9.9z M13.6,11.4L9.4,7.6c-0.3-0.3-1.1,0-1.8,0.7C7.2,8.8,6.9,9.4,6.9,9.8c0,0.2,0.1,0.3,0.1,0.3l4.1,3.8
|
||||
c0-0.1,0-0.2,0.1-0.3c0.1-0.4,0.4-0.9,0.8-1.3C12.5,11.8,13.1,11.5,13.6,11.4z M14.1,11.9L14.1,11.9c-0.1-0.1-0.2-0.1-0.4-0.1
|
||||
c-0.4,0-1,0.3-1.4,0.8c-0.3,0.4-0.6,0.8-0.7,1.1c-0.1,0.3-0.1,0.6,0.1,0.7l0,0c0.1,0.1,0.4,0.1,0.7,0c0.4-0.1,0.7-0.4,1.1-0.8
|
||||
c0.5-0.5,0.7-1.1,0.7-1.5C14.2,12.1,14.2,11.9,14.1,11.9L14.1,11.9z"/>
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path d="M13.31,8.16c.83.83,1.44,2.07,1.05,2.46s-1.63-.22-2.46-1.05-1.44-2.07-1.05-2.46,1.63.22,2.46,1.05Z" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><path d="M10.91,7.05l-4.3,4.3c-.39.39.22,1.63,1.05,2.46s2.07,1.44,2.46,1.05l.03.03,4.27-4.33" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><path d="M1.66,1.55c.75-.75,1.86-1.29,2.21-.94s-.19,1.46-.94,2.21-1.86,1.29-2.21.94.19-1.46.94-2.21Z" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><path d="M.67,3.7l3.86,3.86c.35.35,1.46-.19,2.21-.94s1.29-1.86.94-2.21l.03-.03L3.81.56" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><line x1="8.5" y1=".5" x2="9.5" y2="1.5" style="fill:none; stroke:#949494; stroke-linecap:round; stroke-linejoin:round;"/><line x1="10.5" y1="4.5" x2="11.5" y2="3.5" style="fill:none; stroke:#949494; stroke-linecap:round; stroke-linejoin:round;"/><line x1="13.5" y1="1.5" x2="14.5" y2="2.5" style="fill:none; stroke:#949494; stroke-linecap:round; stroke-linejoin:round;"/><line x1="1.5" y1="8.5" x2=".5" y2="9.5" style="fill:none; stroke:#949494; stroke-linecap:round; stroke-linejoin:round;"/><line x1="3.5" y1="10.5" x2="4.5" y2="11.5" style="fill:none; stroke:#949494; stroke-linecap:round; stroke-linejoin:round;"/><line x1="4.5" y1="14.5" x2="5.5" y2="14.5" style="fill:none; stroke:#949494; stroke-linecap:round; stroke-linejoin:round;"/><line x1=".5" y1="13.5" x2="1.5" y2="14.5" style="fill:none; stroke:#949494; stroke-linecap:round; stroke-linejoin:round;"/><line x1="14.5" y1="4.5" x2="14.5" y2="5.5" style="fill:none; stroke:#949494; stroke-linecap:round; stroke-linejoin:round;"/><circle cx="1.5" cy="11.5" r=".5" style="fill:#949494;"/><circle cx=".5" cy="6.5" r=".5" style="fill:#949494;"/><circle cx="11.5" cy=".5" r=".5" style="fill:#949494;"/><circle cx="14.5" cy="14.5" r=".5" style="fill:#949494;"/></svg>
|
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 2 KiB |
|
@ -1,74 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="43"
|
||||
height="43"
|
||||
viewBox="0 0 43 43"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
sodipodi:docname="plate_move_front.svg"
|
||||
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="namedview2"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:cx="25.168582"
|
||||
inkscape:cy="21.588854"
|
||||
inkscape:window-width="1610"
|
||||
inkscape:window-height="1237"
|
||||
inkscape:window-x="33"
|
||||
inkscape:window-y="721"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2" />
|
||||
<rect
|
||||
x="1.5"
|
||||
y="1.5"
|
||||
width="40"
|
||||
height="40"
|
||||
rx="3.5"
|
||||
style="fill:#e9e9e9;fill-opacity:1"
|
||||
id="rect1" />
|
||||
<path
|
||||
d="M38,2a3,3,0,0,1,3,3V38a3,3,0,0,1-3,3H5a3,3,0,0,1-3-3V5A3,3,0,0,1,5,2H38m0-1H5A4,4,0,0,0,1,5V38a4,4,0,0,0,4,4H38a4,4,0,0,0,4-4V5a4,4,0,0,0-4-4Z"
|
||||
style="fill:#545454"
|
||||
id="path1" />
|
||||
<line
|
||||
x1="33.471352"
|
||||
y1="6.9334393"
|
||||
x2="9.9450846"
|
||||
y2="6.9334393"
|
||||
style="fill:none;stroke:#545454;stroke-width:0.850459;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="line1" />
|
||||
<line
|
||||
x1="32.300442"
|
||||
y1="18.26045"
|
||||
x2="21.987902"
|
||||
y2="8.080493"
|
||||
style="fill:none;stroke:#545454;stroke-width:0.714338;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="line1-1" />
|
||||
<line
|
||||
x1="11.504755"
|
||||
y1="18.329735"
|
||||
x2="21.855713"
|
||||
y2="8.0229683"
|
||||
style="fill:none;stroke:#545454;stroke-width:0.720111;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="line1-1-1" />
|
||||
<line
|
||||
x1="21.938486"
|
||||
y1="36.433311"
|
||||
x2="21.938484"
|
||||
y2="8.6247864"
|
||||
style="fill:none;stroke:#545454;stroke-width:0.623622;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="line1-1-1-2" />
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="43" height="43" viewBox="0 0 43 43"><rect x="1.5" y="1.5" width="40" height="40" rx="3.5" ry="3.5" style="fill:#e9e9e9;"/><path d="M38,2c1.65,0,3,1.35,3,3v33c0,1.65-1.35,3-3,3H5c-1.65,0-3-1.35-3-3V5c0-1.65,1.35-3,3-3h33M38,1H5C2.79,1,1,2.79,1,5v33c0,2.21,1.79,4,4,4h33c2.21,0,4-1.79,4-4V5c0-2.21-1.79-4-4-4h0Z" style="fill:#545454;"/><line x1="10.5" y1="6.5" x2="32.5" y2="6.5" style="fill:none; stroke:#545454; stroke-linecap:square; stroke-linejoin:round;"/><polyline points="10.52 19.47 21.53 8.5 32.49 19.51" style="fill:none; stroke:#545454; stroke-linecap:round; stroke-linejoin:round;"/><line x1="21.5" y1="8.5" x2="21.5" y2="36.5" style="fill:none; stroke:#545454; stroke-linecap:round; stroke-linejoin:round;"/></svg>
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 818 B |
|
@ -1,74 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="43"
|
||||
height="43"
|
||||
viewBox="0 0 43 43"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
sodipodi:docname="plate_close_dark.svg"
|
||||
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="namedview2"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="27.27907"
|
||||
inkscape:cx="21.5"
|
||||
inkscape:cy="21.5"
|
||||
inkscape:window-width="2560"
|
||||
inkscape:window-height="1369"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="658"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<rect
|
||||
x="1.5"
|
||||
y="1.5"
|
||||
width="40"
|
||||
height="40"
|
||||
rx="3.5"
|
||||
style="fill:#54545a"
|
||||
id="rect1" />
|
||||
<path
|
||||
d="M38,2a3,3,0,0,1,3,3V38a3,3,0,0,1-3,3H5a3,3,0,0,1-3-3V5A3,3,0,0,1,5,2H38m0-1H5A4,4,0,0,0,1,5V38a4,4,0,0,0,4,4H38a4,4,0,0,0,4-4V5a4,4,0,0,0-4-4Z"
|
||||
style="fill:#b3b3b3"
|
||||
id="path1" />
|
||||
<line
|
||||
x1="9.7239828"
|
||||
y1="6.5068207"
|
||||
x2="34.155807"
|
||||
y2="6.5068207"
|
||||
style="fill:none;stroke:#c4c4c4;stroke-width:0.866675;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="line1" />
|
||||
<line
|
||||
x1="22.228071"
|
||||
y1="7.6491632"
|
||||
x2="22.228073"
|
||||
y2="31.964647"
|
||||
style="fill:none;stroke:#c4c4c4;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="line1-2" />
|
||||
<line
|
||||
x1="22.195042"
|
||||
y1="7.4747553"
|
||||
x2="10.588115"
|
||||
y2="19.081686"
|
||||
style="fill:none;stroke:#c4c4c4;stroke-width:0.675072;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="line1-2-2" />
|
||||
<line
|
||||
x1="33.868591"
|
||||
y1="19.080866"
|
||||
x2="22.261658"
|
||||
y2="7.4739408"
|
||||
style="fill:none;stroke:#c4c4c4;stroke-width:0.675072;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="line1-2-2-7" />
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="43" height="43" viewBox="0 0 43 43"><rect x="1.5" y="1.5" width="40" height="40" rx="3.5" ry="3.5" style="fill:#54545a;"/><path d="M38,2c1.65,0,3,1.35,3,3v33c0,1.65-1.35,3-3,3H5c-1.65,0-3-1.35-3-3V5c0-1.65,1.35-3,3-3h33M38,1H5C2.79,1,1,2.79,1,5v33c0,2.21,1.79,4,4,4h33c2.21,0,4-1.79,4-4V5c0-2.21-1.79-4-4-4h0Z" style="fill:#b3b3b3;"/><line x1="10.5" y1="6.5" x2="32.5" y2="6.5" style="fill:none; stroke:#545454; stroke-linecap:square; stroke-linejoin:round;"/><polyline points="10.52 19.47 21.53 8.5 32.49 19.51" style="fill:none; stroke:#545454; stroke-linecap:round; stroke-linejoin:round;"/><line x1="21.5" y1="8.5" x2="21.5" y2="36.5" style="fill:none; stroke:#545454; stroke-linecap:round; stroke-linejoin:round;"/><line x1="10.5" y1="6.5" x2="32.5" y2="6.5" style="fill:none; stroke:#c4c4c4; stroke-linecap:square; stroke-linejoin:round;"/><polyline points="10.52 19.47 21.53 8.5 32.49 19.51" style="fill:none; stroke:#c4c4c4; stroke-linecap:square; stroke-linejoin:round;"/><line x1="21.5" y1="8.5" x2="21.5" y2="36.5" style="fill:none; stroke:#c4c4c4; stroke-linecap:square; stroke-linejoin:round;"/></svg>
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 1.2 KiB |
|
@ -1,74 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="43"
|
||||
height="43"
|
||||
viewBox="0 0 43 43"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
sodipodi:docname="plate_close.svg"
|
||||
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="namedview2"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="22.627417"
|
||||
inkscape:cx="25.168582"
|
||||
inkscape:cy="21.588854"
|
||||
inkscape:window-width="1610"
|
||||
inkscape:window-height="1237"
|
||||
inkscape:window-x="1460"
|
||||
inkscape:window-y="754"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2" />
|
||||
<rect
|
||||
x="1.5"
|
||||
y="1.5"
|
||||
width="40"
|
||||
height="40"
|
||||
rx="3.5"
|
||||
style="fill:#e9e9e9;fill-opacity:1"
|
||||
id="rect1" />
|
||||
<path
|
||||
d="M38,2a3,3,0,0,1,3,3V38a3,3,0,0,1-3,3H5a3,3,0,0,1-3-3V5A3,3,0,0,1,5,2H38m0-1H5A4,4,0,0,0,1,5V38a4,4,0,0,0,4,4H38a4,4,0,0,0,4-4V5a4,4,0,0,0-4-4Z"
|
||||
style="fill:#009688"
|
||||
id="path1" />
|
||||
<line
|
||||
x1="33.471352"
|
||||
y1="6.9334393"
|
||||
x2="9.9450846"
|
||||
y2="6.9334393"
|
||||
style="fill:none;stroke:#009688;stroke-width:0.850459;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="line1" />
|
||||
<line
|
||||
x1="32.300442"
|
||||
y1="18.26045"
|
||||
x2="21.987902"
|
||||
y2="8.080493"
|
||||
style="fill:none;stroke:#009688;stroke-width:0.714338;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="line1-1" />
|
||||
<line
|
||||
x1="11.504755"
|
||||
y1="18.329735"
|
||||
x2="21.855713"
|
||||
y2="8.0229683"
|
||||
style="fill:none;stroke:#009688;stroke-width:0.720111;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="line1-1-1" />
|
||||
<line
|
||||
x1="21.938486"
|
||||
y1="36.433311"
|
||||
x2="21.938484"
|
||||
y2="8.6247864"
|
||||
style="fill:none;stroke:#009688;stroke-width:0.623622;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="line1-1-1-2" />
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="43" height="43" viewBox="0 0 43 43"><rect x="1.5" y="1.5" width="40" height="40" rx="3.5" ry="3.5" style="fill:#e9e9e9;"/><path d="M38,2c1.65,0,3,1.35,3,3v33c0,1.65-1.35,3-3,3H5c-1.65,0-3-1.35-3-3V5c0-1.65,1.35-3,3-3h33M38,1H5C2.79,1,1,2.79,1,5v33c0,2.21,1.79,4,4,4h33c2.21,0,4-1.79,4-4V5c0-2.21-1.79-4-4-4h0Z" style="fill:#009688;"/><line x1="10.5" y1="6.5" x2="32.5" y2="6.5" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><polyline points="10.52 19.47 21.53 8.5 32.49 19.51" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><line x1="21.5" y1="8.5" x2="21.5" y2="36.5" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/></svg>
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 817 B |
|
@ -1,74 +1 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="43"
|
||||
height="43"
|
||||
viewBox="0 0 43 43"
|
||||
version="1.1"
|
||||
id="svg2"
|
||||
sodipodi:docname="plate_move_front_hover_dark.svg"
|
||||
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="namedview2"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
inkscape:zoom="19.289215"
|
||||
inkscape:cx="20.555528"
|
||||
inkscape:cy="24.85845"
|
||||
inkscape:window-width="1350"
|
||||
inkscape:window-height="1237"
|
||||
inkscape:window-x="36"
|
||||
inkscape:window-y="759"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2" />
|
||||
<rect
|
||||
x="1.5"
|
||||
y="1.5"
|
||||
width="40"
|
||||
height="40"
|
||||
rx="3.5"
|
||||
style="fill:#54545a"
|
||||
id="rect1" />
|
||||
<path
|
||||
d="M38,2a3,3,0,0,1,3,3V38a3,3,0,0,1-3,3H5a3,3,0,0,1-3-3V5A3,3,0,0,1,5,2H38m0-1H5A4,4,0,0,0,1,5V38a4,4,0,0,0,4,4H38a4,4,0,0,0,4-4V5a4,4,0,0,0-4-4Z"
|
||||
style="fill:#009688"
|
||||
id="path1" />
|
||||
<line
|
||||
x1="9.7239828"
|
||||
y1="6.5068207"
|
||||
x2="34.155807"
|
||||
y2="6.5068207"
|
||||
style="fill:none;stroke:#009688;stroke-width:0.866675;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="line1" />
|
||||
<line
|
||||
x1="22.228071"
|
||||
y1="7.6491632"
|
||||
x2="22.228073"
|
||||
y2="31.964647"
|
||||
style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="line1-2" />
|
||||
<line
|
||||
x1="22.195042"
|
||||
y1="7.4747553"
|
||||
x2="10.588115"
|
||||
y2="19.081686"
|
||||
style="fill:none;stroke:#009688;stroke-width:0.675072;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="line1-2-2" />
|
||||
<line
|
||||
x1="33.868591"
|
||||
y1="19.080866"
|
||||
x2="22.261658"
|
||||
y2="7.4739408"
|
||||
style="fill:none;stroke:#009688;stroke-width:0.675072;stroke-linecap:round;stroke-linejoin:round"
|
||||
id="line1-2-2-7" />
|
||||
</svg>
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="43" height="43" viewBox="0 0 43 43"><rect x="1.5" y="1.5" width="40" height="40" rx="3.5" ry="3.5" style="fill:#54545a;"/><path d="M38,2c1.65,0,3,1.35,3,3v33c0,1.65-1.35,3-3,3H5c-1.65,0-3-1.35-3-3V5c0-1.65,1.35-3,3-3h33M38,1H5C2.79,1,1,2.79,1,5v33c0,2.21,1.79,4,4,4h33c2.21,0,4-1.79,4-4V5c0-2.21-1.79-4-4-4h0Z" style="fill:#009688;"/><line x1="10.5" y1="6.5" x2="32.5" y2="6.5" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><polyline points="10.52 19.47 21.53 8.5 32.49 19.51" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/><line x1="21.5" y1="8.5" x2="21.5" y2="36.5" style="fill:none; stroke:#009688; stroke-linecap:round; stroke-linejoin:round;"/></svg>
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 817 B |
|
@ -1 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><g style="opacity:1"><path d="M6.5,2A4.505,4.505,0,0,0,2,6.5a.5.5,0,0,0,1,0A3.5,3.5,0,0,1,6.5,3a.5.5,0,0,0,0-1Z" style="fill:#949494;opacity:1"/><path d="M14.854,14.146l-3.423-3.422a6.518,6.518,0,1,0-.707.707l3.422,3.423a.5.5,0,0,0,.708-.708ZM1,6.5A5.5,5.5,0,1,1,6.5,12,5.507,5.507,0,0,1,1,6.5Z" style="fill:#949494;opacity:1"/></g></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><line x1="14.453" y1="14.516" x2="10.756" y2="10.76" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.2000000476837158px"/><path d="M6.5,1.2A5.3,5.3,0,1,1,1.2,6.5,5.307,5.307,0,0,1,6.5,1.2M6.5,0A6.5,6.5,0,1,0,13,6.5,6.5,6.5,0,0,0,6.5,0Z" style="fill:#949494"/><path d="M2.5,6.5a4,4,0,0,1,4-4" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round;stroke-width:1.2000000476837158px"/></svg>
|
Before Width: | Height: | Size: 421 B After Width: | Height: | Size: 534 B |
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
284
resources/profiles/CoLiDo.json
Normal file
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
BIN
resources/profiles/CoLiDo/CoLiDo 160 V2_cover.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
resources/profiles/CoLiDo/CoLiDo DIY 4.0 V2_cover.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
resources/profiles/CoLiDo/CoLiDo DIY 4.0_cover.png
Normal file
After Width: | Height: | Size: 24 KiB |
BIN
resources/profiles/CoLiDo/CoLiDo SR1_cover.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
resources/profiles/CoLiDo/CoLiDo X16_cover.png
Normal file
After Width: | Height: | Size: 19 KiB |
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
82
resources/profiles/CoLiDo/filament/fdm_filament_abs.json
Normal file
|
@ -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"
|
||||
]
|
||||
}
|
147
resources/profiles/CoLiDo/filament/fdm_filament_common.json
Normal file
|
@ -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"
|
||||
]
|
||||
}
|
64
resources/profiles/CoLiDo/filament/fdm_filament_pet.json
Normal file
|
@ -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}"
|
||||
]
|
||||
}
|
244
resources/profiles/CoLiDo/filament/fdm_filament_pla.json
Normal file
|
@ -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"
|
||||
]
|
||||
}
|
79
resources/profiles/CoLiDo/filament/fdm_filament_tpu.json
Normal file
|
@ -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}"
|
||||
]
|
||||
}
|
223
resources/profiles/CoLiDo/machine/CoLiDo 160 V2 0.4 nozzle.json
Normal file
|
@ -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"
|
||||
}
|
12
resources/profiles/CoLiDo/machine/CoLiDo 160 V2.json
Normal file
|
@ -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"
|
||||
}
|
234
resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 0.4 nozzle.json
Normal file
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
}
|
12
resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2.json
Normal file
|
@ -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"
|
||||
}
|
12
resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0.json
Normal file
|
@ -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"
|
||||
}
|
38
resources/profiles/CoLiDo/machine/CoLiDo SR1 0.4 nozzle.json
Normal file
|
@ -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"
|
||||
]
|
||||
}
|
12
resources/profiles/CoLiDo/machine/CoLiDo SR1.json
Normal file
|
@ -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"
|
||||
}
|
223
resources/profiles/CoLiDo/machine/CoLiDo X16 0.4 nozzle.json
Normal file
|
@ -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"
|
||||
}
|
12
resources/profiles/CoLiDo/machine/CoLiDo X16.json
Normal file
|
@ -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"
|
||||
}
|
60
resources/profiles/CoLiDo/machine/fdm_klipper_common.json
Normal file
|
@ -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"
|
||||
}
|
119
resources/profiles/CoLiDo/machine/fdm_machine_common.json
Normal file
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
]
|
||||
}
|
|
@ -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": []
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
|
@ -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"
|
||||
}
|
75
resources/profiles/CoLiDo/process/fdm_process_common.json
Normal file
|
@ -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"
|
||||
}
|
|
@ -1 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="180.622mm" height="180.622mm" viewBox="0 0 511.999 511.999"><rect width="512" height="512" style="fill:none"/><rect x="350.289" y="441.257" width="52.463" height="52.463" rx="6.278" style="fill:#e9e9e9"/><path d="M361.634,482.534a16.145,16.145,0,0,0,11.38,4.746A16.349,16.349,0,0,0,384.6,459.44Z" style="fill:#292826"/><path d="M384.6,459.44l-22.967,23.094.05.048a180.781,180.781,0,0,0,26.622-17.326,16.335,16.335,0,0,0-3.7-5.816" style="fill:#009789"/><path d="M380.111,447.7a16.349,16.349,0,0,0-11.52,27.841l22.967-23.094a16.142,16.142,0,0,0-11.447-4.747" style="fill:#292826"/><path d="M380.111,447.7a16.1,16.1,0,0,0-8.477,2.4,18.633,18.633,0,0,0-4.844-.611,18.937,18.937,0,0,0-7.769,1.741.519.519,0,0,0,.106.977,11.075,11.075,0,0,1,6.614,4.211,16.446,16.446,0,0,0-1.181,12.332,16.293,16.293,0,0,1,1.639-2.858c1.491-2.05,3.068-3.116,5.4-4.692,1.716-1.161,4.1-2.523,10.951-5.338a23.354,23.354,0,0,0,5.017-2.313c1.145-.681,2.017-1.324,2.293-2.329.019-.071.037-.141.053-.21a16.111,16.111,0,0,0-9.8-3.309" style="fill:#262523"/><path d="M382.824,453.185c.6,1.053-.6,2.865-2.663,4.047s-4.225,1.286-4.821.232.6-2.865,2.663-4.047,4.225-1.286,4.821-.232" style="fill:#fff"/><path d="M443.7,472.8a1.209,1.209,0,0,0-1.207,1.207v12.064a1.207,1.207,0,0,0,2.413,0V474.01a1.207,1.207,0,0,0-1.2-1.21Z" style="fill:#e9e9e9"/><path d="M475.35,472.8h-2.883a7.239,7.239,0,0,0,0,14.477h2.883a1.207,1.207,0,0,0,0-2.413h-2.883a4.826,4.826,0,0,1-.139-9.651c.046,0,.093,0,.139,0h2.883a1.207,1.207,0,0,0,0-2.413Z" style="fill:#e9e9e9"/><path d="M475.35,478.835h-3.507a1.207,1.207,0,0,0-.07,2.413c.024,0,.047,0,.07,0h3.507a1.207,1.207,0,0,0,0-2.413Z" style="fill:#e9e9e9"/><path d="M419.593,487.28h-5.844a1.2,1.2,0,0,1,0-2.4h5.844a1.82,1.82,0,0,0,0-3.64h-2.824a4.219,4.219,0,0,1-.014-8.438h4.791a1.2,1.2,0,0,1,0,2.4h-4.777a1.82,1.82,0,0,0,0,3.64h2.824a4.219,4.219,0,0,1,0,8.438Z" style="fill:#e9e9e9"/><path d="M459.072,484.07a4.826,4.826,0,1,1,0-8.06,1.209,1.209,0,0,0,1.526-.144h0a1.2,1.2,0,0,0,.015-1.7,1.243,1.243,0,0,0-.176-.148,7.238,7.238,0,1,0-.046,12.072,1.215,1.215,0,0,0,.208-1.875h0A1.206,1.206,0,0,0,459.072,484.07Z" style="fill:#e9e9e9"/><path d="M437.006,484.867h-3.487a3.019,3.019,0,0,1-3.016-3.016v-7.842a1.207,1.207,0,0,0-2.413,0v7.842a5.435,5.435,0,0,0,5.429,5.429h3.487a1.207,1.207,0,0,0,0-2.413Z" style="fill:#e9e9e9"/><path d="M489.278,475.216h-1.207A4.829,4.829,0,0,0,483.248,480v6.074a1.207,1.207,0,0,1-2.413,0V480a7.246,7.246,0,0,1,7.236-7.2h1.207a1.207,1.207,0,0,1,0,2.413Z" style="fill:#e9e9e9"/><path d="M422.248,450.681a6.713,6.713,0,1,1-6.713,6.713,6.713,6.713,0,0,1,6.713-6.713m0-2.985a9.7,9.7,0,1,0,9.7,9.7,9.7,9.7,0,0,0-9.7-9.7Z" style="fill:#009789"/><path d="M488.992,447.7a1.492,1.492,0,0,0-1.493,1.491h0v1.217a9.7,9.7,0,1,0,0,13.977V465.6a1.493,1.493,0,0,0,2.985,0V449.188A1.492,1.492,0,0,0,488.992,447.7Zm-8.206,16.411A6.713,6.713,0,1,1,487.5,457.4a6.714,6.714,0,0,1-6.713,6.713Z" style="fill:#009789"/><path d="M447.412,447.7H445.92a9.7,9.7,0,0,0-9.7,9.7h0v8.2a1.493,1.493,0,0,0,2.985,0v-8.2a6.72,6.72,0,0,1,6.713-6.713h1.492a1.493,1.493,0,0,0,.078-2.985h-.078Z" style="fill:#009789"/><path d="M465.293,462.929a6.713,6.713,0,1,1-.022-11.086,1.512,1.512,0,0,0,1.931-.153h0a1.5,1.5,0,0,0-.008-2.121,1.462,1.462,0,0,0-.229-.187,9.7,9.7,0,1,0,.019,16.01,1.5,1.5,0,0,0,.4-2.084,1.544,1.544,0,0,0-.179-.216h0A1.493,1.493,0,0,0,465.293,462.929Z" style="fill:#009789"/><path d="M511.153,502.649a8.5,8.5,0,0,1-8.5,8.5H492.582V512H512V492.582h-.847Z" style="fill:#009789"/><path d="M9.351,511.153a8.5,8.5,0,0,1-8.5-8.5V492.582H0V512H19.418v-.847Z" style="fill:#009789"/><path d="M.847,9.351a8.5,8.5,0,0,1,8.5-8.5H19.418V0H0V19.418H.847Z" style="fill:#009789"/><path d="M502.649.847a8.5,8.5,0,0,1,8.5,8.5V19.418H512V0H492.582V.847Z" style="fill:#009789"/></svg>
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="180.62mm" height="180.62mm" viewBox="0 0 512 512"><rect x="0" y="0" width="512" height="512" style="fill:none;"/><rect x="185.9" y="441.26" width="52.46" height="52.46" rx="6.28" ry="6.28" style="fill:#e9e9e9;"/><path d="M197.25,482.53c3.02,3.03,7.11,4.73,11.38,4.75,9.03-.02,16.33-7.36,16.31-16.39-.01-4.29-1.71-8.4-4.72-11.45l-22.97,23.09Z" style="fill:#292826;"/><path d="M220.21,459.44l-22.97,23.09.05.05c9.37-4.98,18.27-10.78,26.62-17.33-.81-2.18-2.07-4.16-3.7-5.82" style="fill:#009789;"/><path d="M215.72,447.7c-9.03.06-16.3,7.43-16.24,16.46.03,4.27,1.72,8.35,4.72,11.38l22.97-23.09c-3.03-3.04-7.15-4.75-11.45-4.75" style="fill:#292826;"/><path d="M215.72,447.7c-2.99,0-5.93.83-8.48,2.4-1.58-.42-3.21-.62-4.84-.61-2.68.02-5.33.62-7.77,1.74-.26.12-.37.43-.25.69.07.15.2.25.36.29,2.64.55,5,2.05,6.61,4.21-1.99,3.8-2.41,8.22-1.18,12.33.45-1.01,1-1.96,1.64-2.86,1.49-2.05,3.07-3.12,5.4-4.69,1.72-1.16,4.1-2.52,10.95-5.34,1.76-.57,3.44-1.35,5.02-2.31,1.14-.68,2.02-1.32,2.29-2.33.02-.07.04-.14.05-.21-2.81-2.15-6.26-3.31-9.8-3.31" style="fill:#262523;"/><path d="M218.44,453.18c.6,1.05-.6,2.86-2.66,4.05s-4.23,1.29-4.82.23.6-2.86,2.66-4.05,4.23-1.29,4.82-.23" style="fill:#fff;"/><path d="M279.31,472.8c-.67,0-1.21.54-1.21,1.21v12.06c.02.67.58,1.19,1.24,1.17.64-.02,1.15-.53,1.17-1.17v-12.06c0-.67-.54-1.21-1.2-1.21h0Z" style="fill:#e9e9e9;"/><path d="M310.96,472.8h-2.88c-4,.05-7.2,3.33-7.15,7.32.05,3.93,3.22,7.11,7.15,7.15h2.88c.67-.02,1.19-.58,1.17-1.24-.02-.64-.53-1.15-1.17-1.17h-2.88c-2.67.04-4.86-2.09-4.89-4.76-.04-2.67,2.09-4.86,4.76-4.89.05,0,.09,0,.14,0h2.88c.67-.02,1.19-.58,1.17-1.24-.02-.64-.53-1.15-1.17-1.17Z" style="fill:#e9e9e9;"/><path d="M310.96,478.83h-3.51c-.67-.02-1.22.51-1.24,1.17s.51,1.22,1.17,1.24c.02,0,.05,0,.07,0h3.51c.67-.02,1.19-.58,1.17-1.24-.02-.64-.53-1.15-1.17-1.17Z" style="fill:#e9e9e9;"/><path d="M255.21,487.28h-5.84c-.66,0-1.2-.54-1.2-1.2,0-.66.54-1.2,1.2-1.2h5.84c1.01,0,1.82-.81,1.82-1.82s-.81-1.82-1.82-1.82h-2.82c-2.33,0-4.22-1.88-4.23-4.21s1.88-4.22,4.21-4.23h4.79c.66,0,1.2.54,1.2,1.2,0,.66-.54,1.2-1.2,1.2h-4.78c-1.01,0-1.82.81-1.82,1.82s.81,1.82,1.82,1.82h2.82c2.33,0,4.22,1.9,4.21,4.23,0,2.32-1.89,4.21-4.21,4.21Z" style="fill:#e9e9e9;"/><path d="M294.69,484.07c-2.23,1.47-5.22.85-6.69-1.37-1.47-2.23-.85-5.22,1.37-6.69,1.61-1.06,3.7-1.06,5.31,0,.48.32,1.12.26,1.53-.14h0c.47-.46.48-1.22.02-1.7-.05-.05-.11-.1-.18-.15-3.33-2.22-7.82-1.32-10.04,2-2.22,3.33-1.32,7.82,2,10.04,2.42,1.61,5.56,1.62,7.99.03.56-.36.73-1.11.37-1.68-.05-.07-.1-.14-.16-.2h0c-.41-.41-1.05-.47-1.53-.15Z" style="fill:#e9e9e9;"/><path d="M272.62,484.87h-3.49c-1.67,0-3.01-1.35-3.02-3.02v-7.84c-.02-.67-.58-1.19-1.24-1.17-.64.02-1.15.53-1.17,1.17v7.84c0,3,2.43,5.43,5.43,5.43h3.49c.67-.02,1.19-.58,1.17-1.24-.02-.64-.53-1.15-1.17-1.17Z" style="fill:#e9e9e9;"/><path d="M324.89,475.22h-1.21c-2.65,0-4.8,2.14-4.82,4.78v6.07c-.02.67-.58,1.19-1.24,1.17-.64-.02-1.15-.53-1.17-1.17v-6.07c.03-3.98,3.26-7.19,7.24-7.2h1.21c.67.02,1.19.58,1.17,1.24-.02.64-.53,1.15-1.17,1.17h0Z" style="fill:#e9e9e9;"/><path d="M257.86,450.68c3.71,0,6.71,3.01,6.71,6.71s-3.01,6.71-6.71,6.71-6.71-3.01-6.71-6.71c0-3.71,3.01-6.71,6.71-6.71M257.86,447.7c-5.36,0-9.7,4.34-9.7,9.7s4.34,9.7,9.7,9.7,9.7-4.34,9.7-9.7-4.34-9.7-9.7-9.7h0Z" style="fill:#009789;"/><path d="M324.61,447.7c-.82,0-1.49.67-1.49,1.49h0v1.22c-3.86-3.72-10-3.6-13.72.26-3.72,3.86-3.6,10,.26,13.72,3.76,3.62,9.7,3.62,13.45,0v1.21c.02.82.71,1.48,1.53,1.45.79-.02,1.43-.66,1.45-1.45v-16.41c0-.82-.67-1.49-1.49-1.49ZM316.4,464.11c-3.71,0-6.71-3.01-6.71-6.71s3.01-6.71,6.71-6.71,6.71,3.01,6.71,6.71c0,3.7-3.01,6.7-6.71,6.71h0Z" style="fill:#009789;"/><path d="M283.03,447.7h-1.49c-5.36,0-9.7,4.34-9.7,9.7h0v8.2c.02.82.71,1.48,1.53,1.45.79-.02,1.43-.66,1.45-1.45v-8.2c0-3.71,3.01-6.71,6.71-6.71h1.49c.82.02,1.51-.63,1.53-1.45.02-.82-.63-1.51-1.45-1.53-.03,0-.05,0-.08,0h0Z" style="fill:#009789;"/><path d="M300.91,462.93c-3.06,2.1-7.24,1.32-9.33-1.74-2.1-3.06-1.32-7.24,1.74-9.33,2.28-1.56,5.29-1.57,7.57-.02.6.42,1.41.36,1.93-.15h0c.58-.59.58-1.54,0-2.12-.07-.07-.15-.13-.23-.19-4.42-3.02-10.46-1.88-13.48,2.54-3.02,4.42-1.88,10.46,2.54,13.48,3.31,2.26,7.66,2.25,10.96-.01.68-.47.86-1.4.4-2.08-.05-.08-.11-.15-.18-.22h0c-.51-.51-1.32-.58-1.91-.16Z" style="fill:#009789;"/><path d="M511.15,502.65c0,4.7-3.81,8.5-8.5,8.5h-10.07v.85h19.42v-19.42h-.85v10.07Z" style="fill:#009789;"/><path d="M9.35,511.15c-4.7,0-8.5-3.81-8.5-8.5v-10.07h-.85v19.42h19.42v-.85h-10.07Z" style="fill:#009789;"/><path d="M.85,9.35C.85,4.65,4.65.85,9.35.85h10.07V0H0v19.42h.85v-10.07Z" style="fill:#009789;"/><path d="M502.65.85c4.7,0,8.5,3.81,8.5,8.5v10.07h.85V0h-19.42v.85h10.07Z" style="fill:#009789;"/></svg>
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 4.6 KiB |
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|