Merge branch 'main' into belt/baseChanges
@@ -0,0 +1,127 @@
|
|||||||
|
name: Publish to draft release
|
||||||
|
|
||||||
|
# Manually pulls the platform binaries produced by a "Build all" run and uploads
|
||||||
|
# them to an existing DRAFT release. Decoupled from the build so you can test a
|
||||||
|
# build first, then publish exactly that run's artifacts once you're happy.
|
||||||
|
#
|
||||||
|
# Trigger: Actions tab -> "Publish to draft release" -> Run workflow.
|
||||||
|
# Locked to a single person: the first step aborts unless the actor matches the
|
||||||
|
# `RELEASE_PUBLISHER` repo variable (set to "SoftFever"). To allow someone else,
|
||||||
|
# change that variable: gh variable set RELEASE_PUBLISHER --body "<login>".
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
run_id:
|
||||||
|
description: 'Run ID of the "Build all" workflow to pull binaries from (the number in the Actions run URL)'
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
tag:
|
||||||
|
description: 'Tag of the draft release to upload to (e.g. v2.4.0-beta)'
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write # upload release assets
|
||||||
|
actions: read # download artifacts from another run
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish:
|
||||||
|
name: Publish binaries to draft release
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
RUN_ID: ${{ inputs.run_id }}
|
||||||
|
TAG: ${{ inputs.tag }}
|
||||||
|
steps:
|
||||||
|
- name: Restrict to the release publisher
|
||||||
|
env:
|
||||||
|
PUBLISHER: ${{ vars.RELEASE_PUBLISHER }}
|
||||||
|
run: |
|
||||||
|
if [ -z "$PUBLISHER" ]; then
|
||||||
|
echo "::error::RELEASE_PUBLISHER repo variable is not set."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if [ "${{ github.actor }}" != "$PUBLISHER" ]; then
|
||||||
|
echo "::error::Only @$PUBLISHER may run this workflow (you are @${{ github.actor }})."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "Authorized: @${{ github.actor }}"
|
||||||
|
|
||||||
|
- name: Verify target is a draft release
|
||||||
|
run: |
|
||||||
|
if ! gh release view "$TAG" --repo "$GITHUB_REPOSITORY" --json isDraft >/dev/null 2>&1; then
|
||||||
|
echo "::error::Release '$TAG' not found. Create the draft (with this tag) first."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
is_draft=$(gh release view "$TAG" --repo "$GITHUB_REPOSITORY" --json isDraft --jq '.isDraft')
|
||||||
|
if [ "$is_draft" != "true" ]; then
|
||||||
|
echo "::error::Release '$TAG' is published, not a draft. Aborting to avoid touching a live release."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Verify source build run
|
||||||
|
run: |
|
||||||
|
info=$(gh run view "$RUN_ID" --repo "$GITHUB_REPOSITORY" --json workflowName,conclusion,headBranch)
|
||||||
|
name=$(echo "$info" | jq -r '.workflowName')
|
||||||
|
conclusion=$(echo "$info" | jq -r '.conclusion')
|
||||||
|
branch=$(echo "$info" | jq -r '.headBranch')
|
||||||
|
echo "Source run #$RUN_ID: '$name' on '$branch' (conclusion: $conclusion)"
|
||||||
|
if [ "$conclusion" != "success" ]; then
|
||||||
|
echo "::warning::Source run did not conclude 'success' ($conclusion). Some assets may be missing."
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Download release artifacts from build run
|
||||||
|
run: |
|
||||||
|
gh run download "$RUN_ID" --repo "$GITHUB_REPOSITORY" --dir artifacts \
|
||||||
|
-p 'OrcaSlicer_Windows_*' \
|
||||||
|
-p 'OrcaSlicer_Mac_universal_*' \
|
||||||
|
-p 'OrcaSlicer_Linux_ubuntu_*' \
|
||||||
|
-p 'OrcaSlicer-Linux-flatpak_*' \
|
||||||
|
-p 'PDB'
|
||||||
|
echo "Downloaded artifact folders:"
|
||||||
|
ls -1 artifacts
|
||||||
|
|
||||||
|
- name: Assemble release assets
|
||||||
|
run: |
|
||||||
|
set -euo pipefail
|
||||||
|
mkdir -p upload
|
||||||
|
|
||||||
|
# gh run download auto-extracts each artifact into a folder, so the inner
|
||||||
|
# binaries are already unzipped. Copy the inner binary for each platform.
|
||||||
|
# -type f is required (some artifact *folders* are named "*.flatpak").
|
||||||
|
|
||||||
|
# Windows installer: the .exe inside the installer artifact, NOT the
|
||||||
|
# orca-slicer.exe that lives in the portable app folder.
|
||||||
|
find artifacts -type f -name '*.exe' -path '*OrcaSlicer_Windows_*' ! -path '*_portable*' -exec cp -v {} upload/ \;
|
||||||
|
# macOS universal DMG (profile-validator DMG isn't downloaded).
|
||||||
|
find artifacts -type f -name '*.dmg' -path '*OrcaSlicer_Mac_universal_*' -exec cp -v {} upload/ \;
|
||||||
|
# Linux AppImage.
|
||||||
|
find artifacts -type f -name '*.AppImage' -exec cp -v {} upload/ \;
|
||||||
|
# Flatpak bundles (x86_64 + aarch64).
|
||||||
|
find artifacts -type f -name '*.flatpak' -exec cp -v {} upload/ \;
|
||||||
|
# Windows debug symbols (PDB archive, for developers).
|
||||||
|
find artifacts -type f -name 'Debug_PDB_*.7z' -exec cp -v {} upload/ \;
|
||||||
|
|
||||||
|
# Portable Windows build is an unzipped folder artifact; re-zip it to the
|
||||||
|
# released filename (this one stays a .zip on the release).
|
||||||
|
portable_dir=$(find artifacts -maxdepth 1 -type d -name 'OrcaSlicer_Windows_*_portable' | head -n1)
|
||||||
|
if [ -n "${portable_dir:-}" ]; then
|
||||||
|
( cd "$portable_dir" && zip -qr "$GITHUB_WORKSPACE/upload/$(basename "$portable_dir").zip" . )
|
||||||
|
echo "Zipped portable -> $(basename "$portable_dir").zip"
|
||||||
|
else
|
||||||
|
echo "::warning::Windows portable artifact not found."
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Assets to upload:"
|
||||||
|
ls -lh upload
|
||||||
|
if [ -z "$(ls -A upload)" ]; then
|
||||||
|
echo "::error::No assets assembled. Check the run_id and that its artifacts haven't expired."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Upload assets to draft release
|
||||||
|
run: |
|
||||||
|
gh release upload "$TAG" upload/* --repo "$GITHUB_REPOSITORY" --clobber
|
||||||
|
echo "Uploaded to draft release: $TAG"
|
||||||
|
gh release view "$TAG" --repo "$GITHUB_REPOSITORY" --json assets --jq '.assets[].name'
|
||||||
@@ -220,7 +220,9 @@ if (MSVC)
|
|||||||
# /bigobj (Increase Number of Sections in .Obj file)
|
# /bigobj (Increase Number of Sections in .Obj file)
|
||||||
# error C3859: virtual memory range for PCH exceeded; please recompile with a command line option of '-Zm90' or greater
|
# error C3859: virtual memory range for PCH exceeded; please recompile with a command line option of '-Zm90' or greater
|
||||||
# Generate symbols at every build target, even for the release.
|
# Generate symbols at every build target, even for the release.
|
||||||
add_compile_options(-bigobj -Zm520 /Zi)
|
# -Zm520 fixes error C3859 but forces the compiler to pre-allocate that memory for every translation unit regardless
|
||||||
|
# combining /Zi with /FS frees up a significant amount of memory pressure across all parallel compile jobs and makes /MP faster overall.
|
||||||
|
add_compile_options(-bigobj /Zi /FS)
|
||||||
# Disable STL4007: Many result_type typedefs and all argument_type, first_argument_type, and second_argument_type typedefs are deprecated in C++17.
|
# Disable STL4007: Many result_type typedefs and all argument_type, first_argument_type, and second_argument_type typedefs are deprecated in C++17.
|
||||||
#FIXME Remove this line after eigen library adapts to the new C++17 adaptor rules.
|
#FIXME Remove this line after eigen library adapts to the new C++17 adaptor rules.
|
||||||
add_compile_options(-D_SILENCE_CXX17_ADAPTOR_TYPEDEFS_DEPRECATION_WARNING)
|
add_compile_options(-D_SILENCE_CXX17_ADAPTOR_TYPEDEFS_DEPRECATION_WARNING)
|
||||||
@@ -231,6 +233,11 @@ if (MSVC)
|
|||||||
# Disable warnings on comparison of unsigned and signed
|
# Disable warnings on comparison of unsigned and signed
|
||||||
# C4018: signed/unsigned mismatch
|
# C4018: signed/unsigned mismatch
|
||||||
add_compile_options(/wd4018)
|
add_compile_options(/wd4018)
|
||||||
|
# Prevent linker restart when TBB (or other deps) built with /GL are linked
|
||||||
|
# Make your full (clean) build slower because it enables link-time code generation across all translation units.
|
||||||
|
# helps incremental builds by preventing the double-link restart from TBB
|
||||||
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /LTCG")
|
||||||
|
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} /LTCG")
|
||||||
endif ()
|
endif ()
|
||||||
|
|
||||||
if (${CMAKE_CXX_COMPILER_ID} STREQUAL "AppleClang" AND ${CMAKE_CXX_COMPILER_VERSION} VERSION_GREATER 15)
|
if (${CMAKE_CXX_COMPILER_ID} STREQUAL "AppleClang" AND ${CMAKE_CXX_COMPILER_VERSION} VERSION_GREATER 15)
|
||||||
@@ -934,9 +941,6 @@ set (CPACK_PACKAGE_ICON "${CMAKE_SOURCE_DIR}/resources/images\\\\OrcaSlicer.ico"
|
|||||||
set (CPACK_NSIS_MUI_ICON "${CPACK_PACKAGE_ICON}")
|
set (CPACK_NSIS_MUI_ICON "${CPACK_PACKAGE_ICON}")
|
||||||
set (CPACK_NSIS_MUI_UNIICON "${CPACK_PACKAGE_ICON}")
|
set (CPACK_NSIS_MUI_UNIICON "${CPACK_PACKAGE_ICON}")
|
||||||
set (CPACK_NSIS_INSTALLED_ICON_NAME "$INSTDIR\\\\orca-slicer.exe")
|
set (CPACK_NSIS_INSTALLED_ICON_NAME "$INSTDIR\\\\orca-slicer.exe")
|
||||||
set(CPACK_NSIS_EXTRA_INSTALL_COMMANDS "
|
|
||||||
CreateShortCut \\\"$DESKTOP\\\\OrcaSlicer.lnk\\\" \\\"$INSTDIR\\\\orca-slicer.exe\\\"
|
|
||||||
")
|
|
||||||
set (CPACK_PACKAGE_CHECKSUM SHA256)
|
set (CPACK_PACKAGE_CHECKSUM SHA256)
|
||||||
set (CPACK_PACKAGE_INSTALL_REGISTRY_KEY "OrcaSlicer")
|
set (CPACK_PACKAGE_INSTALL_REGISTRY_KEY "OrcaSlicer")
|
||||||
set (CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL ON)
|
set (CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL ON)
|
||||||
|
|||||||
@@ -15,15 +15,20 @@ Optimize your prints with ultra-fast slicing, intelligent support generation, an
|
|||||||
# Official links and community
|
# Official links and community
|
||||||
|
|
||||||
#### Official Website:
|
#### Official Website:
|
||||||
|
|
||||||
<a href="https://www.orcaslicer.com/" style="font-size:2em;">OrcaSlicer.com</a>
|
<a href="https://www.orcaslicer.com/" style="font-size:2em;">OrcaSlicer.com</a>
|
||||||
|
|
||||||
#### Github Repository:
|
#### Github Repository:
|
||||||
|
|
||||||
<a href="https://github.com/OrcaSlicer/OrcaSlicer"><img src="https://img.shields.io/badge/OrcaSlicer-181717?style=flat&logo=github&logoColor=white" width="200" alt="GitHub Logo"/> </a>
|
<a href="https://github.com/OrcaSlicer/OrcaSlicer"><img src="https://img.shields.io/badge/OrcaSlicer-181717?style=flat&logo=github&logoColor=white" width="200" alt="GitHub Logo"/> </a>
|
||||||
|
|
||||||
#### Follow us:
|
#### Follow us:
|
||||||
|
|
||||||
<a href="https://twitter.com/real_OrcaSlicer"><img src="https://img.shields.io/badge/real__OrcaSlicer-000000?style=flat&logo=x&logoColor=white" width="200" alt="X Logo"/> </a>
|
<a href="https://twitter.com/real_OrcaSlicer"><img src="https://img.shields.io/badge/real__OrcaSlicer-000000?style=flat&logo=x&logoColor=white" width="200" alt="X Logo"/> </a>
|
||||||
|
<a href="https://www.youtube.com/@OfficialOrcaSlicer"><img src="https://img.shields.io/badge/OfficialOrcaSlicer-FF0000?style=flat&logo=youtube&logoColor=white" width="200" alt="YouTube Logo"/> </a>
|
||||||
|
|
||||||
#### Join our Discord community:
|
#### Join our Discord community:
|
||||||
|
|
||||||
<a href="https://discord.gg/P4VE9UY9gJ"><img src="https://img.shields.io/badge/-Discord-5865F2?style=flat&logo=discord&logoColor=fff" width="200" alt="discord logo"/> </a>
|
<a href="https://discord.gg/P4VE9UY9gJ"><img src="https://img.shields.io/badge/-Discord-5865F2?style=flat&logo=discord&logoColor=fff" width="200" alt="discord logo"/> </a>
|
||||||
|
|
||||||
<table border="2" style="border-color: #ffa500; background-color:rgb(232, 220, 180); color: #856404;">
|
<table border="2" style="border-color: #ffa500; background-color:rgb(232, 220, 180); color: #856404;">
|
||||||
@@ -91,17 +96,17 @@ Explore the latest developments in OrcaSlicer with our nightly builds. Feedback
|
|||||||
|
|
||||||
Download the **Windows Installer exe** for your preferred version from the [releases page](https://github.com/OrcaSlicer/OrcaSlicer/releases).
|
Download the **Windows Installer exe** for your preferred version from the [releases page](https://github.com/OrcaSlicer/OrcaSlicer/releases).
|
||||||
|
|
||||||
- *For convenience there is also a portable build available.*
|
- *For convenience there is also a portable build available.*
|
||||||
<details>
|
<details>
|
||||||
<summary>Troubleshooting</summary>
|
<summary>Troubleshooting</summary>
|
||||||
|
|
||||||
- *If you have troubles to run the build, you might need to install following runtimes:*
|
- *If you have troubles to run the build, you might need to install following runtimes:*
|
||||||
- [MicrosoftEdgeWebView2RuntimeInstallerX64](https://github.com/OrcaSlicer/OrcaSlicer/releases/download/v1.0.10-sf2/MicrosoftEdgeWebView2RuntimeInstallerX64.exe)
|
- [MicrosoftEdgeWebView2RuntimeInstallerX64](https://github.com/OrcaSlicer/OrcaSlicer/releases/download/v1.0.10-sf2/MicrosoftEdgeWebView2RuntimeInstallerX64.exe)
|
||||||
- [Details of this runtime](https://aka.ms/webview2)
|
- [Details of this runtime](https://aka.ms/webview2)
|
||||||
- [Alternative Download Link Hosted by Microsoft](https://go.microsoft.com/fwlink/p/?LinkId=2124703)
|
- [Alternative Download Link Hosted by Microsoft](https://go.microsoft.com/fwlink/p/?LinkId=2124703)
|
||||||
- [vcredist2019_x64](https://github.com/OrcaSlicer/OrcaSlicer/releases/download/v1.0.10-sf2/vcredist2019_x64.exe)
|
- [vcredist2019_x64](https://github.com/OrcaSlicer/OrcaSlicer/releases/download/v1.0.10-sf2/vcredist2019_x64.exe)
|
||||||
- [Alternative Download Link Hosted by Microsoft](https://aka.ms/vs/17/release/vc_redist.x64.exe)
|
- [Alternative Download Link Hosted by Microsoft](https://aka.ms/vs/17/release/vc_redist.x64.exe)
|
||||||
- This file may already be available on your computer if you've installed visual studio. Check the following location: `%VCINSTALLDIR%Redist\MSVC\v142`
|
- This file may already be available on your computer if you've installed visual studio. Check the following location: `%VCINSTALLDIR%Redist\MSVC\v142`
|
||||||
</details>
|
</details>
|
||||||
|
|
||||||
Windows Package Manager
|
Windows Package Manager
|
||||||
@@ -140,6 +145,7 @@ winget install --id=SoftFever.OrcaSlicer -e
|
|||||||
## Linux
|
## Linux
|
||||||
|
|
||||||
### Flathub (Recommended)
|
### Flathub (Recommended)
|
||||||
|
|
||||||
OrcaSlicer is available through FlatHub:
|
OrcaSlicer is available through FlatHub:
|
||||||
|
|
||||||
<a href='https://flathub.org/apps/com.orcaslicer.OrcaSlicer'><img width='240' alt='Download on Flathub' src='https://dl.flathub.org/assets/badges/flathub-badge-en.png'/></a>
|
<a href='https://flathub.org/apps/com.orcaslicer.OrcaSlicer'><img width='240' alt='Download on Flathub' src='https://dl.flathub.org/assets/badges/flathub-badge-en.png'/></a>
|
||||||
@@ -154,6 +160,7 @@ flatpak run com.orcaslicer.OrcaSlicer
|
|||||||
It can also be installed through graphical software managers (KDE Discover, GNOME Software, etc.) when Flathub is enabled. Search for **OrcaSlicer** in your software center.
|
It can also be installed through graphical software managers (KDE Discover, GNOME Software, etc.) when Flathub is enabled. Search for **OrcaSlicer** in your software center.
|
||||||
|
|
||||||
### AppImage
|
### AppImage
|
||||||
|
|
||||||
1. Download App image from the [releases page](https://github.com/OrcaSlicer/OrcaSlicer/releases).
|
1. Download App image from the [releases page](https://github.com/OrcaSlicer/OrcaSlicer/releases).
|
||||||
2. Double click the downloaded file to run it.
|
2. Double click the downloaded file to run it.
|
||||||
|
|
||||||
@@ -185,7 +192,7 @@ resolution: 0.1
|
|||||||
Their generous support enables me to purchase filaments and other essential 3D printing materials for the project.
|
Their generous support enables me to purchase filaments and other essential 3D printing materials for the project.
|
||||||
Thank you! :)
|
Thank you! :)
|
||||||
|
|
||||||
## Sponsors:
|
## Sponsors
|
||||||
|
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
@@ -221,6 +228,7 @@ OrcaSlicer began in that same spirit, drawing from BambuStudio, PrusaSlicer, and
|
|||||||
The OrcaSlicer logo was designed by community member [Justin Levine](https://github.com/jal-co).
|
The OrcaSlicer logo was designed by community member [Justin Levine](https://github.com/jal-co).
|
||||||
|
|
||||||
# License
|
# License
|
||||||
|
|
||||||
- **OrcaSlicer** is licensed under the GNU Affero General Public License, version 3.
|
- **OrcaSlicer** is licensed under the GNU Affero General Public License, version 3.
|
||||||
- The **GNU Affero General Public License**, version 3 ensures that if you use any part of this software in any way (even behind a web server), your software must be released under the same license.
|
- The **GNU Affero General Public License**, version 3 ensures that if you use any part of this software in any way (even behind a web server), your software must be released under the same license.
|
||||||
- OrcaSlicer includes a **pressure advance calibration pattern test** adapted from Andrew Ellis' generator, which is licensed under GNU General Public License, version 3. Ellis' generator is itself adapted from a generator developed by Sineos for Marlin, which is licensed under GNU General Public License, version 3.
|
- OrcaSlicer includes a **pressure advance calibration pattern test** adapted from Andrew Ellis' generator, which is licensed under GNU General Public License, version 3. Ellis' generator is itself adapted from a generator developed by Sineos for Marlin, which is licensed under GNU General Public License, version 3.
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ add_subdirectory(libigl)
|
|||||||
add_subdirectory(libnest2d)
|
add_subdirectory(libnest2d)
|
||||||
add_subdirectory(mcut)
|
add_subdirectory(mcut)
|
||||||
add_subdirectory(md4c)
|
add_subdirectory(md4c)
|
||||||
|
add_subdirectory(mdns)
|
||||||
add_subdirectory(miniz)
|
add_subdirectory(miniz)
|
||||||
add_subdirectory(minilzo)
|
add_subdirectory(minilzo)
|
||||||
add_subdirectory(qhull)
|
add_subdirectory(qhull)
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
cmake_minimum_required(VERSION 3.13)
|
||||||
|
|
||||||
|
project(mdns)
|
||||||
|
|
||||||
|
# Static library wrapping mjansson/mdns (public domain) plus the cxmdns C++
|
||||||
|
# wrapper from CrealityPrint v7.1.1 (AGPL-3.0). See NOTICE.md for attribution.
|
||||||
|
add_library(mdns STATIC
|
||||||
|
mdns.h
|
||||||
|
mdns.c
|
||||||
|
cxmdns.h
|
||||||
|
cxmdns.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
target_include_directories(mdns SYSTEM PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
||||||
|
|
||||||
|
if (MSVC)
|
||||||
|
# mjansson/mdns uses GetAdaptersAddresses (Iphlpapi) and Winsock2 (Ws2_32).
|
||||||
|
target_link_libraries(mdns PUBLIC Iphlpapi Ws2_32)
|
||||||
|
endif()
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
# mDNS / DNS-SD library
|
||||||
|
|
||||||
|
The four files in this directory implement mDNS / DNS-SD lookup and are
|
||||||
|
vendored from third-party sources:
|
||||||
|
|
||||||
|
## mdns.h, mdns.c
|
||||||
|
|
||||||
|
mDNS / DNS-SD lookup library by Mattias Jansson. Originally released to
|
||||||
|
the public domain at https://github.com/mjansson/mdns.
|
||||||
|
|
||||||
|
The exact files here were taken from CrealityOfficial/CrealityPrint
|
||||||
|
v7.1.1, which split the upstream header-only library into separate
|
||||||
|
declaration (mdns.h) and implementation (mdns.c) files.
|
||||||
|
|
||||||
|
- Source: https://github.com/mjansson/mdns
|
||||||
|
- License: Public domain (no restrictions on use)
|
||||||
|
|
||||||
|
## cxmdns.h, cxmdns.cpp
|
||||||
|
|
||||||
|
Thin C++ wrapper over mdns.{h,c} that exposes a single function:
|
||||||
|
|
||||||
|
std::vector<machine_info> syncDiscoveryService(
|
||||||
|
const std::vector<std::string>& prefix);
|
||||||
|
|
||||||
|
It sends a DNS-SD meta-discovery query (`_services._dns-sd._udp.local.`),
|
||||||
|
listens for ~5 seconds, and returns `{ip, service_name}` for every
|
||||||
|
service announcement whose name contains any of the given prefixes.
|
||||||
|
|
||||||
|
OrcaSlicer uses this to find Creality K-series printers on the LAN
|
||||||
|
(service-name prefix "Creality"), since K-series firmware announces
|
||||||
|
each printer under a per-device-unique service type
|
||||||
|
`_Creality-<MAC-derived-hex>._udp.local.` that no fixed-name query can
|
||||||
|
target.
|
||||||
|
|
||||||
|
- Source: CrealityOfficial/CrealityPrint v7.1.1
|
||||||
|
`src/slic3r/GUI/print_manage/utils/cxmdns.{h,cpp}`
|
||||||
|
- License: GNU AGPL-3.0 (compatible with OrcaSlicer's AGPL-3.0; see
|
||||||
|
top-level LICENSE.txt)
|
||||||
|
- Imported: 2026-05-19
|
||||||
@@ -0,0 +1,256 @@
|
|||||||
|
#include"cxmdns.h"
|
||||||
|
#include"mdns.h"
|
||||||
|
#ifdef _WIN32
|
||||||
|
#define _CRT_SECURE_NO_WARNINGS 1
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include<string.h>
|
||||||
|
#include <errno.h>
|
||||||
|
#include <signal.h>
|
||||||
|
|
||||||
|
#ifdef _WIN32
|
||||||
|
#include <winsock2.h>
|
||||||
|
#include <iphlpapi.h>
|
||||||
|
#define sleep(x) Sleep(x * 1000)
|
||||||
|
#else
|
||||||
|
#include <netdb.h>
|
||||||
|
#include <ifaddrs.h>
|
||||||
|
#include <net/if.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// Alias some things to simulate recieving data to fuzz library
|
||||||
|
#if defined(MDNS_FUZZING)
|
||||||
|
#define recvfrom(sock, buffer, capacity, flags, src_addr, addrlen) ((mdns_ssize_t)capacity)
|
||||||
|
#define printf
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "mdns.h"
|
||||||
|
|
||||||
|
#if defined(MDNS_FUZZING)
|
||||||
|
#undef recvfrom
|
||||||
|
#endif
|
||||||
|
|
||||||
|
namespace cxnet
|
||||||
|
{
|
||||||
|
template <typename F>
|
||||||
|
mdns_record_callback_fn lambda2function(F lambda)
|
||||||
|
{
|
||||||
|
static auto lambdabak = lambda;
|
||||||
|
return [](int sock, const struct sockaddr* from, size_t addrlen,
|
||||||
|
mdns_entry_type_t entry, uint16_t query_id, uint16_t rtype,
|
||||||
|
uint16_t rclass, uint32_t ttl, const void* data, size_t size,
|
||||||
|
size_t name_offset, size_t name_length, size_t record_offset,
|
||||||
|
size_t record_length, void* user_data)->int {lambdabak(sock, from, addrlen, entry, query_id, rtype, rclass, ttl, data, size, name_offset, name_length, record_offset, record_length, user_data); return 0; };
|
||||||
|
}
|
||||||
|
|
||||||
|
volatile sig_atomic_t running = 1;
|
||||||
|
#ifdef _WIN32
|
||||||
|
BOOL console_handler(DWORD signal) {
|
||||||
|
if (signal == CTRL_C_EVENT) {
|
||||||
|
running = 0;
|
||||||
|
}
|
||||||
|
return TRUE;
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
void signal_handler(int signal) {
|
||||||
|
running = 0;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
void recvMachineInfoFromSocket(int sock, void* buffer, size_t capacity, const std::vector<std::string>& prefix, std::vector<machine_info>& retmachineInfos, int recIndex)
|
||||||
|
{
|
||||||
|
struct sockaddr_in6 addr;
|
||||||
|
struct sockaddr* saddr = (struct sockaddr*)&addr;
|
||||||
|
socklen_t addrlen = sizeof(addr);
|
||||||
|
memset(&addr, 0, sizeof(addr));
|
||||||
|
#ifdef __APPLE__
|
||||||
|
saddr->sa_len = sizeof(addr);
|
||||||
|
#endif
|
||||||
|
mdns_ssize_t ret = recvfrom(sock, (char*)buffer, (mdns_size_t)capacity, 0, saddr, &addrlen);
|
||||||
|
if (ret <= 0)
|
||||||
|
return;
|
||||||
|
|
||||||
|
size_t data_size = (size_t)ret;
|
||||||
|
//size_t records = 0;
|
||||||
|
const uint16_t* data = (uint16_t*)buffer;
|
||||||
|
|
||||||
|
uint16_t query_id = mdns_ntohs(data++);
|
||||||
|
uint16_t flags = mdns_ntohs(data++);
|
||||||
|
uint16_t questions = mdns_ntohs(data++);
|
||||||
|
uint16_t answer_rrs = mdns_ntohs(data++);
|
||||||
|
uint16_t authority_rrs = mdns_ntohs(data++);
|
||||||
|
uint16_t additional_rrs = mdns_ntohs(data++);
|
||||||
|
|
||||||
|
// According to RFC 6762 the query ID MUST match the sent query ID (which is 0 in our case)
|
||||||
|
if (query_id || (flags != 0x8400))
|
||||||
|
return; // Not a reply to our question
|
||||||
|
|
||||||
|
// It seems some implementations do not fill the correct questions field,
|
||||||
|
// so ignore this check for now and only validate answer string
|
||||||
|
// if (questions != 1)
|
||||||
|
// return 0;
|
||||||
|
|
||||||
|
int i;
|
||||||
|
for (i = 0; i < questions; ++i) {
|
||||||
|
size_t offset = MDNS_POINTER_DIFF(data, buffer);
|
||||||
|
size_t verify_offset = 12;
|
||||||
|
// Verify it's our question, _services._dns-sd._udp.local.
|
||||||
|
if (!mdns_string_equal(buffer, data_size, &offset, mdns_services_query,
|
||||||
|
sizeof(mdns_services_query), &verify_offset))
|
||||||
|
return;
|
||||||
|
data = (const uint16_t*)MDNS_POINTER_OFFSET(buffer, offset);
|
||||||
|
|
||||||
|
uint16_t rtype = mdns_ntohs(data++);
|
||||||
|
uint16_t rclass = mdns_ntohs(data++);
|
||||||
|
|
||||||
|
// Make sure we get a reply based on our PTR question for class IN
|
||||||
|
if ((rtype != MDNS_RECORDTYPE_PTR) || ((rclass & 0x7FFF) != MDNS_CLASS_IN))
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (i = 0; i < answer_rrs; ++i) {
|
||||||
|
size_t offset = MDNS_POINTER_DIFF(data, buffer);
|
||||||
|
size_t verify_offset = 12;
|
||||||
|
// Verify it's an answer to our question, _services._dns-sd._udp.local.
|
||||||
|
size_t name_offset = offset;
|
||||||
|
int is_answer = mdns_string_equal(buffer, data_size, &offset, mdns_services_query,
|
||||||
|
sizeof(mdns_services_query), &verify_offset);
|
||||||
|
if (!is_answer && !mdns_string_skip(buffer, data_size, &offset))
|
||||||
|
break;
|
||||||
|
size_t name_length = offset - name_offset;
|
||||||
|
if ((offset + 10) > data_size)
|
||||||
|
return;
|
||||||
|
data = (const uint16_t*)MDNS_POINTER_OFFSET(buffer, offset);
|
||||||
|
|
||||||
|
uint16_t rtype = mdns_ntohs(data++);
|
||||||
|
uint16_t rclass = mdns_ntohs(data++);
|
||||||
|
uint32_t ttl = mdns_ntohl(data);
|
||||||
|
data += 2;
|
||||||
|
uint16_t length = mdns_ntohs(data++);
|
||||||
|
if (length > (data_size - offset))
|
||||||
|
return;
|
||||||
|
|
||||||
|
static char addrbuf[64];
|
||||||
|
static char entrybuf[256];
|
||||||
|
static char namebuf[256];
|
||||||
|
|
||||||
|
if (is_answer) {
|
||||||
|
offset = MDNS_POINTER_DIFF(data, buffer);
|
||||||
|
(void)sizeof(sock);
|
||||||
|
(void)sizeof(query_id);
|
||||||
|
(void)sizeof(name_length);
|
||||||
|
//(void)sizeof(0);
|
||||||
|
mdns_string_t fromaddrstr = ip_address_to_string(addrbuf, sizeof(addrbuf), saddr, addrlen);
|
||||||
|
mdns_string_t entrystr =
|
||||||
|
mdns_string_extract(buffer, data_size, &name_offset, entrybuf, sizeof(entrybuf));
|
||||||
|
if (rtype == MDNS_RECORDTYPE_PTR) {
|
||||||
|
mdns_string_t namestr = mdns_record_parse_ptr(buffer, data_size, offset, length,
|
||||||
|
namebuf, sizeof(namebuf));
|
||||||
|
if (!namestr.str || namestr.length == 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const std::string answer_name(namestr.str, namestr.length);
|
||||||
|
bool bFound = false;
|
||||||
|
for (const auto& item : prefix)
|
||||||
|
{
|
||||||
|
if (answer_name.find(item) != std::string::npos)
|
||||||
|
bFound = true;
|
||||||
|
}
|
||||||
|
if (!bFound)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
char ip[16] = { 0 };
|
||||||
|
sscanf(fromaddrstr.str, "%[^:]", ip);
|
||||||
|
retmachineInfos.push_back({ ip, answer_name });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
std::vector<machine_info> syncDiscoveryService(const std::vector<std::string>& prefix)
|
||||||
|
{
|
||||||
|
std::vector<machine_info> retmachineInfos;
|
||||||
|
const char* hostname = "cxslice-host";
|
||||||
|
// Initialize network environment
|
||||||
|
#ifdef _WIN32
|
||||||
|
WORD versionWanted = MAKEWORD(1, 1);
|
||||||
|
WSADATA wsaData;
|
||||||
|
if (WSAStartup(versionWanted, &wsaData)) {
|
||||||
|
printf("Failed to initialize WinSock\n");
|
||||||
|
return retmachineInfos;
|
||||||
|
}
|
||||||
|
char hostname_buffer[256];
|
||||||
|
DWORD hostname_size = (DWORD)sizeof(hostname_buffer);
|
||||||
|
if (GetComputerNameA(hostname_buffer, &hostname_size))
|
||||||
|
hostname = hostname_buffer;
|
||||||
|
SetConsoleCtrlHandler(console_handler, TRUE);
|
||||||
|
#else
|
||||||
|
char hostname_buffer[256];
|
||||||
|
size_t hostname_size = sizeof(hostname_buffer);
|
||||||
|
if (gethostname(hostname_buffer, hostname_size) == 0)
|
||||||
|
hostname = hostname_buffer;
|
||||||
|
signal(SIGINT, signal_handler);
|
||||||
|
#endif
|
||||||
|
int sockets[32];
|
||||||
|
int num_sockets = open_client_sockets(sockets, sizeof(sockets) / sizeof(sockets[0]), 0);
|
||||||
|
if (num_sockets <= 0) {
|
||||||
|
printf("Failed to open any client sockets\n");
|
||||||
|
#ifdef _WIN32
|
||||||
|
WSACleanup();
|
||||||
|
#endif
|
||||||
|
return retmachineInfos;
|
||||||
|
}
|
||||||
|
printf("Opened %d socket%s for DNS-SD\n", num_sockets, num_sockets > 1 ? "s" : "");
|
||||||
|
printf("Sending DNS-SD discovery\n");
|
||||||
|
for (int isock = 0; isock < num_sockets; ++isock) {
|
||||||
|
if (mdns_discovery_send(sockets[isock]))
|
||||||
|
printf("Failed to send DNS-DS discovery: %s\n", strerror(errno));
|
||||||
|
}
|
||||||
|
size_t capacity = 2048;
|
||||||
|
void* buffer = malloc(capacity);
|
||||||
|
size_t recordNum = 0;
|
||||||
|
void* user_data = 0;
|
||||||
|
|
||||||
|
// This is a simple implementation that loops for 5 seconds or as long as we get replies
|
||||||
|
int res;
|
||||||
|
printf("Reading DNS-SD replies\n");
|
||||||
|
do {
|
||||||
|
struct timeval timeout;
|
||||||
|
timeout.tv_sec = 5;
|
||||||
|
timeout.tv_usec = 0;
|
||||||
|
|
||||||
|
int nfds = 0;
|
||||||
|
fd_set readfs;
|
||||||
|
FD_ZERO(&readfs);
|
||||||
|
for (int isock = 0; isock < num_sockets; ++isock) {
|
||||||
|
if (sockets[isock] >= nfds)
|
||||||
|
nfds = sockets[isock] + 1;
|
||||||
|
FD_SET(sockets[isock], &readfs);
|
||||||
|
}
|
||||||
|
res = select(nfds, &readfs, 0, 0, &timeout);
|
||||||
|
if (res > 0) {
|
||||||
|
for (int isock = 0; isock < num_sockets; ++isock) {
|
||||||
|
if (FD_ISSET(sockets[isock], &readfs)) {
|
||||||
|
// records += mdns_discovery_recv(sockets[isock], buffer, capacity, query_callback,
|
||||||
|
// 0);
|
||||||
|
recvMachineInfoFromSocket(sockets[isock], buffer, capacity, prefix, retmachineInfos, isock);
|
||||||
|
recordNum++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} while (res > 0);
|
||||||
|
|
||||||
|
free(buffer);
|
||||||
|
//
|
||||||
|
for (int isock = 0; isock < num_sockets; ++isock)
|
||||||
|
mdns_socket_close(sockets[isock]);
|
||||||
|
printf("Closed socket%s\n", num_sockets ? "s" : "");
|
||||||
|
#ifdef _WIN32
|
||||||
|
WSACleanup();
|
||||||
|
#endif
|
||||||
|
return std::move(retmachineInfos);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
#ifndef _CX_MDNS_H
|
||||||
|
#define _CX_MDNS_H
|
||||||
|
#include<string>
|
||||||
|
#include<vector>
|
||||||
|
|
||||||
|
namespace cxnet
|
||||||
|
{
|
||||||
|
struct machine_info
|
||||||
|
{
|
||||||
|
std::string machineIp;
|
||||||
|
std::string answer;
|
||||||
|
};
|
||||||
|
|
||||||
|
std::vector<machine_info> syncDiscoveryService(const std::vector<std::string>& prefix);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
@@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-05-22 02:24+0800\n"
|
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@@ -1771,6 +1771,17 @@ msgstr ""
|
|||||||
msgid "User logged out"
|
msgid "User logged out"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"You are currently in Stealth Mode. To log into the Cloud, you need to "
|
||||||
|
"disable Stealth Mode first."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Stealth Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Quit Stealth Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "new or open project file is not allowed during the slicing process!"
|
msgid "new or open project file is not allowed during the slicing process!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1782,21 +1793,24 @@ msgid ""
|
|||||||
"version before it can be used normally."
|
"version before it can be used normally."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, possible-c-format, possible-boost-format
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to connect to OrcaCloud.\n"
|
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||||
"Please check your network connectivity\n"
|
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||||
"(HTTP %u): %s"
|
"preset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, possible-c-format, possible-boost-format
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to connect to OrcaCloud.\n"
|
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||||
"Please check your network connectivity\n"
|
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||||
"(HTTP %u)"
|
"preset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Cloud Error"
|
msgid ""
|
||||||
|
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||||
|
"Do you want to continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Resolve cloud sync conflict"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Retrieving printer information, please try again later."
|
msgid "Retrieving printer information, please try again later."
|
||||||
@@ -1839,7 +1853,7 @@ msgid "Privacy Policy Update"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, possible-c-format, possible-boost-format
|
#, possible-c-format, possible-boost-format
|
||||||
msgid "your Bambu Cloud profile (user ID: \"%s\")"
|
msgid "your Orca Cloud profile (user ID: \"%s\")"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "your default profile"
|
msgid "your default profile"
|
||||||
@@ -2085,6 +2099,9 @@ msgstr ""
|
|||||||
msgid "Orca Cube"
|
msgid "Orca Cube"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OrcaSliced Combo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Orca Tolerance Test"
|
msgid "Orca Tolerance Test"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5127,6 +5144,9 @@ msgstr ""
|
|||||||
msgid "Outline"
|
msgid "Outline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Realistic View"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Perspective"
|
msgid "Perspective"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5169,7 +5189,7 @@ msgstr ""
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, possible-boost-format
|
#, possible-c-format, possible-boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5407,15 +5427,18 @@ msgstr ""
|
|||||||
msgid "Show Configuration Folder"
|
msgid "Show Configuration Folder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Troubleshoot Center"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Open Network Test"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Show Tip of the Day"
|
msgid "Show Tip of the Day"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Check for Updates"
|
msgid "Check for Updates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Open Network Test"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, possible-c-format, possible-boost-format
|
#, possible-c-format, possible-boost-format
|
||||||
msgid "&About %s"
|
msgid "&About %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -6683,6 +6706,12 @@ msgstr ""
|
|||||||
msgid "Model file downloaded."
|
msgid "Model file downloaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Pull"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Force push"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Shared profiles may be available for this printer."
|
msgid "Shared profiles may be available for this printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -7604,6 +7633,12 @@ msgid ""
|
|||||||
"will be exported."
|
"will be exported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Flashforge host is not available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Unable to log in to the Flashforge printer."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Is the printer ready? Is the print sheet in place, empty and clean?"
|
msgid "Is the printer ready? Is the print sheet in place, empty and clean?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -8105,6 +8140,24 @@ msgstr ""
|
|||||||
msgid "Graphics"
|
msgid "Graphics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Phong shading"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Uses Phong shading inside realistic view."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SSAO ambient occlusion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Applies SSAO in realistic view."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Shadows"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Renders cast shadows on the plate in realistic view."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Anti-aliasing"
|
msgid "Anti-aliasing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -8162,9 +8215,16 @@ msgid "Stealth mode"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
|
"This disables all cloud features, including Orca Cloud profile syncing. "
|
||||||
"the transmission of data to Bambu's cloud services too. Users who don't use "
|
"Users who prefer to work entirely offline can enable this option.\n"
|
||||||
"BBL machines or use LAN mode only can safely turn on this function."
|
"Note: When Stealth Mode is enabled, your user profiles will not be backed up "
|
||||||
|
"to Orca Cloud."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Hide login side panel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Hide the login side panel on the home page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network test"
|
msgid "Network test"
|
||||||
@@ -8304,6 +8364,14 @@ msgid ""
|
|||||||
"Highly experimental! Slow and may create artifact."
|
"Highly experimental! Slow and may create artifact."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show unsupported presets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Show incompatible/unsupported presets in the printer and filament dropdown "
|
||||||
|
"lists. These presets cannot be selected."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Allow Abnormal Storage"
|
msgid "Allow Abnormal Storage"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9261,8 +9329,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -9340,6 +9408,9 @@ msgstr ""
|
|||||||
msgid "Precision"
|
msgid "Precision"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Z contouring"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Wall generator"
|
msgid "Wall generator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9700,9 +9771,10 @@ msgid "Retraction when switching material"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Wipe option is not available when using the Firmware Retraction mode.\n"
|
"The Retract before wipe option could be only 100% when using the Firmware "
|
||||||
|
"Retraction mode.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Shall I disable it in order to enable Firmware Retraction?"
|
"Shall I set it to 100% in order to enable Firmware Retraction?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Firmware Retraction"
|
msgid "Firmware Retraction"
|
||||||
@@ -11187,6 +11259,19 @@ msgstr ""
|
|||||||
msgid "Layer height cannot exceed nozzle diameter."
|
msgid "Layer height cannot exceed nozzle diameter."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bridge line width must not exceed nozzle diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"\"G92 E0\" was found in before_layer_change_gcode, but the G or E are not "
|
||||||
|
"uppercase. Please change them to the exact uppercase \"G92 E0\"."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"\"G92 E0\" was found in layer_change_gcode, but the G or E are not "
|
||||||
|
"uppercase. Please change them to the exact uppercase \"G92 E0\"."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Relative extruder addressing requires resetting the extruder position at "
|
"Relative extruder addressing requires resetting the extruder position at "
|
||||||
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
||||||
@@ -11194,13 +11279,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
|
"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
|
||||||
"absolute extruder addressing."
|
"with absolute extruder addressing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
|
"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
|
||||||
"extruder addressing."
|
"absolute extruder addressing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, possible-c-format, possible-boost-format
|
#, possible-c-format, possible-boost-format
|
||||||
@@ -11278,6 +11363,31 @@ msgstr ""
|
|||||||
msgid "Extruder printable area"
|
msgid "Extruder printable area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Support parallel printheads"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Enable printer settings for machines that can use multiple printheads in "
|
||||||
|
"parallel."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Parallel printheads count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Set the number of parallel printheads for machines like OrangeStorm Giga "
|
||||||
|
"printer."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Parallel printheads bed exclude areas"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Ordered list of bed exclude areas by parallel printhead count. Item 1 "
|
||||||
|
"applies to one printhead, item 2 to two printheads, and so on. Leave an item "
|
||||||
|
"empty for no excluded area."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Bed exclude area"
|
msgid "Bed exclude area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -11387,6 +11497,12 @@ msgid ""
|
|||||||
"contain the API Key or the password required for authentication."
|
"contain the API Key or the password required for authentication."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Serial Number"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Flashforge local API requires the printer serial number."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Name of the printer."
|
msgid "Name of the printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -11642,21 +11758,42 @@ msgstr ""
|
|||||||
|
|
||||||
#, no-c-format, no-boost-format
|
#, no-c-format, no-boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
"External Bridging angle override.\n"
|
||||||
"calculated automatically. Otherwise the provided angle will be used for "
|
"If left to zero, the bridging angle will be calculated automatically for "
|
||||||
"external bridges. Use 180° for zero angle."
|
"each specific bridge.\n"
|
||||||
|
"Otherwise the provided angle will be used according to:\n"
|
||||||
|
" - The absolute coordinates\n"
|
||||||
|
" - The absolute coordinates + Model rotation: If Align infill direction to "
|
||||||
|
"model is enabled\n"
|
||||||
|
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is "
|
||||||
|
"enabled\n"
|
||||||
|
"\n"
|
||||||
|
"Use 180° for zero absolute angle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Internal bridge infill direction"
|
msgid "Internal bridge infill direction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Internal bridging angle override. If left to zero, the bridging angle will "
|
"Internal Bridging angle override.\n"
|
||||||
"be calculated automatically. Otherwise the provided angle will be used for "
|
"If left to zero, the bridging angle will be calculated automatically for "
|
||||||
"internal bridges. Use 180° for zero angle.\n"
|
"each specific bridge.\n"
|
||||||
|
"Otherwise the provided angle will be used according to:\n"
|
||||||
|
" - The absolute coordinates\n"
|
||||||
|
" - The absolute coordinates + Model rotation: If Align infill direction to "
|
||||||
|
"model is enabled\n"
|
||||||
|
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is "
|
||||||
|
"enabled\n"
|
||||||
"\n"
|
"\n"
|
||||||
"It is recommended to leave it at 0 unless there is a specific model need not "
|
"Use 180° for zero absolute angle."
|
||||||
"to."
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Relative bridge angle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"When enabled, the bridge angle values are added to the automatically "
|
||||||
|
"calculated bridge direction instead of overriding it."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "External bridge density"
|
msgid "External bridge density"
|
||||||
@@ -11664,54 +11801,90 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||||
|
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||||
|
"extrusions to sag, 100% may not be sufficient.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Lower density external bridges can help improve reliability as there is more "
|
"- Higher than 100% density (Recommended Max 125%):\n"
|
||||||
"space for air to circulate around the extruded bridge, improving its cooling "
|
" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
|
||||||
"speed. Minimum is 10%.\n"
|
"additional support during printing.\n"
|
||||||
|
" - Cons: Can cause overextrusion, which may reduce lower and upper surface "
|
||||||
|
"quality and increase the risk of warping.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Higher densities can produce smoother bridge surfaces, as overlapping lines "
|
"- Lower than 100% density (Min 10%):\n"
|
||||||
"provide additional support during printing. Maximum is 120%.\n"
|
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||||
"Note: Bridge density that is too high can cause warping or overextrusion."
|
"cooling because there is more space for air to circulate around the extruded "
|
||||||
|
"bridge.\n"
|
||||||
|
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||||
|
"\n"
|
||||||
|
"Recommended range: Minimum 10% - Maximum 125%."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Internal bridge density"
|
msgid "Internal bridge density"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Controls the density (spacing) of internal bridge lines. 100% means solid "
|
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||||
"bridge. Default is 100%.\n"
|
"100% means a solid internal bridge.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Lower density internal bridges can help reduce top surface pillowing and "
|
"Internal bridges act as intermediate support between sparse infill and top "
|
||||||
"improve internal bridge reliability as there is more space for air to "
|
"solid infill and can strongly affect top surface quality.\n"
|
||||||
"circulate around the extruded bridge, improving its cooling speed.\n"
|
"\n"
|
||||||
|
"- Higher than 100% density (Recommended Max 125%):\n"
|
||||||
|
" - Pros: Improves internal bridge strength and support under top layers, "
|
||||||
|
"reducing sagging and improving top-surface finish.\n"
|
||||||
|
" - Cons: Increases material use and print time; excessive density may cause "
|
||||||
|
"overextrusion and internal stresses.\n"
|
||||||
|
"\n"
|
||||||
|
"- Lower than 100% density (Min 10%):\n"
|
||||||
|
" - Pros: Can reduce pillowing and improve cooling (more airflow through the "
|
||||||
|
"bridge), and may speed up printing.\n"
|
||||||
|
" - Cons: May reduce internal support, increasing the risk of sagging and "
|
||||||
|
"top surface defects.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"This option works particularly well when combined with the second internal "
|
"This option works particularly well when combined with the second internal "
|
||||||
"bridge over infill option, further improving internal bridging structure "
|
"bridge over infill option to improve bridging further before solid infill is "
|
||||||
"before solid infill is extruded."
|
"extruded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Bridge flow ratio"
|
msgid "Bridge flow ratio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Decrease this value slightly (for example 0.9) to reduce the amount of "
|
"This value governs the thickness of the external (visible) bridge layer.\n"
|
||||||
"material for bridge, to improve sag.\n"
|
"Values above 1.0: Increase the amount of material while maintaining line "
|
||||||
|
"spacing. This can improve line contact and strength.\n"
|
||||||
|
"Values below 1.0: Reduce the amount of material while adjusting line spacing "
|
||||||
|
"to maintain contact. This can improve sagging.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"The actual bridge flow used is calculated by multiplying this value with the "
|
"The actual bridge flow used is calculated by multiplying this value with the "
|
||||||
"filament flow ratio, and if set, the object's flow ratio."
|
"filament flow ratio, and if set, the object's flow ratio."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, possible-c-format, possible-boost-format
|
||||||
|
msgid ""
|
||||||
|
"Bridge line width is expressed either as an absolute value or as a "
|
||||||
|
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||||
|
"nozzle diameter).\n"
|
||||||
|
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||||
|
"\n"
|
||||||
|
"The maximum value is 100% or the nozzle diameter.\n"
|
||||||
|
"If set to 0, the line width will match the Internal solid infill width."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Internal bridge flow ratio"
|
msgid "Internal bridge flow ratio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"This value governs the thickness of the internal bridge layer. This is the "
|
"This value governs the thickness of the internal bridge layer. This is the "
|
||||||
"first layer over sparse infill. Decrease this value slightly (for example "
|
"first layer over sparse infill so increasing it may increase strength and "
|
||||||
"0.9) to improve surface quality over sparse infill.\n"
|
"upper layer quality.\n"
|
||||||
|
"Values above 1.0: Increase the amount of material while maintaining line "
|
||||||
|
"spacing. This can improve line contact and strength.\n"
|
||||||
|
"Values below 1.0: Reduce the amount of material while adjusting line spacing "
|
||||||
|
"to maintain contact. This can improve sagging.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"The actual internal bridge flow used is calculated by multiplying this value "
|
"The actual bridge flow used is calculated by multiplying this value with the "
|
||||||
"with the bridge flow ratio, the filament flow ratio, and if set, the "
|
"filament flow ratio, and if set, the object's flow ratio."
|
||||||
"object's flow ratio."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Top surface flow ratio"
|
msgid "Top surface flow ratio"
|
||||||
@@ -11957,22 +12130,34 @@ msgstr ""
|
|||||||
#, no-c-format, no-boost-format
|
#, no-c-format, no-boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option to slow down printing in areas where perimeters may have "
|
"Enable this option to slow down printing in areas where perimeters may have "
|
||||||
"curled upwards. For example, additional slowdown will be applied when "
|
"curled upwards.\n"
|
||||||
"printing overhangs on sharp corners like the front of the Benchy hull, "
|
"For example, additional slowdown will be applied when printing overhangs on "
|
||||||
"reducing curling which compounds over multiple layers.\n"
|
"sharp corners like the front of the Benchy hull, reducing curling which "
|
||||||
|
"compounds over multiple layers.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"It is generally recommended to have this option switched on unless your "
|
"It is generally recommended to have this option switched on unless your "
|
||||||
"printer cooling is powerful enough or the print speed slow enough that "
|
"printer cooling is powerful enough or the print speed is slow enough that "
|
||||||
"perimeter curling does not happen. If printing with a high external "
|
"perimeter curling does not happen. \n"
|
||||||
"perimeter speed, this parameter may introduce slight artifacts when slowing "
|
"If printing with a high external perimeter speed, this parameter may "
|
||||||
"down due to the large variance in print speeds. If you notice artifacts, "
|
"introduce wall artifacts when slowing down, due to the potentially large "
|
||||||
"ensure your pressure advance is tuned correctly.\n"
|
"variance in print speeds causing the extruder to be unable to keep up with "
|
||||||
|
"the requested flow change.\n"
|
||||||
|
"Root cause of these artifacts is most likely PA tuning being slightly off, "
|
||||||
|
"especially when combined with a high PA smooth time.\n"
|
||||||
|
"\n"
|
||||||
|
"Recommendations when enabling this option:\n"
|
||||||
|
"1. Reduce Pressure Advance smooth time to 0.015 - 0.02 so the extruder "
|
||||||
|
"reacts quickly to the speed changes.\n"
|
||||||
|
"2. Increase the minimum print speeds to limit the magnitude of the slowdown "
|
||||||
|
"and reduce the variance between fast and slow segments.\n"
|
||||||
|
"3. If artifacts still appear, enable Extrusion Rate Smoothing (ERS) to "
|
||||||
|
"further smooth the flow transitions.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Note: When this option is enabled, overhang perimeters are treated like "
|
"Note: When this option is enabled, overhang perimeters are treated like "
|
||||||
"overhangs, meaning the overhang speed is applied even if the overhanging "
|
"overhangs, meaning the overhang speed is applied even if the overhanging "
|
||||||
"perimeter is part of a bridge. For example, when the perimeters are 100% "
|
"perimeter is part of a bridge.\n"
|
||||||
"overhanging, with no wall supporting them from underneath, the 100% overhang "
|
"For example, when the perimeters are 100% overhanging, with no wall "
|
||||||
"speed will be applied."
|
"supporting them from underneath, the 100% overhang speed will be applied."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "mm/s or %"
|
msgid "mm/s or %"
|
||||||
@@ -12192,18 +12377,24 @@ msgid "Thick external bridges"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"If enabled, bridges are more reliable, can bridge longer distances, but may "
|
"If enabled, bridge extrusion uses a line height equal to the nozzle "
|
||||||
"look worse. If disabled, bridges look better but are reliable just for "
|
"diameter.\n"
|
||||||
"shorter bridged distances."
|
"This increases bridge strength and reliability, allowing longer spans, but "
|
||||||
|
"may worsen appearance.\n"
|
||||||
|
"If disabled, bridges may look better but are generally reliable only for "
|
||||||
|
"shorter spans."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Thick internal bridges"
|
msgid "Thick internal bridges"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"If enabled, thick internal bridges will be used. It's usually recommended to "
|
"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
|
||||||
"have this feature turned on. However, consider turning it off if you are "
|
"diameter.\n"
|
||||||
"using large nozzles."
|
"This increases internal bridge strength and reliability when printed over "
|
||||||
|
"sparse infill, but may worsen appearance.\n"
|
||||||
|
"If disabled, internal bridges may look better but can be less reliable over "
|
||||||
|
"sparse infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra bridge layers (beta)"
|
msgid "Extra bridge layers (beta)"
|
||||||
@@ -13131,9 +13322,10 @@ msgid "Align infill direction to model"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Aligns infill and surface fill directions to follow the model's orientation "
|
"Aligns infill, bridge, ironing and surface fill directions to follow the "
|
||||||
"on the build plate. When enabled, fill directions rotate with the model to "
|
"model's orientation on the build plate.\n"
|
||||||
"maintain optimal strength characteristics."
|
"When enabled, directions rotate with the model to maintain optimal strength "
|
||||||
|
"characteristics."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Insert solid layers"
|
msgid "Insert solid layers"
|
||||||
@@ -13156,6 +13348,7 @@ msgstr ""
|
|||||||
msgid "Z-buckling bias optimization (experimental)"
|
msgid "Z-buckling bias optimization (experimental)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, possible-c-format, possible-boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||||
"to shorten the effective vertical column length and improve Z-axis "
|
"to shorten the effective vertical column length and improve Z-axis "
|
||||||
@@ -13250,6 +13443,27 @@ msgid ""
|
|||||||
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
|
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Lightning overhang angle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Maximum overhang angle for Lightning infill support propagation."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Prune angle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Controls how aggressively short or unsupported Lightning branches are "
|
||||||
|
"pruned.\n"
|
||||||
|
"This angle is converted internally to a per-layer distance."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Straightening angle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Maximum straightening angle used to simplify Lightning branches."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Sparse infill anchor length"
|
msgid "Sparse infill anchor length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -13314,8 +13528,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -13433,10 +13647,10 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "layer"
|
msgid "layer"
|
||||||
@@ -14061,7 +14275,9 @@ msgstr ""
|
|||||||
msgid "Probing exclude area of clumping."
|
msgid "Probing exclude area of clumping."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Filament to print internal sparse infill."
|
msgid ""
|
||||||
|
"Filament to print internal sparse infill.\n"
|
||||||
|
"\"Default\" uses the active object/part filament."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -14761,7 +14977,20 @@ msgid ""
|
|||||||
"speed to print. For 100%% overhang, bridge speed is used."
|
"speed to print. For 100%% overhang, bridge speed is used."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Filament to print walls."
|
msgid "Outer walls"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Filament to print outer walls.\n"
|
||||||
|
"\"Default\" uses the active object/part filament."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Inner walls"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Filament to print inner walls.\n"
|
||||||
|
"\"Default\" uses the active object/part filament."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -15177,8 +15406,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"g. if a wipe action is executed immediately following an outer wall "
|
||||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -15313,10 +15542,19 @@ msgid ""
|
|||||||
"internal solid infill."
|
"internal solid infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Solid infill"
|
msgid ""
|
||||||
|
"Filament to print internal solid infill.\n"
|
||||||
|
"\"Default\" uses the active object/part filament."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Filament to print solid infill."
|
msgid ""
|
||||||
|
"Filament to print top surface.\n"
|
||||||
|
"\"Default\" uses the active object/part filament."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Filament to print bottom surface.\n"
|
||||||
|
"\"Default\" uses the active object/part filament."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -15622,8 +15860,9 @@ msgid "Support/raft base"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Filament to print support base and raft. \"Default\" means no specific "
|
"Filament to print support base and raft.\n"
|
||||||
"filament for support and current filament is used."
|
"\"Default\" means no specific filament for support and current filament is "
|
||||||
|
"used."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Avoid interface filament for base"
|
msgid "Avoid interface filament for base"
|
||||||
@@ -15649,8 +15888,9 @@ msgid "Support/raft interface"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Filament to print support interface. \"Default\" means no specific filament "
|
"Filament to print support interface.\n"
|
||||||
"for support interface and current filament is used."
|
"\"Default\" means no specific filament for support interface and current "
|
||||||
|
"filament is used."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Top interface layers"
|
msgid "Top interface layers"
|
||||||
@@ -15913,8 +16153,8 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" which sets the chamber temperature and waits until it is reached. In "
|
||||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -16459,6 +16699,9 @@ msgstr ""
|
|||||||
msgid "Invalid value when spiral vase mode is enabled: "
|
msgid "Invalid value when spiral vase mode is enabled: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bridge line width must not exceed nozzle diameter: "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "too large line width "
|
msgid "too large line width "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -16697,8 +16940,14 @@ msgid "Debug level"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Log file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Redirects debug logging to file.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable timelapse for print"
|
msgid "Enable timelapse for print"
|
||||||
@@ -17109,9 +17358,6 @@ msgstr ""
|
|||||||
msgid "Generating infill toolpath"
|
msgid "Generating infill toolpath"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Z contouring"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Detect overhangs for auto-lift"
|
msgid "Detect overhangs for auto-lift"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17998,6 +18244,15 @@ msgstr ""
|
|||||||
msgid "Top Surface Pattern"
|
msgid "Top Surface Pattern"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Choose a slot for the selected color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Material in the material station"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Only materials of the same type can be selected."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Send G-code to printer host"
|
msgid "Send G-code to printer host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18020,6 +18275,48 @@ msgstr ""
|
|||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Leveling before print"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Time-lapse"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Enable IFS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, possible-c-format, possible-boost-format
|
||||||
|
msgid "Detected %d IFS slots on printer."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "This printer does not report a material station."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Unable to read IFS slots from printer."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Loading IFS slots from printer..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Slice the plate first to get project material information."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"This plate uses multiple materials. Enable IFS and assign each tool to a "
|
||||||
|
"printer slot."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Each project material must be assigned to an IFS slot before printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Each project material must be assigned to a loaded IFS slot before printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Each project material must match the material loaded in the selected IFS "
|
||||||
|
"slot."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Print host upload queue"
|
msgid "Print host upload queue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18062,9 +18359,6 @@ msgid ""
|
|||||||
"starting the print."
|
"starting the print."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Time-lapse"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Heated Bed Leveling"
|
msgid "Heated Bed Leveling"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18074,6 +18368,16 @@ msgstr ""
|
|||||||
msgid "Smooth Build Plate (Side B)"
|
msgid "Smooth Build Plate (Side B)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, possible-c-format, possible-boost-format
|
||||||
|
msgid "Printer: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calibrate before printing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Filament Mapping:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Unable to perform boolean operation on selected parts"
|
msgid "Unable to perform boolean operation on selected parts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18244,8 +18548,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18676,9 +18980,18 @@ msgid ""
|
|||||||
"agents are registered at startup."
|
"agents are registered at startup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Select a Flashforge printer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Discovered Printers"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Could not get a valid Printer Host reference"
|
msgid "Could not get a valid Printer Host reference"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Success!"
|
msgid "Success!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18719,6 +19032,30 @@ msgstr ""
|
|||||||
msgid "Connection to printers connected via the print host failed."
|
msgid "Connection to printers connected via the print host failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3DPrinterOS Cloud upload options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Single file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project File"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Printer type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Printer type not found, please select manually."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Authorizing..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Error session check"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#, possible-c-format, possible-boost-format
|
#, possible-c-format, possible-boost-format
|
||||||
msgid "Mismatched type of print host: %s"
|
msgid "Mismatched type of print host: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -19335,12 +19672,27 @@ msgstr ""
|
|||||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Flashforge returned an invalid JSON response."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "No Flashforge printers were discovered on the local network."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Connected to Flashforge local API successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Serial connection to Flashforge is working correctly."
|
msgid "Serial connection to Flashforge is working correctly."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Could not connect to Flashforge local API"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Could not connect to Flashforge via serial"
|
msgid "Could not connect to Flashforge via serial"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Flashforge local API requires both serial number and access code."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The provided state is not correct."
|
msgid "The provided state is not correct."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Orca Slicer\n"
|
"Project-Id-Version: Orca Slicer\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2026-05-22 02:24+0800\n"
|
"POT-Creation-Date: 2026-06-08 00:18+0800\n"
|
||||||
"PO-Revision-Date: 2025-05-18 09:32-0300\n"
|
"PO-Revision-Date: 2025-05-18 09:32-0300\n"
|
||||||
"Last-Translator: Alexandre Folle de Menezes\n"
|
"Last-Translator: Alexandre Folle de Menezes\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
@@ -1771,6 +1771,17 @@ msgstr ""
|
|||||||
msgid "User logged out"
|
msgid "User logged out"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"You are currently in Stealth Mode. To log into the Cloud, you need to "
|
||||||
|
"disable Stealth Mode first."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Stealth Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Quit Stealth Mode"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "new or open project file is not allowed during the slicing process!"
|
msgid "new or open project file is not allowed during the slicing process!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -1782,21 +1793,24 @@ msgid ""
|
|||||||
"version before it can be used normally."
|
"version before it can be used normally."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to connect to OrcaCloud.\n"
|
"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
|
||||||
"Please check your network connectivity\n"
|
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||||
"(HTTP %u): %s"
|
"preset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Failed to connect to OrcaCloud.\n"
|
"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
|
||||||
"Please check your network connectivity\n"
|
"Pull downloads the cloud copy. Force push overwrites it with your local "
|
||||||
"(HTTP %u)"
|
"preset."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Cloud Error"
|
msgid ""
|
||||||
|
"Force push will overwrite the cloud copy with your local preset changes.\n"
|
||||||
|
"Do you want to continue?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Resolve cloud sync conflict"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Retrieving printer information, please try again later."
|
msgid "Retrieving printer information, please try again later."
|
||||||
@@ -1839,7 +1853,7 @@ msgid "Privacy Policy Update"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "your Bambu Cloud profile (user ID: \"%s\")"
|
msgid "your Orca Cloud profile (user ID: \"%s\")"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "your default profile"
|
msgid "your default profile"
|
||||||
@@ -2085,6 +2099,9 @@ msgstr ""
|
|||||||
msgid "Orca Cube"
|
msgid "Orca Cube"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "OrcaSliced Combo"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Orca Tolerance Test"
|
msgid "Orca Tolerance Test"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5184,6 +5201,9 @@ msgstr ""
|
|||||||
msgid "Outline"
|
msgid "Outline"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Realistic View"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Perspective"
|
msgid "Perspective"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -5226,7 +5246,7 @@ msgstr ""
|
|||||||
msgid "Size:"
|
msgid "Size:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, boost-format
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
|
||||||
"separate the conflicted objects farther (%s <-> %s)."
|
"separate the conflicted objects farther (%s <-> %s)."
|
||||||
@@ -5464,15 +5484,18 @@ msgstr ""
|
|||||||
msgid "Show Configuration Folder"
|
msgid "Show Configuration Folder"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Troubleshoot Center"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Open Network Test"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Show Tip of the Day"
|
msgid "Show Tip of the Day"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Check for Updates"
|
msgid "Check for Updates"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Open Network Test"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "&About %s"
|
msgid "&About %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -6744,6 +6767,12 @@ msgstr ""
|
|||||||
msgid "Model file downloaded."
|
msgid "Model file downloaded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Pull"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Force push"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Shared profiles may be available for this printer."
|
msgid "Shared profiles may be available for this printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -7689,6 +7718,12 @@ msgid ""
|
|||||||
"will be exported."
|
"will be exported."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Flashforge host is not available."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Unable to log in to the Flashforge printer."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Is the printer ready? Is the print sheet in place, empty and clean?"
|
msgid "Is the printer ready? Is the print sheet in place, empty and clean?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -8197,6 +8232,24 @@ msgstr ""
|
|||||||
msgid "Graphics"
|
msgid "Graphics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Phong shading"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Uses Phong shading inside realistic view."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "SSAO ambient occlusion"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Applies SSAO in realistic view."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Shadows"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Renders cast shadows on the plate in realistic view."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Anti-aliasing"
|
msgid "Anti-aliasing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -8254,9 +8307,16 @@ msgid "Stealth mode"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
|
"This disables all cloud features, including Orca Cloud profile syncing. "
|
||||||
"the transmission of data to Bambu's cloud services too. Users who don't use "
|
"Users who prefer to work entirely offline can enable this option.\n"
|
||||||
"BBL machines or use LAN mode only can safely turn on this function."
|
"Note: When Stealth Mode is enabled, your user profiles will not be backed up "
|
||||||
|
"to Orca Cloud."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Hide login side panel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Hide the login side panel on the home page."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Network test"
|
msgid "Network test"
|
||||||
@@ -8402,6 +8462,14 @@ msgid ""
|
|||||||
"Highly experimental! Slow and may create artifact."
|
"Highly experimental! Slow and may create artifact."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Show unsupported presets"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Show incompatible/unsupported presets in the printer and filament dropdown "
|
||||||
|
"lists. These presets cannot be selected."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Allow Abnormal Storage"
|
msgid "Allow Abnormal Storage"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9372,8 +9440,8 @@ msgstr ""
|
|||||||
msgid ""
|
msgid ""
|
||||||
"When recording timelapse without toolhead, it is recommended to add a "
|
"When recording timelapse without toolhead, it is recommended to add a "
|
||||||
"\"Timelapse Wipe Tower\" \n"
|
"\"Timelapse Wipe Tower\" \n"
|
||||||
"by right-click the empty position of build plate and choose \"Add "
|
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
"\"->\"Timelapse Wipe Tower\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -9451,6 +9519,9 @@ msgstr ""
|
|||||||
msgid "Precision"
|
msgid "Precision"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Z contouring"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Wall generator"
|
msgid "Wall generator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -9836,13 +9907,11 @@ msgid "Retraction when switching material"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The Wipe option is not available when using the Firmware Retraction mode.\n"
|
"The Retract before wipe option could be only 100% when using the Firmware "
|
||||||
|
"Retraction mode.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Shall I disable it in order to enable Firmware Retraction?"
|
"Shall I set it to 100% in order to enable Firmware Retraction?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"The Wipe option is not available when using the Firmware Retraction mode.\n"
|
|
||||||
"\n"
|
|
||||||
"Disable it in order to enable Firmware Retraction?"
|
|
||||||
|
|
||||||
msgid "Firmware Retraction"
|
msgid "Firmware Retraction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -11346,6 +11415,19 @@ msgstr ""
|
|||||||
msgid "Layer height cannot exceed nozzle diameter."
|
msgid "Layer height cannot exceed nozzle diameter."
|
||||||
msgstr "Layer height cannot exceed nozzle diameter."
|
msgstr "Layer height cannot exceed nozzle diameter."
|
||||||
|
|
||||||
|
msgid "Bridge line width must not exceed nozzle diameter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"\"G92 E0\" was found in before_layer_change_gcode, but the G or E are not "
|
||||||
|
"uppercase. Please change them to the exact uppercase \"G92 E0\"."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"\"G92 E0\" was found in layer_change_gcode, but the G or E are not "
|
||||||
|
"uppercase. Please change them to the exact uppercase \"G92 E0\"."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Relative extruder addressing requires resetting the extruder position at "
|
"Relative extruder addressing requires resetting the extruder position at "
|
||||||
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
|
||||||
@@ -11353,13 +11435,13 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
|
"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
|
||||||
"absolute extruder addressing."
|
"with absolute extruder addressing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
|
"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
|
||||||
"extruder addressing."
|
"absolute extruder addressing."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
@@ -11437,6 +11519,31 @@ msgstr ""
|
|||||||
msgid "Extruder printable area"
|
msgid "Extruder printable area"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Support parallel printheads"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Enable printer settings for machines that can use multiple printheads in "
|
||||||
|
"parallel."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Parallel printheads count"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Set the number of parallel printheads for machines like OrangeStorm Giga "
|
||||||
|
"printer."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Parallel printheads bed exclude areas"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Ordered list of bed exclude areas by parallel printhead count. Item 1 "
|
||||||
|
"applies to one printhead, item 2 to two printheads, and so on. Leave an item "
|
||||||
|
"empty for no excluded area."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Bed exclude area"
|
msgid "Bed exclude area"
|
||||||
msgstr "Excluded bed area"
|
msgstr "Excluded bed area"
|
||||||
|
|
||||||
@@ -11552,6 +11659,12 @@ msgid ""
|
|||||||
"contain the API Key or the password required for authentication."
|
"contain the API Key or the password required for authentication."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Serial Number"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Flashforge local API requires the printer serial number."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Name of the printer."
|
msgid "Name of the printer."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -11843,24 +11956,42 @@ msgstr ""
|
|||||||
|
|
||||||
#, no-c-format, no-boost-format
|
#, no-c-format, no-boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Bridging angle override. If left to zero, the bridging angle will be "
|
"External Bridging angle override.\n"
|
||||||
"calculated automatically. Otherwise the provided angle will be used for "
|
"If left to zero, the bridging angle will be calculated automatically for "
|
||||||
"external bridges. Use 180° for zero angle."
|
"each specific bridge.\n"
|
||||||
|
"Otherwise the provided angle will be used according to:\n"
|
||||||
|
" - The absolute coordinates\n"
|
||||||
|
" - The absolute coordinates + Model rotation: If Align infill direction to "
|
||||||
|
"model is enabled\n"
|
||||||
|
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is "
|
||||||
|
"enabled\n"
|
||||||
|
"\n"
|
||||||
|
"Use 180° for zero absolute angle."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bridging angle override. 0 means the bridging angle will be calculated "
|
|
||||||
"automatically. Otherwise the provided angle will be used for external "
|
|
||||||
"bridges. Use 180° for zero angle."
|
|
||||||
|
|
||||||
msgid "Internal bridge infill direction"
|
msgid "Internal bridge infill direction"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Internal bridging angle override. If left to zero, the bridging angle will "
|
"Internal Bridging angle override.\n"
|
||||||
"be calculated automatically. Otherwise the provided angle will be used for "
|
"If left to zero, the bridging angle will be calculated automatically for "
|
||||||
"internal bridges. Use 180° for zero angle.\n"
|
"each specific bridge.\n"
|
||||||
|
"Otherwise the provided angle will be used according to:\n"
|
||||||
|
" - The absolute coordinates\n"
|
||||||
|
" - The absolute coordinates + Model rotation: If Align infill direction to "
|
||||||
|
"model is enabled\n"
|
||||||
|
" - The optimal automatic angle + this value: If 'Relative Bridge Angle' is "
|
||||||
|
"enabled\n"
|
||||||
"\n"
|
"\n"
|
||||||
"It is recommended to leave it at 0 unless there is a specific model need not "
|
"Use 180° for zero absolute angle."
|
||||||
"to."
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Relative bridge angle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"When enabled, the bridge angle values are added to the automatically "
|
||||||
|
"calculated bridge direction instead of overriding it."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "External bridge density"
|
msgid "External bridge density"
|
||||||
@@ -11868,54 +11999,90 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
|
||||||
|
"Theoretically, 100% means a solid bridge, but due to the tendency of bridge "
|
||||||
|
"extrusions to sag, 100% may not be sufficient.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Lower density external bridges can help improve reliability as there is more "
|
"- Higher than 100% density (Recommended Max 125%):\n"
|
||||||
"space for air to circulate around the extruded bridge, improving its cooling "
|
" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
|
||||||
"speed. Minimum is 10%.\n"
|
"additional support during printing.\n"
|
||||||
|
" - Cons: Can cause overextrusion, which may reduce lower and upper surface "
|
||||||
|
"quality and increase the risk of warping.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Higher densities can produce smoother bridge surfaces, as overlapping lines "
|
"- Lower than 100% density (Min 10%):\n"
|
||||||
"provide additional support during printing. Maximum is 120%.\n"
|
" - Pros: Can create a string-like first layer. Faster and with better "
|
||||||
"Note: Bridge density that is too high can cause warping or overextrusion."
|
"cooling because there is more space for air to circulate around the extruded "
|
||||||
|
"bridge.\n"
|
||||||
|
" - Cons: May lead to sagging and poorer surface finish.\n"
|
||||||
|
"\n"
|
||||||
|
"Recommended range: Minimum 10% - Maximum 125%."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Internal bridge density"
|
msgid "Internal bridge density"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Controls the density (spacing) of internal bridge lines. 100% means solid "
|
"Controls the density (spacing) of internal bridge lines. Default is 100%. "
|
||||||
"bridge. Default is 100%.\n"
|
"100% means a solid internal bridge.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Lower density internal bridges can help reduce top surface pillowing and "
|
"Internal bridges act as intermediate support between sparse infill and top "
|
||||||
"improve internal bridge reliability as there is more space for air to "
|
"solid infill and can strongly affect top surface quality.\n"
|
||||||
"circulate around the extruded bridge, improving its cooling speed.\n"
|
"\n"
|
||||||
|
"- Higher than 100% density (Recommended Max 125%):\n"
|
||||||
|
" - Pros: Improves internal bridge strength and support under top layers, "
|
||||||
|
"reducing sagging and improving top-surface finish.\n"
|
||||||
|
" - Cons: Increases material use and print time; excessive density may cause "
|
||||||
|
"overextrusion and internal stresses.\n"
|
||||||
|
"\n"
|
||||||
|
"- Lower than 100% density (Min 10%):\n"
|
||||||
|
" - Pros: Can reduce pillowing and improve cooling (more airflow through the "
|
||||||
|
"bridge), and may speed up printing.\n"
|
||||||
|
" - Cons: May reduce internal support, increasing the risk of sagging and "
|
||||||
|
"top surface defects.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"This option works particularly well when combined with the second internal "
|
"This option works particularly well when combined with the second internal "
|
||||||
"bridge over infill option, further improving internal bridging structure "
|
"bridge over infill option to improve bridging further before solid infill is "
|
||||||
"before solid infill is extruded."
|
"extruded."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Bridge flow ratio"
|
msgid "Bridge flow ratio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Decrease this value slightly (for example 0.9) to reduce the amount of "
|
"This value governs the thickness of the external (visible) bridge layer.\n"
|
||||||
"material for bridge, to improve sag.\n"
|
"Values above 1.0: Increase the amount of material while maintaining line "
|
||||||
|
"spacing. This can improve line contact and strength.\n"
|
||||||
|
"Values below 1.0: Reduce the amount of material while adjusting line spacing "
|
||||||
|
"to maintain contact. This can improve sagging.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"The actual bridge flow used is calculated by multiplying this value with the "
|
"The actual bridge flow used is calculated by multiplying this value with the "
|
||||||
"filament flow ratio, and if set, the object's flow ratio."
|
"filament flow ratio, and if set, the object's flow ratio."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid ""
|
||||||
|
"Bridge line width is expressed either as an absolute value or as a "
|
||||||
|
"percentage of the active nozzle diameter (percentages are computed from the "
|
||||||
|
"nozzle diameter).\n"
|
||||||
|
"Recommended to use with a higher Bridge density or Bridge flow ratio.\n"
|
||||||
|
"\n"
|
||||||
|
"The maximum value is 100% or the nozzle diameter.\n"
|
||||||
|
"If set to 0, the line width will match the Internal solid infill width."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Internal bridge flow ratio"
|
msgid "Internal bridge flow ratio"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"This value governs the thickness of the internal bridge layer. This is the "
|
"This value governs the thickness of the internal bridge layer. This is the "
|
||||||
"first layer over sparse infill. Decrease this value slightly (for example "
|
"first layer over sparse infill so increasing it may increase strength and "
|
||||||
"0.9) to improve surface quality over sparse infill.\n"
|
"upper layer quality.\n"
|
||||||
|
"Values above 1.0: Increase the amount of material while maintaining line "
|
||||||
|
"spacing. This can improve line contact and strength.\n"
|
||||||
|
"Values below 1.0: Reduce the amount of material while adjusting line spacing "
|
||||||
|
"to maintain contact. This can improve sagging.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"The actual internal bridge flow used is calculated by multiplying this value "
|
"The actual bridge flow used is calculated by multiplying this value with the "
|
||||||
"with the bridge flow ratio, the filament flow ratio, and if set, the "
|
"filament flow ratio, and if set, the object's flow ratio."
|
||||||
"object's flow ratio."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Top surface flow ratio"
|
msgid "Top surface flow ratio"
|
||||||
@@ -12163,22 +12330,34 @@ msgstr ""
|
|||||||
#, no-c-format, no-boost-format
|
#, no-c-format, no-boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option to slow down printing in areas where perimeters may have "
|
"Enable this option to slow down printing in areas where perimeters may have "
|
||||||
"curled upwards. For example, additional slowdown will be applied when "
|
"curled upwards.\n"
|
||||||
"printing overhangs on sharp corners like the front of the Benchy hull, "
|
"For example, additional slowdown will be applied when printing overhangs on "
|
||||||
"reducing curling which compounds over multiple layers.\n"
|
"sharp corners like the front of the Benchy hull, reducing curling which "
|
||||||
|
"compounds over multiple layers.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"It is generally recommended to have this option switched on unless your "
|
"It is generally recommended to have this option switched on unless your "
|
||||||
"printer cooling is powerful enough or the print speed slow enough that "
|
"printer cooling is powerful enough or the print speed is slow enough that "
|
||||||
"perimeter curling does not happen. If printing with a high external "
|
"perimeter curling does not happen. \n"
|
||||||
"perimeter speed, this parameter may introduce slight artifacts when slowing "
|
"If printing with a high external perimeter speed, this parameter may "
|
||||||
"down due to the large variance in print speeds. If you notice artifacts, "
|
"introduce wall artifacts when slowing down, due to the potentially large "
|
||||||
"ensure your pressure advance is tuned correctly.\n"
|
"variance in print speeds causing the extruder to be unable to keep up with "
|
||||||
|
"the requested flow change.\n"
|
||||||
|
"Root cause of these artifacts is most likely PA tuning being slightly off, "
|
||||||
|
"especially when combined with a high PA smooth time.\n"
|
||||||
|
"\n"
|
||||||
|
"Recommendations when enabling this option:\n"
|
||||||
|
"1. Reduce Pressure Advance smooth time to 0.015 - 0.02 so the extruder "
|
||||||
|
"reacts quickly to the speed changes.\n"
|
||||||
|
"2. Increase the minimum print speeds to limit the magnitude of the slowdown "
|
||||||
|
"and reduce the variance between fast and slow segments.\n"
|
||||||
|
"3. If artifacts still appear, enable Extrusion Rate Smoothing (ERS) to "
|
||||||
|
"further smooth the flow transitions.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Note: When this option is enabled, overhang perimeters are treated like "
|
"Note: When this option is enabled, overhang perimeters are treated like "
|
||||||
"overhangs, meaning the overhang speed is applied even if the overhanging "
|
"overhangs, meaning the overhang speed is applied even if the overhanging "
|
||||||
"perimeter is part of a bridge. For example, when the perimeters are 100% "
|
"perimeter is part of a bridge.\n"
|
||||||
"overhanging, with no wall supporting them from underneath, the 100% overhang "
|
"For example, when the perimeters are 100% overhanging, with no wall "
|
||||||
"speed will be applied."
|
"supporting them from underneath, the 100% overhang speed will be applied."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "mm/s or %"
|
msgid "mm/s or %"
|
||||||
@@ -12424,21 +12603,24 @@ msgid "Thick external bridges"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"If enabled, bridges are more reliable, can bridge longer distances, but may "
|
"If enabled, bridge extrusion uses a line height equal to the nozzle "
|
||||||
"look worse. If disabled, bridges look better but are reliable just for "
|
"diameter.\n"
|
||||||
"shorter bridged distances."
|
"This increases bridge strength and reliability, allowing longer spans, but "
|
||||||
|
"may worsen appearance.\n"
|
||||||
|
"If disabled, bridges may look better but are generally reliable only for "
|
||||||
|
"shorter spans."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"If enabled, bridges are more reliable and can bridge longer distances but "
|
|
||||||
"may look worse. If disabled, bridges look better but are reliable only for "
|
|
||||||
"shorter distances."
|
|
||||||
|
|
||||||
msgid "Thick internal bridges"
|
msgid "Thick internal bridges"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"If enabled, thick internal bridges will be used. It's usually recommended to "
|
"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
|
||||||
"have this feature turned on. However, consider turning it off if you are "
|
"diameter.\n"
|
||||||
"using large nozzles."
|
"This increases internal bridge strength and reliability when printed over "
|
||||||
|
"sparse infill, but may worsen appearance.\n"
|
||||||
|
"If disabled, internal bridges may look better but can be less reliable over "
|
||||||
|
"sparse infill."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Extra bridge layers (beta)"
|
msgid "Extra bridge layers (beta)"
|
||||||
@@ -13399,9 +13581,10 @@ msgid "Align infill direction to model"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Aligns infill and surface fill directions to follow the model's orientation "
|
"Aligns infill, bridge, ironing and surface fill directions to follow the "
|
||||||
"on the build plate. When enabled, fill directions rotate with the model to "
|
"model's orientation on the build plate.\n"
|
||||||
"maintain optimal strength characteristics."
|
"When enabled, directions rotate with the model to maintain optimal strength "
|
||||||
|
"characteristics."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Insert solid layers"
|
msgid "Insert solid layers"
|
||||||
@@ -13424,6 +13607,7 @@ msgstr ""
|
|||||||
msgid "Z-buckling bias optimization (experimental)"
|
msgid "Z-buckling bias optimization (experimental)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
|
||||||
"to shorten the effective vertical column length and improve Z-axis "
|
"to shorten the effective vertical column length and improve Z-axis "
|
||||||
@@ -13518,6 +13702,27 @@ msgid ""
|
|||||||
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
|
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Lightning overhang angle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Maximum overhang angle for Lightning infill support propagation."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Prune angle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Controls how aggressively short or unsupported Lightning branches are "
|
||||||
|
"pruned.\n"
|
||||||
|
"This angle is converted internally to a per-layer distance."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Straightening angle"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Maximum straightening angle used to simplify Lightning branches."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Sparse infill anchor length"
|
msgid "Sparse infill anchor length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -13584,8 +13789,8 @@ msgid "mm/s² or %"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Acceleration of sparse infill. If the value is expressed as a percentage "
|
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
|
||||||
"(e.g. 100%), it will be calculated based on the default acceleration."
|
"g. 100%), it will be calculated based on the default acceleration."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -13710,10 +13915,10 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Fan speed will be ramped up linearly from zero at layer "
|
"Fan speed will be ramped up linearly from zero at layer "
|
||||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "layer"
|
msgid "layer"
|
||||||
@@ -14353,8 +14558,10 @@ msgstr ""
|
|||||||
msgid "Probing exclude area of clumping."
|
msgid "Probing exclude area of clumping."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Filament to print internal sparse infill."
|
msgid ""
|
||||||
msgstr "This is the filament for printing internal sparse infill."
|
"Filament to print internal sparse infill.\n"
|
||||||
|
"\"Default\" uses the active object/part filament."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Line width of internal sparse infill. If expressed as a %, it will be "
|
"Line width of internal sparse infill. If expressed as a %, it will be "
|
||||||
@@ -15074,7 +15281,20 @@ msgstr ""
|
|||||||
"This detects the overhang percentage relative to line width and uses a "
|
"This detects the overhang percentage relative to line width and uses a "
|
||||||
"different speed to print. For 100%% overhang, bridging speed is used."
|
"different speed to print. For 100%% overhang, bridging speed is used."
|
||||||
|
|
||||||
msgid "Filament to print walls."
|
msgid "Outer walls"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Filament to print outer walls.\n"
|
||||||
|
"\"Default\" uses the active object/part filament."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Inner walls"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Filament to print inner walls.\n"
|
||||||
|
"\"Default\" uses the active object/part filament."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -15501,8 +15721,8 @@ msgid "Role base wipe speed"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"The wipe speed is determined by the speed of the current extrusion role. "
|
"The wipe speed is determined by the speed of the current extrusion role. e."
|
||||||
"e.g. if a wipe action is executed immediately following an outer wall "
|
"g. if a wipe action is executed immediately following an outer wall "
|
||||||
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
"extrusion, the speed of the outer wall extrusion will be utilized for the "
|
||||||
"wipe action."
|
"wipe action."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -15640,10 +15860,19 @@ msgstr ""
|
|||||||
"Sparse infill areas which are smaller than this threshold value are replaced "
|
"Sparse infill areas which are smaller than this threshold value are replaced "
|
||||||
"by internal solid infill."
|
"by internal solid infill."
|
||||||
|
|
||||||
msgid "Solid infill"
|
msgid ""
|
||||||
|
"Filament to print internal solid infill.\n"
|
||||||
|
"\"Default\" uses the active object/part filament."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Filament to print solid infill."
|
msgid ""
|
||||||
|
"Filament to print top surface.\n"
|
||||||
|
"\"Default\" uses the active object/part filament."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Filament to print bottom surface.\n"
|
||||||
|
"\"Default\" uses the active object/part filament."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -15965,11 +16194,10 @@ msgid "Support/raft base"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Filament to print support base and raft. \"Default\" means no specific "
|
"Filament to print support base and raft.\n"
|
||||||
"filament for support and current filament is used."
|
"\"Default\" means no specific filament for support and current filament is "
|
||||||
|
"used."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Filament to print support bases and rafts. \"Default\" means no specific "
|
|
||||||
"filament for support, and current filament is used"
|
|
||||||
|
|
||||||
msgid "Avoid interface filament for base"
|
msgid "Avoid interface filament for base"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -15996,11 +16224,10 @@ msgid "Support/raft interface"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Filament to print support interface. \"Default\" means no specific filament "
|
"Filament to print support interface.\n"
|
||||||
"for support interface and current filament is used."
|
"\"Default\" means no specific filament for support interface and current "
|
||||||
|
"filament is used."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Filament to print support interfaces. \"Default\" means no specific filament "
|
|
||||||
"for support interface, and current filament is used"
|
|
||||||
|
|
||||||
msgid "Top interface layers"
|
msgid "Top interface layers"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -16271,8 +16498,8 @@ msgstr ""
|
|||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enable this option for automated chamber temperature control. This option "
|
"Enable this option for automated chamber temperature control. This option "
|
||||||
"activates the emitting of an M191 command before the "
|
"activates the emitting of an M191 command before the \"machine_start_gcode"
|
||||||
"\"machine_start_gcode\"\n"
|
"\"\n"
|
||||||
" which sets the chamber temperature and waits until it is reached. In "
|
" which sets the chamber temperature and waits until it is reached. In "
|
||||||
"addition, it emits an M141 command at the end of the print to turn off the "
|
"addition, it emits an M141 command at the end of the print to turn off the "
|
||||||
"chamber heater, if present.\n"
|
"chamber heater, if present.\n"
|
||||||
@@ -16857,6 +17084,9 @@ msgstr ""
|
|||||||
msgid "Invalid value when spiral vase mode is enabled: "
|
msgid "Invalid value when spiral vase mode is enabled: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Bridge line width must not exceed nozzle diameter: "
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "too large line width "
|
msgid "too large line width "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -17097,8 +17327,14 @@ msgid "Debug level"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
|
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
|
||||||
"5:trace\n"
|
"trace\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Log file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Redirects debug logging to file.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Enable timelapse for print"
|
msgid "Enable timelapse for print"
|
||||||
@@ -17509,9 +17745,6 @@ msgstr ""
|
|||||||
msgid "Generating infill toolpath"
|
msgid "Generating infill toolpath"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Z contouring"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Detect overhangs for auto-lift"
|
msgid "Detect overhangs for auto-lift"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18425,6 +18658,15 @@ msgstr ""
|
|||||||
msgid "Top Surface Pattern"
|
msgid "Top Surface Pattern"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Choose a slot for the selected color"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Material in the material station"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Only materials of the same type can be selected."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Send G-code to printer host"
|
msgid "Send G-code to printer host"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18447,6 +18689,48 @@ msgstr ""
|
|||||||
msgid "Upload"
|
msgid "Upload"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Leveling before print"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Time-lapse"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Enable IFS"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Detected %d IFS slots on printer."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "This printer does not report a material station."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Unable to read IFS slots from printer."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Loading IFS slots from printer..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Slice the plate first to get project material information."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"This plate uses multiple materials. Enable IFS and assign each tool to a "
|
||||||
|
"printer slot."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Each project material must be assigned to an IFS slot before printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Each project material must be assigned to a loaded IFS slot before printing."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid ""
|
||||||
|
"Each project material must match the material loaded in the selected IFS "
|
||||||
|
"slot."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Print host upload queue"
|
msgid "Print host upload queue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18489,9 +18773,6 @@ msgid ""
|
|||||||
"starting the print."
|
"starting the print."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Time-lapse"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgid "Heated Bed Leveling"
|
msgid "Heated Bed Leveling"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18501,6 +18782,16 @@ msgstr ""
|
|||||||
msgid "Smooth Build Plate (Side B)"
|
msgid "Smooth Build Plate (Side B)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#, c-format, boost-format
|
||||||
|
msgid "Printer: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Calibrate before printing"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Filament Mapping:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Unable to perform boolean operation on selected parts"
|
msgid "Unable to perform boolean operation on selected parts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -18676,8 +18967,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||||
"selected\".\n"
|
"\".\n"
|
||||||
"To add preset for more printers, please go to printer selection"
|
"To add preset for more printers, please go to printer selection"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19132,9 +19423,18 @@ msgid ""
|
|||||||
"agents are registered at startup."
|
"agents are registered at startup."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Select a Flashforge printer"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Discovered Printers"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Could not get a valid Printer Host reference"
|
msgid "Could not get a valid Printer Host reference"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Success!"
|
msgid "Success!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -19175,6 +19475,30 @@ msgstr ""
|
|||||||
msgid "Connection to printers connected via the print host failed."
|
msgid "Connection to printers connected via the print host failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "3DPrinterOS Cloud upload options"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Single file"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project File"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Project:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Printer type:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Printer type not found, please select manually."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Authorizing..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Error session check"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#, c-format, boost-format
|
#, c-format, boost-format
|
||||||
msgid "Mismatched type of print host: %s"
|
msgid "Mismatched type of print host: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
@@ -19792,12 +20116,27 @@ msgstr ""
|
|||||||
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Flashforge returned an invalid JSON response."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "No Flashforge printers were discovered on the local network."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Connected to Flashforge local API successfully."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Serial connection to Flashforge is working correctly."
|
msgid "Serial connection to Flashforge is working correctly."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Could not connect to Flashforge local API"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "Could not connect to Flashforge via serial"
|
msgid "Could not connect to Flashforge via serial"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Flashforge local API requires both serial number and access code."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgid "The provided state is not correct."
|
msgid "The provided state is not correct."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -20320,6 +20659,53 @@ msgstr ""
|
|||||||
"ABS, appropriately increasing the heatbed temperature can reduce the "
|
"ABS, appropriately increasing the heatbed temperature can reduce the "
|
||||||
"probability of warping?"
|
"probability of warping?"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The Wipe option is not available when using the Firmware Retraction "
|
||||||
|
#~ "mode.\n"
|
||||||
|
#~ "\n"
|
||||||
|
#~ "Shall I disable it in order to enable Firmware Retraction?"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "The Wipe option is not available when using the Firmware Retraction "
|
||||||
|
#~ "mode.\n"
|
||||||
|
#~ "\n"
|
||||||
|
#~ "Disable it in order to enable Firmware Retraction?"
|
||||||
|
|
||||||
|
#, no-c-format, no-boost-format
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Bridging angle override. If left to zero, the bridging angle will be "
|
||||||
|
#~ "calculated automatically. Otherwise the provided angle will be used for "
|
||||||
|
#~ "external bridges. Use 180° for zero angle."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Bridging angle override. 0 means the bridging angle will be calculated "
|
||||||
|
#~ "automatically. Otherwise the provided angle will be used for external "
|
||||||
|
#~ "bridges. Use 180° for zero angle."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "If enabled, bridges are more reliable, can bridge longer distances, but "
|
||||||
|
#~ "may look worse. If disabled, bridges look better but are reliable just "
|
||||||
|
#~ "for shorter bridged distances."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "If enabled, bridges are more reliable and can bridge longer distances but "
|
||||||
|
#~ "may look worse. If disabled, bridges look better but are reliable only "
|
||||||
|
#~ "for shorter distances."
|
||||||
|
|
||||||
|
#~ msgid "Filament to print internal sparse infill."
|
||||||
|
#~ msgstr "This is the filament for printing internal sparse infill."
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Filament to print support base and raft. \"Default\" means no specific "
|
||||||
|
#~ "filament for support and current filament is used."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Filament to print support bases and rafts. \"Default\" means no specific "
|
||||||
|
#~ "filament for support, and current filament is used"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Filament to print support interface. \"Default\" means no specific "
|
||||||
|
#~ "filament for support interface and current filament is used."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Filament to print support interfaces. \"Default\" means no specific "
|
||||||
|
#~ "filament for support interface, and current filament is used"
|
||||||
|
|
||||||
#~ msgid "Object/Part Setting"
|
#~ msgid "Object/Part Setting"
|
||||||
#~ msgstr "Object/part settings"
|
#~ msgstr "Object/part settings"
|
||||||
|
|
||||||
|
|||||||
@@ -218,6 +218,7 @@ src/slic3r/GUI/CreatePresetsDialog.cpp
|
|||||||
src/slic3r/GUI/DailyTips.cpp
|
src/slic3r/GUI/DailyTips.cpp
|
||||||
src/slic3r/Utils/CalibUtils.cpp
|
src/slic3r/Utils/CalibUtils.cpp
|
||||||
src/slic3r/GUI/PhysicalPrinterDialog.cpp
|
src/slic3r/GUI/PhysicalPrinterDialog.cpp
|
||||||
|
src/slic3r/Utils/3DPrinterOS.cpp
|
||||||
src/slic3r/Utils/AstroBox.cpp
|
src/slic3r/Utils/AstroBox.cpp
|
||||||
src/slic3r/Utils/Duet.cpp
|
src/slic3r/Utils/Duet.cpp
|
||||||
src/slic3r/Utils/FlashAir.cpp
|
src/slic3r/Utils/FlashAir.cpp
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="214" height="80" viewBox="0 0 214 80"><g id="b"><g id="c"><rect width="80" height="80" rx="9.57" ry="9.57" style="fill:#949494;"/></g></g><g id="d"><path id="e" d="M17.3,62.94c4.46,4.45,10.59,7.21,17.36,7.24,13.7.06,24.93-11.22,24.87-25-.03-6.81-2.77-12.97-7.2-17.45L17.31,62.94h0Z" style="fill:#292826;"/></g><g id="f"><path id="g" d="M52.32,27.73L17.3,62.94s.05.05.08.07c12.27-6.26,29.08-17.26,40.6-26.43-1.24-3.36-3.19-6.38-5.65-8.87" style="fill:#009789;"/></g><g id="h"><path id="i" d="M45.48,9.82c-13.67,0-24.77,11.15-24.77,24.91,0,6.85,2.75,13.05,7.2,17.56L62.94,17.07c-4.48-4.47-10.65-7.24-17.46-7.24" style="fill:#292826;"/></g><g id="j"><path id="k" d="M45.48,9.82c-4.74,0-9.17,1.34-12.93,3.65-2.02-.53-4.52-.95-7.39-.93-5,.03-9.08,1.39-11.85,2.65-.69.32-.58,1.33.16,1.49,1.82.39,4.22,1.19,6.59,2.95,1.5,1.1,2.64,2.33,3.5,3.48-1.82,3.47-2.85,7.42-2.85,11.61,0,2.5.37,4.92,1.05,7.2,1.04-2.32,2.14-3.87,2.5-4.36,2.27-3.13,4.68-4.76,8.23-7.15,2.62-1.77,6.26-3.84,16.7-8.14,0,0,3.27-.92,7.65-3.53,1.75-1.04,3.08-2.02,3.5-3.56.03-.11.06-.22.08-.32-4.15-3.17-9.33-5.04-14.95-5.04" style="fill:#262523;"/></g><g id="l"><path id="m" d="M49.61,18.19c.9,1.61-.91,4.37-4.06,6.17s-6.44,1.96-7.35.36c-.9-1.61.91-4.37,4.06-6.17,3.15-1.8,6.44-1.96,7.35-.36" style="fill:#949494;"/></g><path d="M142.44,48.1c-1.01,0-1.84.82-1.84,1.84v18.4c0,1.01.82,1.84,1.84,1.84s1.84-.82,1.84-1.84v-18.4c0-1.01-.82-1.84-1.84-1.84ZM190.71,48.1h-4.4c-6.09,0-11.04,4.96-11.04,11.04s4.96,11.04,11.04,11.04h4.4c1.01,0,1.84-.82,1.84-1.84s-.82-1.84-1.84-1.84h-4.4c-4.06,0-7.36-3.3-7.36-7.36s3.3-7.36,7.36-7.36h4.4c1.01,0,1.84-.82,1.84-1.84s-.82-1.84-1.84-1.84v-.02.02ZM190.71,57.31h-5.35c-1.01,0-1.84.82-1.84,1.84s.82,1.84,1.84,1.84h5.35c1.01,0,1.84-.82,1.84-1.84s-.82-1.84-1.84-1.84ZM105.69,70.18h-8.91c-1.01,0-1.83-.82-1.83-1.83s.81-1.83,1.83-1.83h8.91c1.53,0,2.78-1.24,2.78-2.78s-1.24-2.77-2.78-2.77h-4.31c-3.55,0-6.43-2.89-6.43-6.43s2.89-6.43,6.43-6.43h7.29c1.01,0,1.83.82,1.83,1.83s-.81,1.83-1.83,1.83h-7.29c-1.53,0-2.78,1.24-2.78,2.78s1.24,2.77,2.78,2.77h4.31c3.55,0,6.43,2.89,6.43,6.43s-2.89,6.43-6.43,6.43h0ZM165.89,65.28c-1.49.98-3.35,1.44-5.32,1.11-2.99-.51-5.4-2.88-5.96-5.85-.86-4.67,2.71-8.76,7.23-8.76,1.49,0,2.88.45,4.04,1.21.73.49,1.71.41,2.32-.22h0c.81-.81.71-2.17-.25-2.81-2.12-1.42-4.76-2.13-7.56-1.77-4.98.64-8.97,4.69-9.52,9.66-.75,6.65,4.46,12.32,10.96,12.32,2.23,0,4.31-.67,6.05-1.81.98-.65,1.15-2.03.32-2.86h0c-.63-.63-1.59-.71-2.32-.23h.01ZM132.24,66.5h-5.31c-2.53,0-4.6-2.07-4.6-4.6v-11.96c0-1.01-.82-1.84-1.84-1.84s-1.84.82-1.84,1.84v11.96c0,4.57,3.71,8.28,8.28,8.28h5.31c1.01,0,1.84-.82,1.84-1.84s-.82-1.84-1.84-1.84h0ZM211.96,51.79h-1.84c-4.03,0-7.32,3.27-7.36,7.3v9.27c0,1.01-.82,1.84-1.84,1.84s-1.84-.82-1.84-1.84v-9.27c.04-6.06,4.98-10.97,11.03-10.97h1.84c1.01,0,1.84.82,1.84,1.84s-.82,1.84-1.84,1.84h0Z" style="fill:#949494;"/><path d="M109.73,14.37c5.64,0,10.24,4.59,10.24,10.24s-4.59,10.24-10.24,10.24-10.24-4.59-10.24-10.24,4.59-10.24,10.24-10.24M109.73,9.82c-8.16,0-14.79,6.62-14.79,14.79s6.62,14.79,14.79,14.79,14.79-6.62,14.79-14.79-6.62-14.79-14.79-14.79h0ZM211.52,9.82c-1.26,0-2.27,1.02-2.27,2.27v1.86c-2.66-2.55-6.26-4.13-10.24-4.13-8.16,0-14.79,6.62-14.79,14.79s6.62,14.79,14.79,14.79c3.97,0,7.58-1.58,10.24-4.13v1.86c0,1.26,1.02,2.27,2.27,2.27s2.27-1.02,2.27-2.27V12.1c0-1.26-1.02-2.27-2.27-2.27h0ZM199.01,34.85c-5.64,0-10.24-4.59-10.24-10.24s4.59-10.24,10.24-10.24,10.24,4.59,10.24,10.24-4.59,10.24-10.24,10.24ZM148.11,9.82h-2.27c-8.16,0-14.79,6.62-14.79,14.79v12.51c0,1.26,1.02,2.27,2.27,2.27s2.27-1.02,2.27-2.27v-12.51c0-5.64,4.59-10.24,10.24-10.24h2.27c1.26,0,2.27-1.02,2.27-2.27s-1.02-2.27-2.27-2.27h0ZM175.38,33.05c-1.99,1.36-4.47,2.05-7.12,1.71-4.61-.59-8.31-4.35-8.84-8.97-.7-6.18,4.13-11.43,10.17-11.43,2.14,0,4.11.66,5.75,1.77.92.63,2.15.56,2.95-.24h0c1.02-1.02.83-2.7-.36-3.52-2.75-1.89-6.18-2.86-9.84-2.49-6.85.68-12.42,6.17-13.19,13.01-1,8.93,5.97,16.49,14.7,16.49,3.11,0,5.99-.95,8.36-2.59,1.18-.81,1.34-2.49.33-3.51h0c-.78-.78-2-.88-2.91-.26v.02h0Z" style="fill:#009789;"/></svg>
|
||||||
|
After Width: | Height: | Size: 4.0 KiB |
@@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" width="214" height="80" viewBox="0 0 214 80"><g id="b"><g id="c"><rect width="80" height="80" rx="9.57" ry="9.57" style="fill:#e9e9e9;"/></g></g><g id="d"><path id="e" d="M17.3,62.94c4.46,4.45,10.59,7.21,17.36,7.24,13.7.06,24.93-11.22,24.87-25-.03-6.81-2.77-12.97-7.2-17.45L17.31,62.94h0Z" style="fill:#292826;"/></g><g id="f"><path id="g" d="M52.32,27.73L17.3,62.94s.05.05.08.07c12.27-6.26,29.08-17.26,40.6-26.43-1.24-3.36-3.19-6.38-5.65-8.87" style="fill:#009789;"/></g><g id="h"><path id="i" d="M45.48,9.82c-13.67,0-24.77,11.15-24.77,24.91,0,6.85,2.75,13.05,7.2,17.56L62.94,17.07c-4.48-4.47-10.65-7.24-17.46-7.24" style="fill:#292826;"/></g><g id="j"><path id="k" d="M45.48,9.82c-4.74,0-9.17,1.34-12.93,3.65-2.02-.53-4.52-.95-7.39-.93-5,.03-9.08,1.39-11.85,2.65-.69.32-.58,1.33.16,1.49,1.82.39,4.22,1.19,6.59,2.95,1.5,1.1,2.64,2.33,3.5,3.48-1.82,3.47-2.85,7.42-2.85,11.61,0,2.5.37,4.92,1.05,7.2,1.04-2.32,2.14-3.87,2.5-4.36,2.27-3.13,4.68-4.76,8.23-7.15,2.62-1.77,6.26-3.84,16.7-8.14,0,0,3.27-.92,7.65-3.53,1.75-1.04,3.08-2.02,3.5-3.56.03-.11.06-.22.08-.32-4.15-3.17-9.33-5.04-14.95-5.04" style="fill:#262523;"/></g><g id="l"><path id="m" d="M49.61,18.19c.9,1.61-.91,4.37-4.06,6.17s-6.44,1.96-7.35.36c-.9-1.61.91-4.37,4.06-6.17,3.15-1.8,6.44-1.96,7.35-.36" style="fill:#fff;"/></g><path d="M142.44,48.1c-1.01,0-1.84.82-1.84,1.84v18.4c0,1.01.82,1.84,1.84,1.84s1.84-.82,1.84-1.84v-18.4c0-1.01-.82-1.84-1.84-1.84ZM190.71,48.1h-4.4c-6.09,0-11.04,4.96-11.04,11.04s4.96,11.04,11.04,11.04h4.4c1.01,0,1.84-.82,1.84-1.84s-.82-1.84-1.84-1.84h-4.4c-4.06,0-7.36-3.3-7.36-7.36s3.3-7.36,7.36-7.36h4.4c1.01,0,1.84-.82,1.84-1.84s-.82-1.84-1.84-1.84v-.02.02ZM190.71,57.31h-5.35c-1.01,0-1.84.82-1.84,1.84s.82,1.84,1.84,1.84h5.35c1.01,0,1.84-.82,1.84-1.84s-.82-1.84-1.84-1.84ZM105.69,70.18h-8.91c-1.01,0-1.83-.82-1.83-1.83s.81-1.83,1.83-1.83h8.91c1.53,0,2.78-1.24,2.78-2.78s-1.24-2.77-2.78-2.77h-4.31c-3.55,0-6.43-2.89-6.43-6.43s2.89-6.43,6.43-6.43h7.29c1.01,0,1.83.82,1.83,1.83s-.81,1.83-1.83,1.83h-7.29c-1.53,0-2.78,1.24-2.78,2.78s1.24,2.77,2.78,2.77h4.31c3.55,0,6.43,2.89,6.43,6.43s-2.89,6.43-6.43,6.43h0ZM165.89,65.28c-1.49.98-3.35,1.44-5.32,1.11-2.99-.51-5.4-2.88-5.96-5.85-.86-4.67,2.71-8.76,7.23-8.76,1.49,0,2.88.45,4.04,1.21.73.49,1.71.41,2.32-.22h0c.81-.81.71-2.17-.25-2.81-2.12-1.42-4.76-2.13-7.56-1.77-4.98.64-8.97,4.69-9.52,9.66-.75,6.65,4.46,12.32,10.96,12.32,2.23,0,4.31-.67,6.05-1.81.98-.65,1.15-2.03.32-2.86h0c-.63-.63-1.59-.71-2.32-.23h.01ZM132.24,66.5h-5.31c-2.53,0-4.6-2.07-4.6-4.6v-11.96c0-1.01-.82-1.84-1.84-1.84s-1.84.82-1.84,1.84v11.96c0,4.57,3.71,8.28,8.28,8.28h5.31c1.01,0,1.84-.82,1.84-1.84s-.82-1.84-1.84-1.84h0ZM211.96,51.79h-1.84c-4.03,0-7.32,3.27-7.36,7.3v9.27c0,1.01-.82,1.84-1.84,1.84s-1.84-.82-1.84-1.84v-9.27c.04-6.06,4.98-10.97,11.03-10.97h1.84c1.01,0,1.84.82,1.84,1.84s-.82,1.84-1.84,1.84h0Z" style="fill:#949494;"/><path d="M109.73,14.37c5.64,0,10.24,4.59,10.24,10.24s-4.59,10.24-10.24,10.24-10.24-4.59-10.24-10.24,4.59-10.24,10.24-10.24M109.73,9.82c-8.16,0-14.79,6.62-14.79,14.79s6.62,14.79,14.79,14.79,14.79-6.62,14.79-14.79-6.62-14.79-14.79-14.79h0ZM211.52,9.82c-1.26,0-2.27,1.02-2.27,2.27v1.86c-2.66-2.55-6.26-4.13-10.24-4.13-8.16,0-14.79,6.62-14.79,14.79s6.62,14.79,14.79,14.79c3.97,0,7.58-1.58,10.24-4.13v1.86c0,1.26,1.02,2.27,2.27,2.27s2.27-1.02,2.27-2.27V12.1c0-1.26-1.02-2.27-2.27-2.27h0ZM199.01,34.85c-5.64,0-10.24-4.59-10.24-10.24s4.59-10.24,10.24-10.24,10.24,4.59,10.24,10.24-4.59,10.24-10.24,10.24ZM148.11,9.82h-2.27c-8.16,0-14.79,6.62-14.79,14.79v12.51c0,1.26,1.02,2.27,2.27,2.27s2.27-1.02,2.27-2.27v-12.51c0-5.64,4.59-10.24,10.24-10.24h2.27c1.26,0,2.27-1.02,2.27-2.27s-1.02-2.27-2.27-2.27h0ZM175.38,33.05c-1.99,1.36-4.47,2.05-7.12,1.71-4.61-.59-8.31-4.35-8.84-8.97-.7-6.18,4.13-11.43,10.17-11.43,2.14,0,4.11.66,5.75,1.77.92.63,2.15.56,2.95-.24h0c1.02-1.02.83-2.7-.36-3.52-2.75-1.89-6.18-2.86-9.84-2.49-6.85.68-12.42,6.17-13.19,13.01-1,8.93,5.97,16.49,14.7,16.49,3.11,0,5.99-.95,8.36-2.59,1.18-.81,1.34-2.49.33-3.51h0c-.78-.78-2-.88-2.91-.26v.02h0Z" style="fill:#009789;"/></svg>
|
||||||
|
After Width: | Height: | Size: 4.0 KiB |
@@ -0,0 +1,10 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18">
|
||||||
|
<line x1="0.5" y1="4.5" x2="7.5" y2="4.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/>
|
||||||
|
<line x1="15.5" y1="4.5" x2="16.5" y2="4.5" style="fill:none;stroke:#949494;stroke-linecap:square;stroke-linejoin:round"/>
|
||||||
|
<rect x="7.5" y="0.5" width="8" height="13" rx="1" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/>
|
||||||
|
<circle cx="11.5" cy="7.5" r="2" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/>
|
||||||
|
<polyline points="9.5 13.5 11.5 16.5 13.5 13.5" style="fill:none;stroke:#949494;stroke-linecap:round;stroke-linejoin:round"/>
|
||||||
|
|
||||||
|
<path d="M1.5 6.2 L1.5 11.6 C1.5 14.0 3.0 15.5 5.4 15.5 L8.2 15.5"
|
||||||
|
style="fill:none;stroke:#009688;stroke-linecap:round;stroke-linejoin:round"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 867 B |
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "Bambulab",
|
"name": "Bambulab",
|
||||||
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
||||||
"version": "02.01.00.14",
|
"version": "02.01.00.16",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "BBL configurations",
|
"description": "BBL configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|||||||
@@ -145,6 +145,7 @@
|
|||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
"support_chamber_temp_control": "1",
|
"support_chamber_temp_control": "1",
|
||||||
|
"support_air_filtration": "1",
|
||||||
"upward_compatible_machine": [
|
"upward_compatible_machine": [
|
||||||
"Bambu Lab A1 0.4 nozzle",
|
"Bambu Lab A1 0.4 nozzle",
|
||||||
"Bambu Lab P2S 0.4 nozzle",
|
"Bambu Lab P2S 0.4 nozzle",
|
||||||
|
|||||||
|
After Width: | Height: | Size: 90 KiB |
|
After Width: | Height: | Size: 185 KiB |
|
After Width: | Height: | Size: 174 KiB |
|
After Width: | Height: | Size: 139 KiB |
|
After Width: | Height: | Size: 224 KiB |
|
After Width: | Height: | Size: 127 KiB |
|
After Width: | Height: | Size: 143 KiB |
@@ -0,0 +1,177 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @Ender-3 V4-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "100",
|
||||||
|
"customized_plate_temp_initial_layer": "100",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_shrinkage_compensation_z": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[0.5,240],[0.8,240],[1.0,260]]",
|
||||||
|
"pressure_advance": "0.024",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 V4 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "07001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,160 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @Ender-5 Max-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.93"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"280"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; Filament gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "90",
|
||||||
|
"customized_plate_temp_initial_layer": "90",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "90",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "90",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,230],[5.0,250],[10.0,260]]",
|
||||||
|
"pressure_advance": "0.03",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-5 Max 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,168 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @Hi-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "90",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "90",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
|
||||||
|
"pressure_advance": "0.03",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Hi 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "07001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,156 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @K1 Max_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1 Max_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "07001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,174 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @K1 SE-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "90",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "90",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,20],[6.0,240],[10.0,250]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1 SE 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "07001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,174 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @K1 SE_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "90",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "90",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,20],[6.0,240],[10.0,250]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1 SE_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "07001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,156 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @K1C-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "07001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,156 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @K1C_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1C_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "07001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,156 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @K1_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "07001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,161 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @K2 Plus-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"280"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "60",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K2 Plus 0.2 nozzle",
|
||||||
|
"Creality K2 Plus 0.4 nozzle",
|
||||||
|
"Creality K2 Plus 0.6 nozzle",
|
||||||
|
"Creality K2 Plus 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "07001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,165 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @K2 Pro-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"90%"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "60",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "0",
|
||||||
|
"customized_plate_temp_initial_layer": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K2 Pro 0.4 nozzle",
|
||||||
|
"Creality K2 Pro 0.6 nozzle",
|
||||||
|
"Creality K2 Pro 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "07001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,179 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @K2 SE-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"80%"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"280"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"10%"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "0",
|
||||||
|
"customized_plate_temp_initial_layer": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "90",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "90",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,20],[6.0,240],[10.0,250]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K2 SE 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "07001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,163 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-ABS @K2-all",
|
||||||
|
"inherits": "fdm_filament_abs",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.08"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "60",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K2 0.4 nozzle",
|
||||||
|
"Creality K2 0.6 nozzle",
|
||||||
|
"Creality K2 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "07001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,185 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-Nylon @Ender-5 Max-all",
|
||||||
|
"inherits": "fdm_filament_pa",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.24"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.9"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.5"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"0.2"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"280"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"50%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"slow_down_for_layer_cooling": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; Filament gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "45",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "45",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
|
||||||
|
"pressure_advance": "0.042",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-5 Max 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,191 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-Nylon @K1 Max_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_pa",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"52"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.12"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.98"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"50%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_for_layer_cooling": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"4"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > initial_layer_print_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1 Max_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "11001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,192 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-Nylon @K1C-all",
|
||||||
|
"inherits": "fdm_filament_pa",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"52"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.12"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.98"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"50%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_for_layer_cooling": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"4"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}\n\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "11001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,192 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-Nylon @K1C_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_pa",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"52"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.12"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.98"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"50%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_for_layer_cooling": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"4"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}\n\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1C_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "11001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,192 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-Nylon @K1_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_pa",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"52"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.12"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.98"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"50%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_for_layer_cooling": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"4"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "0",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "0",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "11001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,198 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-Nylon @K2 Plus-all",
|
||||||
|
"inherits": "fdm_filament_pa",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"52"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.12"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.98"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.5"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"260"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"0%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_for_layer_cooling": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"16"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "40",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "40",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_shrinkage_compensation_z": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"pressure_advance": "0.064",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K2 Plus 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "11001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,150 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Ender-3 V4-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}\n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "80",
|
||||||
|
"customized_plate_temp_initial_layer": "80",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "70",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "70",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_shrinkage_compensation_z": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[0.5,230],[1.0,230],[1.2,250]]",
|
||||||
|
"pressure_advance": "0.05",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 V4 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "06001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,162 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Ender-5 Max-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"16"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"80%"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "80",
|
||||||
|
"customized_plate_temp_initial_layer": "80",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "80",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "80",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,220],[5.0,240],[10.0,250]]",
|
||||||
|
"pressure_advance": "0.05",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-5 Max 0.4 nozzle",
|
||||||
|
"Creality Ender-5 Max 0.6 nozzle",
|
||||||
|
"Creality Ender-5 Max 0.8 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,152 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @Hi-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"0.8"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "80",
|
||||||
|
"customized_plate_temp_initial_layer": "80",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "80",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "80",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[1.0,220],[4.0,225],[7.0,230],[10.0,240]]",
|
||||||
|
"pressure_advance": "0.072",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Hi 0.2 nozzle",
|
||||||
|
"Creality Hi 0.4 nozzle",
|
||||||
|
"Creality Hi 0.6 nozzle",
|
||||||
|
"Creality Hi 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "06001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,157 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @K1 Max_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"0.6"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"10%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > initial_layer_print_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "60",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "60",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_shrinkage_compensation_z": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[0.8,220], [1.2,220], [1.3,250]]",
|
||||||
|
"pressure_advance": "0.078",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1 Max_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "06001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,141 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @K1 SE-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"85"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"9"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"85"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"85"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "70",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "70",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,230],[6.0,240],[10.0,250]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1 SE 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "06001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,141 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @K1 SE_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"85"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"9"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"85"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"85"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "70",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "70",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[3.0,230],[6.0,240],[10.0,250]]",
|
||||||
|
"pressure_advance": "0.02",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1 SE_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "06001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,161 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @K1C-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"0.6"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"0%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "60",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "60",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[0.8,220], [1.2,220], [1.3,250]]",
|
||||||
|
"pressure_advance": "0.062",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1C 0.4 nozzle",
|
||||||
|
"Creality K1C 0.6 nozzle",
|
||||||
|
"Creality K1C 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "06001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,159 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @K1C_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"0.6"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"0%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "60",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "60",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[0.8,220], [1.2,220], [1.3,250]]",
|
||||||
|
"pressure_advance": "0.062",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1C_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "06001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,157 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @K1_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"0.6"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"0%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "60",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "60",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_shrinkage_compensation_z": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[0.8,220], [1.2,220], [1.3,250]]",
|
||||||
|
"pressure_advance": "0.072",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "06001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,146 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @K2 Plus-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"0.8"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "60",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "60",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"pressure_advance": "0.07",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K2 Plus 0.2 nozzle",
|
||||||
|
"Creality K2 Plus 0.4 nozzle",
|
||||||
|
"Creality K2 Plus 0.6 nozzle",
|
||||||
|
"Creality K2 Plus 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "06001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,158 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @K2 Pro-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.24"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"90%"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"10%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "0",
|
||||||
|
"customized_plate_temp_initial_layer": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "60",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "60",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_shrinkage_compensation_z": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[0.5,220],[1.2,220],[1.2,250]]",
|
||||||
|
"pressure_advance": "0.07",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K2 Pro 0.4 nozzle",
|
||||||
|
"Creality K2 Pro 0.6 nozzle",
|
||||||
|
"Creality K2 Pro 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "06001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,161 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @K2 SE-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"85"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"90%"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"10%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "0",
|
||||||
|
"customized_plate_temp_initial_layer": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "80",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "80",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[1.0,240],[1.2,240],[1.3,250]]",
|
||||||
|
"pressure_advance": "0.07",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K2 SE 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "06001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,158 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @K2-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.24"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"90%"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"10%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "0",
|
||||||
|
"customized_plate_temp_initial_layer": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "60",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "60",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_shrinkage_compensation_z": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[0.5,220],[1.2,220],[1.2,250]]",
|
||||||
|
"pressure_advance": "0.07",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K2 0.4 nozzle",
|
||||||
|
"Creality K2 0.6 nozzle",
|
||||||
|
"Creality K2 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "06001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,139 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PETG @SPARKX i7-all",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PETG"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"250"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"270"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"25%"
|
||||||
|
],
|
||||||
|
"reduce_fan_stop_start_freq": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"customized_plate_temp": "80",
|
||||||
|
"customized_plate_temp_initial_layer": "80",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"epoxy_resin_plate_temp": "70",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "70",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_temp_graph": "[[1.0,205],[1.2,220]]",
|
||||||
|
"pressure_advance": "0.3",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality SPARKX i7 0.2 nozzle",
|
||||||
|
"Creality SPARKX i7 0.4 nozzle",
|
||||||
|
"Creality SPARKX i7 0.6 nozzle",
|
||||||
|
"Creality SPARKX i7 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "06001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,150 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @Ender-3 V4-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "60",
|
||||||
|
"customized_plate_temp_initial_layer": "60",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "50",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "50",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_shrinkage_compensation_z": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[0.5,200],[1.0,200],[1.2,220]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-3 V4 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "04001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,157 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @Ender-5 Max-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; Filament gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "50",
|
||||||
|
"customized_plate_temp_initial_layer": "50",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "50",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "50",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "1",
|
||||||
|
"material_flow_temp_graph": "[[0.5,190],[1.0,220]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Ender-5 Max 0.4 nozzle"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,141 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @Hi-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"14"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
" ; filament end gcode"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "60",
|
||||||
|
"customized_plate_temp_initial_layer": "60",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "60",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "60",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[1.0,190],[5.0,200],[14.0,210],[23.0,220]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality Hi 0.2 nozzle",
|
||||||
|
"Creality Hi 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "04001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,156 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @K1 Max_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > initial_layer_print_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "40",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "40",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_temp_graph": "[[0.8,200],[1.2,200],[1.3,220]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1 Max_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "04001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,141 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @K1 SE-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"70%"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "50",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "50",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[0.8,200],[1.2,200],[1.3,220]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1 SE 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "04001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,141 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @K1 SE_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"70%"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "50",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "50",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[0.8,200],[1.2,200],[1.3,220]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1 SE_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "04001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,157 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @K1C-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}\n\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "40",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "40",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[0.8,200],[1.2,200],[1.3,220]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "04001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,157 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @K1C_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}\n\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "40",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "40",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[0.8,200],[1.2,200],[1.3,220]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1C_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "04001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,157 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @K1_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"epoxy_resin_plate_temp": "40",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "40",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "0",
|
||||||
|
"filament_retract_lift_below": "0",
|
||||||
|
"filament_retract_lift_enforce": "All Surfaces",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[0.8,200],[1.2,200],[1.3,220]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "04001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,158 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @K2 Plus-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "100",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "40",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "40",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K2 Plus 0.2 nozzle",
|
||||||
|
"Creality K2 Plus 0.4 nozzle",
|
||||||
|
"Creality K2 Plus 0.6 nozzle",
|
||||||
|
"Creality K2 Plus 0.8 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "04001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,164 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @K2 Pro-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"25"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.25"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"90%"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "100",
|
||||||
|
"customized_plate_temp": "0",
|
||||||
|
"customized_plate_temp_initial_layer": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "40",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "40",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[0.5,195],[1.0,195],[1.2,220]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K2 Pro 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "04001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,143 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @K2 SE-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"90%"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"0.8"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"40"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "0",
|
||||||
|
"customized_plate_temp": "0",
|
||||||
|
"customized_plate_temp_initial_layer": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "60",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "60",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[1.0,200],[1.2,200],[1.3,220]]",
|
||||||
|
"pressure_advance": "0.05",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K2 SE 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "04001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,164 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @K2-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"25"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.25"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"90%"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "100",
|
||||||
|
"customized_plate_temp": "0",
|
||||||
|
"customized_plate_temp_initial_layer": "0",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "40",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "40",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[0.5,195],[1.0,195],[1.2,220]]",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K2 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "04001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,167 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA @SPARKX i7-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"16"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"100%"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "0",
|
||||||
|
"chamber_temperature": "0",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "100",
|
||||||
|
"customized_plate_temp": "55",
|
||||||
|
"customized_plate_temp_initial_layer": "55",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "1",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "45",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "45",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"material_flow_temp_graph": "[[1.0,220],[1.2,220]]",
|
||||||
|
"pressure_advance": "0.032",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality SPARKX i7 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "04001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,164 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA Carbon @K1 Max_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"25"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.25"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PLA-CF"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}\n\n{if(initial_extruder != current_extruder || layer_z > first_layer_height)}\n{if (layer_z +0.4 < printable_height) }\nG2 Z{layer_z + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X205 Y345 F20000\nG1 Z{layer_z } F1200\n{else}\nG1 X205 Y345 F20000\n{endif}\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "100",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "40",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "40",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1 Max_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "13001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,164 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA Carbon @K1C-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"25"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.25"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PLA-CF"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}\n\n{if(initial_extruder != current_extruder || layer_z > first_layer_height)}\n{if (layer_z +0.4 < printable_height) }\nG2 Z{layer_z + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X205 Y345 F20000\nG1 Z{layer_z } F1200\n{else}\nG1 X205 Y345 F20000\n{endif}\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "100",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "40",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "40",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "13001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,164 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA Carbon @K1C_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"25"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.25"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PLA-CF"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}\n\n{if(initial_extruder != current_extruder || layer_z > first_layer_height)}\n{if (layer_z +0.4 < printable_height) }\nG2 Z{layer_z + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X205 Y345 F20000\nG1 Z{layer_z } F1200\n{else}\nG1 X205 Y345 F20000\n{endif}\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "100",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "40",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "40",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1C_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "13001"
|
||||||
|
}
|
||||||
@@ -0,0 +1,164 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "CR-PLA Carbon @K1_CFS-C-all",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "GFSA04",
|
||||||
|
"instantiation": "true",
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"25"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.25"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_diameter": [
|
||||||
|
"1.75"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"filament_is_support": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"18"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retract_before_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_restart_extra": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_when_changing_layer": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_soluble": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PLA-CF"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Creality"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"full_fan_speed_layer": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"required_nozzle_HRC": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"50"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
";filament start gcode\n{if (layer_z > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}\n\n{if(initial_extruder != current_extruder || layer_z > first_layer_height)}\n{if (layer_z +0.4 < printable_height) }\nG2 Z{layer_z + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X205 Y345 F20000\nG1 Z{layer_z } F1200\n{else}\nG1 X205 Y345 F20000\n{endif}\n{endif}"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
";filament end gcode \n"
|
||||||
|
],
|
||||||
|
"activate_chamber_temp_control": "1",
|
||||||
|
"chamber_temperature": "35",
|
||||||
|
"cool_cds_fan_start_at_height": "0.5",
|
||||||
|
"cool_special_cds_fan_speed": "100",
|
||||||
|
"default_filament_colour": "\"\"",
|
||||||
|
"enable_overhang_bridge_fan": "1",
|
||||||
|
"enable_pressure_advance": "0",
|
||||||
|
"enable_special_area_additional_cooling_fan": "0",
|
||||||
|
"epoxy_resin_plate_temp": "40",
|
||||||
|
"epoxy_resin_plate_temp_initial_layer": "40",
|
||||||
|
"filament_cooling_final_speed": "3.4",
|
||||||
|
"filament_cooling_initial_speed": "2.2",
|
||||||
|
"filament_cooling_moves": "4",
|
||||||
|
"filament_load_time": "0",
|
||||||
|
"filament_loading_speed": "28",
|
||||||
|
"filament_loading_speed_start": "3",
|
||||||
|
"filament_multitool_ramming": "0",
|
||||||
|
"filament_multitool_ramming_flow": "10",
|
||||||
|
"filament_multitool_ramming_volume": "10",
|
||||||
|
"filament_notes": "\"\"",
|
||||||
|
"filament_ramming_parameters": "\"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6\"",
|
||||||
|
"filament_retract_lift_above": "nil",
|
||||||
|
"filament_retract_lift_below": "nil",
|
||||||
|
"filament_retract_lift_enforce": "nil",
|
||||||
|
"filament_shrink": "100%",
|
||||||
|
"filament_toolchange_delay": "0",
|
||||||
|
"filament_unload_time": "0",
|
||||||
|
"filament_unloading_speed": "90",
|
||||||
|
"filament_unloading_speed_start": "100",
|
||||||
|
"material_flow_dependent_temperature": "0",
|
||||||
|
"pressure_advance": "0.04",
|
||||||
|
"support_material_interface_fan_speed": "-1",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Creality K1_CFS-C 0.4 nozzle"
|
||||||
|
],
|
||||||
|
"filament_id": "13001"
|
||||||
|
}
|
||||||