diff --git a/CMakeLists.txt b/CMakeLists.txt
index c7fa3f12cf..58ade33f18 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -934,9 +934,6 @@ set (CPACK_PACKAGE_ICON "${CMAKE_SOURCE_DIR}/resources/images\\\\OrcaSlicer.ico"
set (CPACK_NSIS_MUI_ICON "${CPACK_PACKAGE_ICON}")
set (CPACK_NSIS_MUI_UNIICON "${CPACK_PACKAGE_ICON}")
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_INSTALL_REGISTRY_KEY "OrcaSlicer")
set (CPACK_NSIS_ENABLE_UNINSTALL_BEFORE_INSTALL ON)
diff --git a/README.md b/README.md
index 7b21bb97bd..11d27e2441 100644
--- a/README.md
+++ b/README.md
@@ -15,15 +15,20 @@ Optimize your prints with ultra-fast slicing, intelligent support generation, an
# Official links and community
#### Official Website:
+
OrcaSlicer.com
#### Github Repository:
+
#### Follow us:
-
+
+
+
#### Join our Discord community:
+
@@ -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).
- - *For convenience there is also a portable build available.*
+- *For convenience there is also a portable build available.*
Troubleshooting
- - *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)
- - [Details of this runtime](https://aka.ms/webview2)
- - [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)
- - [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`
+ - *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)
+ - [Details of this runtime](https://aka.ms/webview2)
+ - [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)
+ - [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`
Windows Package Manager
@@ -137,9 +142,10 @@ winget install --id=SoftFever.OrcaSlicer -e

-## Linux
+## Linux
### Flathub (Recommended)
+
OrcaSlicer is available through FlatHub:
@@ -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.
### AppImage
+
1. Download App image from the [releases page](https://github.com/OrcaSlicer/OrcaSlicer/releases).
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.
Thank you! :)
-## Sponsors:
+## Sponsors
@@ -208,8 +215,8 @@ Thank you! :)
## Support me
-
-
+
+
## Some Background
@@ -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).
# License
+
- **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.
- 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.
diff --git a/deps_src/CMakeLists.txt b/deps_src/CMakeLists.txt
index 5c553835ad..a4d71c6f27 100644
--- a/deps_src/CMakeLists.txt
+++ b/deps_src/CMakeLists.txt
@@ -27,6 +27,7 @@ add_subdirectory(libigl)
add_subdirectory(libnest2d)
add_subdirectory(mcut)
add_subdirectory(md4c)
+add_subdirectory(mdns)
add_subdirectory(miniz)
add_subdirectory(minilzo)
add_subdirectory(qhull)
diff --git a/deps_src/mdns/CMakeLists.txt b/deps_src/mdns/CMakeLists.txt
new file mode 100644
index 0000000000..60960d44e1
--- /dev/null
+++ b/deps_src/mdns/CMakeLists.txt
@@ -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()
diff --git a/deps_src/mdns/NOTICE.md b/deps_src/mdns/NOTICE.md
new file mode 100644
index 0000000000..60ad15c29a
--- /dev/null
+++ b/deps_src/mdns/NOTICE.md
@@ -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 syncDiscoveryService(
+ const std::vector& 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-._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
diff --git a/deps_src/mdns/cxmdns.cpp b/deps_src/mdns/cxmdns.cpp
new file mode 100644
index 0000000000..f505eaa0b2
--- /dev/null
+++ b/deps_src/mdns/cxmdns.cpp
@@ -0,0 +1,256 @@
+#include"cxmdns.h"
+#include"mdns.h"
+#ifdef _WIN32
+#define _CRT_SECURE_NO_WARNINGS 1
+#endif
+
+#include
+#include
+#include
+#include
+
+#ifdef _WIN32
+#include
+#include
+#define sleep(x) Sleep(x * 1000)
+#else
+#include
+#include
+#include
+#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
+ 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& prefix, std::vector& 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 syncDiscoveryService(const std::vector& prefix)
+ {
+ std::vector 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);
+ }
+}
diff --git a/deps_src/mdns/cxmdns.h b/deps_src/mdns/cxmdns.h
new file mode 100644
index 0000000000..e0f9c1c3dc
--- /dev/null
+++ b/deps_src/mdns/cxmdns.h
@@ -0,0 +1,16 @@
+#ifndef _CX_MDNS_H
+#define _CX_MDNS_H
+#include
+#include
+
+namespace cxnet
+{
+ struct machine_info
+ {
+ std::string machineIp;
+ std::string answer;
+ };
+
+ std::vector syncDiscoveryService(const std::vector& prefix);
+}
+#endif
\ No newline at end of file
diff --git a/deps_src/mdns/mdns.c b/deps_src/mdns/mdns.c
new file mode 100644
index 0000000000..089b495176
--- /dev/null
+++ b/deps_src/mdns/mdns.c
@@ -0,0 +1,1263 @@
+
+#ifdef _WIN32
+#define _CRT_SECURE_NO_WARNINGS 1
+#endif
+
+#include
+
+#include
+#include
+
+#ifdef _WIN32
+#include
+#include
+#define sleep(x) Sleep(x * 1000)
+#else
+#include
+#include
+#include
+#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
+
+static char addrbuffer[64];
+static char entrybuffer[256];
+static char namebuffer[256];
+static char sendbuffer[1024];
+static mdns_record_txt_t txtbuffer[128];
+
+static struct sockaddr_in service_address_ipv4;
+static struct sockaddr_in6 service_address_ipv6;
+
+static int has_ipv4;
+static int has_ipv6;
+
+volatile sig_atomic_t running = 1;
+
+// Data for our service including the mDNS records
+typedef struct {
+ mdns_string_t service;
+ mdns_string_t hostname;
+ mdns_string_t service_instance;
+ mdns_string_t hostname_qualified;
+ struct sockaddr_in address_ipv4;
+ struct sockaddr_in6 address_ipv6;
+ int port;
+ mdns_record_t record_ptr;
+ mdns_record_t record_srv;
+ mdns_record_t record_a;
+ mdns_record_t record_aaaa;
+ mdns_record_t txt_record[2];
+} service_t;
+
+mdns_string_t
+ipv4_address_to_string(char* buffer, size_t capacity, const struct sockaddr_in* addr,
+ size_t addrlen) {
+ char host[NI_MAXHOST] = {0};
+ char service[NI_MAXSERV] = {0};
+ int ret = getnameinfo((const struct sockaddr*)addr, (socklen_t)addrlen, host, NI_MAXHOST,
+ service, NI_MAXSERV, NI_NUMERICSERV | NI_NUMERICHOST);
+ int len = 0;
+ if (ret == 0) {
+ if (addr->sin_port != 0)
+ len = snprintf(buffer, capacity, "%s:%s", host, service);
+ else
+ len = snprintf(buffer, capacity, "%s", host);
+ }
+ if (len >= (int)capacity)
+ len = (int)capacity - 1;
+ mdns_string_t str;
+ str.str = buffer;
+ str.length = len;
+ return str;
+}
+
+static mdns_string_t
+ipv6_address_to_string(char* buffer, size_t capacity, const struct sockaddr_in6* addr,
+ size_t addrlen) {
+ char host[NI_MAXHOST] = {0};
+ char service[NI_MAXSERV] = {0};
+ int ret = getnameinfo((const struct sockaddr*)addr, (socklen_t)addrlen, host, NI_MAXHOST,
+ service, NI_MAXSERV, NI_NUMERICSERV | NI_NUMERICHOST);
+ int len = 0;
+ if (ret == 0) {
+ if (addr->sin6_port != 0)
+ len = snprintf(buffer, capacity, "[%s]:%s", host, service);
+ else
+ len = snprintf(buffer, capacity, "%s", host);
+ }
+ if (len >= (int)capacity)
+ len = (int)capacity - 1;
+ mdns_string_t str;
+ str.str = buffer;
+ str.length = len;
+ return str;
+}
+
+mdns_string_t
+ip_address_to_string(char* buffer, size_t capacity, const struct sockaddr* addr, size_t addrlen) {
+ if (addr->sa_family == AF_INET6)
+ return ipv6_address_to_string(buffer, capacity, (const struct sockaddr_in6*)addr, addrlen);
+ return ipv4_address_to_string(buffer, capacity, (const struct sockaddr_in*)addr, addrlen);
+}
+
+// Callback handling parsing answers to queries sent
+int
+query_callback(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) {
+ (void)sizeof(sock);
+ (void)sizeof(query_id);
+ (void)sizeof(name_length);
+ (void)sizeof(user_data);
+ mdns_string_t fromaddrstr = ip_address_to_string(addrbuffer, sizeof(addrbuffer), from, addrlen);
+ const char* entrytype = (entry == MDNS_ENTRYTYPE_ANSWER) ?
+ "answer" :
+ ((entry == MDNS_ENTRYTYPE_AUTHORITY) ? "authority" : "additional");
+ mdns_string_t entrystr =
+ mdns_string_extract(data, size, &name_offset, entrybuffer, sizeof(entrybuffer));
+ if (rtype == MDNS_RECORDTYPE_PTR) {
+ mdns_string_t namestr = mdns_record_parse_ptr(data, size, record_offset, record_length,
+ namebuffer, sizeof(namebuffer));
+ printf("%.*s : %s %.*s PTR %.*s rclass 0x%x ttl %u length %d\n",
+ MDNS_STRING_FORMAT(fromaddrstr), entrytype, MDNS_STRING_FORMAT(entrystr),
+ MDNS_STRING_FORMAT(namestr), rclass, ttl, (int)record_length);
+ } else if (rtype == MDNS_RECORDTYPE_SRV) {
+ mdns_record_srv_t srv = mdns_record_parse_srv(data, size, record_offset, record_length,
+ namebuffer, sizeof(namebuffer));
+ printf("%.*s : %s %.*s SRV %.*s priority %d weight %d port %d\n",
+ MDNS_STRING_FORMAT(fromaddrstr), entrytype, MDNS_STRING_FORMAT(entrystr),
+ MDNS_STRING_FORMAT(srv.name), srv.priority, srv.weight, srv.port);
+ } else if (rtype == MDNS_RECORDTYPE_A) {
+ struct sockaddr_in addr;
+ mdns_record_parse_a(data, size, record_offset, record_length, &addr);
+ mdns_string_t addrstr =
+ ipv4_address_to_string(namebuffer, sizeof(namebuffer), &addr, sizeof(addr));
+ printf("%.*s : %s %.*s A %.*s\n", MDNS_STRING_FORMAT(fromaddrstr), entrytype,
+ MDNS_STRING_FORMAT(entrystr), MDNS_STRING_FORMAT(addrstr));
+ } else if (rtype == MDNS_RECORDTYPE_AAAA) {
+ struct sockaddr_in6 addr;
+ mdns_record_parse_aaaa(data, size, record_offset, record_length, &addr);
+ mdns_string_t addrstr =
+ ipv6_address_to_string(namebuffer, sizeof(namebuffer), &addr, sizeof(addr));
+ printf("%.*s : %s %.*s AAAA %.*s\n", MDNS_STRING_FORMAT(fromaddrstr), entrytype,
+ MDNS_STRING_FORMAT(entrystr), MDNS_STRING_FORMAT(addrstr));
+ } else if (rtype == MDNS_RECORDTYPE_TXT) {
+ size_t parsed = mdns_record_parse_txt(data, size, record_offset, record_length, txtbuffer,
+ sizeof(txtbuffer) / sizeof(mdns_record_txt_t));
+ for (size_t itxt = 0; itxt < parsed; ++itxt) {
+ if (txtbuffer[itxt].value.length) {
+ printf("%.*s : %s %.*s TXT %.*s = %.*s\n", MDNS_STRING_FORMAT(fromaddrstr),
+ entrytype, MDNS_STRING_FORMAT(entrystr),
+ MDNS_STRING_FORMAT(txtbuffer[itxt].key),
+ MDNS_STRING_FORMAT(txtbuffer[itxt].value));
+ } else {
+ printf("%.*s : %s %.*s TXT %.*s\n", MDNS_STRING_FORMAT(fromaddrstr), entrytype,
+ MDNS_STRING_FORMAT(entrystr), MDNS_STRING_FORMAT(txtbuffer[itxt].key));
+ }
+ }
+ } else {
+ printf("%.*s : %s %.*s type %u rclass 0x%x ttl %u length %d\n",
+ MDNS_STRING_FORMAT(fromaddrstr), entrytype, MDNS_STRING_FORMAT(entrystr), rtype,
+ rclass, ttl, (int)record_length);
+ }
+ return 0;
+}
+
+// Callback handling questions incoming on service sockets
+static int
+service_callback(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) {
+ (void)sizeof(ttl);
+ if (entry != MDNS_ENTRYTYPE_QUESTION)
+ return 0;
+
+ const char dns_sd[] = "_services._dns-sd._udp.local.";
+ const service_t* service = (const service_t*)user_data;
+
+ mdns_string_t fromaddrstr = ip_address_to_string(addrbuffer, sizeof(addrbuffer), from, addrlen);
+
+ size_t offset = name_offset;
+ mdns_string_t name = mdns_string_extract(data, size, &offset, namebuffer, sizeof(namebuffer));
+
+ const char* record_name = 0;
+ if (rtype == MDNS_RECORDTYPE_PTR)
+ record_name = "PTR";
+ else if (rtype == MDNS_RECORDTYPE_SRV)
+ record_name = "SRV";
+ else if (rtype == MDNS_RECORDTYPE_A)
+ record_name = "A";
+ else if (rtype == MDNS_RECORDTYPE_AAAA)
+ record_name = "AAAA";
+ else if (rtype == MDNS_RECORDTYPE_TXT)
+ record_name = "TXT";
+ else if (rtype == MDNS_RECORDTYPE_ANY)
+ record_name = "ANY";
+ else
+ return 0;
+ printf("Query %s %.*s\n", record_name, MDNS_STRING_FORMAT(name));
+
+ if ((name.length == (sizeof(dns_sd) - 1)) &&
+ (strncmp(name.str, dns_sd, sizeof(dns_sd) - 1) == 0)) {
+ if ((rtype == MDNS_RECORDTYPE_PTR) || (rtype == MDNS_RECORDTYPE_ANY)) {
+ // The PTR query was for the DNS-SD domain, send answer with a PTR record for the
+ // service name we advertise, typically on the "<_service-name>._tcp.local." format
+
+ // Answer PTR record reverse mapping "<_service-name>._tcp.local." to
+ // ".<_service-name>._tcp.local."
+ mdns_record_t answer = {
+ .name = name, .type = MDNS_RECORDTYPE_PTR, .data.ptr.name = service->service};
+
+ // Send the answer, unicast or multicast depending on flag in query
+ uint16_t unicast = (rclass & MDNS_UNICAST_RESPONSE);
+ printf(" --> answer %.*s (%s)\n", MDNS_STRING_FORMAT(answer.data.ptr.name),
+ (unicast ? "unicast" : "multicast"));
+
+ if (unicast) {
+ mdns_query_answer_unicast(sock, from, addrlen, sendbuffer, sizeof(sendbuffer),
+ query_id, rtype, name.str, name.length, answer, 0, 0, 0,
+ 0);
+ } else {
+ mdns_query_answer_multicast(sock, sendbuffer, sizeof(sendbuffer), answer, 0, 0, 0,
+ 0);
+ }
+ }
+ } else if ((name.length == service->service.length) &&
+ (strncmp(name.str, service->service.str, name.length) == 0)) {
+ if ((rtype == MDNS_RECORDTYPE_PTR) || (rtype == MDNS_RECORDTYPE_ANY)) {
+ // The PTR query was for our service (usually "<_service-name._tcp.local"), answer a PTR
+ // record reverse mapping the queried service name to our service instance name
+ // (typically on the ".<_service-name>._tcp.local." format), and add
+ // additional records containing the SRV record mapping the service instance name to our
+ // qualified hostname (typically ".local.") and port, as well as any IPv4/IPv6
+ // address for the hostname as A/AAAA records, and two test TXT records
+
+ // Answer PTR record reverse mapping "<_service-name>._tcp.local." to
+ // ".<_service-name>._tcp.local."
+ mdns_record_t answer = service->record_ptr;
+
+ mdns_record_t additional[5] = {0};
+ size_t additional_count = 0;
+
+ // SRV record mapping ".<_service-name>._tcp.local." to
+ // ".local." with port. Set weight & priority to 0.
+ additional[additional_count++] = service->record_srv;
+
+ // A/AAAA records mapping ".local." to IPv4/IPv6 addresses
+ if (service->address_ipv4.sin_family == AF_INET)
+ additional[additional_count++] = service->record_a;
+ if (service->address_ipv6.sin6_family == AF_INET6)
+ additional[additional_count++] = service->record_aaaa;
+
+ // Add two test TXT records for our service instance name, will be coalesced into
+ // one record with both key-value pair strings by the library
+ additional[additional_count++] = service->txt_record[0];
+ additional[additional_count++] = service->txt_record[1];
+
+ // Send the answer, unicast or multicast depending on flag in query
+ uint16_t unicast = (rclass & MDNS_UNICAST_RESPONSE);
+ printf(" --> answer %.*s (%s)\n",
+ MDNS_STRING_FORMAT(service->record_ptr.data.ptr.name),
+ (unicast ? "unicast" : "multicast"));
+
+ if (unicast) {
+ mdns_query_answer_unicast(sock, from, addrlen, sendbuffer, sizeof(sendbuffer),
+ query_id, rtype, name.str, name.length, answer, 0, 0,
+ additional, additional_count);
+ } else {
+ mdns_query_answer_multicast(sock, sendbuffer, sizeof(sendbuffer), answer, 0, 0,
+ additional, additional_count);
+ }
+ }
+ } else if ((name.length == service->service_instance.length) &&
+ (strncmp(name.str, service->service_instance.str, name.length) == 0)) {
+ if ((rtype == MDNS_RECORDTYPE_SRV) || (rtype == MDNS_RECORDTYPE_ANY)) {
+ // The SRV query was for our service instance (usually
+ // ".<_service-name._tcp.local"), answer a SRV record mapping the service
+ // instance name to our qualified hostname (typically ".local.") and port, as
+ // well as any IPv4/IPv6 address for the hostname as A/AAAA records, and two test TXT
+ // records
+
+ // Answer PTR record reverse mapping "<_service-name>._tcp.local." to
+ // ".<_service-name>._tcp.local."
+ mdns_record_t answer = service->record_srv;
+
+ mdns_record_t additional[5] = {0};
+ size_t additional_count = 0;
+
+ // A/AAAA records mapping ".local." to IPv4/IPv6 addresses
+ if (service->address_ipv4.sin_family == AF_INET)
+ additional[additional_count++] = service->record_a;
+ if (service->address_ipv6.sin6_family == AF_INET6)
+ additional[additional_count++] = service->record_aaaa;
+
+ // Add two test TXT records for our service instance name, will be coalesced into
+ // one record with both key-value pair strings by the library
+ additional[additional_count++] = service->txt_record[0];
+ additional[additional_count++] = service->txt_record[1];
+
+ // Send the answer, unicast or multicast depending on flag in query
+ uint16_t unicast = (rclass & MDNS_UNICAST_RESPONSE);
+ printf(" --> answer %.*s port %d (%s)\n",
+ MDNS_STRING_FORMAT(service->record_srv.data.srv.name), service->port,
+ (unicast ? "unicast" : "multicast"));
+
+ if (unicast) {
+ mdns_query_answer_unicast(sock, from, addrlen, sendbuffer, sizeof(sendbuffer),
+ query_id, rtype, name.str, name.length, answer, 0, 0,
+ additional, additional_count);
+ } else {
+ mdns_query_answer_multicast(sock, sendbuffer, sizeof(sendbuffer), answer, 0, 0,
+ additional, additional_count);
+ }
+ }
+ } else if ((name.length == service->hostname_qualified.length) &&
+ (strncmp(name.str, service->hostname_qualified.str, name.length) == 0)) {
+ if (((rtype == MDNS_RECORDTYPE_A) || (rtype == MDNS_RECORDTYPE_ANY)) &&
+ (service->address_ipv4.sin_family == AF_INET)) {
+ // The A query was for our qualified hostname (typically ".local.") and we
+ // have an IPv4 address, answer with an A record mappiing the hostname to an IPv4
+ // address, as well as any IPv6 address for the hostname, and two test TXT records
+
+ // Answer A records mapping ".local." to IPv4 address
+ mdns_record_t answer = service->record_a;
+
+ mdns_record_t additional[5] = {0};
+ size_t additional_count = 0;
+
+ // AAAA record mapping ".local." to IPv6 addresses
+ if (service->address_ipv6.sin6_family == AF_INET6)
+ additional[additional_count++] = service->record_aaaa;
+
+ // Add two test TXT records for our service instance name, will be coalesced into
+ // one record with both key-value pair strings by the library
+ additional[additional_count++] = service->txt_record[0];
+ additional[additional_count++] = service->txt_record[1];
+
+ // Send the answer, unicast or multicast depending on flag in query
+ uint16_t unicast = (rclass & MDNS_UNICAST_RESPONSE);
+ mdns_string_t addrstr = ip_address_to_string(
+ addrbuffer, sizeof(addrbuffer), (struct sockaddr*)&service->record_a.data.a.addr,
+ sizeof(service->record_a.data.a.addr));
+ printf(" --> answer %.*s IPv4 %.*s (%s)\n", MDNS_STRING_FORMAT(service->record_a.name),
+ MDNS_STRING_FORMAT(addrstr), (unicast ? "unicast" : "multicast"));
+
+ if (unicast) {
+ mdns_query_answer_unicast(sock, from, addrlen, sendbuffer, sizeof(sendbuffer),
+ query_id, rtype, name.str, name.length, answer, 0, 0,
+ additional, additional_count);
+ } else {
+ mdns_query_answer_multicast(sock, sendbuffer, sizeof(sendbuffer), answer, 0, 0,
+ additional, additional_count);
+ }
+ } else if (((rtype == MDNS_RECORDTYPE_AAAA) || (rtype == MDNS_RECORDTYPE_ANY)) &&
+ (service->address_ipv6.sin6_family == AF_INET6)) {
+ // The AAAA query was for our qualified hostname (typically ".local.") and we
+ // have an IPv6 address, answer with an AAAA record mappiing the hostname to an IPv6
+ // address, as well as any IPv4 address for the hostname, and two test TXT records
+
+ // Answer AAAA records mapping ".local." to IPv6 address
+ mdns_record_t answer = service->record_aaaa;
+
+ mdns_record_t additional[5] = {0};
+ size_t additional_count = 0;
+
+ // A record mapping ".local." to IPv4 addresses
+ if (service->address_ipv4.sin_family == AF_INET)
+ additional[additional_count++] = service->record_a;
+
+ // Add two test TXT records for our service instance name, will be coalesced into
+ // one record with both key-value pair strings by the library
+ additional[additional_count++] = service->txt_record[0];
+ additional[additional_count++] = service->txt_record[1];
+
+ // Send the answer, unicast or multicast depending on flag in query
+ uint16_t unicast = (rclass & MDNS_UNICAST_RESPONSE);
+ mdns_string_t addrstr =
+ ip_address_to_string(addrbuffer, sizeof(addrbuffer),
+ (struct sockaddr*)&service->record_aaaa.data.aaaa.addr,
+ sizeof(service->record_aaaa.data.aaaa.addr));
+ printf(" --> answer %.*s IPv6 %.*s (%s)\n",
+ MDNS_STRING_FORMAT(service->record_aaaa.name), MDNS_STRING_FORMAT(addrstr),
+ (unicast ? "unicast" : "multicast"));
+
+ if (unicast) {
+ mdns_query_answer_unicast(sock, from, addrlen, sendbuffer, sizeof(sendbuffer),
+ query_id, rtype, name.str, name.length, answer, 0, 0,
+ additional, additional_count);
+ } else {
+ mdns_query_answer_multicast(sock, sendbuffer, sizeof(sendbuffer), answer, 0, 0,
+ additional, additional_count);
+ }
+ }
+ }
+ return 0;
+}
+
+// Callback handling questions and answers dump
+static int
+dump_callback(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) {
+ mdns_string_t fromaddrstr = ip_address_to_string(addrbuffer, sizeof(addrbuffer), from, addrlen);
+
+ size_t offset = name_offset;
+ mdns_string_t name = mdns_string_extract(data, size, &offset, namebuffer, sizeof(namebuffer));
+
+ const char* record_name = 0;
+ if (rtype == MDNS_RECORDTYPE_PTR)
+ record_name = "PTR";
+ else if (rtype == MDNS_RECORDTYPE_SRV)
+ record_name = "SRV";
+ else if (rtype == MDNS_RECORDTYPE_A)
+ record_name = "A";
+ else if (rtype == MDNS_RECORDTYPE_AAAA)
+ record_name = "AAAA";
+ else if (rtype == MDNS_RECORDTYPE_TXT)
+ record_name = "TXT";
+ else if (rtype == MDNS_RECORDTYPE_ANY)
+ record_name = "ANY";
+ else
+ record_name = "";
+
+ const char* entry_type = "Question";
+ if (entry == MDNS_ENTRYTYPE_ANSWER)
+ entry_type = "Answer";
+ else if (entry == MDNS_ENTRYTYPE_AUTHORITY)
+ entry_type = "Authority";
+ else if (entry == MDNS_ENTRYTYPE_ADDITIONAL)
+ entry_type = "Additional";
+
+ printf("%.*s: %s %s %.*s rclass 0x%x ttl %u\n", MDNS_STRING_FORMAT(fromaddrstr), entry_type,
+ record_name, MDNS_STRING_FORMAT(name), (unsigned int)rclass, ttl);
+
+ return 0;
+}
+
+// Open sockets for sending one-shot multicast queries from an ephemeral port
+int
+open_client_sockets(int* sockets, int max_sockets, int port) {
+ // When sending, each socket can only send to one network interface
+ // Thus we need to open one socket for each interface and address family
+ int num_sockets = 0;
+
+#ifdef _WIN32
+
+ IP_ADAPTER_ADDRESSES* adapter_address = 0;
+ ULONG address_size = 8000;
+ unsigned int ret;
+ unsigned int num_retries = 4;
+ do {
+ adapter_address = (IP_ADAPTER_ADDRESSES*)malloc(address_size);
+ ret = GetAdaptersAddresses(AF_UNSPEC, GAA_FLAG_SKIP_MULTICAST | GAA_FLAG_SKIP_ANYCAST, 0,
+ adapter_address, &address_size);
+ if (ret == ERROR_BUFFER_OVERFLOW) {
+ free(adapter_address);
+ adapter_address = 0;
+ address_size *= 2;
+ } else {
+ break;
+ }
+ } while (num_retries-- > 0);
+
+ if (!adapter_address || (ret != NO_ERROR)) {
+ free(adapter_address);
+ printf("Failed to get network adapter addresses\n");
+ return num_sockets;
+ }
+
+ int first_ipv4 = 1;
+ int first_ipv6 = 1;
+ for (PIP_ADAPTER_ADDRESSES adapter = adapter_address; adapter; adapter = adapter->Next) {
+ if (adapter->TunnelType == TUNNEL_TYPE_TEREDO)
+ continue;
+ if (adapter->OperStatus != IfOperStatusUp)
+ continue;
+
+ for (IP_ADAPTER_UNICAST_ADDRESS* unicast = adapter->FirstUnicastAddress; unicast;
+ unicast = unicast->Next) {
+ if (unicast->Address.lpSockaddr->sa_family == AF_INET) {
+ struct sockaddr_in* saddr = (struct sockaddr_in*)unicast->Address.lpSockaddr;
+ if ((saddr->sin_addr.S_un.S_un_b.s_b1 != 127) ||
+ (saddr->sin_addr.S_un.S_un_b.s_b2 != 0) ||
+ (saddr->sin_addr.S_un.S_un_b.s_b3 != 0) ||
+ (saddr->sin_addr.S_un.S_un_b.s_b4 != 1)) {
+ int log_addr = 0;
+ if (first_ipv4) {
+ service_address_ipv4 = *saddr;
+ first_ipv4 = 0;
+ log_addr = 1;
+ }
+ has_ipv4 = 1;
+ if (num_sockets < max_sockets) {
+ saddr->sin_port = htons((unsigned short)port);
+ int sock = mdns_socket_open_ipv4(saddr);
+ if (sock >= 0) {
+ sockets[num_sockets++] = sock;
+ log_addr = 1;
+ } else {
+ log_addr = 0;
+ }
+ }
+ if (log_addr) {
+ char buffer[128];
+ mdns_string_t addr = ipv4_address_to_string(buffer, sizeof(buffer), saddr,
+ sizeof(struct sockaddr_in));
+ printf("Local IPv4 address: %.*s\n", MDNS_STRING_FORMAT(addr));
+ }
+ }
+ } else if (unicast->Address.lpSockaddr->sa_family == AF_INET6) {
+ struct sockaddr_in6* saddr = (struct sockaddr_in6*)unicast->Address.lpSockaddr;
+ // Ignore link-local addresses
+ if (saddr->sin6_scope_id)
+ continue;
+ static const unsigned char localhost[] = {0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 1};
+ static const unsigned char localhost_mapped[] = {0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0xff, 0xff, 0x7f, 0, 0, 1};
+ if ((unicast->DadState == NldsPreferred) &&
+ memcmp(saddr->sin6_addr.s6_addr, localhost, 16) &&
+ memcmp(saddr->sin6_addr.s6_addr, localhost_mapped, 16)) {
+ int log_addr = 0;
+ if (first_ipv6) {
+ service_address_ipv6 = *saddr;
+ first_ipv6 = 0;
+ log_addr = 1;
+ }
+ has_ipv6 = 1;
+ if (num_sockets < max_sockets) {
+ saddr->sin6_port = htons((unsigned short)port);
+ int sock = mdns_socket_open_ipv6(saddr);
+ if (sock >= 0) {
+ sockets[num_sockets++] = sock;
+ log_addr = 1;
+ } else {
+ log_addr = 0;
+ }
+ }
+ if (log_addr) {
+ char buffer[128];
+ mdns_string_t addr = ipv6_address_to_string(buffer, sizeof(buffer), saddr,
+ sizeof(struct sockaddr_in6));
+ printf("Local IPv6 address: %.*s\n", MDNS_STRING_FORMAT(addr));
+ }
+ }
+ }
+ }
+ }
+
+ free(adapter_address);
+
+#else
+
+ struct ifaddrs* ifaddr = 0;
+ struct ifaddrs* ifa = 0;
+
+ if (getifaddrs(&ifaddr) < 0)
+ printf("Unable to get interface addresses\n");
+
+ int first_ipv4 = 1;
+ int first_ipv6 = 1;
+ for (ifa = ifaddr; ifa; ifa = ifa->ifa_next) {
+ if (!ifa->ifa_addr)
+ continue;
+ if (!(ifa->ifa_flags & IFF_UP) || !(ifa->ifa_flags & IFF_MULTICAST))
+ continue;
+ if ((ifa->ifa_flags & IFF_LOOPBACK) || (ifa->ifa_flags & IFF_POINTOPOINT))
+ continue;
+
+ if (ifa->ifa_addr->sa_family == AF_INET) {
+ struct sockaddr_in* saddr = (struct sockaddr_in*)ifa->ifa_addr;
+ if (saddr->sin_addr.s_addr != htonl(INADDR_LOOPBACK)) {
+ int log_addr = 0;
+ if (first_ipv4) {
+ service_address_ipv4 = *saddr;
+ first_ipv4 = 0;
+ log_addr = 1;
+ }
+ has_ipv4 = 1;
+ if (num_sockets < max_sockets) {
+ saddr->sin_port = htons(port);
+ int sock = mdns_socket_open_ipv4(saddr);
+ if (sock >= 0) {
+ sockets[num_sockets++] = sock;
+ log_addr = 1;
+ } else {
+ log_addr = 0;
+ }
+ }
+ if (log_addr) {
+ char buffer[128];
+ mdns_string_t addr = ipv4_address_to_string(buffer, sizeof(buffer), saddr,
+ sizeof(struct sockaddr_in));
+ printf("Local IPv4 address: %.*s\n", MDNS_STRING_FORMAT(addr));
+ }
+ }
+ } else if (ifa->ifa_addr->sa_family == AF_INET6) {
+ struct sockaddr_in6* saddr = (struct sockaddr_in6*)ifa->ifa_addr;
+ // Ignore link-local addresses
+ if (saddr->sin6_scope_id)
+ continue;
+ static const unsigned char localhost[] = {0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 1};
+ static const unsigned char localhost_mapped[] = {0, 0, 0, 0, 0, 0, 0, 0,
+ 0, 0, 0xff, 0xff, 0x7f, 0, 0, 1};
+ if (memcmp(saddr->sin6_addr.s6_addr, localhost, 16) &&
+ memcmp(saddr->sin6_addr.s6_addr, localhost_mapped, 16)) {
+ int log_addr = 0;
+ if (first_ipv6) {
+ service_address_ipv6 = *saddr;
+ first_ipv6 = 0;
+ log_addr = 1;
+ }
+ has_ipv6 = 1;
+ if (num_sockets < max_sockets) {
+ saddr->sin6_port = htons(port);
+ int sock = mdns_socket_open_ipv6(saddr);
+ if (sock >= 0) {
+ sockets[num_sockets++] = sock;
+ log_addr = 1;
+ } else {
+ log_addr = 0;
+ }
+ }
+ if (log_addr) {
+ char buffer[128];
+ mdns_string_t addr = ipv6_address_to_string(buffer, sizeof(buffer), saddr,
+ sizeof(struct sockaddr_in6));
+ printf("Local IPv6 address: %.*s\n", MDNS_STRING_FORMAT(addr));
+ }
+ }
+ }
+ }
+
+ freeifaddrs(ifaddr);
+
+#endif
+
+ return num_sockets;
+}
+
+// Open sockets to listen to incoming mDNS queries on port 5353
+static int
+open_service_sockets(int* sockets, int max_sockets) {
+ // When recieving, each socket can recieve data from all network interfaces
+ // Thus we only need to open one socket for each address family
+ int num_sockets = 0;
+
+ // Call the client socket function to enumerate and get local addresses,
+ // but not open the actual sockets
+ open_client_sockets(0, 0, 0);
+
+ if (num_sockets < max_sockets) {
+ struct sockaddr_in sock_addr;
+ memset(&sock_addr, 0, sizeof(struct sockaddr_in));
+ sock_addr.sin_family = AF_INET;
+#ifdef _WIN32
+ sock_addr.sin_addr = in4addr_any;
+#else
+ sock_addr.sin_addr.s_addr = INADDR_ANY;
+#endif
+ sock_addr.sin_port = htons(MDNS_PORT);
+#ifdef __APPLE__
+ sock_addr.sin_len = sizeof(struct sockaddr_in);
+#endif
+ int sock = mdns_socket_open_ipv4(&sock_addr);
+ if (sock >= 0)
+ sockets[num_sockets++] = sock;
+ }
+
+ if (num_sockets < max_sockets) {
+ struct sockaddr_in6 sock_addr;
+ memset(&sock_addr, 0, sizeof(struct sockaddr_in6));
+ sock_addr.sin6_family = AF_INET6;
+ sock_addr.sin6_addr = in6addr_any;
+ sock_addr.sin6_port = htons(MDNS_PORT);
+#ifdef __APPLE__
+ sock_addr.sin6_len = sizeof(struct sockaddr_in6);
+#endif
+ int sock = mdns_socket_open_ipv6(&sock_addr);
+ if (sock >= 0)
+ sockets[num_sockets++] = sock;
+ }
+
+ return num_sockets;
+}
+
+// Send a DNS-SD query
+int
+send_dns_sd(void) {
+ 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");
+ return -1;
+ }
+ 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);
+ void* user_data = 0;
+ size_t records;
+
+ // 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);
+ }
+
+ records = 0;
+ 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,
+ user_data);
+ }
+ }
+ }
+ } 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" : "");
+
+ return 0;
+}
+
+// Send a mDNS query
+static int
+send_mdns_query(mdns_query_t* query, size_t count) {
+ int sockets[32];
+ int query_id[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");
+ return -1;
+ }
+ printf("Opened %d socket%s for mDNS query\n", num_sockets, num_sockets ? "s" : "");
+
+ size_t capacity = 2048;
+ void* buffer = malloc(capacity);
+ void* user_data = 0;
+
+ printf("Sending mDNS query");
+ for (size_t iq = 0; iq < count; ++iq) {
+ const char* record_name = "PTR";
+ if (query[iq].type == MDNS_RECORDTYPE_SRV)
+ record_name = "SRV";
+ else if (query[iq].type == MDNS_RECORDTYPE_A)
+ record_name = "A";
+ else if (query[iq].type == MDNS_RECORDTYPE_AAAA)
+ record_name = "AAAA";
+ else
+ query[iq].type = MDNS_RECORDTYPE_PTR;
+ printf(" : %s %s", query[iq].name, record_name);
+ }
+ printf("\n");
+ for (int isock = 0; isock < num_sockets; ++isock) {
+ query_id[isock] =
+ mdns_multiquery_send(sockets[isock], query, count, buffer, capacity, 0);
+ if (query_id[isock] < 0)
+ printf("Failed to send mDNS query: %s\n", strerror(errno));
+ }
+
+ // This is a simple implementation that loops for 5 seconds or as long as we get replies
+ int res;
+ printf("Reading mDNS query replies\n");
+ int records = 0;
+ do {
+ struct timeval timeout;
+ timeout.tv_sec = 10;
+ 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)) {
+ int rec = mdns_query_recv(sockets[isock], buffer, capacity, query_callback,
+ user_data, query_id[isock]);
+ if (rec > 0)
+ records += rec;
+ }
+ FD_SET(sockets[isock], &readfs);
+ }
+ }
+ } while (res > 0);
+
+ printf("Read %d records\n", records);
+
+ free(buffer);
+
+ for (int isock = 0; isock < num_sockets; ++isock)
+ mdns_socket_close(sockets[isock]);
+ printf("Closed socket%s\n", num_sockets ? "s" : "");
+
+ return 0;
+}
+
+// Provide a mDNS service, answering incoming DNS-SD and mDNS queries
+static int
+service_mdns(const char* hostname, const char* service_name, int service_port) {
+ int sockets[32];
+ int num_sockets = open_service_sockets(sockets, sizeof(sockets) / sizeof(sockets[0]));
+ if (num_sockets <= 0) {
+ printf("Failed to open any client sockets\n");
+ return -1;
+ }
+ printf("Opened %d socket%s for mDNS service\n", num_sockets, num_sockets ? "s" : "");
+
+ size_t service_name_length = strlen(service_name);
+ if (!service_name_length) {
+ printf("Invalid service name\n");
+ return -1;
+ }
+
+ char* service_name_buffer = malloc(service_name_length + 2);
+ memcpy(service_name_buffer, service_name, service_name_length);
+ if (service_name_buffer[service_name_length - 1] != '.')
+ service_name_buffer[service_name_length++] = '.';
+ service_name_buffer[service_name_length] = 0;
+ service_name = service_name_buffer;
+
+ printf("Service mDNS: %s:%d\n", service_name, service_port);
+ printf("Hostname: %s\n", hostname);
+
+ size_t capacity = 2048;
+ void* buffer = malloc(capacity);
+
+ mdns_string_t service_string = (mdns_string_t){service_name, strlen(service_name)};
+ mdns_string_t hostname_string = (mdns_string_t){hostname, strlen(hostname)};
+
+ // Build the service instance ".<_service-name>._tcp.local." string
+ char service_instance_buffer[256] = {0};
+ snprintf(service_instance_buffer, sizeof(service_instance_buffer) - 1, "%.*s.%.*s",
+ MDNS_STRING_FORMAT(hostname_string), MDNS_STRING_FORMAT(service_string));
+ mdns_string_t service_instance_string =
+ (mdns_string_t){service_instance_buffer, strlen(service_instance_buffer)};
+
+ // Build the ".local." string
+ char qualified_hostname_buffer[256] = {0};
+ snprintf(qualified_hostname_buffer, sizeof(qualified_hostname_buffer) - 1, "%.*s.local.",
+ MDNS_STRING_FORMAT(hostname_string));
+ mdns_string_t hostname_qualified_string =
+ (mdns_string_t){qualified_hostname_buffer, strlen(qualified_hostname_buffer)};
+
+ service_t service = {0};
+ service.service = service_string;
+ service.hostname = hostname_string;
+ service.service_instance = service_instance_string;
+ service.hostname_qualified = hostname_qualified_string;
+ service.address_ipv4 = service_address_ipv4;
+ service.address_ipv6 = service_address_ipv6;
+ service.port = service_port;
+
+ // Setup our mDNS records
+
+ // PTR record reverse mapping "<_service-name>._tcp.local." to
+ // ".<_service-name>._tcp.local."
+ service.record_ptr = (mdns_record_t){.name = service.service,
+ .type = MDNS_RECORDTYPE_PTR,
+ .data.ptr.name = service.service_instance,
+ .rclass = 0,
+ .ttl = 0};
+
+ // SRV record mapping ".<_service-name>._tcp.local." to
+ // ".local." with port. Set weight & priority to 0.
+ service.record_srv = (mdns_record_t){.name = service.service_instance,
+ .type = MDNS_RECORDTYPE_SRV,
+ .data.srv.name = service.hostname_qualified,
+ .data.srv.port = service.port,
+ .data.srv.priority = 0,
+ .data.srv.weight = 0,
+ .rclass = 0,
+ .ttl = 0};
+
+ // A/AAAA records mapping ".local." to IPv4/IPv6 addresses
+ service.record_a = (mdns_record_t){.name = service.hostname_qualified,
+ .type = MDNS_RECORDTYPE_A,
+ .data.a.addr = service.address_ipv4,
+ .rclass = 0,
+ .ttl = 0};
+
+ service.record_aaaa = (mdns_record_t){.name = service.hostname_qualified,
+ .type = MDNS_RECORDTYPE_AAAA,
+ .data.aaaa.addr = service.address_ipv6,
+ .rclass = 0,
+ .ttl = 0};
+
+ // Add two test TXT records for our service instance name, will be coalesced into
+ // one record with both key-value pair strings by the library
+ service.txt_record[0] = (mdns_record_t){.name = service.service_instance,
+ .type = MDNS_RECORDTYPE_TXT,
+ .data.txt.key = {MDNS_STRING_CONST("test")},
+ .data.txt.value = {MDNS_STRING_CONST("1")},
+ .rclass = 0,
+ .ttl = 0};
+ service.txt_record[1] = (mdns_record_t){.name = service.service_instance,
+ .type = MDNS_RECORDTYPE_TXT,
+ .data.txt.key = {MDNS_STRING_CONST("other")},
+ .data.txt.value = {MDNS_STRING_CONST("value")},
+ .rclass = 0,
+ .ttl = 0};
+
+ // Send an announcement on startup of service
+ {
+ printf("Sending announce\n");
+ mdns_record_t additional[5] = {0};
+ size_t additional_count = 0;
+ additional[additional_count++] = service.record_srv;
+ if (service.address_ipv4.sin_family == AF_INET)
+ additional[additional_count++] = service.record_a;
+ if (service.address_ipv6.sin6_family == AF_INET6)
+ additional[additional_count++] = service.record_aaaa;
+ additional[additional_count++] = service.txt_record[0];
+ additional[additional_count++] = service.txt_record[1];
+
+ for (int isock = 0; isock < num_sockets; ++isock)
+ mdns_announce_multicast(sockets[isock], buffer, capacity, service.record_ptr, 0, 0,
+ additional, additional_count);
+ }
+
+ // This is a crude implementation that checks for incoming queries
+ while (running) {
+ 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);
+ }
+
+ struct timeval timeout;
+ timeout.tv_sec = 0;
+ timeout.tv_usec = 100000;
+
+ if (select(nfds, &readfs, 0, 0, &timeout) >= 0) {
+ for (int isock = 0; isock < num_sockets; ++isock) {
+ if (FD_ISSET(sockets[isock], &readfs)) {
+ mdns_socket_listen(sockets[isock], buffer, capacity, service_callback,
+ &service);
+ }
+ FD_SET(sockets[isock], &readfs);
+ }
+ } else {
+ break;
+ }
+ }
+
+ // Send a goodbye on end of service
+ {
+ printf("Sending goodbye\n");
+ mdns_record_t additional[5] = {0};
+ size_t additional_count = 0;
+ additional[additional_count++] = service.record_srv;
+ if (service.address_ipv4.sin_family == AF_INET)
+ additional[additional_count++] = service.record_a;
+ if (service.address_ipv6.sin6_family == AF_INET6)
+ additional[additional_count++] = service.record_aaaa;
+ additional[additional_count++] = service.txt_record[0];
+ additional[additional_count++] = service.txt_record[1];
+
+ for (int isock = 0; isock < num_sockets; ++isock)
+ mdns_goodbye_multicast(sockets[isock], buffer, capacity, service.record_ptr, 0, 0,
+ additional, additional_count);
+ }
+
+ free(buffer);
+ free(service_name_buffer);
+
+ for (int isock = 0; isock < num_sockets; ++isock)
+ mdns_socket_close(sockets[isock]);
+ printf("Closed socket%s\n", num_sockets ? "s" : "");
+
+ return 0;
+}
+
+
+// Dump all incoming mDNS queries and answers
+static int
+dump_mdns(void) {
+ int sockets[32];
+ int num_sockets = open_service_sockets(sockets, sizeof(sockets) / sizeof(sockets[0]));
+ if (num_sockets <= 0) {
+ printf("Failed to open any client sockets\n");
+ return -1;
+ }
+ printf("Opened %d socket%s for mDNS dump\n", num_sockets, num_sockets ? "s" : "");
+
+ size_t capacity = 2048;
+ void* buffer = malloc(capacity);
+
+ // This is a crude implementation that checks for incoming queries and answers
+ while (running) {
+ 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);
+ }
+
+ struct timeval timeout;
+ timeout.tv_sec = 0;
+ timeout.tv_usec = 100000;
+
+ if (select(nfds, &readfs, 0, 0, &timeout) >= 0) {
+ for (int isock = 0; isock < num_sockets; ++isock) {
+ if (FD_ISSET(sockets[isock], &readfs)) {
+ mdns_socket_listen(sockets[isock], buffer, capacity, dump_callback, 0);
+ }
+ FD_SET(sockets[isock], &readfs);
+ }
+ } else {
+ break;
+ }
+ }
+
+ free(buffer);
+
+ for (int isock = 0; isock < num_sockets; ++isock)
+ mdns_socket_close(sockets[isock]);
+ printf("Closed socket%s\n", num_sockets ? "s" : "");
+
+ return 0;
+}
+
+#ifdef MDNS_FUZZING
+
+#undef printf
+
+// Fuzzing by piping random data into the recieve functions
+static void
+fuzz_mdns(void) {
+#define MAX_FUZZ_SIZE 4096
+#define MAX_PASSES (1024 * 1024 * 1024)
+
+ static uint8_t fuzz_mdns_services_query[] = {
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, '_',
+ 's', 'e', 'r', 'v', 'i', 'c', 'e', 's', 0x07, '_', 'd', 'n', 's', '-',
+ 's', 'd', 0x04, '_', 'u', 'd', 'p', 0x05, 'l', 'o', 'c', 'a', 'l', 0x00};
+
+ uint8_t* buffer = malloc(MAX_FUZZ_SIZE);
+ uint8_t* strbuffer = malloc(MAX_FUZZ_SIZE);
+ for (int ipass = 0; ipass < MAX_PASSES; ++ipass) {
+ size_t size = rand() % MAX_FUZZ_SIZE;
+ for (size_t i = 0; i < size; ++i)
+ buffer[i] = rand() & 0xFF;
+
+ if (ipass % 4) {
+ // Crafted fuzzing, make sure header is reasonable
+ memcpy(buffer, fuzz_mdns_services_query, sizeof(fuzz_mdns_services_query));
+ uint16_t* header = (uint16_t*)buffer;
+ header[0] = 0;
+ header[1] = htons(0x8400);
+ for (int ival = 2; ival < 6; ++ival)
+ header[ival] = rand() & 0xFF;
+ }
+ mdns_discovery_recv(0, (void*)buffer, size, query_callback, 0);
+
+ mdns_socket_listen(0, (void*)buffer, size, service_callback, 0);
+
+ if (ipass % 4) {
+ // Crafted fuzzing, make sure header is reasonable (1 question claimed).
+ // Earlier passes will have done completely random data
+ uint16_t* header = (uint16_t*)buffer;
+ header[2] = htons(1);
+ }
+ mdns_query_recv(0, (void*)buffer, size, query_callback, 0, 0);
+
+ // Fuzzing by piping random data into the parse functions
+ size_t offset = size ? (rand() % size) : 0;
+ size_t length = size ? (rand() % (size - offset)) : 0;
+ mdns_record_parse_ptr(buffer, size, offset, length, strbuffer, MAX_FUZZ_SIZE);
+
+ offset = size ? (rand() % size) : 0;
+ length = size ? (rand() % (size - offset)) : 0;
+ mdns_record_parse_srv(buffer, size, offset, length, strbuffer, MAX_FUZZ_SIZE);
+
+ struct sockaddr_in addr_ipv4;
+ offset = size ? (rand() % size) : 0;
+ length = size ? (rand() % (size - offset)) : 0;
+ mdns_record_parse_a(buffer, size, offset, length, &addr_ipv4);
+
+ struct sockaddr_in6 addr_ipv6;
+ offset = size ? (rand() % size) : 0;
+ length = size ? (rand() % (size - offset)) : 0;
+ mdns_record_parse_aaaa(buffer, size, offset, length, &addr_ipv6);
+
+ offset = size ? (rand() % size) : 0;
+ length = size ? (rand() % (size - offset)) : 0;
+ mdns_record_parse_txt(buffer, size, offset, length, (mdns_record_txt_t*)strbuffer,
+ MAX_FUZZ_SIZE);
+
+ if (ipass && !(ipass % 10000))
+ printf("Completed fuzzing pass %d\n", ipass);
+ }
+
+ free(buffer);
+ free(strbuffer);
+}
+
+#endif
+
+#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
+
+int
+__main(int argc, const char* const* argv) {
+ int mode = 0;
+ const char* service = "_test-mdns._tcp.local.";
+ const char* hostname = "dummy-host";
+ mdns_query_t query[16];
+ size_t query_count = 0;
+ int service_port = 42424;
+
+#ifdef _WIN32
+
+ WORD versionWanted = MAKEWORD(1, 1);
+ WSADATA wsaData;
+ if (WSAStartup(versionWanted, &wsaData)) {
+ printf("Failed to initialize WinSock\n");
+ return -1;
+ }
+
+ 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
+
+ for (int iarg = 0; iarg < argc; ++iarg) {
+ if (strcmp(argv[iarg], "--discovery") == 0) {
+ mode = 0;
+ } else if (strcmp(argv[iarg], "--query") == 0) {
+ // Each query is either a service name, or a pair of record type and a service name
+ // For example:
+ // mdns --query _foo._tcp.local.
+ // mdns --query SRV myhost._foo._tcp.local.
+ // mdns --query A myhost._tcp.local. _service._tcp.local.
+ mode = 1;
+ ++iarg;
+ while ((iarg < argc) && (query_count < 16)) {
+ query[query_count].name = argv[iarg++];
+ query[query_count].type = MDNS_RECORDTYPE_PTR;
+ if (iarg < argc) {
+ mdns_record_type_t record_type = 0;
+ if (strcmp(query[query_count].name, "PTR") == 0)
+ record_type = MDNS_RECORDTYPE_PTR;
+ else if (strcmp(query[query_count].name, "SRV") == 0)
+ record_type = MDNS_RECORDTYPE_SRV;
+ else if (strcmp(query[query_count].name, "A") == 0)
+ record_type = MDNS_RECORDTYPE_A;
+ else if (strcmp(query[query_count].name, "AAAA") == 0)
+ record_type = MDNS_RECORDTYPE_AAAA;
+ if (record_type != 0) {
+ query[query_count].type = record_type;
+ query[query_count].name = argv[iarg++];
+ }
+ }
+ query[query_count].length = strlen(query[query_count].name);
+ ++query_count;
+ }
+ } else if (strcmp(argv[iarg], "--service") == 0) {
+ mode = 2;
+ ++iarg;
+ if (iarg < argc)
+ service = argv[iarg];
+ } else if (strcmp(argv[iarg], "--dump") == 0) {
+ mode = 3;
+ } else if (strcmp(argv[iarg], "--hostname") == 0) {
+ ++iarg;
+ if (iarg < argc)
+ hostname = argv[iarg];
+ } else if (strcmp(argv[iarg], "--port") == 0) {
+ ++iarg;
+ if (iarg < argc)
+ service_port = atoi(argv[iarg]);
+ }
+ }
+
+#ifdef MDNS_FUZZING
+ fuzz_mdns();
+#else
+ int ret;
+ if (mode == 0)
+ ret = send_dns_sd();
+ else if (mode == 1)
+ ret = send_mdns_query(query, query_count);
+ else if (mode == 2)
+ ret = service_mdns(hostname, service, service_port);
+ else if (mode == 3)
+ ret = dump_mdns();
+#endif
+
+#ifdef _WIN32
+ WSACleanup();
+#endif
+
+ return 0;
+}
diff --git a/deps_src/mdns/mdns.h b/deps_src/mdns/mdns.h
new file mode 100644
index 0000000000..c32fd7f505
--- /dev/null
+++ b/deps_src/mdns/mdns.h
@@ -0,0 +1,1641 @@
+/* mdns.h - mDNS/DNS-SD library - Public Domain - 2017 Mattias Jansson
+ *
+ * This library provides a cross-platform mDNS and DNS-SD library in C.
+ * The implementation is based on RFC 6762 and RFC 6763.
+ *
+ * The latest source code is always available at
+ *
+ * https://github.com/mjansson/mdns
+ *
+ * This library is put in the public domain; you can redistribute it and/or modify it without any
+ * restrictions.
+ *
+ */
+
+#pragma once
+
+#include
+#include
+#include
+#include
+
+#include
+#ifdef _WIN32
+#include
+#include
+#define strncasecmp _strnicmp
+#else
+#include
+#include
+#include
+#endif
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#define MDNS_INVALID_POS ((size_t)-1)
+
+#define MDNS_STRING_CONST(s) (s), (sizeof((s)) - 1)
+#define MDNS_STRING_ARGS(s) s.str, s.length
+#define MDNS_STRING_FORMAT(s) (int)((s).length), s.str
+
+#define MDNS_POINTER_OFFSET(p, ofs) ((void*)((char*)(p) + (ptrdiff_t)(ofs)))
+#define MDNS_POINTER_OFFSET_CONST(p, ofs) ((const void*)((const char*)(p) + (ptrdiff_t)(ofs)))
+#define MDNS_POINTER_DIFF(a, b) ((size_t)((const char*)(a) - (const char*)(b)))
+
+#define MDNS_PORT 5353
+#define MDNS_UNICAST_RESPONSE 0x8000U
+#define MDNS_CACHE_FLUSH 0x8000U
+#define MDNS_MAX_SUBSTRINGS 64
+
+enum mdns_record_type {
+ MDNS_RECORDTYPE_IGNORE = 0,
+ // Address
+ MDNS_RECORDTYPE_A = 1,
+ // Domain Name pointer
+ MDNS_RECORDTYPE_PTR = 12,
+ // Arbitrary text string
+ MDNS_RECORDTYPE_TXT = 16,
+ // IP6 Address [Thomson]
+ MDNS_RECORDTYPE_AAAA = 28,
+ // Server Selection [RFC2782]
+ MDNS_RECORDTYPE_SRV = 33,
+ // Any available records
+ MDNS_RECORDTYPE_ANY = 255
+};
+
+enum mdns_entry_type {
+ MDNS_ENTRYTYPE_QUESTION = 0,
+ MDNS_ENTRYTYPE_ANSWER = 1,
+ MDNS_ENTRYTYPE_AUTHORITY = 2,
+ MDNS_ENTRYTYPE_ADDITIONAL = 3
+};
+
+enum mdns_class { MDNS_CLASS_IN = 1, MDNS_CLASS_ANY = 255 };
+
+typedef enum mdns_record_type mdns_record_type_t;
+typedef enum mdns_entry_type mdns_entry_type_t;
+typedef enum mdns_class mdns_class_t;
+
+typedef int (*mdns_record_callback_fn)(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);
+
+typedef struct mdns_string_t mdns_string_t;
+typedef struct mdns_string_pair_t mdns_string_pair_t;
+typedef struct mdns_string_table_item_t mdns_string_table_item_t;
+typedef struct mdns_string_table_t mdns_string_table_t;
+typedef struct mdns_record_t mdns_record_t;
+typedef struct mdns_record_srv_t mdns_record_srv_t;
+typedef struct mdns_record_ptr_t mdns_record_ptr_t;
+typedef struct mdns_record_a_t mdns_record_a_t;
+typedef struct mdns_record_aaaa_t mdns_record_aaaa_t;
+typedef struct mdns_record_txt_t mdns_record_txt_t;
+typedef struct mdns_query_t mdns_query_t;
+
+#ifdef _WIN32
+typedef int mdns_size_t;
+typedef int mdns_ssize_t;
+#else
+typedef size_t mdns_size_t;
+typedef ssize_t mdns_ssize_t;
+#endif
+
+struct mdns_string_t {
+ const char* str;
+ size_t length;
+};
+
+struct mdns_ip_mac_str {
+ char ip[16] ;
+ char mac[12];
+};
+
+struct mdns_string_pair_t {
+ size_t offset;
+ size_t length;
+ int ref;
+};
+
+struct mdns_string_table_t {
+ size_t offset[16];
+ size_t count;
+ size_t next;
+};
+
+struct mdns_record_srv_t {
+ uint16_t priority;
+ uint16_t weight;
+ uint16_t port;
+ mdns_string_t name;
+};
+
+struct mdns_record_ptr_t {
+ mdns_string_t name;
+};
+
+struct mdns_record_a_t {
+ struct sockaddr_in addr;
+};
+
+struct mdns_record_aaaa_t {
+ struct sockaddr_in6 addr;
+};
+
+struct mdns_record_txt_t {
+ mdns_string_t key;
+ mdns_string_t value;
+};
+
+struct mdns_record_t {
+ mdns_string_t name;
+ mdns_record_type_t type;
+ union mdns_record_data {
+ mdns_record_ptr_t ptr;
+ mdns_record_srv_t srv;
+ mdns_record_a_t a;
+ mdns_record_aaaa_t aaaa;
+ mdns_record_txt_t txt;
+ } data;
+ uint16_t rclass;
+ uint32_t ttl;
+};
+
+struct mdns_header_t {
+ uint16_t query_id;
+ uint16_t flags;
+ uint16_t questions;
+ uint16_t answer_rrs;
+ uint16_t authority_rrs;
+ uint16_t additional_rrs;
+};
+
+struct mdns_query_t {
+ mdns_record_type_t type;
+ const char* name;
+ size_t length;
+};
+
+void discoveryServiceC();
+
+// mDNS/DNS-SD public API
+
+//! Open and setup a IPv4 socket for mDNS/DNS-SD. To bind the socket to a specific interface, pass
+//! in the appropriate socket address in saddr, otherwise pass a null pointer for INADDR_ANY. To
+//! send one-shot discovery requests and queries pass a null pointer or set 0 as port to assign a
+//! random user level ephemeral port. To run discovery service listening for incoming discoveries
+//! and queries, you must set MDNS_PORT as port.
+static inline int
+mdns_socket_open_ipv4(const struct sockaddr_in* saddr);
+
+//! Setup an already opened IPv4 socket for mDNS/DNS-SD. To bind the socket to a specific interface,
+//! pass in the appropriate socket address in saddr, otherwise pass a null pointer for INADDR_ANY.
+//! To send one-shot discovery requests and queries pass a null pointer or set 0 as port to assign a
+//! random user level ephemeral port. To run discovery service listening for incoming discoveries
+//! and queries, you must set MDNS_PORT as port.
+static inline int
+mdns_socket_setup_ipv4(int sock, const struct sockaddr_in* saddr);
+
+//! Open and setup a IPv6 socket for mDNS/DNS-SD. To bind the socket to a specific interface, pass
+//! in the appropriate socket address in saddr, otherwise pass a null pointer for in6addr_any. To
+//! send one-shot discovery requests and queries pass a null pointer or set 0 as port to assign a
+//! random user level ephemeral port. To run discovery service listening for incoming discoveries
+//! and queries, you must set MDNS_PORT as port.
+static inline int
+mdns_socket_open_ipv6(const struct sockaddr_in6* saddr);
+
+//! Setup an already opened IPv6 socket for mDNS/DNS-SD. To bind the socket to a specific interface,
+//! pass in the appropriate socket address in saddr, otherwise pass a null pointer for in6addr_any.
+//! To send one-shot discovery requests and queries pass a null pointer or set 0 as port to assign a
+//! random user level ephemeral port. To run discovery service listening for incoming discoveries
+//! and queries, you must set MDNS_PORT as port.
+static inline int
+mdns_socket_setup_ipv6(int sock, const struct sockaddr_in6* saddr);
+
+//! Close a socket opened with mdns_socket_open_ipv4 and mdns_socket_open_ipv6.
+static inline void
+mdns_socket_close(int sock);
+
+//! Listen for incoming multicast DNS-SD and mDNS query requests. The socket should have been opened
+//! on port MDNS_PORT using one of the mdns open or setup socket functions. Buffer must be 32 bit
+//! aligned. Parsing is stopped when callback function returns non-zero. Returns the number of
+//! queries parsed.
+static inline size_t
+mdns_socket_listen(int sock, void* buffer, size_t capacity, mdns_record_callback_fn callback,
+ void* user_data);
+
+//! Send a multicast DNS-SD reqeuest on the given socket to discover available services. Returns 0
+//! on success, or <0 if error.
+static inline int
+mdns_discovery_send(int sock);
+
+//! Recieve unicast responses to a DNS-SD sent with mdns_discovery_send. Any data will be piped to
+//! the given callback for parsing. Buffer must be 32 bit aligned. Parsing is stopped when callback
+//! function returns non-zero. Returns the number of responses parsed.
+static inline size_t
+mdns_discovery_recv(int sock, void* buffer, size_t capacity, mdns_record_callback_fn callback,
+ void* user_data);
+
+
+//! Send a multicast mDNS query on the given socket for the given service name. The supplied buffer
+//! will be used to build the query packet and must be 32 bit aligned. The query ID can be set to
+//! non-zero to filter responses, however the RFC states that the query ID SHOULD be set to 0 for
+//! multicast queries. The query will request a unicast response if the socket is bound to an
+//! ephemeral port, or a multicast response if the socket is bound to mDNS port 5353. Returns the
+//! used query ID, or <0 if error.
+static inline int
+mdns_query_send(int sock, mdns_record_type_t type, const char* name, size_t length, void* buffer,
+ size_t capacity, uint16_t query_id);
+
+//! Send a multicast mDNS query on the given socket for the given service names. The supplied buffer
+//! will be used to build the query packet and must be 32 bit aligned. The query ID can be set to
+//! non-zero to filter responses, however the RFC states that the query ID SHOULD be set to 0 for
+//! multicast queries. Each additional service name query consists of a triplet - a record type
+//! (mdns_record_type_t), a name string pointer (const char*) and a name length (size_t). The list
+//! of variable arguments should be terminated with a record type of 0. The query will request a
+//! unicast response if the socket is bound to an ephemeral port, or a multicast response if the
+//! socket is bound to mDNS port 5353. Returns the used query ID, or <0 if error.
+static inline int
+mdns_multiquery_send(int sock, const mdns_query_t* query, size_t count, void* buffer,
+ size_t capacity, uint16_t query_id);
+
+//! Receive unicast responses to a mDNS query sent with mdns_discovery_recv, optionally filtering
+//! out any responses not matching the given query ID. Set the query ID to 0 to parse all responses,
+//! even if it is not matching the query ID set in a specific query. Any data will be piped to the
+//! given callback for parsing. Buffer must be 32 bit aligned. Parsing is stopped when callback
+//! function returns non-zero. Returns the number of responses parsed.
+static inline size_t
+mdns_query_recv(int sock, void* buffer, size_t capacity, mdns_record_callback_fn callback,
+ void* user_data, int query_id);
+
+//! Send a variable unicast mDNS query answer to any question with variable number of records to the
+//! given address. Use the top bit of the query class field (MDNS_UNICAST_RESPONSE) in the query
+//! recieved to determine if the answer should be sent unicast (bit set) or multicast (bit not set).
+//! Buffer must be 32 bit aligned. The record type and name should match the data from the query
+//! recieved. Returns 0 if success, or <0 if error.
+static inline int
+mdns_query_answer_unicast(int sock, const void* address, size_t address_size, void* buffer,
+ size_t capacity, uint16_t query_id, mdns_record_type_t record_type,
+ const char* name, size_t name_length, mdns_record_t answer,
+ const mdns_record_t* authority, size_t authority_count,
+ const mdns_record_t* additional, size_t additional_count);
+
+//! Send a variable multicast mDNS query answer to any question with variable number of records. Use
+//! the top bit of the query class field (MDNS_UNICAST_RESPONSE) in the query recieved to determine
+//! if the answer should be sent unicast (bit set) or multicast (bit not set). Buffer must be 32 bit
+//! aligned. Returns 0 if success, or <0 if error.
+static inline int
+mdns_query_answer_multicast(int sock, void* buffer, size_t capacity, mdns_record_t answer,
+ const mdns_record_t* authority, size_t authority_count,
+ const mdns_record_t* additional, size_t additional_count);
+
+//! Send a variable multicast mDNS announcement (as an unsolicited answer) with variable number of
+//! records.Buffer must be 32 bit aligned. Returns 0 if success, or <0 if error. Use this on service
+//! startup to announce your instance to the local network.
+static inline int
+mdns_announce_multicast(int sock, void* buffer, size_t capacity, mdns_record_t answer,
+ const mdns_record_t* authority, size_t authority_count,
+ const mdns_record_t* additional, size_t additional_count);
+
+//! Send a variable multicast mDNS announcement. Use this on service end for removing the resource
+//! from the local network. The records must be identical to the according announcement.
+static inline int
+mdns_goodbye_multicast(int sock, void* buffer, size_t capacity, mdns_record_t answer,
+ const mdns_record_t* authority, size_t authority_count,
+ const mdns_record_t* additional, size_t additional_count);
+
+// Parse records functions
+
+//! Parse a PTR record, returns the name in the record
+static inline mdns_string_t
+mdns_record_parse_ptr(const void* buffer, size_t size, size_t offset, size_t length,
+ char* strbuffer, size_t capacity);
+
+//! Parse a SRV record, returns the priority, weight, port and name in the record
+static inline mdns_record_srv_t
+mdns_record_parse_srv(const void* buffer, size_t size, size_t offset, size_t length,
+ char* strbuffer, size_t capacity);
+
+//! Parse an A record, returns the IPv4 address in the record
+static inline struct sockaddr_in*
+mdns_record_parse_a(const void* buffer, size_t size, size_t offset, size_t length,
+ struct sockaddr_in* addr);
+
+//! Parse an AAAA record, returns the IPv6 address in the record
+static inline struct sockaddr_in6*
+mdns_record_parse_aaaa(const void* buffer, size_t size, size_t offset, size_t length,
+ struct sockaddr_in6* addr);
+
+//! Parse a TXT record, returns the number of key=value records parsed and stores the key-value
+//! pairs in the supplied buffer
+static inline size_t
+mdns_record_parse_txt(const void* buffer, size_t size, size_t offset, size_t length,
+ mdns_record_txt_t* records, size_t capacity);
+
+// Internal functions
+
+static inline mdns_string_t
+mdns_string_extract(const void* buffer, size_t size, size_t* offset, char* str, size_t capacity);
+
+static inline int
+mdns_string_skip(const void* buffer, size_t size, size_t* offset);
+
+static inline size_t
+mdns_string_find(const char* str, size_t length, char c, size_t offset);
+
+//! Compare if two strings are equal. If the strings are equal it returns >0 and the offset variables are
+//! updated to the end of the corresponding strings. If the strings are not equal it returns 0 and
+//! the offset variables are NOT updated.
+static inline int
+mdns_string_equal(const void* buffer_lhs, size_t size_lhs, size_t* ofs_lhs, const void* buffer_rhs,
+ size_t size_rhs, size_t* ofs_rhs);
+
+static inline void*
+mdns_string_make(void* buffer, size_t capacity, void* data, const char* name, size_t length,
+ mdns_string_table_t* string_table);
+
+static inline size_t
+mdns_string_table_find(mdns_string_table_t* string_table, const void* buffer, size_t capacity,
+ const char* str, size_t first_length, size_t total_length);
+
+// Implementations
+
+static inline uint16_t
+mdns_ntohs(const void* data) {
+ uint16_t aligned;
+ memcpy(&aligned, data, sizeof(uint16_t));
+ return ntohs(aligned);
+}
+
+static inline uint32_t
+mdns_ntohl(const void* data) {
+ uint32_t aligned;
+ memcpy(&aligned, data, sizeof(uint32_t));
+ return ntohl(aligned);
+}
+
+static inline void*
+mdns_htons(void* data, uint16_t val) {
+ val = htons(val);
+ memcpy(data, &val, sizeof(uint16_t));
+ return MDNS_POINTER_OFFSET(data, sizeof(uint16_t));
+}
+
+static inline void*
+mdns_htonl(void* data, uint32_t val) {
+ val = htonl(val);
+ memcpy(data, &val, sizeof(uint32_t));
+ return MDNS_POINTER_OFFSET(data, sizeof(uint32_t));
+}
+
+static inline int
+mdns_socket_open_ipv4(const struct sockaddr_in* saddr) {
+ int sock = (int)socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
+ if (sock < 0)
+ return -1;
+ if (mdns_socket_setup_ipv4(sock, saddr)) {
+ mdns_socket_close(sock);
+ return -1;
+ }
+ return sock;
+}
+//==========================add
+int
+send_dns_sd(void);
+int
+open_client_sockets(int* sockets, int max_sockets, int port);
+
+mdns_string_t
+ipv4_address_to_string(char* buffer, size_t capacity, const struct sockaddr_in* addr,
+ size_t addrlen);
+mdns_string_t
+ip_address_to_string(char* buffer, size_t capacity, const struct sockaddr* addr, size_t addrlen);
+
+int
+query_callback(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);
+
+
+static inline int
+mdns_socket_setup_ipv4(int sock, const struct sockaddr_in* saddr) {
+ unsigned char ttl = 1;
+ unsigned char loopback = 1;
+ unsigned int reuseaddr = 1;
+ struct ip_mreq req;
+
+ setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (const char*)&reuseaddr, sizeof(reuseaddr));
+#ifdef SO_REUSEPORT
+ setsockopt(sock, SOL_SOCKET, SO_REUSEPORT, (const char*)&reuseaddr, sizeof(reuseaddr));
+#endif
+ setsockopt(sock, IPPROTO_IP, IP_MULTICAST_TTL, (const char*)&ttl, sizeof(ttl));
+ setsockopt(sock, IPPROTO_IP, IP_MULTICAST_LOOP, (const char*)&loopback, sizeof(loopback));
+
+ memset(&req, 0, sizeof(req));
+ req.imr_multiaddr.s_addr = htonl((((uint32_t)224U) << 24U) | ((uint32_t)251U));
+ if (saddr)
+ req.imr_interface = saddr->sin_addr;
+ if (setsockopt(sock, IPPROTO_IP, IP_ADD_MEMBERSHIP, (char*)&req, sizeof(req)))
+ return -1;
+
+ struct sockaddr_in sock_addr;
+ if (!saddr) {
+ memset(&sock_addr, 0, sizeof(struct sockaddr_in));
+ sock_addr.sin_family = AF_INET;
+ sock_addr.sin_addr.s_addr = INADDR_ANY;
+#ifdef __APPLE__
+ sock_addr.sin_len = sizeof(struct sockaddr_in);
+#endif
+ } else {
+ memcpy(&sock_addr, saddr, sizeof(struct sockaddr_in));
+ setsockopt(sock, IPPROTO_IP, IP_MULTICAST_IF, (const char*)&sock_addr.sin_addr,
+ sizeof(sock_addr.sin_addr));
+#ifndef _WIN32
+ sock_addr.sin_addr.s_addr = INADDR_ANY;
+#endif
+ }
+
+ if (bind(sock, (struct sockaddr*)&sock_addr, sizeof(struct sockaddr_in)))
+ return -1;
+
+#ifdef _WIN32
+ unsigned long param = 1;
+ ioctlsocket(sock, FIONBIO, ¶m);
+#else
+ const int flags = fcntl(sock, F_GETFL, 0);
+ fcntl(sock, F_SETFL, flags | O_NONBLOCK);
+#endif
+
+ return 0;
+}
+
+static inline int
+mdns_socket_open_ipv6(const struct sockaddr_in6* saddr) {
+ int sock = (int)socket(AF_INET6, SOCK_DGRAM, IPPROTO_UDP);
+ if (sock < 0)
+ return -1;
+ if (mdns_socket_setup_ipv6(sock, saddr)) {
+ mdns_socket_close(sock);
+ return -1;
+ }
+ return sock;
+}
+
+static inline int
+mdns_socket_setup_ipv6(int sock, const struct sockaddr_in6* saddr) {
+ int hops = 1;
+ unsigned int loopback = 1;
+ unsigned int reuseaddr = 1;
+ struct ipv6_mreq req;
+
+ setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (const char*)&reuseaddr, sizeof(reuseaddr));
+#ifdef SO_REUSEPORT
+ setsockopt(sock, SOL_SOCKET, SO_REUSEPORT, (const char*)&reuseaddr, sizeof(reuseaddr));
+#endif
+ setsockopt(sock, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, (const char*)&hops, sizeof(hops));
+ setsockopt(sock, IPPROTO_IPV6, IPV6_MULTICAST_LOOP, (const char*)&loopback, sizeof(loopback));
+
+ memset(&req, 0, sizeof(req));
+ req.ipv6mr_multiaddr.s6_addr[0] = 0xFF;
+ req.ipv6mr_multiaddr.s6_addr[1] = 0x02;
+ req.ipv6mr_multiaddr.s6_addr[15] = 0xFB;
+ if (setsockopt(sock, IPPROTO_IPV6, IPV6_JOIN_GROUP, (char*)&req, sizeof(req)))
+ return -1;
+
+ struct sockaddr_in6 sock_addr;
+ if (!saddr) {
+ memset(&sock_addr, 0, sizeof(struct sockaddr_in6));
+ sock_addr.sin6_family = AF_INET6;
+ sock_addr.sin6_addr = in6addr_any;
+#ifdef __APPLE__
+ sock_addr.sin6_len = sizeof(struct sockaddr_in6);
+#endif
+ } else {
+ memcpy(&sock_addr, saddr, sizeof(struct sockaddr_in6));
+ unsigned int ifindex = 0;
+ setsockopt(sock, IPPROTO_IPV6, IPV6_MULTICAST_IF, (const char*)&ifindex, sizeof(ifindex));
+#ifndef _WIN32
+ sock_addr.sin6_addr = in6addr_any;
+#endif
+ }
+
+ if (bind(sock, (struct sockaddr*)&sock_addr, sizeof(struct sockaddr_in6)))
+ return -1;
+
+#ifdef _WIN32
+ unsigned long param = 1;
+ ioctlsocket(sock, FIONBIO, ¶m);
+#else
+ const int flags = fcntl(sock, F_GETFL, 0);
+ fcntl(sock, F_SETFL, flags | O_NONBLOCK);
+#endif
+
+ return 0;
+}
+
+static inline void
+mdns_socket_close(int sock) {
+#ifdef _WIN32
+ closesocket(sock);
+#else
+ close(sock);
+#endif
+}
+
+static inline int
+mdns_is_string_ref(uint8_t val) {
+ return (0xC0 == (val & 0xC0));
+}
+
+static inline mdns_string_pair_t
+mdns_get_next_substring(const void* rawdata, size_t size, size_t offset) {
+ const uint8_t* buffer = (const uint8_t*)rawdata;
+ mdns_string_pair_t pair = {MDNS_INVALID_POS, 0, 0};
+ if (offset >= size)
+ return pair;
+ if (!buffer[offset]) {
+ pair.offset = offset;
+ return pair;
+ }
+ int recursion = 0;
+ while (mdns_is_string_ref(buffer[offset])) {
+ if (size < offset + 2)
+ return pair;
+
+ offset = mdns_ntohs(MDNS_POINTER_OFFSET(buffer, offset)) & 0x3fff;
+ if (offset >= size)
+ return pair;
+
+ pair.ref = 1;
+ if (++recursion > 16)
+ return pair;
+ }
+
+ size_t length = (size_t)buffer[offset++];
+ if (size < offset + length)
+ return pair;
+
+ pair.offset = offset;
+ pair.length = length;
+
+ return pair;
+}
+
+static inline int
+mdns_string_skip(const void* buffer, size_t size, size_t* offset) {
+ size_t cur = *offset;
+ mdns_string_pair_t substr;
+ unsigned int counter = 0;
+ do {
+ substr = mdns_get_next_substring(buffer, size, cur);
+ if ((substr.offset == MDNS_INVALID_POS) || (counter++ > MDNS_MAX_SUBSTRINGS))
+ return 0;
+ if (substr.ref) {
+ *offset = cur + 2;
+ return 1;
+ }
+ cur = substr.offset + substr.length;
+ } while (substr.length);
+
+ *offset = cur + 1;
+ return 1;
+}
+
+static inline int
+mdns_string_equal(const void* buffer_lhs, size_t size_lhs, size_t* ofs_lhs, const void* buffer_rhs,
+ size_t size_rhs, size_t* ofs_rhs) {
+ size_t lhs_cur = *ofs_lhs;
+ size_t rhs_cur = *ofs_rhs;
+ size_t lhs_end = MDNS_INVALID_POS;
+ size_t rhs_end = MDNS_INVALID_POS;
+ mdns_string_pair_t lhs_substr;
+ mdns_string_pair_t rhs_substr;
+ unsigned int counter = 0;
+ do {
+ lhs_substr = mdns_get_next_substring(buffer_lhs, size_lhs, lhs_cur);
+ rhs_substr = mdns_get_next_substring(buffer_rhs, size_rhs, rhs_cur);
+ if ((lhs_substr.offset == MDNS_INVALID_POS) || (rhs_substr.offset == MDNS_INVALID_POS) ||
+ (counter++ > MDNS_MAX_SUBSTRINGS))
+ return 0;
+ if (lhs_substr.length != rhs_substr.length)
+ return 0;
+ if (strncasecmp((const char*)MDNS_POINTER_OFFSET_CONST(buffer_rhs, rhs_substr.offset),
+ (const char*)MDNS_POINTER_OFFSET_CONST(buffer_lhs, lhs_substr.offset),
+ rhs_substr.length))
+ return 0;
+ if (lhs_substr.ref && (lhs_end == MDNS_INVALID_POS))
+ lhs_end = lhs_cur + 2;
+ if (rhs_substr.ref && (rhs_end == MDNS_INVALID_POS))
+ rhs_end = rhs_cur + 2;
+ lhs_cur = lhs_substr.offset + lhs_substr.length;
+ rhs_cur = rhs_substr.offset + rhs_substr.length;
+ } while (lhs_substr.length);
+
+ if (lhs_end == MDNS_INVALID_POS)
+ lhs_end = lhs_cur + 1;
+ *ofs_lhs = lhs_end;
+
+ if (rhs_end == MDNS_INVALID_POS)
+ rhs_end = rhs_cur + 1;
+ *ofs_rhs = rhs_end;
+
+ return 1;
+}
+
+static inline mdns_string_t
+mdns_string_extract(const void* buffer, size_t size, size_t* offset, char* str, size_t capacity) {
+ size_t cur = *offset;
+ size_t end = MDNS_INVALID_POS;
+ mdns_string_pair_t substr;
+ mdns_string_t result;
+ result.str = str;
+ result.length = 0;
+ char* dst = str;
+ unsigned int counter = 0;
+ size_t remain = capacity;
+ do {
+ substr = mdns_get_next_substring(buffer, size, cur);
+ if ((substr.offset == MDNS_INVALID_POS) || (counter++ > MDNS_MAX_SUBSTRINGS))
+ return result;
+ if (substr.ref && (end == MDNS_INVALID_POS))
+ end = cur + 2;
+ if (substr.length) {
+ size_t to_copy = (substr.length < remain) ? substr.length : remain;
+ memcpy(dst, (const char*)buffer + substr.offset, to_copy);
+ dst += to_copy;
+ remain -= to_copy;
+ if (remain) {
+ *dst++ = '.';
+ --remain;
+ }
+ }
+ cur = substr.offset + substr.length;
+ } while (substr.length);
+
+ if (end == MDNS_INVALID_POS)
+ end = cur + 1;
+ *offset = end;
+
+ result.length = capacity - remain;
+ return result;
+}
+
+static inline size_t
+mdns_string_table_find(mdns_string_table_t* string_table, const void* buffer, size_t capacity,
+ const char* str, size_t first_length, size_t total_length) {
+ if (!string_table)
+ return MDNS_INVALID_POS;
+
+ for (size_t istr = 0; istr < string_table->count; ++istr) {
+ if (string_table->offset[istr] >= capacity)
+ continue;
+ size_t offset = 0;
+ mdns_string_pair_t sub_string =
+ mdns_get_next_substring(buffer, capacity, string_table->offset[istr]);
+ if (!sub_string.length || (sub_string.length != first_length))
+ continue;
+ if (memcmp(str, MDNS_POINTER_OFFSET(buffer, sub_string.offset), sub_string.length))
+ continue;
+
+ // Initial substring matches, now match all remaining substrings
+ offset += first_length + 1;
+ while (offset < total_length) {
+ size_t dot_pos = mdns_string_find(str, total_length, '.', offset);
+ if (dot_pos == MDNS_INVALID_POS)
+ dot_pos = total_length;
+ size_t current_length = dot_pos - offset;
+
+ sub_string =
+ mdns_get_next_substring(buffer, capacity, sub_string.offset + sub_string.length);
+ if (!sub_string.length || (sub_string.length != current_length))
+ break;
+ if (memcmp(str + offset, MDNS_POINTER_OFFSET(buffer, sub_string.offset),
+ sub_string.length))
+ break;
+
+ offset = dot_pos + 1;
+ }
+
+ // Return reference offset if entire string matches
+ if (offset >= total_length)
+ return string_table->offset[istr];
+ }
+
+ return MDNS_INVALID_POS;
+}
+
+static inline void
+mdns_string_table_add(mdns_string_table_t* string_table, size_t offset) {
+ if (!string_table)
+ return;
+
+ string_table->offset[string_table->next] = offset;
+
+ size_t table_capacity = sizeof(string_table->offset) / sizeof(string_table->offset[0]);
+ if (++string_table->count > table_capacity)
+ string_table->count = table_capacity;
+ if (++string_table->next >= table_capacity)
+ string_table->next = 0;
+}
+
+static inline size_t
+mdns_string_find(const char* str, size_t length, char c, size_t offset) {
+ const void* found;
+ if (offset >= length)
+ return MDNS_INVALID_POS;
+ found = memchr(str + offset, c, length - offset);
+ if (found)
+ return (size_t)MDNS_POINTER_DIFF(found, str);
+ return MDNS_INVALID_POS;
+}
+
+static inline void*
+mdns_string_make_ref(void* data, size_t capacity, size_t ref_offset) {
+ if (capacity < 2)
+ return 0;
+ return mdns_htons(data, 0xC000 | (uint16_t)ref_offset);
+}
+
+static inline void*
+mdns_string_make(void* buffer, size_t capacity, void* data, const char* name, size_t length,
+ mdns_string_table_t* string_table) {
+ size_t last_pos = 0;
+ size_t remain = capacity - MDNS_POINTER_DIFF(data, buffer);
+ if (name[length - 1] == '.')
+ --length;
+ while (last_pos < length) {
+ size_t pos = mdns_string_find(name, length, '.', last_pos);
+ size_t sub_length = ((pos != MDNS_INVALID_POS) ? pos : length) - last_pos;
+ size_t total_length = length - last_pos;
+
+ size_t ref_offset =
+ mdns_string_table_find(string_table, buffer, capacity,
+ (char*)MDNS_POINTER_OFFSET(name, last_pos), sub_length,
+ total_length);
+ if (ref_offset != MDNS_INVALID_POS)
+ return mdns_string_make_ref(data, remain, ref_offset);
+
+ if (remain <= (sub_length + 1))
+ return 0;
+
+ *(unsigned char*)data = (unsigned char)sub_length;
+ memcpy(MDNS_POINTER_OFFSET(data, 1), name + last_pos, sub_length);
+ mdns_string_table_add(string_table, MDNS_POINTER_DIFF(data, buffer));
+
+ data = MDNS_POINTER_OFFSET(data, sub_length + 1);
+ last_pos = ((pos != MDNS_INVALID_POS) ? pos + 1 : length);
+ remain = capacity - MDNS_POINTER_DIFF(data, buffer);
+ }
+
+ if (!remain)
+ return 0;
+
+ *(unsigned char*)data = 0;
+ return MDNS_POINTER_OFFSET(data, 1);
+}
+
+static inline size_t
+mdns_records_parse(int sock, const struct sockaddr* from, size_t addrlen, const void* buffer,
+ size_t size, size_t* offset, mdns_entry_type_t type, uint16_t query_id,
+ size_t records, mdns_record_callback_fn callback, void* user_data) {
+ size_t parsed = 0;
+ for (size_t i = 0; i < records; ++i) {
+ size_t name_offset = *offset;
+ mdns_string_skip(buffer, size, offset);
+ if (((*offset) + 10) > size)
+ return parsed;
+ size_t name_length = (*offset) - name_offset;
+ const uint16_t* 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++);
+
+ *offset += 10;
+
+ if (length <= (size - (*offset))) {
+ ++parsed;
+ if (callback &&
+ callback(sock, from, addrlen, type, query_id, rtype, rclass, ttl, buffer, size,
+ name_offset, name_length, *offset, length, user_data))
+ break;
+ }
+
+ *offset += length;
+ }
+ return parsed;
+}
+
+static inline int
+mdns_unicast_send(int sock, const void* address, size_t address_size, const void* buffer,
+ size_t size) {
+ if (sendto(sock, (const char*)buffer, (mdns_size_t)size, 0, (const struct sockaddr*)address,
+ (socklen_t)address_size) < 0)
+ return -1;
+ return 0;
+}
+
+static inline int
+mdns_multicast_send(int sock, const void* buffer, size_t size) {
+ struct sockaddr_storage addr_storage;
+ struct sockaddr_in addr;
+ struct sockaddr_in6 addr6;
+ struct sockaddr* saddr = (struct sockaddr*)&addr_storage;
+ socklen_t saddrlen = sizeof(struct sockaddr_storage);
+ if (getsockname(sock, saddr, &saddrlen))
+ return -1;
+ if (saddr->sa_family == AF_INET6) {
+ memset(&addr6, 0, sizeof(addr6));
+ addr6.sin6_family = AF_INET6;
+#ifdef __APPLE__
+ addr6.sin6_len = sizeof(addr6);
+#endif
+ addr6.sin6_addr.s6_addr[0] = 0xFF;
+ addr6.sin6_addr.s6_addr[1] = 0x02;
+ addr6.sin6_addr.s6_addr[15] = 0xFB;
+ addr6.sin6_port = htons((unsigned short)MDNS_PORT);
+ saddr = (struct sockaddr*)&addr6;
+ saddrlen = sizeof(addr6);
+ } else {
+ memset(&addr, 0, sizeof(addr));
+ addr.sin_family = AF_INET;
+#ifdef __APPLE__
+ addr.sin_len = sizeof(addr);
+#endif
+ addr.sin_addr.s_addr = htonl((((uint32_t)224U) << 24U) | ((uint32_t)251U));
+ addr.sin_port = htons((unsigned short)MDNS_PORT);
+ saddr = (struct sockaddr*)&addr;
+ saddrlen = sizeof(addr);
+ }
+
+ if (sendto(sock, (const char*)buffer, (mdns_size_t)size, 0, saddr, saddrlen) < 0)
+ return -1;
+ return 0;
+}
+
+static const uint8_t mdns_services_query[] = {
+ // Query ID
+ 0x00, 0x00,
+ // Flags
+ 0x00, 0x00,
+ // 1 question
+ 0x00, 0x01,
+ // No answer, authority or additional RRs
+ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
+ // _services._dns-sd._udp.local.
+ 0x09, '_', 's', 'e', 'r', 'v', 'i', 'c', 'e', 's', 0x07, '_', 'd', 'n', 's', '-', 's', 'd',
+ 0x04, '_', 'u', 'd', 'p', 0x05, 'l', 'o', 'c', 'a', 'l', 0x00,
+ // PTR record
+ 0x00, MDNS_RECORDTYPE_PTR,
+ // QU (unicast response) and class IN
+ 0x80, MDNS_CLASS_IN};
+
+static inline int
+mdns_discovery_send(int sock) {
+ return mdns_multicast_send(sock, mdns_services_query, sizeof(mdns_services_query));
+}
+
+
+static inline size_t
+mdns_discovery_recv(int sock, void* buffer, size_t capacity, mdns_record_callback_fn callback,
+ void* user_data) {
+ 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 0;
+
+ 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 0; // 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 0;
+ 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 0;
+ }
+
+ 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 records;
+ 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 0;
+
+ if (is_answer) {
+ ++records;
+ offset = MDNS_POINTER_DIFF(data, buffer);
+ if (callback &&
+ callback(sock, saddr, addrlen, MDNS_ENTRYTYPE_ANSWER, query_id, rtype, rclass, ttl,
+ buffer, data_size, name_offset, name_length, offset, length, user_data))
+ return records;
+ }
+ data = (const uint16_t*)MDNS_POINTER_OFFSET_CONST(data, length);
+ }
+
+ size_t total_records = records;
+ size_t offset = MDNS_POINTER_DIFF(data, buffer);
+ records =
+ mdns_records_parse(sock, saddr, addrlen, buffer, data_size, &offset,
+ MDNS_ENTRYTYPE_AUTHORITY, query_id, authority_rrs, callback, user_data);
+ total_records += records;
+ if (records != authority_rrs)
+ return total_records;
+
+ records = mdns_records_parse(sock, saddr, addrlen, buffer, data_size, &offset,
+ MDNS_ENTRYTYPE_ADDITIONAL, query_id, additional_rrs, callback,
+ user_data);
+ total_records += records;
+ if (records != additional_rrs)
+ return total_records;
+
+ return total_records;
+}
+
+static inline size_t
+mdns_socket_listen(int sock, void* buffer, size_t capacity, mdns_record_callback_fn callback,
+ void* user_data) {
+ 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 0;
+
+ size_t data_size = (size_t)ret;
+ const uint16_t* data = (const 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++);
+
+ size_t records;
+ size_t total_records = 0;
+ for (int iquestion = 0; iquestion < questions; ++iquestion) {
+ size_t question_offset = MDNS_POINTER_DIFF(data, buffer);
+ size_t offset = question_offset;
+ size_t verify_offset = 12;
+ int dns_sd = 0;
+ if (mdns_string_equal(buffer, data_size, &offset, mdns_services_query,
+ sizeof(mdns_services_query), &verify_offset)) {
+ dns_sd = 1;
+ } else if (!mdns_string_skip(buffer, data_size, &offset)) {
+ break;
+ }
+ size_t length = offset - question_offset;
+ data = (const uint16_t*)MDNS_POINTER_OFFSET_CONST(buffer, offset);
+
+ uint16_t rtype = mdns_ntohs(data++);
+ uint16_t rclass = mdns_ntohs(data++);
+ uint16_t class_without_flushbit = rclass & ~MDNS_CACHE_FLUSH;
+
+ // Make sure we get a question of class IN or ANY
+ if (!((class_without_flushbit == MDNS_CLASS_IN) ||
+ (class_without_flushbit == MDNS_CLASS_ANY))) {
+ break;
+ }
+
+ if (dns_sd && flags)
+ continue;
+
+ ++total_records;
+ if (callback && callback(sock, saddr, addrlen, MDNS_ENTRYTYPE_QUESTION, query_id, rtype,
+ rclass, 0, buffer, data_size, question_offset, length,
+ question_offset, length, user_data))
+ return total_records;
+ }
+
+ size_t offset = MDNS_POINTER_DIFF(data, buffer);
+ records = mdns_records_parse(sock, saddr, addrlen, buffer, data_size, &offset,
+ MDNS_ENTRYTYPE_ANSWER, query_id, answer_rrs, callback, user_data);
+ total_records += records;
+ if (records != answer_rrs)
+ return total_records;
+
+ records =
+ mdns_records_parse(sock, saddr, addrlen, buffer, data_size, &offset,
+ MDNS_ENTRYTYPE_AUTHORITY, query_id, authority_rrs, callback, user_data);
+ total_records += records;
+ if (records != authority_rrs)
+ return total_records;
+
+ records = mdns_records_parse(sock, saddr, addrlen, buffer, data_size, &offset,
+ MDNS_ENTRYTYPE_ADDITIONAL, query_id, additional_rrs, callback,
+ user_data);
+
+ return total_records;
+}
+
+static inline int
+mdns_query_send(int sock, mdns_record_type_t type, const char* name, size_t length, void* buffer,
+ size_t capacity, uint16_t query_id) {
+ mdns_query_t query;
+ query.type = type;
+ query.name = name;
+ query.length = length;
+ return mdns_multiquery_send(sock, &query, 1, buffer, capacity, query_id);
+}
+
+static inline int
+mdns_multiquery_send(int sock, const mdns_query_t* query, size_t count, void* buffer, size_t capacity,
+ uint16_t query_id) {
+ if (!count || (capacity < (sizeof(struct mdns_header_t) + (6 * count))))
+ return -1;
+
+ // Ask for a unicast response since it's a one-shot query
+ uint16_t rclass = MDNS_CLASS_IN | MDNS_UNICAST_RESPONSE;
+
+ struct sockaddr_storage addr_storage;
+ struct sockaddr* saddr = (struct sockaddr*)&addr_storage;
+ socklen_t saddrlen = sizeof(addr_storage);
+ if (getsockname(sock, saddr, &saddrlen) == 0) {
+ if ((saddr->sa_family == AF_INET) &&
+ (ntohs(((struct sockaddr_in*)saddr)->sin_port) == MDNS_PORT))
+ rclass &= ~MDNS_UNICAST_RESPONSE;
+ else if ((saddr->sa_family == AF_INET6) &&
+ (ntohs(((struct sockaddr_in6*)saddr)->sin6_port) == MDNS_PORT))
+ rclass &= ~MDNS_UNICAST_RESPONSE;
+ }
+
+ struct mdns_header_t* header = (struct mdns_header_t*)buffer;
+ // Query ID
+ header->query_id = htons((unsigned short)query_id);
+ // Flags
+ header->flags = 0;
+ // Questions
+ header->questions = htons((unsigned short)count);
+ // No answer, authority or additional RRs
+ header->answer_rrs = 0;
+ header->authority_rrs = 0;
+ header->additional_rrs = 0;
+ // Fill in questions
+ void* data = MDNS_POINTER_OFFSET(buffer, sizeof(struct mdns_header_t));
+ for (size_t iq = 0; iq < count; ++iq) {
+ // Name string
+ data = mdns_string_make(buffer, capacity, data, query[iq].name, query[iq].length, 0);
+ if (!data)
+ return -1;
+ // Record type
+ data = mdns_htons(data, query[iq].type);
+ //! Optional unicast response based on local port, class IN
+ data = mdns_htons(data, rclass);
+ }
+
+ size_t tosend = MDNS_POINTER_DIFF(data, buffer);
+ if (mdns_multicast_send(sock, buffer, (size_t)tosend))
+ return -1;
+ return query_id;
+}
+
+static inline size_t
+mdns_query_recv(int sock, void* buffer, size_t capacity, mdns_record_callback_fn callback,
+ void* user_data, int only_query_id) {
+ 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 0;
+
+ size_t data_size = (size_t)ret;
+ const uint16_t* data = (const 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++);
+ (void)sizeof(flags);
+
+ if ((only_query_id > 0) && (query_id != only_query_id))
+ return 0; // Not a reply to the wanted one-shot query
+
+ if (questions > 1)
+ return 0;
+
+ // Skip questions part
+ int i;
+ for (i = 0; i < questions; ++i) {
+ size_t offset = MDNS_POINTER_DIFF(data, buffer);
+ if (!mdns_string_skip(buffer, data_size, &offset))
+ return 0;
+ data = (const uint16_t*)MDNS_POINTER_OFFSET_CONST(buffer, offset);
+ // Record type and class not used, skip
+ // uint16_t rtype = mdns_ntohs(data++);
+ // uint16_t rclass = mdns_ntohs(data++);
+ data += 2;
+ }
+
+ size_t records = 0;
+ size_t total_records = 0;
+ size_t offset = MDNS_POINTER_DIFF(data, buffer);
+ records = mdns_records_parse(sock, saddr, addrlen, buffer, data_size, &offset,
+ MDNS_ENTRYTYPE_ANSWER, query_id, answer_rrs, callback, user_data);
+ total_records += records;
+ if (records != answer_rrs)
+ return total_records;
+
+ records =
+ mdns_records_parse(sock, saddr, addrlen, buffer, data_size, &offset,
+ MDNS_ENTRYTYPE_AUTHORITY, query_id, authority_rrs, callback, user_data);
+ total_records += records;
+ if (records != authority_rrs)
+ return total_records;
+
+ records = mdns_records_parse(sock, saddr, addrlen, buffer, data_size, &offset,
+ MDNS_ENTRYTYPE_ADDITIONAL, query_id, additional_rrs, callback,
+ user_data);
+ total_records += records;
+ if (records != additional_rrs)
+ return total_records;
+
+ return total_records;
+}
+
+static inline void*
+mdns_answer_add_question_unicast(void* buffer, size_t capacity, void* data,
+ mdns_record_type_t record_type, const char* name,
+ size_t name_length, mdns_string_table_t* string_table) {
+ data = mdns_string_make(buffer, capacity, data, name, name_length, string_table);
+ if (!data)
+ return 0;
+ size_t remain = capacity - MDNS_POINTER_DIFF(data, buffer);
+ if (remain < 4)
+ return 0;
+
+ data = mdns_htons(data, record_type);
+ data = mdns_htons(data, MDNS_UNICAST_RESPONSE | MDNS_CLASS_IN);
+
+ return data;
+}
+
+static inline void*
+mdns_answer_add_record_header(void* buffer, size_t capacity, void* data, mdns_record_t record,
+ mdns_string_table_t* string_table) {
+ data = mdns_string_make(buffer, capacity, data, record.name.str, record.name.length, string_table);
+ if (!data)
+ return 0;
+ size_t remain = capacity - MDNS_POINTER_DIFF(data, buffer);
+ if (remain < 10)
+ return 0;
+
+ data = mdns_htons(data, record.type);
+ data = mdns_htons(data, record.rclass);
+ data = mdns_htonl(data, record.ttl);
+ data = mdns_htons(data, 0); // Length, to be filled later
+ return data;
+}
+
+static inline void*
+mdns_answer_add_record(void* buffer, size_t capacity, void* data, mdns_record_t record,
+ mdns_string_table_t* string_table) {
+ // TXT records will be coalesced into one record later
+ if (!data || (record.type == MDNS_RECORDTYPE_TXT))
+ return data;
+
+ data = mdns_answer_add_record_header(buffer, capacity, data, record, string_table);
+ if (!data)
+ return 0;
+
+ // Pointer to length of record to be filled at end
+ void* record_length = MDNS_POINTER_OFFSET(data, -2);
+ void* record_data = data;
+
+ size_t remain = capacity - MDNS_POINTER_DIFF(data, buffer);
+ switch (record.type) {
+ case MDNS_RECORDTYPE_PTR:
+ data = mdns_string_make(buffer, capacity, data, record.data.ptr.name.str,
+ record.data.ptr.name.length, string_table);
+ break;
+
+ case MDNS_RECORDTYPE_SRV:
+ if (remain <= 6)
+ return 0;
+ data = mdns_htons(data, record.data.srv.priority);
+ data = mdns_htons(data, record.data.srv.weight);
+ data = mdns_htons(data, record.data.srv.port);
+ data = mdns_string_make(buffer, capacity, data, record.data.srv.name.str,
+ record.data.srv.name.length, string_table);
+ break;
+
+ case MDNS_RECORDTYPE_A:
+ if (remain < 4)
+ return 0;
+ memcpy(data, &record.data.a.addr.sin_addr.s_addr, 4);
+ data = MDNS_POINTER_OFFSET(data, 4);
+ break;
+
+ case MDNS_RECORDTYPE_AAAA:
+ if (remain < 16)
+ return 0;
+ memcpy(data, &record.data.aaaa.addr.sin6_addr, 16); // ipv6 address
+ data = MDNS_POINTER_OFFSET(data, 16);
+ break;
+
+ default:
+ break;
+ }
+
+ if (!data)
+ return 0;
+
+ // Fill record length
+ mdns_htons(record_length, (uint16_t)MDNS_POINTER_DIFF(data, record_data));
+ return data;
+}
+
+static inline void
+mdns_record_update_rclass_ttl(mdns_record_t* record, uint16_t rclass, uint32_t ttl) {
+ if (!record->rclass)
+ record->rclass = rclass;
+ if (!record->ttl || !ttl)
+ record->ttl = ttl;
+ record->rclass &= (uint16_t)(MDNS_CLASS_IN | MDNS_CACHE_FLUSH);
+ // Never flush PTR record
+ if (record->type == MDNS_RECORDTYPE_PTR)
+ record->rclass &= ~(uint16_t)MDNS_CACHE_FLUSH;
+}
+
+static inline void*
+mdns_answer_add_txt_record(void* buffer, size_t capacity, void* data, const mdns_record_t* records,
+ size_t record_count, uint16_t rclass, uint32_t ttl,
+ mdns_string_table_t* string_table) {
+ // Pointer to length of record to be filled at end
+ void* record_length = 0;
+ void* record_data = 0;
+
+ size_t remain = 0;
+ for (size_t irec = 0; data && (irec < record_count); ++irec) {
+ if (records[irec].type != MDNS_RECORDTYPE_TXT)
+ continue;
+
+ mdns_record_t record = records[irec];
+ mdns_record_update_rclass_ttl(&record, rclass, ttl);
+ if (!record_data) {
+ data = mdns_answer_add_record_header(buffer, capacity, data, record, string_table);
+ if (!data)
+ return data;
+ record_length = MDNS_POINTER_OFFSET(data, -2);
+ record_data = data;
+ }
+
+ // TXT strings are unlikely to be shared, just make then raw. Also need one byte for
+ // termination, thus the <= check
+ size_t string_length = record.data.txt.key.length + record.data.txt.value.length + 1;
+ if (!data)
+ return 0;
+ remain = capacity - MDNS_POINTER_DIFF(data, buffer);
+ if ((remain <= string_length) || (string_length > 0x3FFF))
+ return 0;
+
+ unsigned char* strdata = (unsigned char*)data;
+ *strdata++ = (unsigned char)string_length;
+ memcpy(strdata, record.data.txt.key.str, record.data.txt.key.length);
+ strdata += record.data.txt.key.length;
+ *strdata++ = '=';
+ memcpy(strdata, record.data.txt.value.str, record.data.txt.value.length);
+ strdata += record.data.txt.value.length;
+
+ data = strdata;
+ }
+
+ // Fill record length
+ if (record_data)
+ mdns_htons(record_length, (uint16_t)MDNS_POINTER_DIFF(data, record_data));
+
+ return data;
+}
+
+static inline uint16_t
+mdns_answer_get_record_count(const mdns_record_t* records, size_t record_count) {
+ // TXT records will be coalesced into one record
+ uint16_t total_count = 0;
+ uint16_t txt_record = 0;
+ for (size_t irec = 0; irec < record_count; ++irec) {
+ if (records[irec].type == MDNS_RECORDTYPE_TXT)
+ txt_record = 1;
+ else
+ ++total_count;
+ }
+ return total_count + txt_record;
+}
+
+static inline int
+mdns_query_answer_unicast(int sock, const void* address, size_t address_size, void* buffer,
+ size_t capacity, uint16_t query_id, mdns_record_type_t record_type,
+ const char* name, size_t name_length, mdns_record_t answer,
+ const mdns_record_t* authority, size_t authority_count,
+ const mdns_record_t* additional, size_t additional_count) {
+ if (capacity < (sizeof(struct mdns_header_t) + 32 + 4))
+ return -1;
+
+ // According to RFC 6762:
+ // The cache-flush bit MUST NOT be set in any resource records in a response message
+ // sent in legacy unicast responses to UDP ports other than 5353.
+ uint16_t rclass = MDNS_CLASS_IN;
+ uint32_t ttl = 10;
+
+ // Basic answer structure
+ struct mdns_header_t* header = (struct mdns_header_t*)buffer;
+ header->query_id = htons(query_id);
+ header->flags = htons(0x8400);
+ header->questions = htons(1);
+ header->answer_rrs = htons(1);
+ header->authority_rrs = htons(mdns_answer_get_record_count(authority, authority_count));
+ header->additional_rrs = htons(mdns_answer_get_record_count(additional, additional_count));
+
+ mdns_string_table_t string_table = {{0}, 0, 0};
+ void* data = MDNS_POINTER_OFFSET(buffer, sizeof(struct mdns_header_t));
+
+ // Fill in question
+ data = mdns_answer_add_question_unicast(buffer, capacity, data, record_type, name, name_length,
+ &string_table);
+
+ // Fill in answer
+ answer.rclass = rclass;
+ answer.ttl = ttl;
+ data = mdns_answer_add_record(buffer, capacity, data, answer, &string_table);
+
+ // Fill in authority records
+ for (size_t irec = 0; data && (irec < authority_count); ++irec) {
+ mdns_record_t record = authority[irec];
+ record.rclass = rclass;
+ if (!record.ttl)
+ record.ttl = ttl;
+ data = mdns_answer_add_record(buffer, capacity, data, record, &string_table);
+ }
+ data = mdns_answer_add_txt_record(buffer, capacity, data, authority, authority_count,
+ rclass, ttl, &string_table);
+
+ // Fill in additional records
+ for (size_t irec = 0; data && (irec < additional_count); ++irec) {
+ mdns_record_t record = additional[irec];
+ record.rclass = rclass;
+ if (!record.ttl)
+ record.ttl = ttl;
+ data = mdns_answer_add_record(buffer, capacity, data, record, &string_table);
+ }
+ data = mdns_answer_add_txt_record(buffer, capacity, data, additional, additional_count,
+ rclass, ttl, &string_table);
+ if (!data)
+ return -1;
+
+ size_t tosend = MDNS_POINTER_DIFF(data, buffer);
+ return mdns_unicast_send(sock, address, address_size, buffer, tosend);
+}
+
+static inline int
+mdns_answer_multicast_rclass_ttl(int sock, void* buffer, size_t capacity, mdns_record_t answer,
+ const mdns_record_t* authority, size_t authority_count,
+ const mdns_record_t* additional, size_t additional_count,
+ uint16_t rclass, uint32_t ttl) {
+ if (capacity < (sizeof(struct mdns_header_t) + 32 + 4))
+ return -1;
+
+ // Basic answer structure
+ struct mdns_header_t* header = (struct mdns_header_t*)buffer;
+ header->query_id = 0;
+ header->flags = htons(0x8400);
+ header->questions = 0;
+ header->answer_rrs = htons(1);
+ header->authority_rrs = htons(mdns_answer_get_record_count(authority, authority_count));
+ header->additional_rrs = htons(mdns_answer_get_record_count(additional, additional_count));
+
+ mdns_string_table_t string_table = {{0}, 0, 0};
+ void* data = MDNS_POINTER_OFFSET(buffer, sizeof(struct mdns_header_t));
+
+ // Fill in answer
+ mdns_record_t record = answer;
+ mdns_record_update_rclass_ttl(&record, rclass, ttl);
+ data = mdns_answer_add_record(buffer, capacity, data, record, &string_table);
+
+ // Fill in authority records
+ for (size_t irec = 0; data && (irec < authority_count); ++irec) {
+ record = authority[irec];
+ mdns_record_update_rclass_ttl(&record, rclass, ttl);
+ data = mdns_answer_add_record(buffer, capacity, data, record, &string_table);
+ }
+ data = mdns_answer_add_txt_record(buffer, capacity, data, authority, authority_count,
+ rclass, ttl, &string_table);
+
+ // Fill in additional records
+ for (size_t irec = 0; data && (irec < additional_count); ++irec) {
+ record = additional[irec];
+ mdns_record_update_rclass_ttl(&record, rclass, ttl);
+ data = mdns_answer_add_record(buffer, capacity, data, record, &string_table);
+ }
+ data = mdns_answer_add_txt_record(buffer, capacity, data, additional, additional_count,
+ rclass, ttl, &string_table);
+ if (!data)
+ return -1;
+
+ size_t tosend = MDNS_POINTER_DIFF(data, buffer);
+ return mdns_multicast_send(sock, buffer, tosend);
+}
+
+static inline int
+mdns_query_answer_multicast(int sock, void* buffer, size_t capacity, mdns_record_t answer,
+ const mdns_record_t* authority, size_t authority_count,
+ const mdns_record_t* additional, size_t additional_count) {
+ return mdns_answer_multicast_rclass_ttl(sock, buffer, capacity, answer, authority,
+ authority_count, additional, additional_count,
+ MDNS_CLASS_IN, 60);
+}
+
+static inline int
+mdns_announce_multicast(int sock, void* buffer, size_t capacity, mdns_record_t answer,
+ const mdns_record_t* authority, size_t authority_count,
+ const mdns_record_t* additional, size_t additional_count) {
+ return mdns_answer_multicast_rclass_ttl(sock, buffer, capacity, answer, authority,
+ authority_count, additional, additional_count,
+ MDNS_CLASS_IN | MDNS_CACHE_FLUSH, 60);
+}
+
+static inline int
+mdns_goodbye_multicast(int sock, void* buffer, size_t capacity, mdns_record_t answer,
+ const mdns_record_t* authority, size_t authority_count,
+ const mdns_record_t* additional, size_t additional_count) {
+ // Goodbye should have ttl of 0
+ return mdns_answer_multicast_rclass_ttl(sock, buffer, capacity, answer, authority,
+ authority_count, additional, additional_count,
+ MDNS_CLASS_IN, 0);
+}
+
+static inline mdns_string_t
+mdns_record_parse_ptr(const void* buffer, size_t size, size_t offset, size_t length,
+ char* strbuffer, size_t capacity) {
+ // PTR record is just a string
+ if ((size >= offset + length) && (length >= 2))
+ return mdns_string_extract(buffer, size, &offset, strbuffer, capacity);
+ mdns_string_t empty = {0, 0};
+ return empty;
+}
+
+static inline mdns_record_srv_t
+mdns_record_parse_srv(const void* buffer, size_t size, size_t offset, size_t length,
+ char* strbuffer, size_t capacity) {
+ mdns_record_srv_t srv;
+ memset(&srv, 0, sizeof(mdns_record_srv_t));
+ // Read the service priority, weight, port number and the discovery name
+ // SRV record format (http://www.ietf.org/rfc/rfc2782.txt):
+ // 2 bytes network-order unsigned priority
+ // 2 bytes network-order unsigned weight
+ // 2 bytes network-order unsigned port
+ // string: discovery (domain) name, minimum 2 bytes when compressed
+ if ((size >= offset + length) && (length >= 8)) {
+ const uint16_t* recorddata = (const uint16_t*)MDNS_POINTER_OFFSET_CONST(buffer, offset);
+ srv.priority = mdns_ntohs(recorddata++);
+ srv.weight = mdns_ntohs(recorddata++);
+ srv.port = mdns_ntohs(recorddata++);
+ offset += 6;
+ srv.name = mdns_string_extract(buffer, size, &offset, strbuffer, capacity);
+ }
+ return srv;
+}
+
+static inline struct sockaddr_in*
+mdns_record_parse_a(const void* buffer, size_t size, size_t offset, size_t length,
+ struct sockaddr_in* addr) {
+ memset(addr, 0, sizeof(struct sockaddr_in));
+ addr->sin_family = AF_INET;
+#ifdef __APPLE__
+ addr->sin_len = sizeof(struct sockaddr_in);
+#endif
+ if ((size >= offset + length) && (length == 4))
+ memcpy(&addr->sin_addr.s_addr, MDNS_POINTER_OFFSET(buffer, offset), 4);
+ return addr;
+}
+
+static inline struct sockaddr_in6*
+mdns_record_parse_aaaa(const void* buffer, size_t size, size_t offset, size_t length,
+ struct sockaddr_in6* addr) {
+ memset(addr, 0, sizeof(struct sockaddr_in6));
+ addr->sin6_family = AF_INET6;
+#ifdef __APPLE__
+ addr->sin6_len = sizeof(struct sockaddr_in6);
+#endif
+ if ((size >= offset + length) && (length == 16))
+ memcpy(&addr->sin6_addr, MDNS_POINTER_OFFSET(buffer, offset), 16);
+ return addr;
+}
+
+static inline size_t
+mdns_record_parse_txt(const void* buffer, size_t size, size_t offset, size_t length,
+ mdns_record_txt_t* records, size_t capacity) {
+ size_t parsed = 0;
+ const char* strdata;
+ size_t end = offset + length;
+
+ if (size < end)
+ end = size;
+
+ while ((offset < end) && (parsed < capacity)) {
+ strdata = (const char*)MDNS_POINTER_OFFSET(buffer, offset);
+ size_t sublength = *(const unsigned char*)strdata;
+
+ ++strdata;
+ offset += sublength + 1;
+
+ size_t separator = 0;
+ for (size_t c = 0; c < sublength; ++c) {
+ // DNS-SD TXT record keys MUST be printable US-ASCII, [0x20, 0x7E]
+ if ((strdata[c] < 0x20) || (strdata[c] > 0x7E))
+ break;
+ if (strdata[c] == '=') {
+ separator = c;
+ break;
+ }
+ }
+
+ if (!separator)
+ continue;
+
+ if (separator < sublength) {
+ records[parsed].key.str = strdata;
+ records[parsed].key.length = separator;
+ records[parsed].value.str = strdata + separator + 1;
+ records[parsed].value.length = sublength - (separator + 1);
+ } else {
+ records[parsed].key.str = strdata;
+ records[parsed].key.length = sublength;
+ }
+
+ ++parsed;
+ }
+
+ return parsed;
+}
+
+#ifdef _WIN32
+#undef strncasecmp
+#endif
+
+#ifdef __cplusplus
+}
+#endif
diff --git a/localization/i18n/OrcaSlicer.pot b/localization/i18n/OrcaSlicer.pot
index 80c8acb881..14e9c60fc8 100644
--- a/localization/i18n/OrcaSlicer.pot
+++ b/localization/i18n/OrcaSlicer.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -1771,6 +1771,17 @@ msgstr ""
msgid "User logged out"
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!"
msgstr ""
@@ -1782,21 +1793,24 @@ msgid ""
"version before it can be used normally."
msgstr ""
-#, possible-c-format, possible-boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, possible-c-format, possible-boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
@@ -1839,7 +1853,7 @@ msgid "Privacy Policy Update"
msgstr ""
#, possible-c-format, possible-boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
msgstr ""
msgid "your default profile"
@@ -2085,6 +2099,9 @@ msgstr ""
msgid "Orca Cube"
msgstr ""
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr ""
@@ -5127,6 +5144,9 @@ msgstr ""
msgid "Outline"
msgstr ""
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr ""
@@ -5169,7 +5189,7 @@ msgstr ""
msgid "Size:"
msgstr ""
-#, possible-boost-format
+#, possible-c-format, possible-boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5407,15 +5427,18 @@ msgstr ""
msgid "Show Configuration Folder"
msgstr ""
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr ""
+
msgid "Show Tip of the Day"
msgstr ""
msgid "Check for Updates"
msgstr ""
-msgid "Open Network Test"
-msgstr ""
-
#, possible-c-format, possible-boost-format
msgid "&About %s"
msgstr ""
@@ -6683,6 +6706,12 @@ msgstr ""
msgid "Model file downloaded."
msgstr ""
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr ""
@@ -7604,6 +7633,12 @@ msgid ""
"will be exported."
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?"
msgstr ""
@@ -8105,6 +8140,24 @@ msgstr ""
msgid "Graphics"
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"
msgstr ""
@@ -8162,9 +8215,16 @@ msgid "Stealth mode"
msgstr ""
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
msgid "Network test"
@@ -8304,6 +8364,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr ""
@@ -9261,8 +9329,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
msgid ""
@@ -9700,9 +9768,10 @@ msgid "Retraction when switching material"
msgstr ""
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
msgid "Firmware Retraction"
@@ -11187,6 +11256,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -11194,13 +11276,13 @@ msgid ""
msgstr ""
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
#, possible-c-format, possible-boost-format
@@ -11278,6 +11360,31 @@ msgstr ""
msgid "Extruder printable area"
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"
msgstr ""
@@ -11387,6 +11494,12 @@ msgid ""
"contain the API Key or the password required for authentication."
msgstr ""
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr ""
@@ -11642,21 +11755,42 @@ msgstr ""
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
msgid "Internal bridge infill direction"
msgstr ""
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
msgid "External bridge density"
@@ -11664,54 +11798,90 @@ msgstr ""
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
msgid "Internal bridge density"
msgstr ""
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
msgid "Bridge flow ratio"
msgstr ""
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
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"
msgstr ""
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
msgid "Top surface flow ratio"
@@ -11957,22 +12127,34 @@ msgstr ""
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
msgid "mm/s or %"
@@ -12192,18 +12374,24 @@ msgid "Thick external bridges"
msgstr ""
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
msgid "Thick internal bridges"
msgstr ""
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
msgid "Extra bridge layers (beta)"
@@ -13131,9 +13319,10 @@ msgid "Align infill direction to model"
msgstr ""
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
msgid "Insert solid layers"
@@ -13156,6 +13345,7 @@ msgstr ""
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, possible-c-format, possible-boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -13250,6 +13440,27 @@ msgid ""
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
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"
msgstr ""
@@ -13314,8 +13525,8 @@ msgid "mm/s² or %"
msgstr ""
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
msgid ""
@@ -13433,10 +13644,10 @@ msgstr ""
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
msgid "layer"
@@ -14061,7 +14272,9 @@ msgstr ""
msgid "Probing exclude area of clumping."
msgstr ""
-msgid "Filament to print internal sparse infill."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
msgstr ""
msgid ""
@@ -14761,7 +14974,20 @@ msgid ""
"speed to print. For 100%% overhang, bridge speed is used."
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 ""
msgid ""
@@ -15177,8 +15403,8 @@ msgid "Role base wipe speed"
msgstr ""
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -15313,10 +15539,19 @@ msgid ""
"internal solid infill."
msgstr ""
-msgid "Solid infill"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
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 ""
msgid ""
@@ -15622,8 +15857,9 @@ msgid "Support/raft base"
msgstr ""
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
msgid "Avoid interface filament for base"
@@ -15649,8 +15885,9 @@ msgid "Support/raft interface"
msgstr ""
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
msgid "Top interface layers"
@@ -15913,8 +16150,8 @@ msgstr ""
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -16459,6 +16696,9 @@ msgstr ""
msgid "Invalid value when spiral vase mode is enabled: "
msgstr ""
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr ""
@@ -16697,8 +16937,14 @@ msgid "Debug level"
msgstr ""
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
+msgstr ""
+
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
msgstr ""
msgid "Enable timelapse for print"
@@ -17998,6 +18244,15 @@ msgstr ""
msgid "Top Surface Pattern"
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"
msgstr ""
@@ -18020,6 +18275,48 @@ msgstr ""
msgid "Upload"
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"
msgstr ""
@@ -18062,9 +18359,6 @@ msgid ""
"starting the print."
msgstr ""
-msgid "Time-lapse"
-msgstr ""
-
msgid "Heated Bed Leveling"
msgstr ""
@@ -18074,6 +18368,16 @@ msgstr ""
msgid "Smooth Build Plate (Side B)"
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"
msgstr ""
@@ -18244,8 +18548,8 @@ msgid ""
msgstr ""
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
@@ -18676,9 +18980,18 @@ msgid ""
"agents are registered at startup."
msgstr ""
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr ""
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr ""
@@ -18719,6 +19032,30 @@ msgstr ""
msgid "Connection to printers connected via the print host failed."
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
msgid "Mismatched type of print host: %s"
msgstr ""
@@ -19335,12 +19672,27 @@ msgstr ""
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
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."
msgstr ""
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr ""
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr ""
diff --git a/localization/i18n/ca/OrcaSlicer_ca.po b/localization/i18n/ca/OrcaSlicer_ca.po
index c0c591b107..9571037aa7 100644
--- a/localization/i18n/ca/OrcaSlicer_ca.po
+++ b/localization/i18n/ca/OrcaSlicer_ca.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: 2025-03-15 10:55+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -1864,6 +1864,17 @@ msgstr ""
msgid "User logged out"
msgstr "L'usuari ha tancat la sessió"
+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!"
msgstr ""
"crear o obrir un fitxer de projecte nou no està permès durant el "
@@ -1879,21 +1890,24 @@ msgstr ""
"La versió de l'Orca Slicer és massa antiga i s'ha d'actualitzar a la versió "
"més recent abans que es pugui utilitzar amb normalitat"
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
@@ -1951,7 +1965,7 @@ msgid "Privacy Policy Update"
msgstr "Actualització de la política de privadesa"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
msgstr ""
msgid "your default profile"
@@ -2203,6 +2217,9 @@ msgstr "Tor"
msgid "Orca Cube"
msgstr "Cub d'Orca"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Prova de tolerància d'Orca"
@@ -4176,8 +4193,8 @@ msgid ""
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
"La còpia del codi-G temporal ha finalitzat, però el codi exportat no s'ha "
-"pogut obrir durant la verificació de la còpia. El codi-G de sortida és a "
-"%1%.tmp."
+"pogut obrir durant la verificació de la còpia. El codi-G de sortida és a %1%."
+"tmp."
#, boost-format
msgid "G-code file exported to %1%"
@@ -5314,7 +5331,7 @@ msgid "Filament change times"
msgstr "Canvis de filament"
msgid "Tool changes"
-msgstr ""
+msgstr "Canvis d'eina"
msgid "Color change"
msgstr "Canvi de color"
@@ -5580,6 +5597,9 @@ msgstr "Voladissos"
msgid "Outline"
msgstr "Contorn"
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr "Perspectiva"
@@ -5622,7 +5642,7 @@ msgstr "Volum:"
msgid "Size:"
msgstr "Mida:"
-#, fuzzy, boost-format
+#, fuzzy, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5799,8 +5819,8 @@ msgid ""
"You can find it in \"Setting > Setting > LAN only > Access Code\"\n"
"on the printer, as shown in the figure:"
msgstr ""
-"Podeu trobar-lo a \"Configuració > Configuració > Només LAN > Codi "
-"d'accés\"\n"
+"Podeu trobar-lo a \"Configuració > Configuració > Només LAN > Codi d'accés"
+"\"\n"
"a la impressora, com es mostra a la figura:"
msgid "Invalid input."
@@ -5884,15 +5904,18 @@ msgstr "Assistent per a la instal·lació"
msgid "Show Configuration Folder"
msgstr "Mostra la Carpeta Configuració"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "Obrir Test de Xarxa"
+
msgid "Show Tip of the Day"
msgstr "Mostra Consell del dia"
msgid "Check for Updates"
msgstr "Cerca actualitzacions"
-msgid "Open Network Test"
-msgstr "Obrir Test de Xarxa"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "&Sobre %s"
@@ -7252,6 +7275,12 @@ msgstr "Exportació amb èxit."
msgid "Model file downloaded."
msgstr "Arxiu de model descarregat."
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr ""
@@ -8301,6 +8330,12 @@ msgstr ""
"No s'ha pogut realitzar l'operació booleana a les malles del model. Només "
"s'exportaran les parts positives."
+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?"
msgstr ""
"La impressora està preparada? La làmina d'impressió està al seu lloc, buida "
@@ -8876,6 +8911,24 @@ msgstr ""
msgid "Graphics"
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"
msgstr ""
@@ -8933,9 +8986,16 @@ msgid "Stealth mode"
msgstr "Mode silenciós"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
msgid "Network test"
@@ -9100,6 +9160,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr "Permet emmagatzematge anormal"
@@ -10238,8 +10306,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Quan graveu timelapse sense capçal d'impressió, es recomana afegir una "
"\"Torre de Purga Timelapse\" \n"
@@ -10729,12 +10797,11 @@ msgid "Retraction when switching material"
msgstr "Retracció en canviar de material"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"L'opció Netejar no està disponible quan utilitzeu el mode Retracció de "
-"firmware. El desactivo per habilitar la Retracció de firmware?"
msgid "Firmware Retraction"
msgstr "Retracció de Fimware"
@@ -12433,6 +12500,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
msgstr "L'alçada de la capa no pot superar el diàmetre del broquet"
+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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -12443,18 +12523,14 @@ msgstr ""
"Afegiu \"G92 E0\" a layer_gcode."
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"\"G92 E0\" s'ha trobat a before_layer_gcode, el qual és incompatible amb el "
-"direccionament absolut d'extrusor."
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"\"G92 E0\" s'ha trobat a layer_gcode, el qual és incompatible amb el "
-"direccionament absolut d'extrusor."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -12561,6 +12637,31 @@ msgstr "Àrea imprimible"
msgid "Extruder printable area"
msgstr "Àrea imprimible de l'extrusor"
+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"
msgstr "Zona d'exclusió de la placa"
@@ -12698,6 +12799,12 @@ msgstr ""
"Orca Slicer pot pujar fitxers de Codi-G a una impressora. Aquest camp ha de "
"contenir la clau API o la contrasenya necessària per a l'autenticació."
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "Nom de la impressora"
@@ -13052,121 +13159,134 @@ msgstr "Direcció d'ompliment del pont exterior"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"Sobreescriptura de l'angle de pont. Si es deixa a zero, l'angle de pont es "
-"calcularà automàticament. En cas contrari, l'angle proporcionat s'utilitzarà "
-"per als ponts externs. Utilitzeu 180° per a l'angle zero."
msgid "Internal bridge infill direction"
msgstr "Direcció d'ompliment del pont intern"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"Anulació de l'angle de pont intern. Si es deixa a zero, l'angle de pont es "
-"calcularà automàticament. En cas contrari, s'utilitzarà l'angle proporcionat "
-"per als ponts interns. Utilitzeu 180 ° per a un angle zero.\n"
-"\n"
-"Es recomana deixar-lo a 0 tret que hi hagi un model específic que no cal."
msgid "External bridge density"
msgstr "Densitat del pont exterior"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
-"Controla la densitat (espaiat) de les línies de pont extern. El valor "
-"predeterminat és 100%.\n"
-"\n"
-"Ponts externs amb densitat inferior poden ajudar a millorar la fiabilitat ja "
-"que hi ha més espai perquè l'aire circuli al voltant del pont extruït, "
-"millorant la seva velocitat de refredament. El mínim és 10%.\n"
-"\n"
-"Densitats més altes poden produir superfícies de pont més llises, ja que les "
-"línies superposades proporcionen suport addicional durant la impressió. El "
-"màxim és 120%.\n"
-"Nota: una densitat de pont massa alta pot causar deformació o sobreextrusió."
msgid "Internal bridge density"
msgstr "Densitat del pont intern"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"Controla la densitat (espaiat) de les línies de pont intern. 100% significa "
-"pont sòlid. El valor predeterminat és 100%.\n"
-"\n"
-" Els ponts interns de menor densitat poden ajudar a reduir el coixí de la "
-"superfície superior i millorar la fiabilitat del pont intern, ja que hi ha "
-"més espai perquè l'aire circuli al voltant del pont extruït, millorant la "
-"seva velocitat de refrigeració.\n"
-"\n"
-"Aquesta opció funciona especialment bé quan es combina amb la segona opció "
-"de pont intern sobre farciment, millorant encara més l'estructura de pont "
-"intern abans que s'extrueixi l'ompliment sòlid."
msgid "Bridge flow ratio"
msgstr "Ratio de flux del pont"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Redueix lleugerament aquest valor (per exemple, a 0,9) per disminuir la "
-"quantitat de material utilitzat en els ponts i millorar la caiguda.\n"
+
+#, 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"
-"El flux real per al pont es calcula multiplicant aquest valor amb la relació "
-"de flux del filament i, si està establert, amb la relació de flux de "
-"l'objecte."
+"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"
msgstr "Ratio de flux del pont intern"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Aquest valor regeix el gruix de la capa de pont intern. Aquesta és la "
-"primera capa sobre el farciment poc dens. Disminuïu lleugerament aquest "
-"valor ( per exemple 0,9 ) per millorar la qualitat de la superfície sobre el "
-"farciment poc dens.\n"
-"\n"
-"El flux real intern dels ponts s'utilitza calculant la multiplicació "
-"d'aquest valor amb la relació de flux dels ponts, la relació de flux del "
-"filament i, si està configurada, la relació de flux de l'objecte."
msgid "Top surface flow ratio"
msgstr "Ratio de flux superficial superior"
@@ -13522,42 +13642,35 @@ msgstr "Alentir la velocitat per a perímetres corbats"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"Activa aquesta opció per reduir la velocitat d'impressió en zones on els "
-"perímetres poden haver-se corbat cap amunt. Per exemple, es reduirà més la "
-"velocitat en imprimir voladissos en cantonades pronunciades, com la part "
-"frontal del casc del Benchy, reduint així la curvatura que s'acumula en "
-"múltiples capes.\n"
-"\n"
-"En general, es recomana tenir aquesta opció activada, tret que el sistema de "
-"refredament de la teva impressora sigui prou potent o la velocitat "
-"d'impressió prou baixa com perquè els perímetres no es corbin. Si "
-"imprimeixes amb una velocitat de perímetre externa alta, aquest paràmetre "
-"pot introduir lleugers artefactes en reduir la velocitat a causa de la gran "
-"variació en les velocitats d'impressió. Si notes artefactes, assegura't que "
-"el paràmetre de compensació de pressió estigui correctament ajustat.\n"
-"\n"
-"Nota: Quan aquesta opció està activada, els perímetres del voladís es "
-"tracten com a voladissos, és a dir, s'aplica la velocitat de voladís fins i "
-"tot si el perímetre de voladís forma part d'un pont. Per exemple, quan els "
-"perímetres estan 100% en voladís, sense cap paret que els suporti des de "
-"sota, s'aplicarà la velocitat del 100% del voladís."
msgid "mm/s or %"
msgstr "mm/s o %"
@@ -13831,25 +13944,25 @@ msgid "Thick external bridges"
msgstr "Ponts exteriors gruixuts"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Si esta activat, els ponts seran més fiables, poden abastar distàncies més "
-"llargues però poden tenir pitjor aspecte. Si es desactiva, els ponts es "
-"veuran millor però només seran fiables per a distàncies de pont més curtes."
msgid "Thick internal bridges"
msgstr "Ponts interiors gruixuts"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Si està habilitat, s'utilitzaran ponts interns gruixuts. Normalment es "
-"recomana tenir activada aquesta funció. Tanmateix, penseu a desactivar-lo si "
-"utilitzeu broquets grans."
msgid "Extra bridge layers (beta)"
msgstr "Capes de pont addicionals (beta)"
@@ -13897,9 +14010,8 @@ msgstr ""
"reducció de coixins a les superfícies superiors, així com una separació "
"reduïda de la capa de pont externa dels seus perímetres circumdants.\n"
"\n"
-"En general, es recomana establir això com a mínim com a \"Només pont "
-"extern\", tret que es detectin problemes específics amb el model en "
-"rodanxes.\n"
+"En general, es recomana establir això com a mínim com a \"Només pont extern"
+"\", tret que es detectin problemes específics amb el model en rodanxes.\n"
"\n"
"Opcions:\n"
"1. Desactivat: no genera segones capes de pont. Aquest és el valor "
@@ -15127,14 +15239,11 @@ msgid "Align infill direction to model"
msgstr "Alinea la direcció del farciment al model"
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
-"Alinea les direccions de farciment i de farciment de superfície per seguir "
-"l'orientació del model a la placa de construcció. Quan està activat, les "
-"direccions de farciment giren amb el model per mantenir les característiques "
-"de resistència òptimes."
msgid "Insert solid layers"
msgstr "Insereix capes sòlides"
@@ -15162,6 +15271,7 @@ msgstr ""
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -15261,6 +15371,27 @@ msgid ""
msgstr ""
"L'angle de les línies inclinades del farciment. 60° resultarà en un rusc pur."
+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"
msgstr "Longitud d'ancoratge de farciment poc dens"
@@ -15351,8 +15482,8 @@ msgid "mm/s² or %"
msgstr "mm/s o %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Acceleració del farciment poc dens. Si el valor s'expressa en percentatge "
"( per exemple, 100% ), es calcularà a partir de l'acceleració predeterminada."
@@ -15488,15 +15619,15 @@ msgstr "Velocitat màxima del ventilador a la capa"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"La velocitat del ventilador augmentarà linealment de zero a la capa "
-"\"close_fan_the_first_x_layers\" al màxim a la capa "
-"\"full_fan_speed_layer\". S'ignorarà \"full_fan_speed_layer\" si és inferior "
-"a \"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarà a "
+"\"close_fan_the_first_x_layers\" al màxim a la capa \"full_fan_speed_layer"
+"\". S'ignorarà \"full_fan_speed_layer\" si és inferior a "
+"\"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarà a "
"la velocitat màxima permesa a la capa \"close_fan_the_first_x_layers\" + 1."
msgid "layer"
@@ -15692,9 +15823,9 @@ msgstr ""
"inferior a un cert nivell. Normalment equival al 15-25%% de l'alçada de la "
"capa. Per tant, el gruix màxim de pell difusa amb una amplada de perímetre "
"de 0.4 mm i una alçada de capa de 0.2 mm serà 0.4-(0.2*0.25)=±0.35mm! Si "
-"introduïu un paràmetre superior a aquest, es mostrarà l'error "
-"Flow::spacing() i el model no es tallarà. Podeu triar aquest número fins que "
-"es repeteixi l'error."
+"introduïu un paràmetre superior a aquest, es mostrarà l'error Flow::"
+"spacing() i el model no es tallarà. Podeu triar aquest número fins que es "
+"repeteixi l'error."
msgid "Displacement"
msgstr "Desplaçament"
@@ -16300,8 +16431,10 @@ msgstr "Àrea d'exclusió de sondeig d'acumulació"
msgid "Probing exclude area of clumping."
msgstr "Àrea d'exclusió de sondeig d'acumulació."
-msgid "Filament to print internal sparse infill."
-msgstr "Filament per imprimir farciment poc dens intern."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -17155,8 +17288,21 @@ msgstr ""
"utilitzar una velocitat diferent per imprimir. Per al voladís del 100%%, "
"s'utilitza la velocitat de pont."
-msgid "Filament to print walls."
-msgstr "Filament per imprimir parets"
+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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -17677,8 +17823,8 @@ msgid "Role base wipe speed"
msgstr "Velocitat de neteja basada en l'acció"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -17865,11 +18011,20 @@ msgstr ""
"L'àrea de farciment poc dens que sigui més petita que el valor del llindar "
"serà substituït per un farciment sòlid intern"
-msgid "Solid infill"
-msgstr "Farciment sòlid"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "Filament per imprimir farciment sòlid"
+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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -18250,12 +18405,10 @@ msgid "Support/raft base"
msgstr "Base del Suport/Vora d'Adherència"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"Filament per imprimir base del suport i Vora d'Adherència. \"Per defecte\" "
-"significa que no s'utilitza cap filament específic per al suport i s'usarà "
-"el filament actual"
msgid "Avoid interface filament for base"
msgstr "Evitar el filament de la interfície per a la base"
@@ -18286,12 +18439,10 @@ msgid "Support/raft interface"
msgstr "Interfície de Suport/Vora d'Adherència"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"Filament per imprimir interfície de suport. \"Per defecte\" vol dir que no "
-"hi ha filament específic per a la interfície de suport i s'utilitza el "
-"filament actual"
msgid "Top interface layers"
msgstr "Capes de la interfície superior"
@@ -18624,8 +18775,8 @@ msgstr "Activar el control de temperatura"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -19109,9 +19260,8 @@ msgid ""
"0 to disable."
msgstr ""
"Temperatura del broquet quan l'eina no s'utilitza actualment en "
-"configuracions multieina. Només s'utilitza quan la \"Prevenció de "
-"supuració\" està activa a la configuració d'impressió. Establiu a 0 per "
-"desactivar."
+"configuracions multieina. Només s'utilitza quan la \"Prevenció de supuració"
+"\" està activa a la configuració d'impressió. Establiu a 0 per desactivar."
msgid "X-Y hole compensation"
msgstr "Compensació de forat( contorn intern ) X-Y"
@@ -19393,6 +19543,9 @@ msgstr "valor no vàlid "
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "Valor no vàlid quan el mode Gerro en Espiral està habilitat: "
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "amplada de línia massa gran "
@@ -19653,11 +19806,17 @@ msgid "Debug level"
msgstr "Nivell de depuració"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
+msgstr ""
+"Defineix el nivell de registre de depuració. 0:fatal, 1:error, 2:warning, 3:"
+"info, 4:debug, 5:tracejar\n"
+
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
msgstr ""
-"Defineix el nivell de registre de depuració. 0:fatal, 1:error, 2:warning, "
-"3:info, 4:debug, 5:tracejar\n"
msgid "Enable timelapse for print"
msgstr "Activa el timelapse per a la impressió"
@@ -20207,8 +20366,8 @@ msgstr "El fitxer subministrat no s'ha pogut llegir perquè està buit"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
-"Format de fitxer desconegut. El fitxer d'entrada ha de tenir "
-"extensió .stl, .obj, .amf( .xml )."
+"Format de fitxer desconegut. El fitxer d'entrada ha de tenir extensió .stl, ."
+"obj, .amf( .xml )."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
@@ -21199,6 +21358,15 @@ msgstr ""
msgid "Top Surface Pattern"
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"
msgstr "Enviar el Codi-G al amfitrió( host ) d'impressió"
@@ -21222,6 +21390,48 @@ msgstr "El nom del fitxer que vol pujar no acaba amb \"%s\". Voleu continuar?"
msgid "Upload"
msgstr "Pujar"
+msgid "Leveling before print"
+msgstr ""
+
+msgid "Time-lapse"
+msgstr "Time-lapse"
+
+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"
msgstr "Cua de pujada de l'amfitrió( host ) d'impressió"
@@ -21266,9 +21476,6 @@ msgstr ""
"El tipus de llit seleccionat no coincideix amb el fitxer. Si us plau, "
"confirmeu abans de començar la impressió."
-msgid "Time-lapse"
-msgstr "Time-lapse"
-
msgid "Heated Bed Leveling"
msgstr "Nivell de llit calefactat"
@@ -21278,6 +21485,16 @@ msgstr "Placa de construcció amb textura (costat A)"
msgid "Smooth Build Plate (Side B)"
msgstr "Placa de construcció llisa (costat B)"
+#, 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"
msgstr "No es pot realitzar una operació booleana amb les peces seleccionades"
@@ -21468,8 +21685,8 @@ msgstr ""
"Vols reescriure'l?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
"Canviaríem el nom dels perfils seleccionats com a \"Proveïdor Tipus "
@@ -21999,11 +22216,20 @@ msgstr ""
"Seleccioneu la implementació de l'agent de xarxa per a la comunicació amb la "
"impressora. Els agents disponibles es registren a l'inici."
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr ""
"No s'ha pogut aconseguir una referència vàlida d'amfitrió( host ) "
"d'impressora"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "Èxit!"
@@ -22054,6 +22280,30 @@ msgstr ""
"No s'ha pogut connectar a les impressores connectades mitjançant "
"l'amfitrió( host ) d'impressió especificat."
+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
msgid "Mismatched type of print host: %s"
msgstr "Tipus d'amfitrió( host ) d'impressió no coincident: %s"
@@ -22855,12 +23105,27 @@ msgstr ""
"No s'ha enllaçat el compte de SimplyPrint. Aneu a Opcions de Connexió per "
"configurar-lo."
+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."
msgstr "La connexió sèrie a Flashforge funciona correctament."
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr "No s'ha pogut connectar a Flashforge per sèrie"
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "L'estat proporcionat no és correcte."
@@ -22900,8 +23165,8 @@ msgid ""
"Warning: The brim type is not set to \"painted\", the brim ears will not "
"take effect!"
msgstr ""
-"Advertència: el tipus de Vora d'Adherència no està configurat com a "
-"\"pintat\", les orelles de la Vora d'Adherència no tindran efecte!"
+"Advertència: el tipus de Vora d'Adherència no està configurat com a \"pintat"
+"\", les orelles de la Vora d'Adherència no tindran efecte!"
msgid "Set the brim type of this object to \"painted\""
msgstr "Estableix el tipus de vora d'aquest objecte a \"pintat\""
@@ -23493,6 +23758,232 @@ msgstr ""
"augmentar adequadament la temperatura del llit pot reduir la probabilitat de "
"deformació?"
+#~ 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 ""
+#~ "L'opció Netejar no està disponible quan utilitzeu el mode Retracció de "
+#~ "firmware. El desactivo per habilitar la Retracció de firmware?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\" s'ha trobat a before_layer_gcode, el qual és incompatible amb "
+#~ "el direccionament absolut d'extrusor."
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\" s'ha trobat a layer_gcode, el qual és incompatible amb el "
+#~ "direccionament absolut d'extrusor."
+
+#, 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 ""
+#~ "Sobreescriptura de l'angle de pont. Si es deixa a zero, l'angle de pont "
+#~ "es calcularà automàticament. En cas contrari, l'angle proporcionat "
+#~ "s'utilitzarà per als ponts externs. Utilitzeu 180° per a l'angle zero."
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "Anulació de l'angle de pont intern. Si es deixa a zero, l'angle de pont "
+#~ "es calcularà automàticament. En cas contrari, s'utilitzarà l'angle "
+#~ "proporcionat per als ponts interns. Utilitzeu 180 ° per a un angle zero.\n"
+#~ "\n"
+#~ "Es recomana deixar-lo a 0 tret que hi hagi un model específic que no cal."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+#~ msgstr ""
+#~ "Controla la densitat (espaiat) de les línies de pont extern. El valor "
+#~ "predeterminat és 100%.\n"
+#~ "\n"
+#~ "Ponts externs amb densitat inferior poden ajudar a millorar la fiabilitat "
+#~ "ja que hi ha més espai perquè l'aire circuli al voltant del pont extruït, "
+#~ "millorant la seva velocitat de refredament. El mínim és 10%.\n"
+#~ "\n"
+#~ "Densitats més altes poden produir superfícies de pont més llises, ja que "
+#~ "les línies superposades proporcionen suport addicional durant la "
+#~ "impressió. El màxim és 120%.\n"
+#~ "Nota: una densitat de pont massa alta pot causar deformació o "
+#~ "sobreextrusió."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "Controla la densitat (espaiat) de les línies de pont intern. 100% "
+#~ "significa pont sòlid. El valor predeterminat és 100%.\n"
+#~ "\n"
+#~ " Els ponts interns de menor densitat poden ajudar a reduir el coixí de la "
+#~ "superfície superior i millorar la fiabilitat del pont intern, ja que hi "
+#~ "ha més espai perquè l'aire circuli al voltant del pont extruït, millorant "
+#~ "la seva velocitat de refrigeració.\n"
+#~ "\n"
+#~ "Aquesta opció funciona especialment bé quan es combina amb la segona "
+#~ "opció de pont intern sobre farciment, millorant encara més l'estructura "
+#~ "de pont intern abans que s'extrueixi l'ompliment sòlid."
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "Redueix lleugerament aquest valor (per exemple, a 0,9) per disminuir la "
+#~ "quantitat de material utilitzat en els ponts i millorar la caiguda.\n"
+#~ "\n"
+#~ "El flux real per al pont es calcula multiplicant aquest valor amb la "
+#~ "relació de flux del filament i, si està establert, amb la relació de flux "
+#~ "de l'objecte."
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "Aquest valor regeix el gruix de la capa de pont intern. Aquesta és la "
+#~ "primera capa sobre el farciment poc dens. Disminuïu lleugerament aquest "
+#~ "valor ( per exemple 0,9 ) per millorar la qualitat de la superfície sobre "
+#~ "el farciment poc dens.\n"
+#~ "\n"
+#~ "El flux real intern dels ponts s'utilitza calculant la multiplicació "
+#~ "d'aquest valor amb la relació de flux dels ponts, la relació de flux del "
+#~ "filament i, si està configurada, la relació de flux de l'objecte."
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "Activa aquesta opció per reduir la velocitat d'impressió en zones on els "
+#~ "perímetres poden haver-se corbat cap amunt. Per exemple, es reduirà més "
+#~ "la velocitat en imprimir voladissos en cantonades pronunciades, com la "
+#~ "part frontal del casc del Benchy, reduint així la curvatura que s'acumula "
+#~ "en múltiples capes.\n"
+#~ "\n"
+#~ "En general, es recomana tenir aquesta opció activada, tret que el sistema "
+#~ "de refredament de la teva impressora sigui prou potent o la velocitat "
+#~ "d'impressió prou baixa com perquè els perímetres no es corbin. Si "
+#~ "imprimeixes amb una velocitat de perímetre externa alta, aquest paràmetre "
+#~ "pot introduir lleugers artefactes en reduir la velocitat a causa de la "
+#~ "gran variació en les velocitats d'impressió. Si notes artefactes, "
+#~ "assegura't que el paràmetre de compensació de pressió estigui "
+#~ "correctament ajustat.\n"
+#~ "\n"
+#~ "Nota: Quan aquesta opció està activada, els perímetres del voladís es "
+#~ "tracten com a voladissos, és a dir, s'aplica la velocitat de voladís fins "
+#~ "i tot si el perímetre de voladís forma part d'un pont. Per exemple, quan "
+#~ "els perímetres estan 100% en voladís, sense cap paret que els suporti des "
+#~ "de sota, s'aplicarà la velocitat del 100% del voladís."
+
+#~ 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 ""
+#~ "Si esta activat, els ponts seran més fiables, poden abastar distàncies "
+#~ "més llargues però poden tenir pitjor aspecte. Si es desactiva, els ponts "
+#~ "es veuran millor però només seran fiables per a distàncies de pont més "
+#~ "curtes."
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "Si està habilitat, s'utilitzaran ponts interns gruixuts. Normalment es "
+#~ "recomana tenir activada aquesta funció. Tanmateix, penseu a desactivar-lo "
+#~ "si utilitzeu broquets grans."
+
+#~ msgid ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+#~ msgstr ""
+#~ "Alinea les direccions de farciment i de farciment de superfície per "
+#~ "seguir l'orientació del model a la placa de construcció. Quan està "
+#~ "activat, les direccions de farciment giren amb el model per mantenir les "
+#~ "característiques de resistència òptimes."
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "Filament per imprimir farciment poc dens intern."
+
+#~ msgid "Filament to print walls."
+#~ msgstr "Filament per imprimir parets"
+
+#~ msgid "Solid infill"
+#~ msgstr "Farciment sòlid"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "Filament per imprimir farciment sòlid"
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "Filament per imprimir base del suport i Vora d'Adherència. \"Per defecte"
+#~ "\" significa que no s'utilitza cap filament específic per al suport i "
+#~ "s'usarà el filament actual"
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "Filament per imprimir interfície de suport. \"Per defecte\" vol dir que "
+#~ "no hi ha filament específic per a la interfície de suport i s'utilitza el "
+#~ "filament actual"
+
#~ msgid "Erase all painting"
#~ msgstr "Esborrar tota el pintat"
@@ -24179,8 +24670,8 @@ msgstr ""
#~ "No AMS filaments. Please select a printer in 'Device' page to load AMS "
#~ "info."
#~ msgstr ""
-#~ "Sense filaments AMS. Seleccioneu una impressora a la pàgina "
-#~ "\"Dispositiu\" per carregar informació AMS."
+#~ "Sense filaments AMS. Seleccioneu una impressora a la pàgina \"Dispositiu"
+#~ "\" per carregar informació AMS."
#~ msgid ""
#~ "Sync filaments with AMS will drop all current selected filament presets "
diff --git a/localization/i18n/cs/OrcaSlicer_cs.po b/localization/i18n/cs/OrcaSlicer_cs.po
index 9d6c0ca729..6f4a24b5d7 100644
--- a/localization/i18n/cs/OrcaSlicer_cs.po
+++ b/localization/i18n/cs/OrcaSlicer_cs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: \n"
"Last-Translator: Jakub Hencl\n"
"Language-Team: \n"
@@ -505,7 +505,7 @@ msgid "Count"
msgstr ""
msgid "Gap"
-msgstr ""
+msgstr "Mezera"
msgid "Spacing"
msgstr "Rozestup"
@@ -1828,6 +1828,17 @@ msgstr ""
msgid "User logged out"
msgstr "Uživatel odhlášen"
+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!"
msgstr ""
"otevření nebo vytvoření nového souboru projektu není během slicování "
@@ -1843,21 +1854,24 @@ msgstr ""
"Verze Orca Slicer je příliš stará a je nutné ji aktualizovat na nejnovější "
"verzi, aby ji bylo možné používat."
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
@@ -1915,7 +1929,7 @@ msgid "Privacy Policy Update"
msgstr "Aktualizace zásad ochrany osobních údajů"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
msgstr ""
msgid "your default profile"
@@ -2165,6 +2179,9 @@ msgstr "Torus"
msgid "Orca Cube"
msgstr "Orca Cube"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Orca Tolerance Test"
@@ -2225,7 +2242,7 @@ msgid "Support Enforcer"
msgstr "Zesilovač podpory"
msgid "Change part type"
-msgstr ""
+msgstr "Změnit typ části"
msgid "Set as an individual object"
msgstr "Nastavit jako individuální objekt"
@@ -5226,7 +5243,7 @@ msgid "Filament change times"
msgstr "Počet výměn filamentu"
msgid "Tool changes"
-msgstr ""
+msgstr "Výměny nástroje"
msgid "Color change"
msgstr "Změna barvy"
@@ -5491,6 +5508,9 @@ msgstr "Převisy"
msgid "Outline"
msgstr "Outline"
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr "Perspective"
@@ -5507,7 +5527,7 @@ msgid "Paint Toolbar"
msgstr "Panel malování"
msgid "part selection"
-msgstr ""
+msgstr "výběr části"
msgid "Explosion Ratio"
msgstr "Poměr vyfouknutí"
@@ -5533,7 +5553,7 @@ msgstr "Objem:"
msgid "Size:"
msgstr "Velikost:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5792,15 +5812,18 @@ msgstr "Průvodce nastavením"
msgid "Show Configuration Folder"
msgstr "Zobrazit složku s konfigurací"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "Otevřít test sítě"
+
msgid "Show Tip of the Day"
msgstr "Zobrazit tip dne"
msgid "Check for Updates"
msgstr "Zkontrolovat aktualizace"
-msgid "Open Network Test"
-msgstr "Otevřít test sítě"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "&O %s"
@@ -7140,6 +7163,12 @@ msgstr "Úspěšně exportováno"
msgid "Model file downloaded."
msgstr "Soubor modelu stažen."
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr ""
@@ -8162,6 +8191,12 @@ msgstr ""
"Nelze provést booleovskou operaci na sítích modelu. Budou exportovány pouze "
"pozitivní části."
+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?"
msgstr "Je tiskárna připravena? Je tisková podložka na místě, prázdná a čistá?"
@@ -8717,6 +8752,24 @@ msgstr ""
msgid "Graphics"
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"
msgstr ""
@@ -8774,9 +8827,16 @@ msgid "Stealth mode"
msgstr "Stealth mode"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
msgid "Network test"
@@ -8926,6 +8986,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr "Allow Abnormal Storage"
@@ -10017,8 +10085,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Při záznamu časosběru bez tiskové hlavy je doporučeno přidat „Časosběr věž "
"na očištění trysky“.\n"
@@ -10502,13 +10570,11 @@ msgid "Retraction when switching material"
msgstr "Retrakce při změně materiálu"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"Možnost Wipe není dostupná při použití režimu Firmware Retraction.\n"
-"\n"
-"Chcete ji zakázat, abyste mohli povolit Firmware Retraction?"
msgid "Firmware Retraction"
msgstr "Retrakce firmwaru"
@@ -11288,16 +11354,16 @@ msgid "Global shortcuts"
msgstr "Globální klávesové zkratky"
msgid "Pan View"
-msgstr ""
+msgstr "Posun pohledu"
msgid "Rotate View"
-msgstr ""
+msgstr "Otočit pohled"
msgid "Middle mouse button"
msgstr ""
msgid "Zoom View"
-msgstr ""
+msgstr "Přiblížení pohledu"
msgid ""
"Auto orients selected objects or all objects. If there are selected objects, "
@@ -12164,6 +12230,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
msgstr "Výška vrstvy nesmí přesáhnout průměr trysky."
+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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -12174,18 +12253,14 @@ msgstr ""
"Přidejte \"G92 E0\" do layer_gcode."
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"V before_layer_gcode byl nalezen příkaz „G92 E0“, který není kompatibilní s "
-"absolutním adresováním extruderu."
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"V layer_gcode byl nalezen příkaz „G92 E0“, který není kompatibilní s "
-"absolutním adresováním extruderu."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -12290,6 +12365,31 @@ msgstr "Tisknutelná oblast"
msgid "Extruder printable area"
msgstr "Extruder printable area"
+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"
msgstr "Vynechaná oblast podložky"
@@ -12419,6 +12519,12 @@ msgstr ""
"Orca Slicer může nahrávat G-code soubory na hostitele tiskárny. Toto pole by "
"mělo obsahovat API klíč nebo heslo potřebné k ověření."
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "Název tiskárny."
@@ -12762,117 +12868,134 @@ msgstr "Směr výplně externího mostu"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"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."
msgid "Internal bridge infill direction"
msgstr "Směr výplně vnitřního mostu"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
-"\n"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
msgid "External bridge density"
msgstr "Hustota externího mostu"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
-"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
-"\n"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
-"\n"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
msgid "Internal bridge density"
msgstr "Hustota vnitřního mostu"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"Řídí hustotu (rozteč) linií vnitřních mostů. 100 % znamená plný most. "
-"Výchozí hodnota je 100 %.\n"
-"\n"
-"Nižší hustota vnitřních mostů může snížit polštářování na horním povrchu a "
-"zlepšit spolehlivost vnitřních mostů, protože je více prostoru pro cirkulaci "
-"vzduchu kolem extrudovaného mostu, což zvyšuje rychlost jeho chlazení.\n"
-"\n"
-"Tato volba funguje obzvlášť dobře v kombinaci s možností druhého vnitřního "
-"mostu nad výplní, což dále zlepšuje strukturu vnitřních mostů před nanesením "
-"plné výplně."
msgid "Bridge flow ratio"
msgstr "Poměr průtoku můstku"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Snižte tuto hodnotu mírně (například na 0,9), abyste snížili množství "
-"materiálu pro most a zlepšili snižování prověšení.\n"
+
+#, 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"
-"Skutečný průtok pro most se vypočítá vynásobením této hodnoty poměrem "
-"průtoku filamentu a případně i poměrem průtoku objektu, pokud je nastaven."
+"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"
msgstr "Poměr průtoku pro vnitřní most"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Tato hodnota určuje tloušťku vnitřní mostové vrstvy. Toto je první vrstva "
-"nad řídkou výplní. Snižte tuto hodnotu mírně (například na 0,9), abyste "
-"zlepšili kvalitu povrchu nad řídkou výplní.\n"
-"\n"
-"Skutečný použitý vnitřní mostový průtok se vypočítá vynásobením této hodnoty "
-"koeficientem průtoku pro mosty, koeficientem průtoku filamentu a případně "
-"koeficientem průtoku objektu."
msgid "Top surface flow ratio"
msgstr "Poměr průtoku horního povrchu"
@@ -13207,40 +13330,35 @@ msgstr "Zpomalit kvůli zkrouceným obvodům"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
-"\n"
-"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
-"\n"
-"Note: When this option is enabled, overhang perimeters are treated like "
-"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
msgid "mm/s or %"
msgstr "mm/s nebo %"
@@ -13499,25 +13617,25 @@ msgid "Thick external bridges"
msgstr "Silné vnější mosty"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Je-li povoleno, mosty jsou spolehlivější, mohou překlenout delší "
-"vzdálenosti, ale mohou vypadat hůře. Je-li zakázáno, mosty vypadají lépe, "
-"ale jsou spolehlivé pouze pro kratší vzdálenosti."
msgid "Thick internal bridges"
msgstr "Silné vnitřní mosty"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Pokud je povoleno, budou použity silné vnitřní mosty. Obvykle se doporučuje "
-"mít tuto funkci zapnutou. Pokud však používáte velké trysky, zvažte její "
-"vypnutí."
msgid "Extra bridge layers (beta)"
msgstr "Další mostové vrstvy (beta)"
@@ -14533,10 +14651,10 @@ msgstr ""
"byly následné výplně nebo obětované objekty vytlačovány spolehlivě."
msgid "Wipe tower cooling"
-msgstr ""
+msgstr "Chlazení stírací věže"
msgid "Temperature drop before entering filament tower"
-msgstr ""
+msgstr "Pokles teploty před vstupem do věže na filament"
msgid "Interface layer pre-extrusion distance"
msgstr "Interface layer pre-extrusion distance"
@@ -14740,13 +14858,11 @@ msgid "Align infill direction to model"
msgstr "Zarovnat směr výplně podle modelu"
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
-"Zarovnává směry výplně a povrchové výplně podle orientace modelu na tiskové "
-"podložce. Pokud je tato volba povolena, směry výplně se otáčí podle modelu "
-"pro zachování optimálních pevnostních vlastností."
msgid "Insert solid layers"
msgstr "Vložte pevné vrstvy"
@@ -14772,6 +14888,7 @@ msgstr "Použití více řádků pro vzor výplně, pokud to daný vzor podporuj
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -14866,6 +14983,27 @@ msgid ""
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
msgstr "Úhel šikmých čar výplně. 60° vytvoří čistý šestiúhelníkový vzor."
+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"
msgstr "Délka kotvy řídké výplně"
@@ -14952,8 +15090,8 @@ msgid "mm/s² or %"
msgstr "mm/s² nebo %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Akcelerace řídké výplně. Pokud je hodnota vyjádřena v procentech (např. 100 "
"%), bude vypočtena na základě výchozí akcelerace."
@@ -15086,10 +15224,10 @@ msgstr "Plná rychlost ventilátoru na vrstvě"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"Rychlost ventilátoru bude lineárně zvyšována od nuly na vrstvě \"zavřít "
"ventilátor na prvních x vrstvách\" až po maximum na vrstvě "
@@ -15617,7 +15755,7 @@ msgid ""
msgstr ""
msgid "%"
-msgstr ""
+msgstr "%"
msgid "Time cost"
msgstr "Časová náročnost"
@@ -15866,8 +16004,10 @@ msgstr "Probing exclude area of clumping"
msgid "Probing exclude area of clumping."
msgstr "Probing exclude area of clumping."
-msgid "Filament to print internal sparse infill."
-msgstr "Filament pro tisk vnitřní řídké výplně."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -16086,7 +16226,7 @@ msgid ""
msgstr ""
msgid "°"
-msgstr ""
+msgstr "°"
msgid "Don't alternate fill direction"
msgstr ""
@@ -16507,10 +16647,11 @@ msgstr ""
"příkaz: M106 P2 S(0-255)"
msgid "For the first"
-msgstr ""
+msgstr "Pro první"
msgid "Set special auxiliary cooling fan for the first certain layers."
msgstr ""
+"Nastavte speciální pomocný chladicí ventilátor pro prvních několik vrstev."
msgid ""
"Auxiliary fan speed will be ramped up linearly from layer \"For the first\" "
@@ -16694,8 +16835,21 @@ msgstr ""
"Detekuje procento převisu vzhledem k šířce čáry a použije odlišnou rychlost "
"tisku. Pro 100%% převis je použita rychlost mostů."
-msgid "Filament to print walls."
-msgstr "Filament pro tisk stěn."
+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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -17196,8 +17350,8 @@ msgid "Role base wipe speed"
msgstr "Rychlost vytírání podle role"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -17379,11 +17533,20 @@ msgstr ""
"Oblast řídké výplně menší než prahová hodnota bude nahrazena vnitřní plnou "
"výplní."
-msgid "Solid infill"
-msgstr "Plné vyplnění"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "Filament pro tisk plné výplně."
+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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -17640,8 +17803,8 @@ msgid ""
"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to "
"close all holes in the model."
msgstr ""
-"Použijte \"Sudý-lichý\" pro modely letadel 3DLabPrint. Použijte \"Zavřít "
-"díry\" pro uzavření všech otvorů v modelu."
+"Použijte \"Sudý-lichý\" pro modely letadel 3DLabPrint. Použijte \"Zavřít díry"
+"\" pro uzavření všech otvorů v modelu."
msgid "Regular"
msgstr "Obvyklý"
@@ -17756,11 +17919,10 @@ msgid "Support/raft base"
msgstr "Podpora/základ raftu"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"Filament pro tisk základny podpory a raftu. \"Výchozí\" znamená, že není "
-"určen žádný konkrétní filament pro podporu a použije se aktuální filament."
msgid "Avoid interface filament for base"
msgstr "Vyhněte se rozhraní filamentu pro základnu"
@@ -17790,11 +17952,10 @@ msgid "Support/raft interface"
msgstr "Podpora/rozhraní raftu"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"Filament pro tisk rozhraní podpory. \"Výchozí\" znamená, že není určen žádný "
-"konkrétní filament pro rozhraní podpory a použije se aktuální filament."
msgid "Top interface layers"
msgstr "Vrstvy rozhraní horního povrchu"
@@ -18113,8 +18274,8 @@ msgstr "Aktivovat kontrolu teploty"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -18847,6 +19008,9 @@ msgstr "Neplatná hodnota "
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "Neplatná hodnota při aktivovaném režimu spirálové vázy: "
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "příliš velká šířka čáry "
@@ -19099,11 +19263,17 @@ msgid "Debug level"
msgstr "Úroveň ladění"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
+msgstr ""
+"Nastaví úroveň logování pro ladění. 0:fatal, 1:error, 2:warning, 3:info, 4:"
+"debug, 5:trace\n"
+
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
msgstr ""
-"Nastaví úroveň logování pro ladění. 0:fatal, 1:error, 2:warning, 3:info, "
-"4:debug, 5:trace\n"
msgid "Enable timelapse for print"
msgstr "Povolit časosběr pro tisk"
@@ -19641,8 +19811,8 @@ msgstr "Zadaný soubor nelze načíst, protože je prázdný."
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
-"Neznámý formát souboru. Vstupní soubor musí mít příponu .stl, .obj "
-"nebo .amf(.xml)."
+"Neznámý formát souboru. Vstupní soubor musí mít příponu .stl, .obj nebo ."
+"amf(.xml)."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
@@ -20604,6 +20774,15 @@ msgstr ""
msgid "Top Surface Pattern"
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"
msgstr "Odeslat G-code na hostitele tiskárny"
@@ -20626,6 +20805,48 @@ msgstr "Název souboru nekončí na \"%s\". Chcete pokračovat?"
msgid "Upload"
msgstr "Nahrát"
+msgid "Leveling before print"
+msgstr ""
+
+msgid "Time-lapse"
+msgstr "Časosběr"
+
+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"
msgstr "Fronta nahrávání na tiskový host"
@@ -20670,9 +20891,6 @@ msgstr ""
"Zvolený typ podložky neodpovídá souboru. Před spuštěním tisku prosím "
"potvrďte."
-msgid "Time-lapse"
-msgstr "Časosběr"
-
msgid "Heated Bed Leveling"
msgstr "Vyrovnání vyhřívané podložky"
@@ -20682,6 +20900,16 @@ msgstr "Texturovaná tisková podložka (strana A)"
msgid "Smooth Build Plate (Side B)"
msgstr "Hladká tisková podložka (strana B)"
+#, 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"
msgstr "Nelze provést booleovskou operaci na vybraných částech."
@@ -20865,8 +21093,8 @@ msgstr ""
"Chcete to přepsat?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
"Předvolby přejmenujeme na „Výrobce Typ Sériové číslo @tiskárna, kterou jste "
@@ -21376,9 +21604,18 @@ msgstr ""
"Select the network agent implementation for printer communication. Available "
"agents are registered at startup."
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "Nepodařilo se získat platný odkaz na Host tiskárny"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "Úspěch!"
@@ -21425,6 +21662,30 @@ msgstr "Přihlášení/Test"
msgid "Connection to printers connected via the print host failed."
msgstr "Připojení k tiskárnám připojeným přes hostitele tisku se nezdařilo."
+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
msgid "Mismatched type of print host: %s"
msgstr "Nesouhlasný typ tiskového hostitele: %s"
@@ -22150,7 +22411,7 @@ msgid "Global settings"
msgstr "Global settings"
msgid "Video tutorial"
-msgstr ""
+msgstr "Videonávod"
msgid "(Sync with printer)"
msgstr "(Sync with printer)"
@@ -22191,12 +22452,27 @@ msgstr ""
"Účet SimplyPrint není propojen. Přejděte do možností Připojení a nastavte "
"jej."
+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."
msgstr "Sériové připojení k Flashforge funguje správně."
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr "Nepodařilo se připojit k Flashforge přes sériový port"
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "Zadaný stav není správný."
@@ -22814,6 +23090,224 @@ msgstr ""
"Víte, že při tisku materiálů náchylných ke kroucení, jako je ABS, může "
"vhodné zvýšení teploty vyhřívané desky snížit pravděpodobnost kroucení?"
+#~ 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 ""
+#~ "Možnost Wipe není dostupná při použití režimu Firmware Retraction.\n"
+#~ "\n"
+#~ "Chcete ji zakázat, abyste mohli povolit Firmware Retraction?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "V before_layer_gcode byl nalezen příkaz „G92 E0“, který není kompatibilní "
+#~ "s absolutním adresováním extruderu."
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "V layer_gcode byl nalezen příkaz „G92 E0“, který není kompatibilní s "
+#~ "absolutním adresováním extruderu."
+
+#, 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. 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."
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+#~ msgstr ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "Řídí hustotu (rozteč) linií vnitřních mostů. 100 % znamená plný most. "
+#~ "Výchozí hodnota je 100 %.\n"
+#~ "\n"
+#~ "Nižší hustota vnitřních mostů může snížit polštářování na horním povrchu "
+#~ "a zlepšit spolehlivost vnitřních mostů, protože je více prostoru pro "
+#~ "cirkulaci vzduchu kolem extrudovaného mostu, což zvyšuje rychlost jeho "
+#~ "chlazení.\n"
+#~ "\n"
+#~ "Tato volba funguje obzvlášť dobře v kombinaci s možností druhého "
+#~ "vnitřního mostu nad výplní, což dále zlepšuje strukturu vnitřních mostů "
+#~ "před nanesením plné výplně."
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "Snižte tuto hodnotu mírně (například na 0,9), abyste snížili množství "
+#~ "materiálu pro most a zlepšili snižování prověšení.\n"
+#~ "\n"
+#~ "Skutečný průtok pro most se vypočítá vynásobením této hodnoty poměrem "
+#~ "průtoku filamentu a případně i poměrem průtoku objektu, pokud je nastaven."
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "Tato hodnota určuje tloušťku vnitřní mostové vrstvy. Toto je první vrstva "
+#~ "nad řídkou výplní. Snižte tuto hodnotu mírně (například na 0,9), abyste "
+#~ "zlepšili kvalitu povrchu nad řídkou výplní.\n"
+#~ "\n"
+#~ "Skutečný použitý vnitřní mostový průtok se vypočítá vynásobením této "
+#~ "hodnoty koeficientem průtoku pro mosty, koeficientem průtoku filamentu a "
+#~ "případně koeficientem průtoku objektu."
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+
+#~ 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 ""
+#~ "Je-li povoleno, mosty jsou spolehlivější, mohou překlenout delší "
+#~ "vzdálenosti, ale mohou vypadat hůře. Je-li zakázáno, mosty vypadají lépe, "
+#~ "ale jsou spolehlivé pouze pro kratší vzdálenosti."
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "Pokud je povoleno, budou použity silné vnitřní mosty. Obvykle se "
+#~ "doporučuje mít tuto funkci zapnutou. Pokud však používáte velké trysky, "
+#~ "zvažte její vypnutí."
+
+#~ msgid ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+#~ msgstr ""
+#~ "Zarovnává směry výplně a povrchové výplně podle orientace modelu na "
+#~ "tiskové podložce. Pokud je tato volba povolena, směry výplně se otáčí "
+#~ "podle modelu pro zachování optimálních pevnostních vlastností."
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "Filament pro tisk vnitřní řídké výplně."
+
+#~ msgid "Filament to print walls."
+#~ msgstr "Filament pro tisk stěn."
+
+#~ msgid "Solid infill"
+#~ msgstr "Plné vyplnění"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "Filament pro tisk plné výplně."
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "Filament pro tisk základny podpory a raftu. \"Výchozí\" znamená, že není "
+#~ "určen žádný konkrétní filament pro podporu a použije se aktuální filament."
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "Filament pro tisk rozhraní podpory. \"Výchozí\" znamená, že není určen "
+#~ "žádný konkrétní filament pro rozhraní podpory a použije se aktuální "
+#~ "filament."
+
#~ msgid "Erase all painting"
#~ msgstr "Smazat celé malování"
diff --git a/localization/i18n/de/OrcaSlicer_de.po b/localization/i18n/de/OrcaSlicer_de.po
index 62b7cb292a..bcc7cd0bc7 100644
--- a/localization/i18n/de/OrcaSlicer_de.po
+++ b/localization/i18n/de/OrcaSlicer_de.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: \n"
"Last-Translator: Heiko Liebscher \n"
"Language-Team: \n"
@@ -1869,6 +1869,17 @@ msgstr ""
msgid "User logged out"
msgstr "Benutzer abgemeldet"
+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!"
msgstr ""
"Während des Slicingvorgangs kann keine neue Datei erstellt oder geöffnet "
@@ -1884,25 +1895,25 @@ msgstr ""
"Die Version von Orca Slicer ist veraltet und muss auf die neueste Version "
"aktualisiert werden, bevor sie normal verwendet werden kann"
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-"Verbindung zu OrcaCloud fehlgeschlagen.\n"
-"Bitte überprüfen Sie Ihre Netzwerkverbindung\n"
-"(HTTP %u)"
-msgid "Cloud Error"
-msgstr "Cloud-Fehler"
+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 ""
msgid "Retrieving printer information, please try again later."
msgstr "Empfange Druckerinformationen, bitte später erneut versuchen."
@@ -1963,8 +1974,8 @@ msgid "Privacy Policy Update"
msgstr "Datenschutzrichtlinien-Update"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
-msgstr "dein Bambu Cloud Profil (Benutzer-ID: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
+msgstr "dein Orca Cloud Profil (Benutzer-ID: \"%s\")"
msgid "your default profile"
msgstr "dein Standardprofil"
@@ -2219,6 +2230,9 @@ msgstr "Torus"
msgid "Orca Cube"
msgstr "Orca Würfel"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Orca Toleranz Test"
@@ -5655,6 +5669,9 @@ msgstr "Überhänge"
msgid "Outline"
msgstr "Umriss"
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr "Perspektive"
@@ -5697,7 +5714,7 @@ msgstr "Volumen:"
msgid "Size:"
msgstr "Größe:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5874,8 +5891,8 @@ msgid ""
"You can find it in \"Setting > Setting > LAN only > Access Code\"\n"
"on the printer, as shown in the figure:"
msgstr ""
-"Sie finden es unter „Einstellungen > Einstellungen > Nur LAN > "
-"Zugangscode\"\n"
+"Sie finden es unter „Einstellungen > Einstellungen > Nur LAN > Zugangscode"
+"\"\n"
"am Drucker, wie in der Abbildung gezeigt:"
msgid "Invalid input."
@@ -5962,15 +5979,18 @@ msgstr "Einrichtungsassistent"
msgid "Show Configuration Folder"
msgstr "Konfigurationsordner anzeigen"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "Netzwerktest öffnen"
+
msgid "Show Tip of the Day"
msgstr "Tipp des Tages anzeigen"
msgid "Check for Updates"
msgstr "Nach Updates suchen"
-msgid "Open Network Test"
-msgstr "Netzwerktest öffnen"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "&Über %s"
@@ -6109,7 +6129,8 @@ msgid "Pull and apply the latest presets from OrcaCloud"
msgstr "Die neuesten Presets von OrcaCloud abrufen und anwenden"
msgid "You must be logged in to sync presets from cloud."
-msgstr "Sie müssen angemeldet sein, um Presets aus der Cloud zu synchronisieren."
+msgstr ""
+"Sie müssen angemeldet sein, um Presets aus der Cloud zu synchronisieren."
msgid "Quit"
msgstr "Beenden"
@@ -7349,6 +7370,12 @@ msgstr "Export erfolgreich."
msgid "Model file downloaded."
msgstr "Modelldatei heruntergeladen."
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr "Für diesen Drucker sind möglicherweise freigegebene Profile verfügbar."
@@ -7517,11 +7544,11 @@ msgstr "Druckvorgang pausieren"
msgctxt "Nozzle Type"
msgid "Type"
-msgstr ""
+msgstr "Typ"
msgctxt "Nozzle Diameter"
msgid "Diameter"
-msgstr ""
+msgstr "Durchmesser"
msgctxt "Nozzle Flow"
msgid "Flow"
@@ -8421,6 +8448,12 @@ msgstr ""
"Eine boolesche Operation kann für Modellnetze nicht ausgeführt werden. Es "
"werden nur positive Teile exportiert."
+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?"
msgstr ""
"Ist der Drucker bereit? Ist die Druckplatte eingelegt, leer und sauber?"
@@ -8950,19 +8983,25 @@ msgid "Left Mouse Drag"
msgstr "Linke Maustaste drücken"
msgid "Set the action that dragging the left mouse button should perform."
-msgstr "Legen Sie die Aktion fest, die das Ziehen der linken Maustaste ausführen soll."
+msgstr ""
+"Legen Sie die Aktion fest, die das Ziehen der linken Maustaste ausführen "
+"soll."
msgid "Middle Mouse Drag"
msgstr "Mittlere Maustaste drücken"
msgid "Set the action that dragging the middle mouse button should perform."
-msgstr "Legen Sie die Aktion fest, die das Ziehen der mittleren Maustaste ausführen soll."
+msgstr ""
+"Legen Sie die Aktion fest, die das Ziehen der mittleren Maustaste ausführen "
+"soll."
msgid "Right Mouse Drag"
msgstr "Rechte Maustaste drücken"
msgid "Set the action that dragging the right mouse button should perform."
-msgstr "Legen Sie die Aktion fest, die das Ziehen der rechten Maustaste ausführen soll."
+msgstr ""
+"Legen Sie die Aktion fest, die das Ziehen der rechten Maustaste ausführen "
+"soll."
msgid "Clear my choice on..."
msgstr "Meine Auswahl löschen bei ..."
@@ -8991,6 +9030,24 @@ msgstr ""
msgid "Graphics"
msgstr "Grafik"
+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"
msgstr "Kantenglättung"
@@ -9011,7 +9068,8 @@ msgstr ""
"Höhere Werte führen zu glatteren Kanten, aber die Auswirkungen auf die "
"Leistung sind exponentiell.\n"
"Niedrigere Werte verbessern die Leistung auf Kosten von gezackten Kanten.\n"
-"Wenn deaktiviert, wird empfohlen, FXAA zu aktivieren, um gezackte Kanten mit minimalen Auswirkungen auf die Leistung zu reduzieren.\n"
+"Wenn deaktiviert, wird empfohlen, FXAA zu aktivieren, um gezackte Kanten mit "
+"minimalen Auswirkungen auf die Leistung zu reduzieren.\n"
"\n"
"Erfordert einen Neustart der Anwendung."
@@ -9028,7 +9086,8 @@ msgid ""
"Takes effect immediately."
msgstr ""
"Führt Fast Approximate Anti-Aliasing als Bildschirmraum-Pass aus.\n"
-"Nützlich, um die MSAA-Einstellung zu deaktivieren oder zu reduzieren, um die Leistung zu verbessern.\n"
+"Nützlich, um die MSAA-Einstellung zu deaktivieren oder zu reduzieren, um die "
+"Leistung zu verbessern.\n"
"\n"
"ist sofort wirksam"
@@ -9049,7 +9108,6 @@ msgstr ""
"Energieverbrauch zu reduzieren.\n"
"Auf 0 setzen für unbegrenzte Bildrate."
-
msgid "Show FPS overlay"
msgstr "FPS-Overlay anzeigen"
@@ -9063,14 +9121,17 @@ msgid "Stealth mode"
msgstr "Unsichtbarer Modus"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
-"Dies deaktiviert alle Cloud-Dienste, z.B. Orca Cloud und Bambu Cloud. Dies "
-"stoppt auch die Übertragung von Daten an die Cloud-Dienste von Bambu. "
-"Benutzer, die keine BBL-Maschinen verwenden oder nur den LAN-Modus nutzen, "
-"können diese Funktion sicher aktivieren."
msgid "Network test"
msgstr "Netzwerktest"
@@ -9233,9 +9294,17 @@ msgid ""
"Highly experimental! Slow and may create artifact."
msgstr ""
"Versuchen Sie, bemalte Funktionen (Farbe/Naht/Stütze/unscharf usw.) nach "
-"Änderung des Objekt-Meshs (z. B. schneiden/neu laden von der Festplatte/vereinfachen/reparieren usw.) beizubehalten\n"
+"Änderung des Objekt-Meshs (z. B. schneiden/neu laden von der Festplatte/"
+"vereinfachen/reparieren usw.) beizubehalten\n"
"Sehr experimentell! Langsam und kann Artefakte erzeugen."
+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"
msgstr "Fehlerhaften Speicher zulassen"
@@ -9844,7 +9913,7 @@ msgstr ""
#, c-format, boost-format
msgid "[ %s ] requires printing in a high-temperature environment."
-msgstr ""
+msgstr "[ %s ] muss in einer Umgebung mit hoher Temperatur gedruckt werden."
#, c-format, boost-format
msgid "The filament on %s may soften. Please unload."
@@ -10356,8 +10425,8 @@ msgid ""
"Layer height exceeds the limit in Printer Settings -> Extruder -> Layer "
"height limits, this may cause printing quality issues."
msgstr ""
-"Die Schichthöhe überschreitet das Limit in Druckereinstellungen -> Extruder "
-"-> Schichthöhenlimits. Dies kann zu Problemen mit der Druckqualität führen."
+"Die Schichthöhe überschreitet das Limit in Druckereinstellungen -> Extruder -"
+"> Schichthöhenlimits. Dies kann zu Problemen mit der Druckqualität führen."
msgid "Adjust to the set range automatically?\n"
msgstr "Automatisch an den eingestellten Bereich anpassen?\n"
@@ -10394,8 +10463,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Wenn Sie einen Zeitraffer ohne Werkzeugkopf aufnehmen, wird empfohlen, einen "
"\"Timelapse Reinigungsturm\" hinzuzufügen, indem Sie mit der rechten "
@@ -10889,13 +10958,11 @@ msgid "Retraction when switching material"
msgstr "Rückzug bei Materialwechsel"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"Die Wipe-Option ist bei Verwendung des Firmware-Retractionsmodus nicht "
-"verfügbar. Soll ich sie deaktivieren, um den Firmware-Retractionsmodus zu "
-"aktivieren?"
msgid "Firmware Retraction"
msgstr "Filament Rückzug durch Firmware"
@@ -10967,7 +11034,9 @@ msgstr ""
msgid ""
"Some first-layer and other-layer temperature pairs exceed safety limits.\n"
-msgstr "Einige Temperaturpaare für die erste und andere Schicht überschreiten die Sicherheitsgrenzen.\n"
+msgstr ""
+"Einige Temperaturpaare für die erste und andere Schicht überschreiten die "
+"Sicherheitsgrenzen.\n"
msgid ""
"\n"
@@ -10981,8 +11050,8 @@ msgid ""
"You can go back to edit values, or continue if this is intentional."
msgstr ""
"\n"
-"Sie können zurückgehen, um die Werte zu bearbeiten, oder fortfahren, wenn dies "
-"absichtlich ist."
+"Sie können zurückgehen, um die Werte zu bearbeiten, oder fortfahren, wenn "
+"dies absichtlich ist."
msgid ""
"\n"
@@ -11079,7 +11148,6 @@ msgstr ""
"\"%1%\"\n"
"werden gespeichert und \"%2%\" wird ohne Änderungen geöffnet."
-
msgid "Click the right mouse button to display the full text."
msgstr ""
"Klicken Sie mit der rechten Maustaste, um den vollständigen Text anzuzeigen."
@@ -11504,8 +11572,8 @@ msgstr ""
msgid ""
"Timelapse is not supported because Print sequence is set to \"By object\"."
msgstr ""
-"Zeitraffer wird nicht unterstützt, da die Druckreihenfolge auf \"Nach "
-"Objekt\" eingestellt ist."
+"Zeitraffer wird nicht unterstützt, da die Druckreihenfolge auf \"Nach Objekt"
+"\" eingestellt ist."
msgid ""
"You selected external and AMS filament at the same time in an extruder, you "
@@ -12428,8 +12496,8 @@ msgstr ""
msgid ""
"Clumping detection is not supported when \"by object\" sequence is enabled."
msgstr ""
-"Die Klumpenerkennung wird nicht unterstützt, wenn die Sequenz \"nach "
-"Objekt\" aktiviert ist."
+"Die Klumpenerkennung wird nicht unterstützt, wenn die Sequenz \"nach Objekt"
+"\" aktiviert ist."
msgid ""
"Enabling both precise Z height and the prime tower may cause slicing errors."
@@ -12636,8 +12704,8 @@ msgid ""
"The Hollow base pattern is not supported by this support type; Rectilinear "
"will be used instead."
msgstr ""
-"Das Hohl-Basis-Muster wird von diesem Stütztyp nicht unterstützt; Stattdessen "
-"wird das Rechteckmuster verwendet."
+"Das Hohl-Basis-Muster wird von diesem Stütztyp nicht unterstützt; "
+"Stattdessen wird das Rechteckmuster verwendet."
msgid ""
"Support enforcers are used but support is not enabled. Please enable support."
@@ -12648,6 +12716,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
msgstr "Schichthöhe darf den Düsendurchmesser nicht überschreiten."
+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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -12658,18 +12739,14 @@ msgstr ""
"Gleitkommazahlen zu verhindern. Fügen Sie \"G92 E0\" zu layer_gcode hinzu."
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"\"G92 E0\" wurde in before_layer_gcode gefunden, was mit absoluter "
-"Extruderadressierung nicht kompatibel ist."
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"\"G92 E0\" wurde in layer_gcode gefunden, was mit absoluter "
-"Extruderadressierung nicht kompatibel ist."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -12778,6 +12855,31 @@ msgstr "Druckbarer Bereich"
msgid "Extruder printable area"
msgstr "Druckbarer Bereich des Extruders"
+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"
msgstr "ausgenommene Druckbettfläche"
@@ -12900,8 +13002,8 @@ msgstr ""
"Feld sollte den Hostnamen, die IP-Adresse oder die URL der Drucker-Host-"
"Instanz enthalten. Auf einen Drucker-Host hinter HAProxy mit aktivierter "
"Basisauthentifizierung kann zugegriffen werden, indem Benutzername und "
-"Passwort in die URL in folgendem Format eingegeben werden: https://"
-"username:password@Ihre-octopi-Adresse/"
+"Passwort in die URL in folgendem Format eingegeben werden: https://username:"
+"password@Ihre-octopi-Adresse/"
msgid "Device UI"
msgstr "Gerät"
@@ -12923,6 +13025,12 @@ msgstr ""
"Feld sollte den API-Schlüssel oder das für die Authentifizierung "
"erforderliche Passwort enthalten."
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "Name des Druckers"
@@ -13282,124 +13390,134 @@ msgstr "Externe Brücken Füllrichtung"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"Überbrückungswinkel überschreiben. 0 bedeutet, dass der Überbrückungswinkel "
-"automatisch berechnet wird. Andernfalls wird der angegebene Winkel für "
-"externe Brücken verwendet. Verwenden Sie 180° für keinen Winkel."
msgid "Internal bridge infill direction"
msgstr "Interne Brücken Füllrichtung"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"Interner Überbrückungswinkel überschreiben. 0 bedeutet, dass der "
-"Überbrückungswinkel automatisch berechnet wird. Andernfalls wird der "
-"angegebene Winkel für interne Brücken verwendet. Verwenden Sie 180° für "
-"keinen Winkel.\n"
-"\n"
-"Es wird empfohlen, ihn auf 0 zu belassen, es sei denn, es gibt ein "
-"spezifisches Modell, das dies nicht erfordert."
msgid "External bridge density"
msgstr "Externe Brücken Dichte"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
-"Steuerung der Dichte (Abstand) der externen Brückenlinien. Standard ist "
-"100%.\n"
-"\n"
-"Niedrigere Dichte externe Brücken können die Zuverlässigkeit verbessern, da "
-"mehr Platz für die Luftzirkulation um die extrudierte Brücke vorhanden ist, "
-"was die Kühlgeschwindigkeit verbessert. Minimum ist 10%.\n"
-"\n"
-"Höhere Dichten können glattere Brückenoberflächen erzeugen, da sich "
-"überlappendeLinien zusätzliche Unterstützung während des Druckens bieten. "
-"Maximum ist 120%.\n"
-"Anmerkung: Eine zu hohe Brückendichte kann Verzug oder Überextrusion "
-"verursachen."
msgid "Internal bridge density"
msgstr "Interne Brücken Dichte"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"Steuerung der Dichte (Abstand) der internen Brückenlinien. 100 % bedeutet "
-"solide Brücke. Standard ist 100 %.\n"
-"\n"
-"Niedrigere Dichte interne Brücken können das Pillowing der oberen Oberfläche "
-"reduzieren und die Zuverlässigkeit interner Brücken verbessern, da mehr "
-"Platz für die Luftzirkulation um die extrudierte Brücke vorhanden ist, was "
-"die Kühlgeschwindigkeit verbessert.\n"
-"\n"
-"Diese Option funktioniert besonders gut in Kombination mit der Option für "
-"die zweite interne Brücke über Füllung, die die interne Brückenstruktur "
-"weiter verbessert, bevor die feste Füllung extrudiert wird."
msgid "Bridge flow ratio"
msgstr "Brücken Flussrate"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Verringern Sie diesen Wert leicht (zum Beispiel 0,9), um die Materialmenge "
-"für die Brücke zu reduzieren und das Durchhängen zu verbessern.\n"
+
+#, 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"
-"Der tatsächliche Brückenfluss wird berechnet, indem dieser Wert mit dem "
-"Filamentflussverhältnis und, falls festgelegt, dem Objektflussverhältnis "
-"multipliziert wird."
+"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"
msgstr "Interne Brücken Flussrate"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Dieser Wert bestimmt die Dicke der internen Brückenschicht. Dies ist die "
-"erste Schicht über der dünnen Füllung. Verringern Sie diesen Wert leicht "
-"(zum Beispiel 0,9), um die Oberflächenqualität über der dünnen Füllung zu "
-"verbessern.\n"
-"\n"
-"Der tatsächliche interne Brückenfluss wird berechnet, indem dieser Wert mit "
-"dem Brückenflussverhältnis, dem Filamentflussverhältnis und, falls "
-"festgelegt, dem Objektflussverhältnis multipliziert wird."
msgid "Top surface flow ratio"
msgstr "Durchflussverhältnis obere Fläche"
@@ -13756,45 +13874,38 @@ msgstr ""
msgid "Slow down for curled perimeters"
msgstr "Langsamer Druck für gekrümmte Umfänge"
-#, fuzzy, no-c-format, no-boost-format
+#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"Aktivieren Sie diese Option, um den Druck in Bereichen zu verlangsamen, in "
-"denen die Umfänge nach oben gekrümmt sein können. Zum Beispiel wird eine "
-"zusätzliche Verlangsamung angewendet, wenn Überhänge an scharfen Ecken wie "
-"der Vorderseite des Benchy-Rumpfes gedruckt werden, um das Kräuseln zu "
-"reduzieren, das sich über mehrere Schichten hinweg aufbaut.\n"
-"\n"
-"Es wird im Allgemeinen empfohlen, diese Option eingeschaltet zu lassen, es "
-"sei denn, Ihr Drucker ist leistungsstark genug oder die Druckgeschwindigkeit "
-"ist langsam genug, dass das Kräuseln der Umfänge nicht auftritt. Wenn mit "
-"einer hohen externen Umfangsgeschwindigkeit gedruckt wird, kann dieser "
-"Parameter leichte Artefakte verursachen, wenn er aufgrund der großen Varianz "
-"der Druckgeschwindigkeiten verlangsamt wird. Wenn Sie Artefakte bemerken, "
-"stellen Sie sicher, dass Ihr Druckvorschub korrekt eingestellt ist.\n"
-"\n"
-"Hinweis: Wenn diese Option aktiviert ist, werden Umfangsumfänge wie "
-"Überhänge behandelt, was bedeutet, dass die Überhangsgeschwindigkeit "
-"angewendet wird, auch wenn der überhängende Umfang Teil einer Brücke ist. "
-"Zum Beispiel, wenn die Umfänge zu 100 % überhängen, ohne dass eine Wand sie "
-"von unten stützt, wird die Überhangsgeschwindigkeit von 100 % angewendet."
msgid "mm/s or %"
msgstr "mm/s o. %"
@@ -14078,26 +14189,25 @@ msgid "Thick external bridges"
msgstr "Dicke externe Brücken"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Wenn diese Option aktiviert ist, sind die Brücken zuverlässiger und können "
-"größere Entfernungen überbrücken, sehen aber möglicherweise schlechter aus. "
-"Wenn deaktiviert, sehen Brücken besser aus, sind aber nur für kürzere "
-"Entfernungen zuverlässig."
msgid "Thick internal bridges"
msgstr "Dicke interne Brücken"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Wenn diese Option aktiviert ist, werden dicke interne Brücken verwendet. Es "
-"wird normalerweise empfohlen, diese Funktion zu aktivieren. Wenn Sie jedoch "
-"große Düsen verwenden, sollten Sie diese Funktion deaktivieren."
msgid "Extra bridge layers (beta)"
msgstr "Zusätzliche Brückenschichten (Beta)"
@@ -14449,8 +14559,8 @@ msgid ""
"external surface finish. It can also cause the infill to shine through the "
"external surfaces of the part."
msgstr ""
-"Reihenfolge der Wand/Füllung. Wenn das Kontrollkästchen nicht aktiviert "
-"ist,werden die Wände zuerst gedruckt, was in den meisten Fällen am besten "
+"Reihenfolge der Wand/Füllung. Wenn das Kontrollkästchen nicht aktiviert ist,"
+"werden die Wände zuerst gedruckt, was in den meisten Fällen am besten "
"funktioniert.\n"
"\n"
"Das Drucken der Füllung zuerst kann bei extremen Überhängen helfen, da die "
@@ -15381,14 +15491,11 @@ msgid "Align infill direction to model"
msgstr "Füllrichtung am Modell ausrichten"
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
-"Richtet die Füll- und Oberflächenfüllrichtungen so aus, dass sie der "
-"Orientierung des Modells auf der Bauplatte folgen. Wenn aktiviert, rotieren "
-"die Füllrichtungen mit dem Modell, um optimale Festigkeitseigenschaften zu "
-"erhalten."
msgid "Insert solid layers"
msgstr "Massive Schichten einfügen"
@@ -15417,6 +15524,7 @@ msgstr ""
msgid "Z-buckling bias optimization (experimental)"
msgstr "Z-Buckling-Bias-Optimierung (experimentell)"
+#, fuzzy, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -15424,11 +15532,11 @@ msgid ""
"~30% sparse infill density and above. Only applies when Sparse infill "
"pattern is set to Gyroid."
msgstr ""
-"Strafft die Gyroid-Welle entlang der Z-Achse (vertikal) bei geringer Fülldichte, "
-"um die effektive vertikale Säulenlänge zu verkürzen und die Z-Achsen-Kompressions-"
-"Knickfestigkeit zu verbessern. Der Filamentverbrauch bleibt erhalten. Keine "
-"Auswirkung bei ~30% einfacher Fülldichte und darüber. Gilt nur, wenn das einfache "
-"Füllmuster auf Gyroid eingestellt ist."
+"Strafft die Gyroid-Welle entlang der Z-Achse (vertikal) bei geringer "
+"Fülldichte, um die effektive vertikale Säulenlänge zu verkürzen und die Z-"
+"Achsen-Kompressions-Knickfestigkeit zu verbessern. Der Filamentverbrauch "
+"bleibt erhalten. Keine Auswirkung bei ~30% einfacher Fülldichte und darüber. "
+"Gilt nur, wenn das einfache Füllmuster auf Gyroid eingestellt ist."
msgid "Sparse infill pattern"
msgstr "Füllmuster"
@@ -15522,6 +15630,27 @@ msgstr ""
"Der Winkel der schrägen Linien der Füllung. 60° führt zu einer reinen "
"Wabenstruktur."
+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"
msgstr "Länge des Infill-Ankers"
@@ -15607,16 +15736,16 @@ msgid ""
"Acceleration of bridges. If the value is expressed as a percentage (e.g. "
"50%), it will be calculated based on the outer wall acceleration."
msgstr ""
-"Beschleunigung der Brücken. Wenn der Wert als Prozentwert angegeben wird "
-"(z.B. 50%), wird er auf der Grundlage der Beschleunigung der Außenwand "
+"Beschleunigung der Brücken. Wenn der Wert als Prozentwert angegeben wird (z."
+"B. 50%), wird er auf der Grundlage der Beschleunigung der Außenwand "
"berechnet."
msgid "mm/s² or %"
msgstr "mm/s² o. %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Beschleunigung der spärlichen Innenfüllung. Wenn der Wert als Prozentwert "
"angegeben wird (z.B. 100%), wird er auf der Grundlage der "
@@ -15761,13 +15890,13 @@ msgstr "Volle Lüfterdrehzahl ab Schicht"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
-"Die Lüftergeschwindigkeit wird linear von Null bei der "
-"Schicht\"close_fan_the_first_x_layers\" auf das Maximum bei der Schicht "
+"Die Lüftergeschwindigkeit wird linear von Null bei der Schicht"
+"\"close_fan_the_first_x_layers\" auf das Maximum bei der Schicht "
"\"full_fan_speed_layer\" erhöht. \"full_fan_speed_layer\" wird ignoriert, "
"wenn es niedriger ist als \"close_fan_the_first_x_layers\",in diesem Fall "
"läuft der Lüfter bei Schicht \"close_fan_the_first_x_layers\"+ 1 mit maximal "
@@ -16314,8 +16443,8 @@ msgstr ""
"aus, bevor die Geschwindigkeit auf die Zielgeschwindigkeit reduziert wird, "
"um den Kühlventilator anzuschubsen.Dies ist bei Lüftern nützlich, bei denen "
"eine niedrige PWM-Leistung möglicherweise nicht ausreicht, um den Lüfter vom "
-"Stillstand aus zu starten oder um den Lüfter schneller auf Touren zu "
-"bringen.Setze den Wert auf 0, um diese Funktion zu deaktivieren."
+"Stillstand aus zu starten oder um den Lüfter schneller auf Touren zu bringen."
+"Setze den Wert auf 0, um diese Funktion zu deaktivieren."
msgid "Minimum non-zero part cooling fan speed"
msgstr "Minimale nicht-null Lüftergeschwindigkeit für die Teilekühlung"
@@ -16337,9 +16466,24 @@ msgid ""
"below the one you know it can actually spool at.\n"
"Set to 0 to deactivate."
msgstr ""
-"Einige Teilekühlventilatoren können nicht zu drehen beginnen, wenn sie unter einem bestimmten PWM-Arbeitszyklus befehligt werden. Wenn dieser Wert über 0 eingestellt ist, wird jeder nicht-null-Teilekühlventilatorbefehl auf mindestens diesen Prozentsatz angehoben, damit der Lüfter zuverlässig startet. Ein Lüfterbefehl von 0 (Lüfter aus) wird immer genau eingehalten. Diese Begrenzung wird nach jeder anderen Lüfterberechnung angewendet (Erstschicht-Ramp-up, Schichtzeit-Interpolation, Überhangs-/Brücken-/Stützstruktur-Schnittstellen-/Glättungsüberschreibungen), sodass die Skalierung weiterhin im Bereich [dieser Wert, 100%] erfolgt.\n"
+"Einige Teilekühlventilatoren können nicht zu drehen beginnen, wenn sie unter "
+"einem bestimmten PWM-Arbeitszyklus befehligt werden. Wenn dieser Wert über 0 "
+"eingestellt ist, wird jeder nicht-null-Teilekühlventilatorbefehl auf "
+"mindestens diesen Prozentsatz angehoben, damit der Lüfter zuverlässig "
+"startet. Ein Lüfterbefehl von 0 (Lüfter aus) wird immer genau eingehalten. "
+"Diese Begrenzung wird nach jeder anderen Lüfterberechnung angewendet "
+"(Erstschicht-Ramp-up, Schichtzeit-Interpolation, Überhangs-/Brücken-/"
+"Stützstruktur-Schnittstellen-/Glättungsüberschreibungen), sodass die "
+"Skalierung weiterhin im Bereich [dieser Wert, 100%] erfolgt.\n"
"\n"
-"Wenn Ihre Firmware den Lüfter bereits unter einem Schwellenwert deaktiviert (z.B. Klipper's [fan] off_below: 0.10 schaltet den Lüfter aus, wenn der befehligte Arbeitszyklus unter 10% liegt), sollten idealerweise dieser Wert und der Firmware-Schwellenwert auf denselben Wert eingestellt werden. Wenn sie übereinstimmen (z.B. off_below: 0.10 in Klipper und 10% hier), garantiert der Slicer, dass er nie einen nicht-null-Wert emittiert, den die Firmware stillschweigend fallen lässt, und der Lüfter nie einen Wert erhält, der unter dem Wert liegt, den er tatsächlich anfahren kann.\n"
+"Wenn Ihre Firmware den Lüfter bereits unter einem Schwellenwert deaktiviert "
+"(z.B. Klipper's [fan] off_below: 0.10 schaltet den Lüfter aus, wenn der "
+"befehligte Arbeitszyklus unter 10% liegt), sollten idealerweise dieser Wert "
+"und der Firmware-Schwellenwert auf denselben Wert eingestellt werden. Wenn "
+"sie übereinstimmen (z.B. off_below: 0.10 in Klipper und 10% hier), "
+"garantiert der Slicer, dass er nie einen nicht-null-Wert emittiert, den die "
+"Firmware stillschweigend fallen lässt, und der Lüfter nie einen Wert erhält, "
+"der unter dem Wert liegt, den er tatsächlich anfahren kann.\n"
"\n"
"Setze den Wert auf 0, um diese Funktion zu deaktivieren."
@@ -16610,8 +16754,10 @@ msgstr "Klumpen-Ausschlussbereich abtasten"
msgid "Probing exclude area of clumping."
msgstr "Klumpen-Ausschlussbereich abtasten."
-msgid "Filament to print internal sparse infill."
-msgstr "Filament für den Druck der inneren Füllung."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -17499,8 +17645,21 @@ msgstr ""
"verwenden hierfür eine unterschiedliche Druckgeschwindigkeiten. Bei einem "
"100%% Überhang wird die Brückengeschwindigkeit verwendet."
-msgid "Filament to print walls."
-msgstr "Filament für den Druck der Wände"
+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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -17969,8 +18128,8 @@ msgstr ""
"Geschwindigkeit der äußeren oder inneren Wände abweicht. Wenn die hier "
"angegebene Geschwindigkeit höher ist als die Geschwindigkeit der äußeren "
"oder inneren Wände, wird der Drucker auf die langsamere der beiden "
-"Geschwindigkeiten zurückgesetzt. Wenn sie als Prozentsatz angegeben wird "
-"(z.B. 80%), wird die Geschwindigkeit auf der Grundlage der jeweiligen "
+"Geschwindigkeiten zurückgesetzt. Wenn sie als Prozentsatz angegeben wird (z."
+"B. 80%), wird die Geschwindigkeit auf der Grundlage der jeweiligen "
"Geschwindigkeit der äußeren oder inneren Wand berechnet. Der Standardwert "
"ist auf 100% eingestellt."
@@ -18025,8 +18184,8 @@ msgid "Role base wipe speed"
msgstr "Rollenbasierte Wipe Geschwindigkeit"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -18216,11 +18375,20 @@ msgstr ""
"Innere Füllbereiche, die kleiner als dieser Wert sind, werden durch massive "
"Füllungen ersetzt."
-msgid "Solid infill"
-msgstr "Massive Füllung"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "Filament für den Druck der massiven Füllung"
+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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -18443,8 +18611,14 @@ msgid ""
"this option if you want the tool change to always be issued above the wipe "
"tower instead."
msgstr ""
-"Erzwinge, dass der Werkzeugkopf zum Reinigungsturm fährt, bevor der Werkzeugwechselbefehl (Tx) ausgegeben wird. Nur relevant für Mehrfach-Extruder (Mehrfach-Werkzeugkopf) Drucker, die einen Typ-2-Reinigungsturm verwenden. Standardmäßig überspringt Orca die Fahrt auf Mehrfach-Werkzeugkopf-Maschinen, da die Firmware den Kopfwechsel übernimmt, was dazu führen kann, dass der Tx-Befehl über dem gedruckten Teil ausgegeben wird. Aktivieren Sie diese Option, wenn Sie möchten, dass der Werkzeugwechsel immer über dem Reinigungsturm ausgegeben wird."
-
+"Erzwinge, dass der Werkzeugkopf zum Reinigungsturm fährt, bevor der "
+"Werkzeugwechselbefehl (Tx) ausgegeben wird. Nur relevant für Mehrfach-"
+"Extruder (Mehrfach-Werkzeugkopf) Drucker, die einen Typ-2-Reinigungsturm "
+"verwenden. Standardmäßig überspringt Orca die Fahrt auf Mehrfach-"
+"Werkzeugkopf-Maschinen, da die Firmware den Kopfwechsel übernimmt, was dazu "
+"führen kann, dass der Tx-Befehl über dem gedruckten Teil ausgegeben wird. "
+"Aktivieren Sie diese Option, wenn Sie möchten, dass der Werkzeugwechsel "
+"immer über dem Reinigungsturm ausgegeben wird."
msgid "No sparse layers (beta)"
msgstr "Keine dünnen Schichten (Beta)"
@@ -18614,12 +18788,10 @@ msgid "Support/raft base"
msgstr "Stütz-/Basis-Objekt"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"Filament zum Drucken von Stützbasen und Flöße. \"Standard\" bedeutet, dass "
-"kein spezielles Filament für die Stützen verwendet wird, sondern das "
-"aktuelle Filament."
msgid "Avoid interface filament for base"
msgstr "Schnittstellenfilament für die Basis verringern"
@@ -18649,12 +18821,10 @@ msgid "Support/raft interface"
msgstr "Stütz-/Raft-Schnittstelle"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"Filament zum Drucken von Stütz-Schnittstellen. \"Standard\" bedeutet, dass "
-"kein spezielles Filament für die Stütz-Schnittstellen vorhanden ist und das "
-"aktuelle Filament verwendet wird."
msgid "Top interface layers"
msgstr "Obere Schnittstellenschichten"
@@ -18988,8 +19158,8 @@ msgstr "aktiviere Temperaturkontrolle"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -19769,6 +19939,9 @@ msgstr "Ungültiger Wert"
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "Ungültiger Wert, wenn der Spiral-Vase-Modus aktiviert ist: "
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "Zu große Linienbreite"
@@ -20027,12 +20200,18 @@ msgid "Debug level"
msgstr "Fehlersuchstufe"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
msgstr ""
"Legt die Stufe der Fehlerprotokollierung fest. 0:fatal, 1:error, 2:warning, "
"3:info, 4:debug, 5:trace\n"
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
+msgstr ""
+
msgid "Enable timelapse for print"
msgstr "Zeitraffer für Druck aktivieren"
@@ -20587,8 +20766,8 @@ msgstr "Die angegebene Datei konnte nicht gelesen werden, weil sie leer ist."
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
-"Unbekanntes Dateiformat: Die Eingabedatei muss die Endung .stl, .obj "
-"oder .amf(.xml) haben."
+"Unbekanntes Dateiformat: Die Eingabedatei muss die Endung .stl, .obj oder ."
+"amf(.xml) haben."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
@@ -21584,6 +21763,15 @@ msgstr "YOLO (Perfektionist)"
msgid "Top Surface Pattern"
msgstr "Oberflächenmuster"
+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"
msgstr "Senden Sie G-Code an den Drucker-Host"
@@ -21609,6 +21797,48 @@ msgstr ""
msgid "Upload"
msgstr "Hochladen"
+msgid "Leveling before print"
+msgstr ""
+
+msgid "Time-lapse"
+msgstr "Zeitraffer"
+
+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"
msgstr "Druck-Host-Upload-Warteschlange"
@@ -21653,9 +21883,6 @@ msgstr ""
"Der ausgewählte Betttyp stimmt nicht mit der Datei überein. Bitte bestätigen "
"Sie dies, bevor Sie mit dem Druck beginnen."
-msgid "Time-lapse"
-msgstr "Zeitraffer"
-
msgid "Heated Bed Leveling"
msgstr "Beheiztes Bett Nivellierung"
@@ -21665,6 +21892,16 @@ msgstr "Strukturierte Bauplatte (Seite A)"
msgid "Smooth Build Plate (Side B)"
msgstr "Glatte Bauplatte (Seite B)"
+#, 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"
msgstr ""
"Die boolesche Operation kann auf den ausgewählten Teilen nicht durchgeführt "
@@ -21855,8 +22092,8 @@ msgstr ""
"Möchten Sie es überschreiben?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
"Wir würden die Profile als \"Hersteller Typ Seriennummer @Drucker, den Sie "
@@ -22309,6 +22546,10 @@ msgid ""
"The nozzle type does not match the actual printer nozzle type.\n"
"Please click the Sync button above and restart the calibration."
msgstr ""
+"Der Düsentyp stimmt nicht mit dem tatsächlichen Düsentyp des Druckers "
+"überein.\n"
+"Bitte klicken Sie oben auf die Schaltfläche „Synchronisieren“ und starten "
+"Sie die Kalibrierung erneut."
#, c-format, boost-format
msgid "Printing %1s material with %2s nozzle may cause nozzle damage."
@@ -22333,6 +22574,8 @@ msgid ""
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
+"Der Düsendurchmesser des Extruders %s beträgt 0,2 mm, wodurch die "
+"automatische Kalibrierung der Flussdynamik nicht unterstützt wird."
#, c-format, boost-format
msgid ""
@@ -22384,9 +22627,18 @@ msgstr ""
"Wählen Sie die Implementierung des Netzwerkagenten für die "
"Druckerkommunikation. Verfügbare Agenten werden beim Start registriert."
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "Konnte keine gültige Referenz zum Druck-Host erhalten"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "Erfolgreich!"
@@ -22435,6 +22687,30 @@ msgstr ""
"Die Verbindung zu den über den Druck-Host verbundenen Druckern ist "
"fehlgeschlagen."
+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
msgid "Mismatched type of print host: %s"
msgstr "Typ des Druck-Hosts: %s ist falsch"
@@ -23231,14 +23507,29 @@ msgstr ""
"SimplyPrint-Konto nicht verknüpft. Gehen Sie zu den Verbindungsoptionen, um "
"es einzurichten."
+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."
msgstr "Die serielle Verbindung zu Flashforge funktioniert korrekt."
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr ""
"Konnte keine Verbindung zu Flashforge über die serielle Schnittstelle "
"herstellen."
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "Der bereitgestellte Status ist nicht korrekt."
@@ -23884,6 +24175,262 @@ msgstr ""
"wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die "
"Wahrscheinlichkeit von Verwerfungen verringert werden kann?"
+#, c-format, boost-format
+#~ msgid ""
+#~ "Failed to connect to OrcaCloud.\n"
+#~ "Please check your network connectivity\n"
+#~ "(HTTP %u)"
+#~ msgstr ""
+#~ "Verbindung zu OrcaCloud fehlgeschlagen.\n"
+#~ "Bitte überprüfen Sie Ihre Netzwerkverbindung\n"
+#~ "(HTTP %u)"
+
+#~ msgid "Cloud Error"
+#~ msgstr "Cloud-Fehler"
+
+#~ msgid ""
+#~ "This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This "
+#~ "stops the transmission of data to Bambu's cloud services too. Users who "
+#~ "don't use BBL machines or use LAN mode only can safely turn on this "
+#~ "function."
+#~ msgstr ""
+#~ "Dies deaktiviert alle Cloud-Dienste, z.B. Orca Cloud und Bambu Cloud. "
+#~ "Dies stoppt auch die Übertragung von Daten an die Cloud-Dienste von "
+#~ "Bambu. Benutzer, die keine BBL-Maschinen verwenden oder nur den LAN-Modus "
+#~ "nutzen, können diese Funktion sicher aktivieren."
+
+#~ 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 ""
+#~ "Die Wipe-Option ist bei Verwendung des Firmware-Retractionsmodus nicht "
+#~ "verfügbar. Soll ich sie deaktivieren, um den Firmware-Retractionsmodus zu "
+#~ "aktivieren?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\" wurde in before_layer_gcode gefunden, was mit absoluter "
+#~ "Extruderadressierung nicht kompatibel ist."
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\" wurde in layer_gcode gefunden, was mit absoluter "
+#~ "Extruderadressierung nicht kompatibel ist."
+
+#, 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 ""
+#~ "Überbrückungswinkel überschreiben. 0 bedeutet, dass der "
+#~ "Überbrückungswinkel automatisch berechnet wird. Andernfalls wird der "
+#~ "angegebene Winkel für externe Brücken verwendet. Verwenden Sie 180° für "
+#~ "keinen Winkel."
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "Interner Überbrückungswinkel überschreiben. 0 bedeutet, dass der "
+#~ "Überbrückungswinkel automatisch berechnet wird. Andernfalls wird der "
+#~ "angegebene Winkel für interne Brücken verwendet. Verwenden Sie 180° für "
+#~ "keinen Winkel.\n"
+#~ "\n"
+#~ "Es wird empfohlen, ihn auf 0 zu belassen, es sei denn, es gibt ein "
+#~ "spezifisches Modell, das dies nicht erfordert."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+#~ msgstr ""
+#~ "Steuerung der Dichte (Abstand) der externen Brückenlinien. Standard ist "
+#~ "100%.\n"
+#~ "\n"
+#~ "Niedrigere Dichte externe Brücken können die Zuverlässigkeit verbessern, "
+#~ "da mehr Platz für die Luftzirkulation um die extrudierte Brücke vorhanden "
+#~ "ist, was die Kühlgeschwindigkeit verbessert. Minimum ist 10%.\n"
+#~ "\n"
+#~ "Höhere Dichten können glattere Brückenoberflächen erzeugen, da sich "
+#~ "überlappendeLinien zusätzliche Unterstützung während des Druckens bieten. "
+#~ "Maximum ist 120%.\n"
+#~ "Anmerkung: Eine zu hohe Brückendichte kann Verzug oder Überextrusion "
+#~ "verursachen."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "Steuerung der Dichte (Abstand) der internen Brückenlinien. 100 % bedeutet "
+#~ "solide Brücke. Standard ist 100 %.\n"
+#~ "\n"
+#~ "Niedrigere Dichte interne Brücken können das Pillowing der oberen "
+#~ "Oberfläche reduzieren und die Zuverlässigkeit interner Brücken "
+#~ "verbessern, da mehr Platz für die Luftzirkulation um die extrudierte "
+#~ "Brücke vorhanden ist, was die Kühlgeschwindigkeit verbessert.\n"
+#~ "\n"
+#~ "Diese Option funktioniert besonders gut in Kombination mit der Option für "
+#~ "die zweite interne Brücke über Füllung, die die interne Brückenstruktur "
+#~ "weiter verbessert, bevor die feste Füllung extrudiert wird."
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "Verringern Sie diesen Wert leicht (zum Beispiel 0,9), um die "
+#~ "Materialmenge für die Brücke zu reduzieren und das Durchhängen zu "
+#~ "verbessern.\n"
+#~ "\n"
+#~ "Der tatsächliche Brückenfluss wird berechnet, indem dieser Wert mit dem "
+#~ "Filamentflussverhältnis und, falls festgelegt, dem Objektflussverhältnis "
+#~ "multipliziert wird."
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "Dieser Wert bestimmt die Dicke der internen Brückenschicht. Dies ist die "
+#~ "erste Schicht über der dünnen Füllung. Verringern Sie diesen Wert leicht "
+#~ "(zum Beispiel 0,9), um die Oberflächenqualität über der dünnen Füllung zu "
+#~ "verbessern.\n"
+#~ "\n"
+#~ "Der tatsächliche interne Brückenfluss wird berechnet, indem dieser Wert "
+#~ "mit dem Brückenflussverhältnis, dem Filamentflussverhältnis und, falls "
+#~ "festgelegt, dem Objektflussverhältnis multipliziert wird."
+
+#, fuzzy, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "Aktivieren Sie diese Option, um den Druck in Bereichen zu verlangsamen, "
+#~ "in denen die Umfänge nach oben gekrümmt sein können. Zum Beispiel wird "
+#~ "eine zusätzliche Verlangsamung angewendet, wenn Überhänge an scharfen "
+#~ "Ecken wie der Vorderseite des Benchy-Rumpfes gedruckt werden, um das "
+#~ "Kräuseln zu reduzieren, das sich über mehrere Schichten hinweg aufbaut.\n"
+#~ "\n"
+#~ "Es wird im Allgemeinen empfohlen, diese Option eingeschaltet zu lassen, "
+#~ "es sei denn, Ihr Drucker ist leistungsstark genug oder die "
+#~ "Druckgeschwindigkeit ist langsam genug, dass das Kräuseln der Umfänge "
+#~ "nicht auftritt. Wenn mit einer hohen externen Umfangsgeschwindigkeit "
+#~ "gedruckt wird, kann dieser Parameter leichte Artefakte verursachen, wenn "
+#~ "er aufgrund der großen Varianz der Druckgeschwindigkeiten verlangsamt "
+#~ "wird. Wenn Sie Artefakte bemerken, stellen Sie sicher, dass Ihr "
+#~ "Druckvorschub korrekt eingestellt ist.\n"
+#~ "\n"
+#~ "Hinweis: Wenn diese Option aktiviert ist, werden Umfangsumfänge wie "
+#~ "Überhänge behandelt, was bedeutet, dass die Überhangsgeschwindigkeit "
+#~ "angewendet wird, auch wenn der überhängende Umfang Teil einer Brücke ist. "
+#~ "Zum Beispiel, wenn die Umfänge zu 100 % überhängen, ohne dass eine Wand "
+#~ "sie von unten stützt, wird die Überhangsgeschwindigkeit von 100 % "
+#~ "angewendet."
+
+#~ 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 ""
+#~ "Wenn diese Option aktiviert ist, sind die Brücken zuverlässiger und "
+#~ "können größere Entfernungen überbrücken, sehen aber möglicherweise "
+#~ "schlechter aus. Wenn deaktiviert, sehen Brücken besser aus, sind aber nur "
+#~ "für kürzere Entfernungen zuverlässig."
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "Wenn diese Option aktiviert ist, werden dicke interne Brücken verwendet. "
+#~ "Es wird normalerweise empfohlen, diese Funktion zu aktivieren. Wenn Sie "
+#~ "jedoch große Düsen verwenden, sollten Sie diese Funktion deaktivieren."
+
+#~ msgid ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+#~ msgstr ""
+#~ "Richtet die Füll- und Oberflächenfüllrichtungen so aus, dass sie der "
+#~ "Orientierung des Modells auf der Bauplatte folgen. Wenn aktiviert, "
+#~ "rotieren die Füllrichtungen mit dem Modell, um optimale "
+#~ "Festigkeitseigenschaften zu erhalten."
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "Filament für den Druck der inneren Füllung."
+
+#~ msgid "Filament to print walls."
+#~ msgstr "Filament für den Druck der Wände"
+
+#~ msgid "Solid infill"
+#~ msgstr "Massive Füllung"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "Filament für den Druck der massiven Füllung"
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "Filament zum Drucken von Stützbasen und Flöße. \"Standard\" bedeutet, "
+#~ "dass kein spezielles Filament für die Stützen verwendet wird, sondern das "
+#~ "aktuelle Filament."
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "Filament zum Drucken von Stütz-Schnittstellen. \"Standard\" bedeutet, "
+#~ "dass kein spezielles Filament für die Stütz-Schnittstellen vorhanden ist "
+#~ "und das aktuelle Filament verwendet wird."
+
#~ msgid "Erase all painting"
#~ msgstr "Alles gemalte löschen"
diff --git a/localization/i18n/en/OrcaSlicer_en.po b/localization/i18n/en/OrcaSlicer_en.po
index 9de37b6c3f..12c228180b 100644
--- a/localization/i18n/en/OrcaSlicer_en.po
+++ b/localization/i18n/en/OrcaSlicer_en.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: 2025-05-18 09:32-0300\n"
"Last-Translator: Alexandre Folle de Menezes\n"
"Language-Team: \n"
@@ -1771,6 +1771,17 @@ msgstr ""
msgid "User logged out"
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!"
msgstr ""
@@ -1782,21 +1793,24 @@ msgid ""
"version before it can be used normally."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
@@ -1839,7 +1853,7 @@ msgid "Privacy Policy Update"
msgstr ""
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
msgstr ""
msgid "your default profile"
@@ -2085,6 +2099,9 @@ msgstr ""
msgid "Orca Cube"
msgstr ""
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr ""
@@ -5184,6 +5201,9 @@ msgstr ""
msgid "Outline"
msgstr ""
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr ""
@@ -5226,7 +5246,7 @@ msgstr ""
msgid "Size:"
msgstr ""
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5464,15 +5484,18 @@ msgstr ""
msgid "Show Configuration Folder"
msgstr ""
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr ""
+
msgid "Show Tip of the Day"
msgstr ""
msgid "Check for Updates"
msgstr ""
-msgid "Open Network Test"
-msgstr ""
-
#, c-format, boost-format
msgid "&About %s"
msgstr ""
@@ -6744,6 +6767,12 @@ msgstr ""
msgid "Model file downloaded."
msgstr ""
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr ""
@@ -7689,6 +7718,12 @@ msgid ""
"will be exported."
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?"
msgstr ""
@@ -8197,6 +8232,24 @@ msgstr ""
msgid "Graphics"
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"
msgstr ""
@@ -8254,9 +8307,16 @@ msgid "Stealth mode"
msgstr ""
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
msgid "Network test"
@@ -8402,6 +8462,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr ""
@@ -9372,8 +9440,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
msgid ""
@@ -9836,13 +9904,11 @@ msgid "Retraction when switching material"
msgstr ""
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% 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?"
msgid "Firmware Retraction"
msgstr ""
@@ -11346,6 +11412,19 @@ msgstr ""
msgid "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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -11353,13 +11432,13 @@ msgid ""
msgstr ""
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
#, c-format, boost-format
@@ -11437,6 +11516,31 @@ msgstr ""
msgid "Extruder printable area"
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"
msgstr "Excluded bed area"
@@ -11552,6 +11656,12 @@ msgid ""
"contain the API Key or the password required for authentication."
msgstr ""
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr ""
@@ -11843,24 +11953,42 @@ msgstr ""
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"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"
msgstr ""
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
msgid "External bridge density"
@@ -11868,54 +11996,90 @@ msgstr ""
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
msgid "Internal bridge density"
msgstr ""
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
msgid "Bridge flow ratio"
msgstr ""
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
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"
msgstr ""
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
msgid "Top surface flow ratio"
@@ -12163,22 +12327,34 @@ msgstr ""
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
msgid "mm/s or %"
@@ -12424,21 +12600,24 @@ msgid "Thick external bridges"
msgstr ""
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"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"
msgstr ""
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
msgid "Extra bridge layers (beta)"
@@ -13399,9 +13578,10 @@ msgid "Align infill direction to model"
msgstr ""
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
msgid "Insert solid layers"
@@ -13424,6 +13604,7 @@ msgstr ""
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -13518,6 +13699,27 @@ msgid ""
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
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"
msgstr ""
@@ -13584,8 +13786,8 @@ msgid "mm/s² or %"
msgstr ""
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
msgid ""
@@ -13710,10 +13912,10 @@ msgstr ""
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
msgid "layer"
@@ -14353,8 +14555,10 @@ msgstr ""
msgid "Probing exclude area of clumping."
msgstr ""
-msgid "Filament to print internal sparse infill."
-msgstr "This is the filament for printing internal sparse infill."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -15074,7 +15278,20 @@ msgstr ""
"This detects the overhang percentage relative to line width and uses a "
"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 ""
msgid ""
@@ -15501,8 +15718,8 @@ msgid "Role base wipe speed"
msgstr ""
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -15640,10 +15857,19 @@ msgstr ""
"Sparse infill areas which are smaller than this threshold value are replaced "
"by internal solid infill."
-msgid "Solid infill"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
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 ""
msgid ""
@@ -15965,11 +16191,10 @@ msgid "Support/raft base"
msgstr ""
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"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 "Avoid interface filament for base"
msgstr ""
@@ -15996,11 +16221,10 @@ msgid "Support/raft interface"
msgstr ""
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"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 "Top interface layers"
msgstr ""
@@ -16271,8 +16495,8 @@ msgstr ""
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -16857,6 +17081,9 @@ msgstr ""
msgid "Invalid value when spiral vase mode is enabled: "
msgstr ""
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr ""
@@ -17097,8 +17324,14 @@ msgid "Debug level"
msgstr ""
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
+msgstr ""
+
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
msgstr ""
msgid "Enable timelapse for print"
@@ -18425,6 +18658,15 @@ msgstr ""
msgid "Top Surface Pattern"
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"
msgstr ""
@@ -18447,6 +18689,48 @@ msgstr ""
msgid "Upload"
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"
msgstr ""
@@ -18489,9 +18773,6 @@ msgid ""
"starting the print."
msgstr ""
-msgid "Time-lapse"
-msgstr ""
-
msgid "Heated Bed Leveling"
msgstr ""
@@ -18501,6 +18782,16 @@ msgstr ""
msgid "Smooth Build Plate (Side B)"
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"
msgstr ""
@@ -18676,8 +18967,8 @@ msgid ""
msgstr ""
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
@@ -19132,9 +19423,18 @@ msgid ""
"agents are registered at startup."
msgstr ""
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr ""
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr ""
@@ -19175,6 +19475,30 @@ msgstr ""
msgid "Connection to printers connected via the print host failed."
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
msgid "Mismatched type of print host: %s"
msgstr ""
@@ -19792,12 +20116,27 @@ msgstr ""
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
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."
msgstr ""
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr ""
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr ""
@@ -20320,6 +20659,53 @@ msgstr ""
"ABS, appropriately increasing the heatbed temperature can reduce the "
"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"
#~ msgstr "Object/part settings"
diff --git a/localization/i18n/es/OrcaSlicer_es.po b/localization/i18n/es/OrcaSlicer_es.po
index c28d9561a5..1f8a1f0008 100644
--- a/localization/i18n/es/OrcaSlicer_es.po
+++ b/localization/i18n/es/OrcaSlicer_es.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: \n"
"Last-Translator: Ian A. Bassi <>\n"
"Language-Team: \n"
@@ -512,7 +512,7 @@ msgid "Count"
msgstr ""
msgid "Gap"
-msgstr ""
+msgstr "Brecha"
msgid "Spacing"
msgstr "Separación"
@@ -1869,6 +1869,17 @@ msgstr ""
msgid "User logged out"
msgstr "Usuario desconectado"
+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!"
msgstr ""
"¡crear o abrir un archivo de proyecto nuevo no está permitido durante el "
@@ -1884,21 +1895,24 @@ msgstr ""
"La versión de Orca Slicer es una versión demasiado antigua y necesita ser "
"actualizada a la última versión antes de poder utilizarla con normalidad."
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
@@ -1960,8 +1974,8 @@ msgid "Privacy Policy Update"
msgstr "Actualización de política de privacidad"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
-msgstr "tu perfil de Bambu Cloud (ID de usuario: «%s»)"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
+msgstr "tu perfil de Orca Cloud (ID de usuario: «%s»)"
msgid "your default profile"
msgstr "tu perfil predeterminado"
@@ -2220,6 +2234,9 @@ msgstr "Toroide"
msgid "Orca Cube"
msgstr "Cubo Orca"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Test de tolerancia Orca"
@@ -5643,6 +5660,9 @@ msgstr "Voladizos"
msgid "Outline"
msgstr "Contorno"
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr "Perspectiva"
@@ -5685,7 +5705,7 @@ msgstr "Volumen:"
msgid "Size:"
msgstr "Tamaño:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5947,15 +5967,18 @@ msgstr "Asistente de Configuración"
msgid "Show Configuration Folder"
msgstr "Mostrar Carpeta de Configuración"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "Abrir Test de Red"
+
msgid "Show Tip of the Day"
msgstr "Mostrar Consejo Diario"
msgid "Check for Updates"
msgstr "Buscar actualizaciones"
-msgid "Open Network Test"
-msgstr "Abrir Test de Red"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "&Acerca de %s"
@@ -7325,6 +7348,12 @@ msgstr "Exportación exitosa"
msgid "Model file downloaded."
msgstr "Archivo de modelo descargado."
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr ""
"Es posible que haya perfiles compartidos disponibles para esta impresora."
@@ -8391,6 +8420,12 @@ msgstr ""
"No se pueden realizar operaciones booleanas en las mallas del modelo. Solo "
"se exportarán las partes positivas."
+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?"
msgstr ""
"¿Está la impresora preparada? ¿Está la hoja en el sitio. limpia y vacía?"
@@ -8972,6 +9007,24 @@ msgstr ""
msgid "Graphics"
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"
msgstr ""
@@ -9029,14 +9082,17 @@ msgid "Stealth mode"
msgstr "Modo invisible"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
-"Esto desactiva todos los servicios en la nube, como Orca Cloud y Bambu "
-"Cloud. Además, detiene la transmisión de datos a los servicios en la nube de "
-"Bambu. Los usuarios que no utilicen máquinas BBL o que utilicen únicamente "
-"el modo LAN pueden activar esta función sin ningún problema."
msgid "Network test"
msgstr "Prueba de red"
@@ -9197,6 +9253,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr "Permitir almacenamiento anómalo"
@@ -9706,8 +9770,8 @@ msgid ""
"start printing."
msgstr ""
"Hay algunos filamentos desconocidos en los mapeados AMS. Por favor, "
-"compruebe si son los filamentos requeridos. Si lo son, presione "
-"\"Confirmar\" para empezar a imprimir."
+"compruebe si son los filamentos requeridos. Si lo son, presione \"Confirmar"
+"\" para empezar a imprimir."
msgid "Please check the following:"
msgstr "Por favor compruebe lo siguiente:"
@@ -10356,8 +10420,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Cuando se graba un timelapse sin cabezal, se recomienda añadir una \"Torre "
"de Purga de Timelapse\" haciendo clic con el botón derecho del ratón en una "
@@ -10851,14 +10915,11 @@ msgid "Retraction when switching material"
msgstr "Retracción al cambiar de material"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"La opción Wipe no está disponible cuando se utiliza el modo Retracción de "
-"Firmware.\n"
-"\n"
-"¿Desea desactivarla y activar el modo Retracción de Firmware?"
msgid "Firmware Retraction"
msgstr "Retracción de firmware"
@@ -11666,16 +11727,16 @@ msgid "Global shortcuts"
msgstr "Atajos globales"
msgid "Pan View"
-msgstr ""
+msgstr "Movimiento de la vista"
msgid "Rotate View"
-msgstr ""
+msgstr "Rotación de vista"
msgid "Middle mouse button"
msgstr ""
msgid "Zoom View"
-msgstr ""
+msgstr "Zoom de vista"
msgid ""
"Auto orients selected objects or all objects. If there are selected objects, "
@@ -12582,6 +12643,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
msgstr "La altura de la capa no puede superar el diámetro de la boquilla."
+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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -12592,18 +12666,14 @@ msgstr ""
"Añade \"G92 E0\" al G-code de antes de cambio de capa."
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"Se ha encontrado \"G92 E0\" en before_layer_change_gcode, lo cual es "
-"incompatible con el direccionamiento de extrusión absoluta."
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"Se ha encontrado \"G92 E0\" en after_layer_change_gcode, lo cual es "
-"incompatible con el direccionamiento de extrusión absoluta."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -12708,6 +12778,31 @@ msgstr "Área imprimible"
msgid "Extruder printable area"
msgstr "Área imprimible del extrusor"
+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"
msgstr "Área excluida de la cama"
@@ -12829,8 +12924,8 @@ msgstr ""
"contener el nombre de host, la dirección IP o la URL de la instancia de la "
"impresora. Se puede acceder a la impresora detrás de un proxy con la "
"autenticación básica activada por un nombre de usuario y contraseña en la "
-"URL en el siguiente formato: https://"
-"nombredeusuario:contraseña@tudirecciondeoctopi/"
+"URL en el siguiente formato: https://nombredeusuario:"
+"contraseña@tudirecciondeoctopi/"
msgid "Device UI"
msgstr "IU de dispositivo"
@@ -12852,6 +12947,12 @@ msgstr ""
"debería contener una clave API o una contraseña requerida para la "
"autenticación."
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "Nombre de la impresora."
@@ -13211,122 +13312,134 @@ msgstr "Dirección de relleno de puentes externos"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"Control del ángulo de puentes. Si se deja a cero, el ángulo de puente se "
-"calculará automáticamente. De lo contrario, se utilizará el ángulo "
-"proporcionado para los puentes externos. Utilice 180° para el ángulo cero."
msgid "Internal bridge infill direction"
msgstr "Dirección de relleno de puentes internos"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"Anulación del ángulo de puente interno. Si se deja a cero, el ángulo de "
-"puente se calculará automáticamente. De lo contrario, se utilizará el ángulo "
-"proporcionado para los puentes internos. Use 180° para indicar ángulo cero.\n"
-"\n"
-"Se recomienda dejarlo en 0 salvo que el modelo requiera explícitamente otro "
-"valor."
msgid "External bridge density"
msgstr "Densidad de puente externo"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
-"Controla la densidad (espaciado) de las líneas de puente externas. El valor "
-"por defecto es 100%.\n"
-"\n"
-"Los puentes externos con menor densidad pueden mejorar la fiabilidad, ya que "
-"hay más espacio para que el aire circule alrededor del puente extruido, "
-"acelerando su enfriamiento. El mínimo es 10%.\n"
-"\n"
-"Densidades más altas pueden producir superficies de puente más lisas, ya que "
-"las líneas superpuestas proporcionan soporte adicional durante la impresión. "
-"El máximo es 120%.\n"
-"Nota: una densidad de puente demasiado alta puede causar deformaciones o "
-"sobreextrusión."
msgid "Internal bridge density"
msgstr "Densidad de puente interno"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"Controla la densidad (espaciado) de las líneas de puente internas. 100% "
-"significa puente sólido. El valor por defecto es 100%.\n"
-"\n"
-"Una menor densidad en puentes internos puede ayudar a reducir el "
-"acolchonamiento de la superficie superior y mejorar la fiabilidad del puente "
-"interno, al permitir mejor circulación de aire y enfriamiento.\n"
-"\n"
-"Esta opción funciona especialmente bien cuando se combina con la segunda "
-"opción de puente interno sobre el relleno, mejorando la estructura del "
-"puente interno antes de extruir el relleno sólido."
msgid "Bridge flow ratio"
msgstr "Factor de flujo en puentes"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Disminuya este valor ligeramente (por ejemplo 0,9) para reducir la cantidad "
-"de material extruido en puentes, para mejorar o evitar el hundimiento.\n"
+
+#, 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"
-"El valor final de flujo para puentes es calculado multiplicando este valor "
-"por el valor de flujo del filamento, y en su caso, por el factor de flujo "
-"del objeto."
+"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"
msgstr "Factor de flujo de puentes internos"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Este valor regula el grosor de la capa puente interna. Es la primera capa "
-"sobre el relleno de baja densidad. Disminuya ligeramente este valor (por "
-"ejemplo a 0,9) para mejorar la calidad de la superficie sobre el relleno de "
-"baja densidad.\n"
-"\n"
-"El valor final de flujo para puentes internos es calculado multiplicando "
-"este valor por el valor de flujo del filamento, y en su caso, por el factor "
-"de flujo del objeto."
msgid "Top surface flow ratio"
msgstr "Factor de flujo en superficie superior"
@@ -13678,41 +13791,35 @@ msgstr "Reducir velocidad en perímetros curvados"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"Active está opción para bajar la velocidad de impresión en las áreas donde "
-"potencialmente podrían formarse perímetros curvados hacía arriba. Por "
-"ejemplo, se disminuirá la velocidad cuando se impriman voladizos en esquinas "
-"afiladas, como la proa del modelo Benchy, reduciendo la deformación que "
-"puede ser acumulada en múltiples capas.\n"
-"Se recomienda usar esta función a menos que la ventilación de la impresora "
-"sea lo suficientemente alta o imprima a una velocidad lo suficientemente "
-"reducida como para que no se produzca el curvado de perímetros. Si se "
-"imprime con una velocidad de perímetro elevada, esta función puede resultar "
-"en artefactos o defectos, a causa de la gran variación de velocidad. Si nota "
-"la presencia de artefactos, asegúrese de que tiene correctamente calibrado "
-"el Pressure advance.\n"
-"\n"
-"Nota: Cuando esta opción está activada, los perímetros en voladizo se tratan "
-"como voladizos, lo que significa que la velocidad de voladizo se aplica "
-"incluso si el perímetro en voladizo forma parte de un puente. Por ejemplo, "
-"cuando los perímetros están 100% en voladizo, sin ninguna pared que los "
-"soporte por debajo, se aplicará la velocidad de voladizo del 100%."
msgid "mm/s or %"
msgstr "mm/s o %"
@@ -14000,25 +14107,25 @@ msgid "Thick external bridges"
msgstr "Puentes externos gruesos"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Si se activa, los puentes son más fiables, pueden salvar distancias más "
-"largas, pero pueden tener peor acabado. Si se desactiva, los puentes se ven "
-"mejor pero son fiables sólo para distancias más cortas."
msgid "Thick internal bridges"
msgstr "Puentes gruesos internos"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Si se activa, se utilizarán puentes internos gruesos. Normalmente se "
-"recomienda tener esta función activada. Sin embargo, considere desactivarla "
-"si utilizas boquillas de diámetros elevados."
msgid "Extra bridge layers (beta)"
msgstr "Capas extra de puente (beta)"
@@ -15300,14 +15407,11 @@ msgid "Align infill direction to model"
msgstr "Alinear la dirección de relleno al modelo"
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
-"Alinea las direcciones de relleno y de relleno de superficie para seguir la "
-"orientación del modelo en la placa de construcción. Cuando está habilitado, "
-"las direcciones de relleno rotan con el modelo para mantener características "
-"de resistencia óptimas."
msgid "Insert solid layers"
msgstr "Insertar capas sólidas"
@@ -15335,6 +15439,7 @@ msgstr ""
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -15435,6 +15540,27 @@ msgstr ""
"El ángulo de las líneas inclinadas del relleno. 60° dará como resultado un "
"panal puro."
+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"
msgstr "Longitud del anclaje de relleno de baja densidad"
@@ -15526,8 +15652,8 @@ msgid "mm/s² or %"
msgstr "mm/s² o %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Aceleración del relleno de baja densidad. Si el valor se expresa en "
"porcentaje (por ejemplo 100%), se calculará basándose en la aceleración por "
@@ -15668,16 +15794,16 @@ msgstr "Velocidad máxima del ventilador en la capa"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"La velocidad de ventilador se incrementará linealmente de cero desde la capa "
-"\"close_fan_the_first_x_layers\" al máximo en la capa "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" se ignorará si es menor "
-"que \"close_fan_the_first_x_layers\", en cuyo caso el ventilador funcionará "
-"al máximo permitido en la capa \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" al máximo en la capa \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" se ignorará si es menor que "
+"\"close_fan_the_first_x_layers\", en cuyo caso el ventilador funcionará al "
+"máximo permitido en la capa \"close_fan_the_first_x_layers\" + 1."
msgid "layer"
msgstr "capa"
@@ -15871,10 +15997,10 @@ msgstr ""
"Al mismo tiempo, el ancho de extrusión para una capa determinada tampoco "
"debe estar por debajo de un cierto umbral, que suele ser el 15–25%% de la "
"altura de capa. Por lo tanto, el espesor máximo de piel difusa con un ancho "
-"de perímetro de 0,4 mm y una altura de capa de 0,2 mm será 0,4-"
-"(0,2*0,25)=±0,35 mm. Si introduce un valor mayor, se mostrará el error "
-"Flow::spacing() y el modelo no se podrá laminar. Puede ajustar este valor "
-"hasta que deje de producirse el error."
+"de perímetro de 0,4 mm y una altura de capa de 0,2 mm será 0,4-(0,2*0,25)="
+"±0,35 mm. Si introduce un valor mayor, se mostrará el error Flow::spacing() "
+"y el modelo no se podrá laminar. Puede ajustar este valor hasta que deje de "
+"producirse el error."
msgid "Displacement"
msgstr "Desplazamiento"
@@ -16509,8 +16635,10 @@ msgstr "Excluir área de sondeo para aglomeraciones"
msgid "Probing exclude area of clumping."
msgstr "Área excluida del sondeo para la detección de aglomeraciones."
-msgid "Filament to print internal sparse infill."
-msgstr "Filamento para imprimir el relleno interno de baja densidad."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -17410,8 +17538,21 @@ msgstr ""
"utiliza diferentes velocidades para imprimir. Para el 100%% de voladizo, se "
"utiliza la velocidad de puente."
-msgid "Filament to print walls."
-msgstr "Filamento usado para imprimir perímetros."
+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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -17933,8 +18074,8 @@ msgid "Role base wipe speed"
msgstr "Velocidad de purga según tipo de línea"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -18123,11 +18264,20 @@ msgstr ""
"Las áreas de relleno de baja densidad con un tamaño por debajo de este "
"umbral se sustituyen por un relleno sólido interno."
-msgid "Solid infill"
-msgstr "Relleno sólido interno"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "Filamento para imprimir relleno sólido interno."
+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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -18514,12 +18664,10 @@ msgid "Support/raft base"
msgstr "Capa base/balsa"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"Filamento para imprimir la base de soporte y la balsa de impresión. \"Por "
-"defecto\" significa que no hay filamento específico para el soporte y se "
-"utiliza el filamento actual."
msgid "Avoid interface filament for base"
msgstr "Evitar usar filamento de interfaz para la base"
@@ -18550,12 +18698,10 @@ msgid "Support/raft interface"
msgstr "Interfaz de soporte/balsa"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"Filamento para imprimir interfaz de soporte. \"Por defecto\" significa que "
-"no hay filamento específico para la interfaz de soporte y se utiliza el "
-"filamento actual."
msgid "Top interface layers"
msgstr "Capas de la interfaz superior"
@@ -18887,8 +19033,8 @@ msgstr "Activar control de temperatura"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -19459,8 +19605,8 @@ msgid ""
"Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the "
"following format: \"XxY, XxY, ...\""
msgstr ""
-"Los tamaños de las imágenes para almacenar en archivos .gcode "
-"y .sl1 / .sl1s, en el siguiente formato: \"XxY, XxY, ...\""
+"Los tamaños de las imágenes para almacenar en archivos .gcode y .sl1 / ."
+"sl1s, en el siguiente formato: \"XxY, XxY, ...\""
msgid "Format of G-code thumbnails"
msgstr "Formato de las miniaturas de G-Code"
@@ -19671,6 +19817,9 @@ msgstr "valor inválido "
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "Valor no válido cuando está activado el modo jarrón espiral: "
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "ancho de línea excesivo "
@@ -19928,12 +20077,18 @@ msgid "Debug level"
msgstr "Nivel de depuración"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
msgstr ""
"Ajusta el nivel de registro de depuración. 0:fatal, 1:error, 2:advertencia, "
"3:información, 4:depuración, 5:rastreo\n"
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
+msgstr ""
+
msgid "Enable timelapse for print"
msgstr "Habilitar timelapse para impresión"
@@ -20486,13 +20641,13 @@ msgstr "El archivo proporcionado no puede ser leído debido a que está vacío"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
-"Formato de archivo desconocido: el archivo de entrada debe tener "
-"extensión .STL, .obj o .amf (.xml)."
+"Formato de archivo desconocido: el archivo de entrada debe tener extensión ."
+"STL, .obj o .amf (.xml)."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
-"Formato de archivo desconocido: el archivo de entrada debe tener extensión "
-".3mf o .zip.amf."
+"Formato de archivo desconocido: el archivo de entrada debe tener "
+"extensión .3mf o .zip.amf."
msgid "load_obj: failed to parse"
msgstr "load_obj: fallo al parsear"
@@ -20754,12 +20909,12 @@ msgstr ""
"impresión de varios colores/materiales, la impresora utilizará el parámetro "
"de compensación por defecto para el filamento durante cada cambio de "
"filamento que tendrá un buen resultado en la mayoría de los casos.\n"
-"un solo color/material, con la opción \"calibración de la dinámica de "
-"flujo\" marcada en el menú de inicio de impresión, la impresora seguirá el "
-"camino antiguo, calibrar el filamento antes de la impresión; cuando se "
-"inicia una impresión de varios colores/materiales, la impresora utilizará el "
-"parámetro de compensación por defecto para el filamento durante cada cambio "
-"de filamento que tendrá un buen resultado en la mayoría de los casos.\n"
+"un solo color/material, con la opción \"calibración de la dinámica de flujo"
+"\" marcada en el menú de inicio de impresión, la impresora seguirá el camino "
+"antiguo, calibrar el filamento antes de la impresión; cuando se inicia una "
+"impresión de varios colores/materiales, la impresora utilizará el parámetro "
+"de compensación por defecto para el filamento durante cada cambio de "
+"filamento que tendrá un buen resultado en la mayoría de los casos.\n"
"\n"
"Tenga en cuenta que hay algunos casos que pueden hacer que los resultados de "
"la calibración no sean fiables, como una adhesión insuficiente en la cama de "
@@ -21499,6 +21654,15 @@ msgstr "YOLO (Perfeccionista)"
msgid "Top Surface Pattern"
msgstr "Patrón de superficie superior"
+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"
msgstr "Enviar G-Code al host de impresión"
@@ -21522,6 +21686,48 @@ msgstr ""
msgid "Upload"
msgstr "Cargar"
+msgid "Leveling before print"
+msgstr ""
+
+msgid "Time-lapse"
+msgstr "Time-lapse"
+
+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"
msgstr "Cola de carga del host de impresión"
@@ -21566,9 +21772,6 @@ msgstr ""
"El tipo de cama seleccionado no coincide con el archivo. Por favor, confirme "
"antes de iniciar la impresión."
-msgid "Time-lapse"
-msgstr "Time-lapse"
-
msgid "Heated Bed Leveling"
msgstr "Nivelación de cama caliente"
@@ -21578,6 +21781,16 @@ msgstr "Placa de construcción texturizada (Lado A)"
msgid "Smooth Build Plate (Side B)"
msgstr "Placa de construcción lisa (Lado B)"
+#, 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"
msgstr "No es posible realizar la operación buleana en las partes selecionadas"
@@ -21767,8 +21980,8 @@ msgstr ""
"¿Quieres reescribirlo?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
"Cambiaremos el nombre de los perfiles a \"Tipo Número de Serie @impresora "
@@ -22300,9 +22513,18 @@ msgstr ""
"Seleccione la implementación del agente de red para la comunicación con la "
"impresora. Los agentes disponibles se registran al iniciar el sistema."
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "No se ha podido obtener una referencia de host de impresora válida"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "¡Éxito!"
@@ -22354,6 +22576,30 @@ msgstr ""
"Ha fallado la conexión a impresoras conectadas a través del host de "
"impresión."
+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
msgid "Mismatched type of print host: %s"
msgstr "Tipo de host de impresión no coincidente: %s"
@@ -23158,12 +23404,27 @@ msgstr ""
"La cuenta SimplyPrint no está vinculada. Vaya a Opciones de conexión para "
"configurarla."
+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."
msgstr "La conexión serie a Flashforge funciona correctamente."
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr "No se pudo conectar a Flashforge vía serie"
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "El estado proporcionado no es correcto."
@@ -23798,6 +24059,244 @@ msgstr ""
"aumentar adecuadamente la temperatura de la cama térmica puede reducir la "
"probabilidad de deformaciones?"
+#~ msgid ""
+#~ "This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This "
+#~ "stops the transmission of data to Bambu's cloud services too. Users who "
+#~ "don't use BBL machines or use LAN mode only can safely turn on this "
+#~ "function."
+#~ msgstr ""
+#~ "Esto desactiva todos los servicios en la nube, como Orca Cloud y Bambu "
+#~ "Cloud. Además, detiene la transmisión de datos a los servicios en la nube "
+#~ "de Bambu. Los usuarios que no utilicen máquinas BBL o que utilicen "
+#~ "únicamente el modo LAN pueden activar esta función sin ningún problema."
+
+#~ 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 ""
+#~ "La opción Wipe no está disponible cuando se utiliza el modo Retracción de "
+#~ "Firmware.\n"
+#~ "\n"
+#~ "¿Desea desactivarla y activar el modo Retracción de Firmware?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "Se ha encontrado \"G92 E0\" en before_layer_change_gcode, lo cual es "
+#~ "incompatible con el direccionamiento de extrusión absoluta."
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "Se ha encontrado \"G92 E0\" en after_layer_change_gcode, lo cual es "
+#~ "incompatible con el direccionamiento de extrusión absoluta."
+
+#, 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 ""
+#~ "Control del ángulo de puentes. Si se deja a cero, el ángulo de puente se "
+#~ "calculará automáticamente. De lo contrario, se utilizará el ángulo "
+#~ "proporcionado para los puentes externos. Utilice 180° para el ángulo cero."
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "Anulación del ángulo de puente interno. Si se deja a cero, el ángulo de "
+#~ "puente se calculará automáticamente. De lo contrario, se utilizará el "
+#~ "ángulo proporcionado para los puentes internos. Use 180° para indicar "
+#~ "ángulo cero.\n"
+#~ "\n"
+#~ "Se recomienda dejarlo en 0 salvo que el modelo requiera explícitamente "
+#~ "otro valor."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+#~ msgstr ""
+#~ "Controla la densidad (espaciado) de las líneas de puente externas. El "
+#~ "valor por defecto es 100%.\n"
+#~ "\n"
+#~ "Los puentes externos con menor densidad pueden mejorar la fiabilidad, ya "
+#~ "que hay más espacio para que el aire circule alrededor del puente "
+#~ "extruido, acelerando su enfriamiento. El mínimo es 10%.\n"
+#~ "\n"
+#~ "Densidades más altas pueden producir superficies de puente más lisas, ya "
+#~ "que las líneas superpuestas proporcionan soporte adicional durante la "
+#~ "impresión. El máximo es 120%.\n"
+#~ "Nota: una densidad de puente demasiado alta puede causar deformaciones o "
+#~ "sobreextrusión."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "Controla la densidad (espaciado) de las líneas de puente internas. 100% "
+#~ "significa puente sólido. El valor por defecto es 100%.\n"
+#~ "\n"
+#~ "Una menor densidad en puentes internos puede ayudar a reducir el "
+#~ "acolchonamiento de la superficie superior y mejorar la fiabilidad del "
+#~ "puente interno, al permitir mejor circulación de aire y enfriamiento.\n"
+#~ "\n"
+#~ "Esta opción funciona especialmente bien cuando se combina con la segunda "
+#~ "opción de puente interno sobre el relleno, mejorando la estructura del "
+#~ "puente interno antes de extruir el relleno sólido."
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "Disminuya este valor ligeramente (por ejemplo 0,9) para reducir la "
+#~ "cantidad de material extruido en puentes, para mejorar o evitar el "
+#~ "hundimiento.\n"
+#~ "\n"
+#~ "El valor final de flujo para puentes es calculado multiplicando este "
+#~ "valor por el valor de flujo del filamento, y en su caso, por el factor de "
+#~ "flujo del objeto."
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "Este valor regula el grosor de la capa puente interna. Es la primera capa "
+#~ "sobre el relleno de baja densidad. Disminuya ligeramente este valor (por "
+#~ "ejemplo a 0,9) para mejorar la calidad de la superficie sobre el relleno "
+#~ "de baja densidad.\n"
+#~ "\n"
+#~ "El valor final de flujo para puentes internos es calculado multiplicando "
+#~ "este valor por el valor de flujo del filamento, y en su caso, por el "
+#~ "factor de flujo del objeto."
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "Active está opción para bajar la velocidad de impresión en las áreas "
+#~ "donde potencialmente podrían formarse perímetros curvados hacía arriba. "
+#~ "Por ejemplo, se disminuirá la velocidad cuando se impriman voladizos en "
+#~ "esquinas afiladas, como la proa del modelo Benchy, reduciendo la "
+#~ "deformación que puede ser acumulada en múltiples capas.\n"
+#~ "Se recomienda usar esta función a menos que la ventilación de la "
+#~ "impresora sea lo suficientemente alta o imprima a una velocidad lo "
+#~ "suficientemente reducida como para que no se produzca el curvado de "
+#~ "perímetros. Si se imprime con una velocidad de perímetro elevada, esta "
+#~ "función puede resultar en artefactos o defectos, a causa de la gran "
+#~ "variación de velocidad. Si nota la presencia de artefactos, asegúrese de "
+#~ "que tiene correctamente calibrado el Pressure advance.\n"
+#~ "\n"
+#~ "Nota: Cuando esta opción está activada, los perímetros en voladizo se "
+#~ "tratan como voladizos, lo que significa que la velocidad de voladizo se "
+#~ "aplica incluso si el perímetro en voladizo forma parte de un puente. Por "
+#~ "ejemplo, cuando los perímetros están 100% en voladizo, sin ninguna pared "
+#~ "que los soporte por debajo, se aplicará la velocidad de voladizo del 100%."
+
+#~ 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 ""
+#~ "Si se activa, los puentes son más fiables, pueden salvar distancias más "
+#~ "largas, pero pueden tener peor acabado. Si se desactiva, los puentes se "
+#~ "ven mejor pero son fiables sólo para distancias más cortas."
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "Si se activa, se utilizarán puentes internos gruesos. Normalmente se "
+#~ "recomienda tener esta función activada. Sin embargo, considere "
+#~ "desactivarla si utilizas boquillas de diámetros elevados."
+
+#~ msgid ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+#~ msgstr ""
+#~ "Alinea las direcciones de relleno y de relleno de superficie para seguir "
+#~ "la orientación del modelo en la placa de construcción. Cuando está "
+#~ "habilitado, las direcciones de relleno rotan con el modelo para mantener "
+#~ "características de resistencia óptimas."
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "Filamento para imprimir el relleno interno de baja densidad."
+
+#~ msgid "Filament to print walls."
+#~ msgstr "Filamento usado para imprimir perímetros."
+
+#~ msgid "Solid infill"
+#~ msgstr "Relleno sólido interno"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "Filamento para imprimir relleno sólido interno."
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "Filamento para imprimir la base de soporte y la balsa de impresión. \"Por "
+#~ "defecto\" significa que no hay filamento específico para el soporte y se "
+#~ "utiliza el filamento actual."
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "Filamento para imprimir interfaz de soporte. \"Por defecto\" significa "
+#~ "que no hay filamento específico para la interfaz de soporte y se utiliza "
+#~ "el filamento actual."
+
#~ msgid "Erase all painting"
#~ msgstr "Borrar todo lo pintado"
@@ -25917,8 +26416,8 @@ msgstr ""
#~ "Cuando grabamos timelapse sin cabezal de impresión, es recomendable "
#~ "añadir un \"Torre de Purga de Intervalo\" \n"
#~ "presionando con el botón derecho la posición vacía de la cama de "
-#~ "construcción y elegir \"Añadir Primitivo\"->\"Intervalo de Torre de "
-#~ "Purga\"."
+#~ "construcción y elegir \"Añadir Primitivo\"->\"Intervalo de Torre de Purga"
+#~ "\"."
#~ msgid "Current association: "
#~ msgstr "Asociación actual:"
diff --git a/localization/i18n/fr/OrcaSlicer_fr.po b/localization/i18n/fr/OrcaSlicer_fr.po
index e9278dcf0f..b89f0804dc 100644
--- a/localization/i18n/fr/OrcaSlicer_fr.po
+++ b/localization/i18n/fr/OrcaSlicer_fr.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: Guislain Cyril, Thomas Lété\n"
@@ -126,7 +126,7 @@ msgid "On highlighted overhangs only"
msgstr "Uniquement sur les surplombs mis en évidence"
msgid "Erase all"
-msgstr ""
+msgstr "Tout effacer"
msgid "Highlight overhang areas"
msgstr "Mettre en surbrillance les zones en surplomb"
@@ -354,10 +354,10 @@ msgid "Fixed step drag"
msgstr "Déplacement par pas fixe"
msgid "Context Menu"
-msgstr ""
+msgstr "Menu contextuel"
msgid "Toggle Auto-Drop"
-msgstr ""
+msgstr "Activer/désactiver le dépôt automatique"
msgid "Single sided scaling"
msgstr "Mise à l'échelle unilatérale"
@@ -513,10 +513,10 @@ msgid "Multiple"
msgstr "Plusieurs"
msgid "Count"
-msgstr ""
+msgstr "Nombre"
msgid "Gap"
-msgstr ""
+msgstr "Espacement"
msgid "Spacing"
msgstr "Espacement"
@@ -559,7 +559,7 @@ msgid "Drag"
msgstr "Glisser"
msgid "Move cut line"
-msgstr ""
+msgstr "Déplacer la ligne de coupe"
msgid "Draw cut line"
msgstr "Tracer la ligne de coupe"
@@ -852,7 +852,7 @@ msgid "Embossing actions"
msgstr "Actions d’embossage"
msgid "Position on surface"
-msgstr ""
+msgstr "Positionner sur la surface"
msgid "Emboss"
msgstr "Embosser"
@@ -882,7 +882,7 @@ msgid "Advanced"
msgstr "Avancé"
msgid "Reset all options except the text and operation"
-msgstr ""
+msgstr "Réinitialiser toutes les options sauf le texte et l’opération"
msgid ""
"The text cannot be written using the selected font. Please try choosing a "
@@ -1758,7 +1758,7 @@ msgid "Untitled"
msgstr "Sans titre"
msgid "Reloading network plug-in..."
-msgstr "Rechargement du plug-in réseau..."
+msgstr "Rechargement du plug-in réseau…"
msgid "Downloading Network Plug-in"
msgstr "Téléchargement du plug-in réseau"
@@ -1809,9 +1809,8 @@ msgstr ""
"Cliquez pour télécharger la nouvelle version dans le navigateur par défaut : "
"%s"
-#, fuzzy
msgid "OrcaSlicer needs an update"
-msgstr "Orca Slicer a besoin d’être mis à jour"
+msgstr "OrcaSlicer doit être mis à jour"
msgid "This is the newest version."
msgstr "Il s'agit de la version la plus récente."
@@ -1820,16 +1819,16 @@ msgid "Info"
msgstr "Info"
msgid "Loading printer & filament profiles"
-msgstr ""
+msgstr "Chargement des profils d’imprimante et de filament"
msgid "Creating main window"
-msgstr ""
+msgstr "Création de la fenêtre principale"
msgid "Loading current preset"
-msgstr ""
+msgstr "Chargement du préréglage actuel"
msgid "Showing main window"
-msgstr ""
+msgstr "Affichage de la fenêtre principale"
msgid ""
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
@@ -1884,6 +1883,17 @@ msgstr ""
msgid "User logged out"
msgstr "Utilisateur déconnecté"
+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!"
msgstr ""
"l’ouverture ou la création d'un fichier de projet n'est pas autorisée "
@@ -1899,21 +1909,24 @@ msgstr ""
"La version de OrcaSlicer est trop ancienne et doit être mise à jour vers la "
"dernière version afin qu’il puisse être utilisé normalement"
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
@@ -1972,15 +1985,15 @@ msgid "Privacy Policy Update"
msgstr "Mise à jour de la politique de confidentialité"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
-msgstr ""
+msgid "your Orca Cloud profile (user ID: \"%s\")"
+msgstr "votre profil Orca Cloud (ID utilisateur : \"%s\")"
msgid "your default profile"
-msgstr ""
+msgstr "votre profil par défaut"
#, c-format, boost-format
msgid "a user profile (folder: \"%s\")"
-msgstr ""
+msgstr "un profil utilisateur (dossier : \"%s\")"
#, c-format, boost-format
msgid ""
@@ -1988,15 +2001,21 @@ msgid ""
"Do you want to migrate them to your OrcaCloud profile?\n"
"This will copy your presets so they are available under your new account."
msgstr ""
+"Des préréglages utilisateur existants ont été trouvés dans %s.\n"
+"Voulez-vous les migrer vers votre profil OrcaCloud ?\n"
+"Vos préréglages seront copiés afin d’être disponibles sous votre nouveau "
+"compte."
msgid "Migrate User Presets"
-msgstr ""
+msgstr "Migrer les préréglages utilisateur"
#, c-format, boost-format
msgid ""
"Failed to migrate user presets:\n"
"%s"
msgstr ""
+"Échec de la migration des préréglages utilisateur :\n"
+"%s"
msgid ""
"The number of user presets cached in the cloud has exceeded the upper limit, "
@@ -2014,29 +2033,32 @@ msgid ""
"reduce the preset size by removing custom configurations or use it locally "
"only."
msgstr ""
+"Le contenu du préréglage est trop volumineux pour être synchronisé avec le "
+"cloud (dépasse 1 Mo). Veuillez réduire la taille du préréglage en supprimant "
+"des configurations personnalisées, ou l’utiliser uniquement en local."
#, c-format, boost-format
msgid "%s updated from %s to %s"
-msgstr ""
+msgstr "%s mis à jour de %s vers %s"
#, c-format, boost-format
msgid "%s has been downloaded."
-msgstr ""
+msgstr "%s a été téléchargé."
#, c-format, boost-format
msgid "Bundle %s is no longer available."
-msgstr ""
+msgstr "Le paquet %s n’est plus disponible."
#, c-format, boost-format
msgid "Bundle %s access is unauthorized."
-msgstr ""
+msgstr "L’accès au paquet %s n’est pas autorisé."
msgid "Loading user preset"
msgstr "Chargement du préréglage utilisateur"
#, c-format, boost-format
msgid "%s has been removed."
-msgstr ""
+msgstr "%s a été supprimé."
msgid "Switching application language"
msgstr "Changer la langue de l'application"
@@ -2224,6 +2246,9 @@ msgstr "Tore"
msgid "Orca Cube"
msgstr "Cube Orca"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Test de tolérance Orca"
@@ -2284,7 +2309,7 @@ msgid "Support Enforcer"
msgstr "Générateur de Support"
msgid "Change part type"
-msgstr ""
+msgstr "Changer le type de pièce"
msgid "Set as an individual object"
msgstr "Définir comme un objet individuel"
@@ -2303,10 +2328,10 @@ msgid "Printable"
msgstr "Imprimable"
msgid "Auto Drop"
-msgstr ""
+msgstr "Dépôt automatique"
msgid "Automatically drops the selected object to the build plate"
-msgstr ""
+msgstr "Dépose automatiquement l’objet sélectionné sur le plateau"
msgid "Fix model"
msgstr "Réparer le modèle"
@@ -2591,7 +2616,7 @@ msgid "Set Filament for selected items"
msgstr "Définir le filament pour les éléments sélectionnés"
msgid "Automatically snaps the selected object to the build plate"
-msgstr ""
+msgstr "Aligne automatiquement l’objet sélectionné sur le plateau"
msgid "Unlock"
msgstr "Déverrouiller"
@@ -2839,11 +2864,10 @@ msgstr "Ajouter une plage de hauteur"
msgid "Invalid numeric."
msgstr "Chiffre non valide."
-#, fuzzy
msgid "One cell can only be copied to one or more cells in the same column."
msgstr ""
-"une cellule ne peut être copiée que dans une ou plusieurs cellules de la "
-"même colonne"
+"Une cellule ne peut être copiée que vers une ou plusieurs cellules de la "
+"même colonne."
msgid "Copying multiple cells is not supported."
msgstr "la copie de plusieurs cellules n'est pas prise en charge"
@@ -2891,7 +2915,7 @@ msgid "Brim"
msgstr "Bordure"
msgid "Object/Part Settings"
-msgstr ""
+msgstr "Paramètres de l’objet/de la pièce"
msgid "Reset parameter"
msgstr "Paramètre de réinitialisation"
@@ -3496,7 +3520,7 @@ msgid "Thermal Preconditioning for first layer optimization"
msgstr "Préconditionnement thermique pour l'optimisation de la première couche"
msgid "Remaining time: Calculating..."
-msgstr "Temps restant : Calcul en cours..."
+msgstr "Temps restant : Calcul en cours…"
msgid ""
"The heated bed's thermal preconditioning helps optimize the first layer "
@@ -3578,7 +3602,7 @@ msgid "GNU Affero General Public License, version 3"
msgstr "GNU Affero Licence Publique Générale, version 3"
msgid "Orca Slicer is based on PrusaSlicer and BambuStudio"
-msgstr "Orca Slicer est basé sur PrusaSlicer et BambuStudio"
+msgstr "Orca Slicer repose sur PrusaSlicer et BambuStudio"
msgid "Libraries"
msgstr "Bibliothèques"
@@ -3602,6 +3626,13 @@ msgid ""
"enhancements. Each project carried the work of its predecessors forward, "
"crediting those who came before."
msgstr ""
+"Le découpage open-source repose sur une tradition de collaboration et "
+"d’attribution. Slic3r, créé par Alessandro Ranellucci et la communauté "
+"RepRap, en a posé les fondations. PrusaSlicer, de Prusa Research, s’est "
+"appuyé sur ce travail, Bambu Studio est un fork de PrusaSlicer, et "
+"SuperSlicer l’a étendu grâce à des améliorations portées par la communauté. "
+"Chaque projet a fait fructifier le travail de ses prédécesseurs, en "
+"créditant ceux qui l’ont précédé."
msgid ""
"OrcaSlicer began in that same spirit, drawing from PrusaSlicer, BambuStudio, "
@@ -3609,12 +3640,21 @@ msgid ""
"introducing advanced calibration tools, precise wall and seam control and "
"hundreds of other features."
msgstr ""
+"OrcaSlicer est né dans ce même esprit, en s’inspirant de PrusaSlicer, "
+"BambuStudio, SuperSlicer et CuraSlicer. Mais il a depuis largement dépassé "
+"ses origines, en introduisant des outils de calibration avancés, un contrôle "
+"précis des parois et des coutures, ainsi que des centaines d’autres "
+"fonctionnalités."
msgid ""
"Today, OrcaSlicer is the most widely used and actively developed open-source "
"slicer in the 3D printing community. Many of its innovations have been "
"adopted by other slicers, making it a driving force for the entire industry."
msgstr ""
+"Aujourd’hui, OrcaSlicer est le slicer open-source le plus utilisé et le plus "
+"activement développé de la communauté de l’impression 3D. Beaucoup de ses "
+"innovations ont été adoptées par d’autres slicers, ce qui en fait une force "
+"motrice pour toute l’industrie."
msgid "Version"
msgstr "Version"
@@ -4479,14 +4519,14 @@ msgstr ""
"seam_slope_start_height doit être inférieur à la hauteur de couche.\n"
"Remise à 0."
-#, fuzzy, no-c-format, no-boost-format
+#, no-c-format, no-boost-format
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
msgstr ""
"La profondeur de verrouillage doit être inférieure à la profondeur de la "
"peau.\n"
-"Réinitialisé à 50 % de la profondeur de la peau."
+"Réinitialisée à 50 % de la profondeur de la peau."
msgid ""
"Both [Extrusion] and [Combined] modes of Fuzzy Skin require the Arachne Wall "
@@ -5033,7 +5073,7 @@ msgid "Acceleration"
msgstr "Accélération"
msgid "Jerk"
-msgstr ""
+msgstr "Jerk"
msgid "Fan Speed"
msgstr "Vitesse du ventilateur"
@@ -5156,10 +5196,10 @@ msgid "Color: "
msgstr "Couleur : "
msgid "Acceleration: "
-msgstr ""
+msgstr "Accélération : "
msgid "Jerk: "
-msgstr ""
+msgstr "Jerk : "
msgid "PA: "
msgstr "AP : "
@@ -5322,10 +5362,10 @@ msgid "Actual Speed (mm/s)"
msgstr "Vitesse réelle (mm/s)"
msgid "Acceleration (mm/s²)"
-msgstr ""
+msgstr "Accélération (mm/s²)"
msgid "Jerk (mm/s)"
-msgstr ""
+msgstr "Jerk (mm/s)"
msgid "Fan Speed (%)"
msgstr "Vitesse du ventilateur (%)"
@@ -5358,7 +5398,7 @@ msgid "Filament change times"
msgstr "Temps de changement de filament"
msgid "Tool changes"
-msgstr ""
+msgstr "Changements d’outil"
msgid "Color change"
msgstr "Changement de couleur"
@@ -5450,10 +5490,10 @@ msgid "Sequence"
msgstr "Séquence"
msgid "Object Selection"
-msgstr ""
+msgstr "Sélection d’objet"
msgid "Part Selection"
-msgstr ""
+msgstr "Sélection de pièce"
msgid "number keys"
msgstr "touches numériques"
@@ -5628,6 +5668,9 @@ msgstr "Surplombs"
msgid "Outline"
msgstr "Contour"
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr "Perspective"
@@ -5644,7 +5687,7 @@ msgid "Paint Toolbar"
msgstr "Barre d'outils de peinture"
msgid "part selection"
-msgstr ""
+msgstr "sélection de pièce"
msgid "Explosion Ratio"
msgstr "Taux d'explosion"
@@ -5670,7 +5713,7 @@ msgstr "Le volume:"
msgid "Size:"
msgstr "Taille:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5934,15 +5977,18 @@ msgstr "Assistant de configuration"
msgid "Show Configuration Folder"
msgstr "Afficher le dossier de configuration"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "Ouvrir le Test de Réseau"
+
msgid "Show Tip of the Day"
msgstr "Afficher l'Astuce du Jour"
msgid "Check for Updates"
msgstr "Vérifier les mises à jour"
-msgid "Open Network Test"
-msgstr "Ouvrir le Test de Réseau"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "&À propos de %s"
@@ -6075,13 +6121,14 @@ msgid "Export"
msgstr "Exporter"
msgid "Sync Presets"
-msgstr ""
+msgstr "Synchroniser les préréglages"
msgid "Pull and apply the latest presets from OrcaCloud"
-msgstr ""
+msgstr "Récupérer et appliquer les derniers préréglages depuis OrcaCloud"
msgid "You must be logged in to sync presets from cloud."
msgstr ""
+"Vous devez être connecté pour synchroniser les préréglages depuis le cloud."
msgid "Quit"
msgstr "Quitter"
@@ -6210,10 +6257,10 @@ msgid "View"
msgstr "Affichage"
msgid "Preset Bundle"
-msgstr ""
+msgstr "Paquet de préréglages"
msgid "Syncing presets from cloud…"
-msgstr ""
+msgstr "Synchronisation des préréglages depuis le cloud…"
msgid "Help"
msgstr "Aide"
@@ -6255,7 +6302,7 @@ msgid "VFA"
msgstr "VFA"
msgid "Calibration Guide"
-msgstr ""
+msgstr "Guide de calibration"
msgid "&Open G-code"
msgstr "&Ouvrir G-code"
@@ -6374,6 +6421,11 @@ msgid ""
"2. The Filament presets\n"
"3. The Printer presets"
msgstr ""
+"Voulez-vous synchroniser vos données personnelles depuis Orca Cloud ?\n"
+"Elles contiennent les informations suivantes :\n"
+"1. Les préréglages de traitement\n"
+"2. Les préréglages de filament\n"
+"3. Les préréglages d’imprimante"
msgid "Synchronization"
msgstr "Synchronisation"
@@ -6397,6 +6449,8 @@ msgid ""
"The player is not loaded because the GStreamer GTK video sink is missing or "
"failed to initialize."
msgstr ""
+"Le lecteur n’est pas chargé car le récepteur vidéo GStreamer GTK est "
+"manquant ou n’a pas pu s’initialiser."
msgid "Please confirm if the printer is connected."
msgstr "Veuillez vérifier que l’imprimante est bien connectée."
@@ -6627,7 +6681,7 @@ msgstr "Téléchargement terminé"
#, c-format, boost-format
msgid "Downloading %d%%..."
-msgstr "Téléchargement %d%%..."
+msgstr "Téléchargement %d%%…"
msgid "Air Condition"
msgstr "Climatisation"
@@ -6802,7 +6856,7 @@ msgid "Quit"
msgstr "Quitter"
msgid "Switching..."
-msgstr "Commutation en cours..."
+msgstr "Commutation en cours…"
msgid "Switching failed"
msgstr "Échec de la commutation"
@@ -6877,7 +6931,7 @@ msgid "Debug Info"
msgstr "Les informations de débogage"
msgid "Filament loading..."
-msgstr "Chargement du filament..."
+msgstr "Chargement du filament…"
msgid "No Storage"
msgstr "Pas de stockage"
@@ -6917,7 +6971,7 @@ msgid "Downloading..."
msgstr "Téléchargement…"
msgid "Cloud Slicing..."
-msgstr "Découpe par le Cloud..."
+msgstr "Découpe par le Cloud…"
#, c-format, boost-format
msgid "In Cloud Slicing Queue, there are %s tasks ahead."
@@ -7312,12 +7366,18 @@ msgstr "Exportation réussie."
msgid "Model file downloaded."
msgstr "Modèle téléchargé."
-msgid "Shared profiles may be available for this printer."
+msgid "Pull"
msgstr ""
-msgid "Browse shared profiles"
+msgid "Force push"
msgstr ""
+msgid "Shared profiles may be available for this printer."
+msgstr "Des profils partagés peuvent être disponibles pour cette imprimante."
+
+msgid "Browse shared profiles"
+msgstr "Parcourir les profils partagés"
+
msgid "Serious warning:"
msgstr "Avertissement sérieux :"
@@ -7360,7 +7420,7 @@ msgid "Please upgrade your graphics card driver."
msgstr "Veuillez mettre à jour le pilote de votre carte graphique."
msgid "Unsupported OpenGL version"
-msgstr "Version d'OpenGL non supportée"
+msgstr "Version d'OpenGL non prise en charge"
#, c-format, boost-format
msgid ""
@@ -7452,7 +7512,7 @@ msgid ""
"Save the printing files initiated from Bambu Studio, Bambu Handy and "
"MakerWorld on External Storage"
msgstr ""
-"Enregistrer les fichiers d'impression initiés depuis Bambu Studio, Bambu "
+"Enregistrer les fichiers d'impression lancés depuis Bambu Studio, Bambu "
"Handy et MakerWorld sur le stockage externe"
msgid "Allow Prompt Sound"
@@ -7531,7 +7591,7 @@ msgid "Objects"
msgstr "Objets"
msgid "Cycle settings visibility"
-msgstr ""
+msgstr "Alterner la visibilité des paramètres"
msgid "Compare presets"
msgstr "Comparer les Préréglages"
@@ -7821,7 +7881,7 @@ msgid "Load 3MF"
msgstr "Charger 3MF"
msgid "BambuStudio Project"
-msgstr ""
+msgstr "Projet BambuStudio"
msgid "The 3MF is not supported by OrcaSlicer, loading geometry data only."
msgstr ""
@@ -7838,9 +7898,13 @@ msgstr ""
msgid ""
"The 3MF file was generated by an older version, loading geometry data only."
msgstr ""
+"Le fichier 3MF a été généré par une version plus ancienne ; seules les "
+"données de géométrie sont chargées."
msgid "The 3MF file was generated by BambuStudio, loading geometry data only."
msgstr ""
+"Le fichier 3MF a été généré par BambuStudio ; seules les données de "
+"géométrie sont chargées."
msgid ""
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
@@ -7883,16 +7947,23 @@ msgid ""
"The 3MF was created by BambuStudio (version %s), which is newer than the "
"compatible version %s. Found unrecognized settings:"
msgstr ""
+"Le fichier 3MF a été créé par BambuStudio (version %s), plus récente que la "
+"version compatible %s. Paramètres non reconnus détectés :"
#, c-format, boost-format
msgid ""
"The 3MF was created by BambuStudio (version %s), which is newer than the "
"compatible version %s. Some settings may not be fully compatible."
msgstr ""
+"Le fichier 3MF a été créé par BambuStudio (version %s), plus récente que la "
+"version compatible %s. Certains paramètres peuvent ne pas être totalement "
+"compatibles."
msgid ""
"The 3MF was created by BambuStudio. Some settings may differ from OrcaSlicer."
msgstr ""
+"Le fichier 3MF a été créé par BambuStudio. Certains paramètres peuvent "
+"différer de ceux d’OrcaSlicer."
msgid "Invalid values found in the 3MF:"
msgstr "Valeurs invalides trouvées dans le 3MF :"
@@ -7906,13 +7977,12 @@ msgstr ""
"Le 3MF contient le G-code modifié suivant dans les préréglages de filament "
"ou d'imprimante :"
-#, fuzzy
msgid ""
"Please confirm that all modified G-code is safe to prevent any damage to the "
"machine!"
msgstr ""
-"Veuillez vous assurer que ces G-codes modifiés sont sûrs afin d'éviter tout "
-"dommage à la machine !"
+"Veuillez vous assurer que tous les G-codes modifiés sont sûrs afin d’éviter "
+"tout dommage à la machine !"
msgid "Modified G-code"
msgstr "G-codes modifiés"
@@ -7922,13 +7992,12 @@ msgstr ""
"Le 3MF contient les préréglages de filament ou d'imprimante personnalisés "
"suivants :"
-#, fuzzy
msgid ""
"Please confirm that the G-code within these presets is safe to prevent any "
"damage to the machine!"
msgstr ""
"Veuillez vous assurer que les G-codes de ces préréglages sont sûrs afin "
-"d'éviter d'endommager la machine !"
+"d’éviter d’endommager la machine !"
msgid "Customized Preset"
msgstr "Préréglage personnalisé"
@@ -7985,7 +8054,7 @@ msgid "Object with multiple parts was detected"
msgstr "Un objet en plusieurs parties a été détecté"
msgid "Auto-Drop"
-msgstr ""
+msgstr "Dépôt automatique"
#, c-format, boost-format
msgid ""
@@ -8060,9 +8129,10 @@ msgstr "L'objet sélectionné n'a pas pu être divisé."
msgid "Disable Auto-Drop to preserve z positioning?\n"
msgstr ""
+"Désactiver le dépôt automatique pour préserver le positionnement en Z ?\n"
msgid "Object with floating parts was detected"
-msgstr ""
+msgstr "Un objet comportant des parties flottantes a été détecté"
msgid "Another export job is running."
msgstr "Une autre tâche d'exportation est en cours d'exécution."
@@ -8204,15 +8274,14 @@ msgstr "Sauvegarder le projet"
msgid "Importing Model"
msgstr "Importation du modèle"
-#, fuzzy
msgid "Preparing 3MF file..."
-msgstr "préparation du fichier 3mf..."
+msgstr "Préparation du fichier 3MF…"
msgid "Download failed, unknown file format."
msgstr "Échec du téléchargement, format de fichier inconnu."
msgid "Downloading project..."
-msgstr "téléchargement du projet..."
+msgstr "téléchargement du projet…"
msgid "Download failed, File size exception."
msgstr "Le téléchargement a échoué, exception de taille de fichier."
@@ -8374,6 +8443,12 @@ msgstr ""
"Impossible d'effectuer une opération booléenne sur les maillages du modèle. "
"Seules les parties positives seront exportées."
+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?"
msgstr ""
"L’imprimante est-elle prête ? Le plateau d’impression est-il en place, vide "
@@ -8494,7 +8569,7 @@ msgid "Triangles: %1%\n"
msgstr "Triangles : %1%\n"
msgid "Use \"Fix Model\" to repair the mesh."
-msgstr ""
+msgstr "Utilisez « Réparer le modèle » pour réparer le maillage."
#, c-format, boost-format
msgid ""
@@ -8672,15 +8747,17 @@ msgid "Show the splash screen during startup."
msgstr "Afficher l’écran de démarrage au démarrage."
msgid "Show shared profiles notification"
-msgstr ""
+msgstr "Afficher la notification de profils partagés"
msgid ""
"Show a notification with a link to browse shared profiles when the selected "
"printer is changed."
msgstr ""
+"Afficher une notification avec un lien pour parcourir les profils partagés "
+"lorsque l’imprimante sélectionnée change."
msgid "Use window buttons on left side"
-msgstr ""
+msgstr "Placer les boutons de fenêtre à gauche"
msgid "(Requires restart)"
msgstr "(Nécessite un redémarrage)"
@@ -8772,7 +8849,7 @@ msgid "By vendor"
msgstr "Par fournisseur"
msgid "Optimize filaments area height for..."
-msgstr "Optimiser la hauteur de la zone de filaments pour..."
+msgstr "Optimiser la hauteur de la zone de filaments pour…"
msgid "filaments"
msgstr "filaments"
@@ -8825,7 +8902,7 @@ msgid "Behaviour"
msgstr "Comportement"
msgid "Auto flush after changing..."
-msgstr "Purge automatique après modification..."
+msgstr "Purge automatique après modification…"
msgid "Auto calculate flushing volumes when selected values changed"
msgstr ""
@@ -8914,28 +8991,31 @@ msgstr ""
"la souris."
msgid "Pan"
-msgstr ""
+msgstr "Panoramique"
msgid "Left Mouse Drag"
-msgstr ""
+msgstr "Glisser avec le bouton gauche de la souris"
msgid "Set the action that dragging the left mouse button should perform."
msgstr ""
+"Définit l’action effectuée en faisant glisser le bouton gauche de la souris."
msgid "Middle Mouse Drag"
-msgstr ""
+msgstr "Glisser avec le bouton central de la souris"
msgid "Set the action that dragging the middle mouse button should perform."
msgstr ""
+"Définit l’action effectuée en faisant glisser le bouton central de la souris."
msgid "Right Mouse Drag"
-msgstr ""
+msgstr "Glisser avec le bouton droit de la souris"
msgid "Set the action that dragging the right mouse button should perform."
msgstr ""
+"Définit l’action effectuée en faisant glisser le bouton droit de la souris."
msgid "Clear my choice on..."
-msgstr "Effacer mon choix sur..."
+msgstr "Effacer mon choix sur…"
msgid "Unsaved projects"
msgstr "Projets non sauvegardés"
@@ -8959,13 +9039,31 @@ msgstr ""
"le chargement du fichier."
msgid "Graphics"
+msgstr "Graphismes"
+
+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"
-msgstr ""
+msgstr "Anticrénelage"
msgid "MSAA Multiplier"
-msgstr ""
+msgstr "Multiplicateur MSAA"
msgid ""
"Set the Multi-Sample Anti-Aliasing level.\n"
@@ -8977,12 +9075,21 @@ msgid ""
"\n"
"Requires application restart."
msgstr ""
+"Définit le niveau d’anticrénelage MSAA (Multi-Sample Anti-Aliasing).\n"
+"Des valeurs plus élevées lissent davantage les bords, mais l’impact sur les "
+"performances est exponentiel.\n"
+"Des valeurs plus faibles améliorent les performances, au prix de bords "
+"crénelés.\n"
+"S’il est désactivé, il est recommandé d’activer le FXAA pour réduire les "
+"bords crénelés avec un impact minimal sur les performances.\n"
+"\n"
+"Nécessite un redémarrage de l’application."
msgid "Disabled"
msgstr "Désactivé"
msgid "FXAA post-processing"
-msgstr ""
+msgstr "Post-traitement FXAA"
msgid ""
"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n"
@@ -8990,26 +9097,35 @@ msgid ""
"\n"
"Takes effect immediately."
msgstr ""
+"Applique l’anticrénelage FXAA (Fast Approximate Anti-Aliasing) en tant que "
+"passe en espace écran.\n"
+"Utile pour désactiver ou réduire le réglage MSAA afin d’améliorer les "
+"performances.\n"
+"\n"
+"Prise d’effet immédiate."
msgid "FPS"
-msgstr ""
+msgstr "FPS"
msgid "FPS cap"
-msgstr ""
+msgstr "Limite de FPS"
msgid "(0 = unlimited)"
-msgstr ""
+msgstr "(0 = illimité)"
msgid ""
"Limits viewport frame rate to reduce GPU load and power usage.\n"
"Set to 0 for unlimited frame rate."
msgstr ""
+"Limite la fréquence d’images de la vue pour réduire la charge du GPU et la "
+"consommation d’énergie.\n"
+"Réglez sur 0 pour une fréquence d’images illimitée."
msgid "Show FPS overlay"
-msgstr ""
+msgstr "Afficher la superposition des FPS"
msgid "Displays current viewport FPS in the top-right corner."
-msgstr ""
+msgstr "Affiche les FPS actuels de la vue dans le coin supérieur droit."
msgid "Login region"
msgstr "Région d'origine"
@@ -9018,9 +9134,16 @@ msgid "Stealth mode"
msgstr "Mode privé"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
msgid "Network test"
@@ -9030,15 +9153,18 @@ msgid "Test"
msgstr "Tester"
msgid "Cloud Providers"
-msgstr ""
+msgstr "Fournisseurs de cloud"
msgid "Enable Bambu Cloud"
-msgstr ""
+msgstr "Activer Bambu Cloud"
msgid ""
"Allow logging into Bambu Cloud alongside Orca Cloud. When enabled, a Bambu "
"login section appears on the homepage."
msgstr ""
+"Autoriser la connexion à Bambu Cloud en parallèle d’Orca Cloud. Lorsque "
+"cette option est activée, une section de connexion Bambu apparaît sur la "
+"page d’accueil."
msgid "Update & sync"
msgstr "Mettre à jour et synchroniser"
@@ -9165,21 +9291,34 @@ msgstr "Associer des liens web à OrcaSlicer"
msgid "Developer"
msgstr "Développeur"
-#, fuzzy
msgid "Developer mode"
-msgstr "Mode Développeur"
+msgstr "Mode développeur"
msgid "Skip AMS blacklist check"
msgstr "Ignorer la vérification de la liste noire AMS"
msgid "(Experimental) Keep painted feature after mesh change"
msgstr ""
+"(Expérimental) Conserver les éléments peints après une modification du "
+"maillage"
msgid ""
"Attempt to keep painted features (color/seam/support/fuzzy etc.) after "
"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n"
"Highly experimental! Slow and may create artifact."
msgstr ""
+"Tente de conserver les éléments peints (couleur/couture/support/surface "
+"irrégulière, etc.) après une modification du maillage de l’objet (découpe/"
+"rechargement depuis le disque/simplification/réparation, etc.)\n"
+"Hautement expérimental ! Lent et susceptible de créer des artefacts."
+
+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"
msgstr "Autoriser le stockage anormal"
@@ -9332,7 +9471,7 @@ msgid "Project-inside presets"
msgstr "Préréglages intégrés au projet"
msgid "Bundle presets"
-msgstr ""
+msgstr "Préréglages groupés"
msgid "System"
msgstr "Système"
@@ -9484,9 +9623,8 @@ msgstr ""
"Le préréglage \"%1%\" existe déjà et est incompatible avec l'imprimante "
"actuelle."
-#, fuzzy
msgid "Please note that saving will overwrite this preset."
-msgstr "Veuillez noter que l'action d'enregistrement remplacera ce préréglage"
+msgstr "Veuillez noter que l’enregistrement écrasera ce préréglage."
msgid "The name cannot be the same as a preset alias name."
msgstr "Le nom ne peut pas être le même qu'un nom d'alias prédéfini."
@@ -9949,6 +10087,9 @@ msgid ""
"type in the slicing file. Please make sure you have installed the correct "
"filament in the external spool."
msgstr ""
+"Le type de filament externe est inconnu ou ne correspond pas au type de "
+"filament du fichier de découpe. Veuillez vérifier que vous avez installé le "
+"bon filament sur la bobine externe."
msgid "Please refer to Wiki before use->"
msgstr "Veuillez consulter le Wiki avant utilisation ->"
@@ -10002,7 +10143,7 @@ msgstr ""
"L'imprimante ne prend pas en charge l'envoi vers le stockage de l'imprimante."
msgid "Sending..."
-msgstr "Envoi en cours..."
+msgstr "Envoi en cours…"
msgid ""
"File upload timed out. Please check if the firmware version supports this "
@@ -10240,17 +10381,16 @@ msgstr ""
"de support.\n"
"Êtes-vous sûr de vouloir les utiliser pour la base de support ?\n"
-#, fuzzy
msgid ""
"When using support material for the support interface, we recommend the "
"following settings:\n"
"0 top Z distance, 0 interface spacing, interlaced rectilinear pattern and "
"disable independent support layer height."
msgstr ""
-"Lorsque vous utilisez du matériel de support pour l'interface de support, "
-"nous vous recommandons d'utiliser les paramètres suivants :\n"
-"Distance Z supérieure nulle, espacement d'interface nul, motif concentrique "
-"et désactivation de la hauteur indépendante de la couche de support."
+"Lorsque vous utilisez un matériau de support pour l’interface de support, "
+"nous recommandons les réglages suivants :\n"
+"Distance Z supérieure de 0, espacement d’interface de 0, motif rectiligne "
+"entrelacé et désactivation de la hauteur de couche de support indépendante."
msgid ""
"Change these settings automatically?\n"
@@ -10354,8 +10494,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Lorsque vous enregistrez un timelapse sans tête d’outil, il est recommandé "
"d’ajouter une \"Tour d’essuyage timelapse\".\n"
@@ -10629,7 +10769,7 @@ msgid ""
"the filament does not support printing on the Textured PEI Plate."
msgstr ""
"Température du plateau lorsque la plaque PEI texturée est installée. La "
-"valeur 0 signifie que le filament n'est pas supporté par la plaque PEI "
+"valeur 0 signifie que le filament ne peut pas être imprimé sur la plaque PEI "
"texturée"
msgid "Volumetric speed limitation"
@@ -10781,7 +10921,7 @@ msgid "Normal"
msgstr "Normal"
msgid "Resonance Compensation"
-msgstr ""
+msgstr "Compensation de résonance"
msgid "Resonance Avoidance Speed"
msgstr "Vitesse d'évitement de résonance"
@@ -10793,12 +10933,14 @@ msgid ""
"The frequency of the anti-vibration signal will correspond to the natural "
"frequency of the frame."
msgstr ""
+"La fréquence du signal anti-vibration correspondra à la fréquence propre du "
+"châssis."
msgid "Damping"
-msgstr ""
+msgstr "Amortissement"
msgid "Damping ratio for the input shaping filter."
-msgstr ""
+msgstr "Facteur d’amortissement du filtre de mise en forme du signal."
msgid "Speed limitation"
msgstr "Limitation de vitesse"
@@ -10853,14 +10995,11 @@ msgid "Retraction when switching material"
msgstr "Rétraction lors du changement de matériau"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"L’option Essuyage n’est pas disponible lors de l’utilisation du mode "
-"Rétraction Firmware.\n"
-"\n"
-"Voulez-vous désactiver cette option pour activer la Rétraction Firmware ?"
msgid "Firmware Retraction"
msgstr "Rétraction Firmware"
@@ -10927,29 +11066,42 @@ msgid ""
" %s first layer %d %s, other layers %d %s\n"
" %s max delta %d %s, current delta %d %s\n"
msgstr ""
+" - %s :\n"
+" %s première couche %d %s, autres couches %d %s\n"
+" %s delta max %d %s, delta actuel %d %s\n"
msgid ""
"Some first-layer and other-layer temperature pairs exceed safety limits.\n"
msgstr ""
+"Certaines paires de températures (première couche / autres couches) "
+"dépassent les limites de sécurité.\n"
msgid ""
"\n"
"Invalid pairs:\n"
msgstr ""
+"\n"
+"Paires non valides :\n"
msgid ""
"\n"
"You can go back to edit values, or continue if this is intentional."
msgstr ""
+"\n"
+"Vous pouvez revenir en arrière pour modifier les valeurs, ou continuer si "
+"c’est intentionnel."
msgid ""
"\n"
"\n"
"Continue anyway?"
msgstr ""
+"\n"
+"\n"
+"Continuer quand même ?"
msgid "Temperature Safety Check"
-msgstr ""
+msgstr "Vérification de sécurité de la température"
msgid "Continue"
msgstr "Continuer"
@@ -10958,7 +11110,7 @@ msgid "Back"
msgstr "Arrière"
msgid "Don't warn again for this preset"
-msgstr ""
+msgstr "Ne plus avertir pour ce préréglage"
#, c-format, boost-format
msgid "Left: %s"
@@ -11006,7 +11158,7 @@ msgid "Discard"
msgstr "Ignorer"
msgid "the new profile"
-msgstr ""
+msgstr "le nouveau profil"
#, boost-format
msgid ""
@@ -11015,6 +11167,10 @@ msgid ""
"discarding any changes made in\n"
"\"%2%\"."
msgstr ""
+"Passer à\n"
+"« %1% »\n"
+"en abandonnant les modifications apportées à\n"
+"« %2% »."
#, boost-format
msgid ""
@@ -11023,6 +11179,10 @@ msgid ""
"will be transferred to\n"
"\"%2%\"."
msgstr ""
+"Tous les réglages « Nouvelle valeur » modifiés dans\n"
+"« %1% »\n"
+"seront transférés vers\n"
+"« %2% »."
#, boost-format
msgid ""
@@ -11030,6 +11190,9 @@ msgid ""
"\"%1%\"\n"
"and \"%2%\" will open without any changes."
msgstr ""
+"Tous les réglages « Nouvelle valeur » sont enregistrés dans\n"
+"« %1% »\n"
+"et « %2% » s’ouvrira sans aucune modification."
msgid "Click the right mouse button to display the full text."
msgstr ""
@@ -11572,11 +11735,16 @@ msgid ""
"Native Wayland liveview requires the GStreamer GTK video sink. Please "
"install the gtksink plugin for GStreamer, then restart OrcaSlicer."
msgstr ""
+"L’aperçu en direct natif sous Wayland nécessite le récepteur vidéo GStreamer "
+"GTK. Veuillez installer le plugin gtksink pour GStreamer, puis redémarrer "
+"OrcaSlicer."
msgid ""
"Failed to initialize the native Wayland GStreamer video sink. Please check "
"your GStreamer GTK plugin installation."
msgstr ""
+"Échec de l’initialisation du récepteur vidéo GStreamer natif sous Wayland. "
+"Veuillez vérifier l’installation de votre plugin GStreamer GTK."
msgid ""
"Windows Media Player is required for this task! Do you want to enable "
@@ -11619,6 +11787,8 @@ msgstr ""
msgid "Cloud agent is not available. Please restart OrcaSlicer and try again."
msgstr ""
+"L’agent cloud n’est pas disponible. Veuillez redémarrer OrcaSlicer et "
+"réessayer."
msgid "Bambu Network plug-in not detected."
msgstr "Le plug-in Bambu Network n’a pas été détecté."
@@ -11630,7 +11800,7 @@ msgid "Login"
msgstr "Connexion"
msgid "Login failed. Please try again."
-msgstr ""
+msgstr "Échec de la connexion. Veuillez réessayer."
msgid "[Action Required] "
msgstr "[Action requise] "
@@ -11674,26 +11844,25 @@ msgid "Global shortcuts"
msgstr "Raccourcis globaux"
msgid "Pan View"
-msgstr ""
+msgstr "Déplacer la vue"
msgid "Rotate View"
-msgstr ""
+msgstr "Pivoter la vue"
msgid "Middle mouse button"
-msgstr ""
+msgstr "Bouton central de la souris"
msgid "Zoom View"
-msgstr ""
+msgstr "Zoomer la vue"
-#, fuzzy
msgid ""
"Auto orients selected objects or all objects. If there are selected objects, "
"it just orients the selected ones. Otherwise, it will orient all objects in "
"the current project."
msgstr ""
-"Oriente automatiquement les objets sélectionnés ou tous les objets. S'il y a "
-"des objets sélectionnés, il oriente uniquement ceux qui sont sélectionnés. "
-"Sinon, il oriente tous les objets du projet en cours."
+"Oriente automatiquement les objets sélectionnés ou tous les objets. S’il y a "
+"des objets sélectionnés, seuls ceux-ci sont orientés. Sinon, tous les objets "
+"du projet en cours sont orientés."
msgid "Auto orients all objects on the active plate."
msgstr "Oriente automatiquement tous les objets du plaque actuelle."
@@ -11816,7 +11985,7 @@ msgid "Zoom out"
msgstr "Zoom arrière"
msgid "Toggle printable for object/part"
-msgstr ""
+msgstr "Basculer l’état imprimable de l’objet/de la pièce"
msgid "Switch between Prepare/Preview"
msgstr "Basculer entre Préparer/Aperçu"
@@ -11910,7 +12079,7 @@ msgid "New version of Orca Slicer"
msgstr "Nouvelle version de OrcaSlicer"
msgid "Check on Github"
-msgstr ""
+msgstr "Vérifier sur GitHub"
msgid "Skip this Version"
msgstr "Sauter cette version"
@@ -12079,13 +12248,13 @@ msgstr "Carte d'Extension"
#, boost-format
msgid "Split into %1% parts"
-msgstr ""
+msgstr "Diviser en %1% parties"
msgid "Repair finished"
msgstr "Réparation terminée"
msgid "Repair failed"
-msgstr ""
+msgstr "Échec de la réparation"
msgid "Repair canceled"
msgstr "Réparation annulée"
@@ -12133,10 +12302,10 @@ msgstr ""
"que l'objet a un maillage défectueux"
msgid "Process change extrusion role G-code"
-msgstr ""
+msgstr "G-code de changement du rôle de l’extrusion (traitement)"
msgid "Filament change extrusion role G-code"
-msgstr ""
+msgstr "G-code de changement du rôle de l’extrusion (filament)"
msgid "No object can be printed. Maybe too small"
msgstr "Aucun objet ne peut être imprimé. Peut-être trop petit"
@@ -12167,15 +12336,20 @@ msgid "Flush volumes matrix do not match to the correct size!"
msgstr "La matrice des volumes de purge ne correspond pas à la bonne taille !"
msgid "set_accel_and_jerk() is only supported by Klipper"
-msgstr ""
+msgstr "set_accel_and_jerk() n’est pris en charge que par Klipper"
msgid ""
"Input shaping is not supported by Marlin < 2.1.2.\n"
"Check your firmware version and update your G-code flavor to ´Marlin 2´"
msgstr ""
+"La mise en forme du signal n’est pas prise en charge par Marlin < 2.1.2.\n"
+"Vérifiez la version de votre firmware et réglez votre version de G-code sur "
+"« Marlin 2 »."
msgid "Input shaping is only supported by Klipper, RepRapFirmware and Marlin 2"
msgstr ""
+"La mise en forme du signal n’est prise en charge que par Klipper, "
+"RepRapFirmware et Marlin 2"
msgid "Grouping error: "
msgstr "Erreur de regroupement : "
@@ -12209,13 +12383,13 @@ msgid "file too large"
msgstr "fichier trop volumineux"
msgid "unsupported method"
-msgstr "méthode non supportée"
+msgstr "méthode non prise en charge"
msgid "unsupported encryption"
-msgstr "cryptage non supporté"
+msgstr "chiffrement non pris en charge"
msgid "unsupported feature"
-msgstr "fonction non supportée"
+msgstr "fonctionnalité non prise en charge"
msgid "failed finding central directory"
msgstr "impossible de trouver le répertoire central"
@@ -12242,7 +12416,7 @@ msgid "CRC check failed"
msgstr "La vérification CRC a échoué"
msgid "unsupported central directory size"
-msgstr "volume du répertoire central non supporté"
+msgstr "taille du répertoire central non prise en charge"
msgid "allocation failed"
msgstr "échec de l'allocation"
@@ -12342,16 +12516,25 @@ msgid ""
"temperature must fall within the recommended nozzle temperature range of the "
"other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr ""
+"Les températures de buse sélectionnées sont incompatibles. La température de "
+"buse de chaque filament doit se situer dans la plage de température de buse "
+"recommandée des autres filaments. Sinon, un bouchage de la buse ou des "
+"dommages à l’imprimante peuvent survenir."
msgid ""
"Invalid recommended nozzle temperature range. The lower bound must be lower "
"than the upper bound."
msgstr ""
+"Plage de température de buse recommandée non valide. La borne inférieure "
+"doit être plus basse que la borne supérieure."
msgid ""
"If you still want to print, you can enable the option in Preferences / "
"Control / Slicing / Remove mixed temperature restriction."
msgstr ""
+"Si vous souhaitez tout de même imprimer, vous pouvez activer l’option dans "
+"Préférences / Contrôle / Découpe / Supprimer la restriction de températures "
+"mixtes."
msgid "No extrusions under current settings."
msgstr "Aucune extrusion dans les paramètres actuels."
@@ -12442,8 +12625,8 @@ msgid ""
"The Wipe Tower is currently only supported with the relative extruder "
"addressing (use_relative_e_distances=1)."
msgstr ""
-"La tour d’essuyage n’est actuellement supportée qu’avec l’adressage relatif "
-"des extrudeurs (use_relative_e_distances=1)."
+"La tour d’essuyage n’est actuellement prise en charge qu’avec l’adressage "
+"relatif des extrudeurs (use_relative_e_distances=1)."
msgid ""
"Ooze prevention is only supported with the wipe tower when "
@@ -12590,6 +12773,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
msgstr "La hauteur de la couche ne peut pas dépasser le diamètre de la buse"
+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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -12600,18 +12796,14 @@ msgstr ""
"flottante. Ajouter \"G92 E0\" au G-code de changement de couche."
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"\"G92 E0\" a été trouvé dans le G-code avant le changement de couche, ce qui "
-"est incompatible avec l’extrusion absolue de l’extrudeur."
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"\"G92 E0\" a été trouvé dans le G-code de changement de couche, ce qui est "
-"incompatible avec l’extrusion absolue de l’extrudeur."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -12718,6 +12910,31 @@ msgstr "Zone imprimable"
msgid "Extruder printable area"
msgstr "Zone d'impression de l'extrudeur"
+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"
msgstr "Zone d'exclusion de plateau"
@@ -12729,7 +12946,7 @@ msgstr ""
"Zone non imprimable dans le plan XY. Par exemple, les imprimantes de la "
"série X1 utilisent le coin avant gauche pour couper le filament lors du "
"changement de filament. La zone est exprimée sous forme de polygone par des "
-"points au format suivant : \"XxY, XxY,... \""
+"points au format suivant : \"XxY, XxY,… \""
msgid "Bed custom texture"
msgstr "Texture personnalisée du plateau"
@@ -12762,7 +12979,7 @@ msgstr ""
"moins, jusqu'à la couche indiquée par cette valeur."
msgid "Elephant foot layers density"
-msgstr ""
+msgstr "Densité des couches de patte d’éléphant"
msgid ""
"Density of internal solid infill for Elephant foot layers compensation.\n"
@@ -12770,6 +12987,11 @@ msgid ""
"Subsequent layers become linearly denser by the height specified in "
"elefant_foot_compensation_layers."
msgstr ""
+"Densité du remplissage solide interne pour la compensation des couches de "
+"patte d’éléphant.\n"
+"La valeur initiale est définie pour la deuxième couche.\n"
+"Les couches suivantes deviennent linéairement plus denses sur la hauteur "
+"spécifiée dans elefant_foot_compensation_layers."
msgid ""
"Slicing height for each layer. Smaller layer height means more accurate and "
@@ -12858,6 +13080,12 @@ msgstr ""
"champ doit contenir la clé API ou le mot de passe requis pour "
"l'authentification."
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "Nom de l'imprimante"
@@ -12978,7 +13206,7 @@ msgid ""
"filament does not support printing on the Textured PEI Plate."
msgstr ""
"Température du plateau après la première couche. 0 signifie que le filament "
-"n'est pas supporté par la plaque PEI texturée."
+"ne peut pas être imprimé sur la plaque PEI texturée."
msgid "First layer"
msgstr "Couche initiale"
@@ -13028,7 +13256,7 @@ msgid ""
"support printing on the Textured PEI Plate."
msgstr ""
"La température du plateau à la première couche. La valeur 0 signifie que le "
-"filament n'est pas supporté sur la plaque PEI texturée"
+"filament ne peut pas être imprimé sur la plaque PEI texturée"
msgid "Bed types supported by the printer."
msgstr "Types de plateaux pris en charge par l'imprimante"
@@ -13210,10 +13438,10 @@ msgid ""
"by the layer beneath it. Setting this value to 0% forces the cooling fan to "
"run for all outer walls, regardless of the overhang degree."
msgstr ""
-"Lorsque le dépassement dépasse le seuil spécifié, le ventilateur de "
+"Lorsque le surplomb dépasse le seuil spécifié, le ventilateur de "
"refroidissement est forcé de fonctionner à la « Vitesse du ventilateur pour "
"les surplombs » définie ci-dessous. Ce seuil est exprimé en pourcentage, "
-"indiquant la portion de la largeur de chaque ligne qui n’est pas supportée "
+"indiquant la portion de la largeur de chaque ligne qui n’est pas soutenue "
"par la couche située en dessous. En réglant cette valeur sur 0%, on force le "
"ventilateur de refroidissement à fonctionner pour toutes les parois en "
"surplomb, quel que soit le degré de surplomb."
@@ -13223,124 +13451,134 @@ msgstr "Direction du remplissage du pont extérieur"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"Forçage de l’angle des ponts. S’il est laissé à zéro, l’angle des ponts sera "
-"calculé automatiquement. Sinon, l’angle fourni sera utilisé pour les ponts "
-"externes. Utilisez 180° pour un angle nul."
msgid "Internal bridge infill direction"
msgstr "Direction du remplissage du pont interne"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"Priorité à l’angle de pont interne. S’il est laissé à zéro, l’angle de "
-"pontage sera calculé automatiquement. Dans le cas contraire, l’angle fourni "
-"sera utilisé pour les ponts internes. Utiliser 180° pour l’angle zéro.\n"
-"\n"
-"Il est recommandé de le laisser à 0, à moins qu’un modèle spécifique impose "
-"de ne pas le faire."
msgid "External bridge density"
msgstr "Densité du pont externe"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
-"Contrôle la densité (espacement) des lignes de pont externe. La valeur par "
-"défaut est 100 %.\n"
-"\n"
-"Une densité de pont externe plus faible peut améliorer la fiabilité car il y "
-"a plus d'espace pour la circulation de l'air autour du pont extrudé, "
-"améliorant sa vitesse de refroidissement. Le minimum est de 10 %.\n"
-"\n"
-"Des densités plus élevées peuvent produire des surfaces de pont plus lisses, "
-"car les lignes qui se chevauchent fournissent un soutien supplémentaire "
-"pendant l'impression. Le maximum est de 120 %.\n"
-"Note : Une densité de pont trop élevée peut provoquer du gauchissement ou de "
-"la surextrusion."
msgid "Internal bridge density"
msgstr "Densité du pont interne"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"Contrôle la densité (l’espacement) des lignes de pont internes. 100 % "
-"signifie que le pont est plein. La valeur par défaut est 100%.\n"
-"\n"
-" Des ponts internes moins denses peuvent contribuer à réduire le gonflement "
-"de la surface supérieure et à améliorer la fiabilité des ponts internes, car "
-"l’air a plus de place pour circuler autour du pont extrudé, ce qui améliore "
-"sa vitesse de refroidissement.\n"
-"\n"
-"Cette option fonctionne particulièrement bien lorsqu’elle est combinée avec "
-"la deuxième option de pont interne sur le remplissage, ce qui permet "
-"d’améliorer encore la structure du pont interne avant l’extrusion du "
-"remplissage solide."
msgid "Bridge flow ratio"
msgstr "Débit des ponts"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Diminuez légèrement cette valeur (par exemple 0,9) pour réduire la quantité "
-"de matériau pour le pont, afin d’améliorer l’affaissement.\n"
+
+#, 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"
-"Le débit réel du pont utilisé est calculé en multipliant cette valeur par le "
-"rapport de débit du filament et, s’il est défini, par le rapport de débit de "
-"l’objet."
+"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"
msgstr "Ratio de débit du pont interne"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Cette valeur détermine l’épaisseur de la couche de pont interne. Il s’agit "
-"de la première couche au-dessus d’un remplissage peu dense. Diminuez "
-"légèrement cette valeur (par exemple 0,9) pour améliorer la qualité de la "
-"surface sur un remplissage peu dense.\n"
-"\n"
-"Le débit du pont interne utilisé est calculé en multipliant cette valeur par "
-"le rapport de débit du pont, le rapport de débit du filament et, s’il est "
-"défini, le rapport de débit de l’objet."
msgid "Top surface flow ratio"
msgstr "Ratio du débit des surfaces supérieures"
@@ -13697,41 +13935,35 @@ msgstr "Ralentir lors des périmètres courbés"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"Par exemple, un ralentissement supplémentaire sera appliqué lors de "
-"l’impression de surplombs sur des angles aigus comme l’avant de la coque du "
-"Benchy, réduisant ainsi l’enroulement qui s’aggrave sur plusieurs couches.\n"
-"\n"
-"Il est généralement recommandé d’activer cette option à moins que le "
-"refroidissement de votre imprimante soit suffisamment puissant ou que la "
-"vitesse d’impression soit suffisamment lente pour que le recourbement du "
-"périmètre ne se produise pas. Si vous imprimez avec une vitesse de périmètre "
-"externe élevée, ce paramètre peut introduire de légers artefacts lors du "
-"ralentissement en raison de la grande variance des vitesses d’impression. Si "
-"vous remarquez des artefacts, assurez-vous que votre avance de pression est "
-"réglée correctement.\n"
-"\n"
-"Remarque : lorsque cette option est activée, les périmètres en surplomb sont "
-"traités comme des surplombs, ce qui signifie que la vitesse de surplomb est "
-"appliquée même si le périmètre en surplomb fait partie d’un pont. Par "
-"exemple, lorsque les périmètres sont en surplomb de 100 %, sans paroi les "
-"soutenant par en dessous, la vitesse de surplomb de 100 % sera appliquée."
msgid "mm/s or %"
msgstr "mm/s ou %"
@@ -13790,7 +14022,7 @@ msgstr ""
"le retrait du bord"
msgid "Brim flow ratio"
-msgstr ""
+msgstr "Rapport de débit de la bordure"
msgid ""
"This factor affects the amount of material for brims.\n"
@@ -13800,6 +14032,14 @@ msgid ""
"\n"
"Note: The resulting value will not be affected by the first-layer flow ratio."
msgstr ""
+"Ce facteur influe sur la quantité de matière utilisée pour les bordures.\n"
+"\n"
+"Le débit de bordure réellement utilisé est calculé en multipliant cette "
+"valeur par le rapport de débit du filament et, s’il est défini, par le "
+"rapport de débit de l’objet.\n"
+"\n"
+"Remarque : la valeur obtenue ne sera pas affectée par le rapport de débit de "
+"la première couche."
msgid "Brim follows compensated outline"
msgstr "Bordure suit le contour compensé"
@@ -13824,12 +14064,14 @@ msgstr ""
"supérieures."
msgid "Combine brims"
-msgstr ""
+msgstr "Combiner les bordures"
msgid ""
"Combine multiple brims into one when they are close to each other. This can "
"improve brim adhesion."
msgstr ""
+"Combine plusieurs bordures en une seule lorsqu’elles sont proches les unes "
+"des autres. Cela peut améliorer l’adhérence de la bordure."
msgid "Brim ears"
msgstr "Bordures à oreilles"
@@ -13958,14 +14200,18 @@ msgstr ""
msgid ""
"Enable this to override the fan speed set in custom G-code during print."
msgstr ""
+"Activez cette option pour remplacer la vitesse de ventilateur définie dans "
+"le G-code personnalisé pendant l’impression."
msgid "On completion"
-msgstr ""
+msgstr "À la fin"
msgid ""
"Enable this to override the fan speed set in custom G-code after print "
"completion."
msgstr ""
+"Activez cette option pour remplacer la vitesse de ventilateur définie dans "
+"le G-code personnalisé une fois l’impression terminée."
msgid ""
"Speed of exhaust fan during printing. This speed will override the speed in "
@@ -13988,7 +14234,7 @@ msgstr ""
"couches. Cela peut être utilisé pour améliorer l'adhérence à la plaque"
msgid "Don't support bridges"
-msgstr "Ne pas supporter les ponts"
+msgstr "Ne pas créer de supports sous les ponts"
msgid ""
"Don't support the whole bridge area which make support very large. Bridges "
@@ -14002,26 +14248,25 @@ msgid "Thick external bridges"
msgstr "Ponts extérieurs épais"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"S'ils sont activés, les ponts sont plus fiables et peuvent couvrir de plus "
-"longues distances, mais ils peuvent sembler moins jolis. S'ils sont "
-"désactivés, les ponts ont une meilleure apparence mais ne sont fiables que "
-"sur de courtes distances."
msgid "Thick internal bridges"
msgstr "Ponts internes épais"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Si cette option est activée, des ponts internes épais seront utilisés. Il "
-"est généralement recommandé d’activer cette fonctionnalité. Pensez cependant "
-"à la désactiver si vous utilisez des buses larges."
msgid "Extra bridge layers (beta)"
msgstr "Couches de pont supplémentaires (beta)"
@@ -14063,7 +14308,7 @@ msgstr ""
"bridges internes et/ou externes.\n"
"\n"
"Les couches de pont supplémentaires permettent d'améliorer l'apparence et la "
-"fiabilité du pont, car le remplissage solide est mieux supporté. Ceci est "
+"fiabilité du pont, car le remplissage solide est mieux soutenu. Ceci est "
"particulièrement utile pour les imprimantes rapides, où les vitesses du pont "
"et du remplissage varient considérablement. La couche de pont supplémentaire "
"permet de réduire la formation de bourrelets sur les surfaces supérieures, "
@@ -14407,6 +14652,13 @@ msgid ""
"\n"
"This option will be disabled if spiral vase mode is enabled."
msgstr ""
+"Sens dans lequel les boucles de paroi de contour sont extrudées, vu de "
+"dessus.\n"
+"Les trous sont imprimés dans le sens opposé au contour afin de conserver "
+"l’alignement avec les couches dont les polygones de contour sont incomplets "
+"et changent de sens, formant aussi partiellement le contour d’un trou.\n"
+"\n"
+"Cette option sera désactivée si le mode vase spirale est activé."
msgid "Counter clockwise"
msgstr "Sens inverse des aiguilles d’une montre"
@@ -14739,7 +14991,6 @@ msgstr ""
msgid "Don't slow down outer walls"
msgstr "Ne pas ralentir sur les parois extérieures"
-#, fuzzy
msgid ""
"If enabled, this setting will ensure external perimeters are not slowed down "
"to meet the minimum layer time. This is particularly helpful in the below "
@@ -14751,14 +15002,14 @@ msgid ""
"external walls"
msgstr ""
"S’il est activé, ce paramètre garantit que les périmètres externes ne sont "
-"pas ralentis pour respecter la durée minimale de la couche. Ceci est "
-"particulièrement utile dans les scénarios suivants :\n"
-"1. Pour éviter les changements de brillance lors de l’impression de "
-"filaments brillants\n"
-"2. Pour éviter les changements de vitesse des parois externes qui peuvent "
-"créer de légers artefacts de paroi qui apparaissent comme des bandes en z.\n"
+"pas ralentis pour respecter la durée minimale de couche. Ceci est "
+"particulièrement utile dans les scénarios suivants :\n"
+"1. Pour éviter les variations de brillance lors de l’impression de filaments "
+"brillants\n"
+"2. Pour éviter les variations de vitesse des parois externes, susceptibles "
+"de créer de légers artefacts de paroi ressemblant à des bandes en Z\n"
"3. Pour éviter d’imprimer à des vitesses qui provoquent des VFA (artefacts "
-"fins) sur les parois externes."
+"fins) sur les parois externes"
msgid "Layer time"
msgstr "Temps de couche"
@@ -14815,16 +15066,18 @@ msgid "Auto For Match"
msgstr "Auto pour la correspondance"
msgid "Enable filament dynamic map"
-msgstr ""
+msgstr "Activer le mappage dynamique des filaments"
msgid "Enable dynamic filament mapping during print."
-msgstr ""
+msgstr "Activer le mappage dynamique des filaments pendant l’impression."
msgid "Has filament switcher"
-msgstr ""
+msgstr "Dispose d’un commutateur de filament"
msgid "Printer has a filament switcher hardware (e.g., AMS)."
msgstr ""
+"L’imprimante dispose d’un matériel de commutation de filament (par exemple "
+"un AMS)."
msgid "Flush temperature"
msgstr "Température de purge"
@@ -14904,8 +15157,8 @@ msgid ""
"printed filaments."
msgstr ""
"Cette option détermine comment la température du plateau est définie lors du "
-"tranchage : basée sur la température du premier filament ou la température "
-"la plus élevée des filaments imprimés."
+"tranchage : d’après la température du premier filament ou la température la "
+"plus élevée des filaments imprimés."
msgid "By First filament"
msgstr "Par le premier filament"
@@ -15099,10 +15352,10 @@ msgstr ""
"remplissages ou objets de manière fiable."
msgid "Wipe tower cooling"
-msgstr ""
+msgstr "Refroidissement de la tour d’essuyage"
msgid "Temperature drop before entering filament tower"
-msgstr ""
+msgstr "Baisse de température avant l’entrée dans la tour de filament"
msgid "Interface layer pre-extrusion distance"
msgstr "Distance de pré-extrusion de la couche d'interface"
@@ -15317,14 +15570,11 @@ msgid "Align infill direction to model"
msgstr "Aligner la direction du remplissage sur le modèle"
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
-"Aligne les directions de remplissage et de surface sur l'orientation du "
-"modèle sur la plaque de construction. Lorsqu'activé, les directions de "
-"remplissage tournent avec le modèle pour maintenir des caractéristiques de "
-"résistance optimales."
msgid "Insert solid layers"
msgstr "Insérer des couches solides"
@@ -15351,8 +15601,9 @@ msgstr ""
"charge par le motif."
msgid "Z-buckling bias optimization (experimental)"
-msgstr ""
+msgstr "Optimisation du biais de flambage en Z (expérimental)"
+#, fuzzy, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -15360,6 +15611,12 @@ msgid ""
"~30% sparse infill density and above. Only applies when Sparse infill "
"pattern is set to Gyroid."
msgstr ""
+"Resserre l’onde gyroïde le long de l’axe Z (vertical) à faible densité de "
+"remplissage afin de raccourcir la longueur effective des colonnes verticales "
+"et d’améliorer la résistance au flambage en compression sur l’axe Z. La "
+"consommation de filament est préservée. Sans effet à partir d’environ 30 "
+"% de densité de remplissage. Ne s’applique que lorsque le motif de "
+"remplissage est réglé sur Gyroïde."
msgid "Sparse infill pattern"
msgstr "Motif de remplissage"
@@ -15453,6 +15710,27 @@ msgstr ""
"L'angle des lignes inclinées du remplissage. 60° donnera un nid d'abeille "
"pur."
+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"
msgstr "Longueur de l’ancrage de remplissage interne"
@@ -15545,8 +15823,8 @@ msgid "mm/s² or %"
msgstr "mm/s² ou %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Accélération du remplissage interne. Si la valeur est exprimée en "
"pourcentage (par exemple 100%), elle sera calculée en fonction de "
@@ -15569,12 +15847,14 @@ msgstr ""
"peut améliorer l'adhérence sur le plateau"
msgid "First layer travel"
-msgstr ""
+msgstr "Déplacement de la première couche"
msgid ""
"Travel acceleration of first layer.\n"
"The percentage value is relative to Travel Acceleration."
msgstr ""
+"Accélération de déplacement de la première couche.\n"
+"La valeur en pourcentage est relative à l’accélération de déplacement."
msgid "Enable accel_to_decel"
msgstr "Activer l’accélération à la décélération"
@@ -15626,6 +15906,8 @@ msgid ""
"Travel jerk of first layer.\n"
"The percentage value is relative to Travel Jerk."
msgstr ""
+"Jerk de déplacement de la première couche.\n"
+"La valeur en pourcentage est relative au jerk de déplacement."
msgid ""
"Line width of the first layer. If expressed as a %, it will be computed over "
@@ -15637,13 +15919,12 @@ msgstr ""
msgid "First layer height"
msgstr "Hauteur de couche initiale"
-#, fuzzy
msgid ""
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr ""
-"Il s'agit de la hauteur de la première couche. L'augmentation de la hauteur "
-"de la première couche peut améliorer l'adhérence sur le plateau"
+"Hauteur de la première couche. Augmenter la hauteur de la première couche "
+"peut améliorer l’adhérence au plateau."
msgid "Speed of the first layer except the solid infill part."
msgstr "Vitesse de la couche initiale à l'exception du remplissage"
@@ -15685,10 +15966,10 @@ msgstr "Ventilateur à pleine vitesse à la couche"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"La vitesse du ventilateur augmentera de manière linéaire à partir de zéro à "
"la couche \"close_fan_the_first_x_layers\" jusqu’au maximum à la couche "
@@ -15714,8 +15995,8 @@ msgstr ""
"La vitesse du ventilateur de refroidissement des pièces est appliquée lors "
"de l’impression des interfaces de support. Le réglage de ce paramètre à une "
"vitesse supérieure à la vitesse normale réduit la force de liaison de la "
-"couche entre les supports et la pièce supportée, ce qui les rend plus "
-"faciles à séparer.\n"
+"couche entre les supports et la pièce soutenue, ce qui les rend plus faciles "
+"à séparer.\n"
"La valeur -1 permet de désactiver ce paramètre.\n"
"Ce paramètre est remplacé par disable_fan_first_layers."
@@ -15920,6 +16201,16 @@ msgid ""
"Ripple: Uniform ripple pattern that ripples left and right of the original "
"path. Repeating pattern, woven appearance."
msgstr ""
+"Type de bruit à utiliser pour la génération de la surface irrégulière :\n"
+"Classic : bruit aléatoire uniforme classique.\n"
+"Perlin : bruit de Perlin, qui donne une texture plus homogène.\n"
+"Billow : similaire au bruit de Perlin, mais plus grumeleux.\n"
+"Ridged Multifractal : bruit en crêtes aux reliefs nets et anguleux. Crée des "
+"textures façon marbre.\n"
+"Voronoi : divise la surface en cellules de Voronoï et décale chacune d’une "
+"valeur aléatoire. Crée une texture en patchwork.\n"
+"Ripple : motif d’ondulation uniforme qui ondule de part et d’autre du tracé "
+"d’origine. Motif répétitif, aspect tissé."
msgid "Classic"
msgstr "Classique"
@@ -15937,7 +16228,7 @@ msgid "Voronoi"
msgstr "Voronoi"
msgid "Ripple"
-msgstr ""
+msgstr "Ripple"
msgid "Fuzzy skin feature size"
msgstr "Taille des caractéristiques de la surface irrégulière"
@@ -15970,13 +16261,14 @@ msgstr ""
"plus faibles permettent d’obtenir un bruit plus doux."
msgid "Number of ripples per layer"
-msgstr ""
+msgstr "Nombre d’ondulations par couche"
msgid "Controls how many full cycles of ripples will be added per layer."
msgstr ""
+"Contrôle le nombre de cycles complets d’ondulations ajoutés par couche."
msgid "Ripple offset"
-msgstr ""
+msgstr "Décalage des ondulations"
msgid ""
"Shifts the ripple phase forward along the print path by the specified "
@@ -15990,9 +16282,20 @@ msgid ""
"The shift is applied once every number of layers set by Layers between "
"ripple offset, so layers within the same group are printed identically."
msgstr ""
+"Décale la phase de l’ondulation vers l’avant le long du tracé d’impression, "
+"du pourcentage de longueur d’onde indiqué à chaque période de couche.\n"
+"- 0 % conserve des couches identiques.\n"
+"- 50 % décale le motif d’une demi-longueur d’onde, inversant ainsi la "
+"phase.\n"
+"- 100 % décale le motif d’une longueur d’onde complète, revenant à la phase "
+"d’origine.\n"
+"\n"
+"Le décalage est appliqué une fois toutes les N couches définies par "
+"« Couches entre deux décalages d’ondulation », de sorte que les couches d’un "
+"même groupe sont imprimées à l’identique."
msgid "Layers between ripple offset"
-msgstr ""
+msgstr "Couches entre deux décalages d’ondulation"
msgid ""
"Specifies how many consecutive layers share the same ripple phase before the "
@@ -16005,6 +16308,15 @@ msgid ""
"to 6 are shifted by the configured offset, then layers 7 to 9 return to the "
"base pattern, etc."
msgstr ""
+"Indique combien de couches consécutives partagent la même phase d’ondulation "
+"avant l’application du décalage.\n"
+"Par exemple :\n"
+"- 1 = la couche 1 est imprimée avec le motif d’ondulation de base, puis la "
+"couche 2 est décalée du décalage configuré, puis la couche 3 revient au "
+"motif de base, et ainsi de suite.\n"
+"- 3 = les couches 1 à 3 sont imprimées avec le motif d’ondulation de base, "
+"puis les couches 4 à 6 sont décalées du décalage configuré, puis les couches "
+"7 à 9 reviennent au motif de base, etc."
msgid "Filter out tiny gaps"
msgstr "Filtrer les petits espaces"
@@ -16095,7 +16407,7 @@ msgstr ""
"Choisir comment contrôler la récupération après coupure de courant. Lorsque "
"défini sur Configuration de l'imprimante, le trancheur n'émettra pas de G-"
"code de récupération après coupure de courant et laissera la configuration "
-"de l'imprimante inchangée. Applicable aux imprimantes basées sur le firmware "
+"de l'imprimante inchangée. Applicable aux imprimantes utilisant le firmware "
"Bambu Lab ou Marlin 2."
msgid "Printer configuration"
@@ -16216,7 +16528,7 @@ msgstr ""
"Mettre à 0 pour désactiver."
msgid "Minimum non-zero part cooling fan speed"
-msgstr ""
+msgstr "Vitesse minimale non nulle du ventilateur de refroidissement de pièce"
msgid ""
"Some part-cooling fans cannot start spinning when commanded below a certain "
@@ -16235,6 +16547,26 @@ msgid ""
"below the one you know it can actually spool at.\n"
"Set to 0 to deactivate."
msgstr ""
+"Certains ventilateurs de refroidissement de pièce ne peuvent pas démarrer "
+"lorsqu’ils sont commandés en dessous d’un certain rapport cyclique PWM. "
+"Lorsque cette valeur est supérieure à 0, toute commande non nulle du "
+"ventilateur de refroidissement de pièce est relevée à au moins ce "
+"pourcentage afin que le ventilateur démarre de façon fiable. Une commande de "
+"ventilateur de 0 (ventilateur éteint) est toujours respectée exactement. Ce "
+"plafonnement est appliqué après tous les autres calculs de ventilation "
+"(montée progressive de la première couche, interpolation selon la durée de "
+"couche, surcharges surplomb/pont/interface de support/lissage), de sorte que "
+"la mise à l’échelle opère toujours dans la plage [cette valeur, 100 %].\n"
+"Si votre firmware désactive déjà le ventilateur en dessous d’un seuil (par "
+"exemple, le [fan] off_below: 0.10 de Klipper éteint le ventilateur dès que "
+"le rapport cyclique commandé est inférieur à 10 %), cette option et le seuil "
+"du firmware devraient idéalement être réglés sur la même valeur. Les faire "
+"correspondre (par exemple off_below: 0.10 dans Klipper et 10 % ici) garantit "
+"que le slicer n’émet jamais une valeur non nulle que le firmware "
+"abandonnerait silencieusement, et que le ventilateur ne reçoit jamais une "
+"valeur inférieure à celle à laquelle vous savez qu’il peut réellement "
+"démarrer.\n"
+"Réglez sur 0 pour désactiver."
msgid "%"
msgstr "%"
@@ -16505,8 +16837,10 @@ msgstr "Zone d'exclusion de sondage de l'agglomération"
msgid "Probing exclude area of clumping."
msgstr "Zone d'exclusion de sondage de l'agglomération."
-msgid "Filament to print internal sparse infill."
-msgstr "Filament pour imprimer un remplissage interne."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -16668,7 +17002,6 @@ msgstr "Surfaces supérieures"
msgid "Topmost surface"
msgstr "Surface la plus élevée"
-#, fuzzy
msgid "All solid layers"
msgstr "Toutes les couches pleines"
@@ -16713,42 +17046,53 @@ msgid "Use a fixed absolute angle for ironing."
msgstr "Utiliser un angle absolu fixe pour le lissage."
msgid "Ironing expansion"
-msgstr ""
+msgstr "Expansion du lissage"
msgid "Expand or contract the ironing area."
-msgstr ""
+msgstr "Étend ou rétrécit la zone de lissage."
msgid "Z contouring enabled"
-msgstr ""
+msgstr "Contournage en Z activé"
msgid "Enable Z-layer contouring (aka Z-layer anti-aliasing)."
msgstr ""
+"Activer le contournage des couches en Z (alias anticrénelage des couches en "
+"Z)."
msgid "Minimize wall height angle"
-msgstr ""
+msgstr "Angle de minimisation de la hauteur des parois"
msgid ""
"Reduce the height of top-surface perimeters to match the model edge height.\n"
"Affects perimeters with a slope less than this angle (degrees).\n"
"A reasonable value is 35. Set to 0 to disable."
msgstr ""
+"Réduit la hauteur des périmètres de la surface supérieure pour qu’elle "
+"corresponde à la hauteur du bord du modèle.\n"
+"Affecte les périmètres dont la pente est inférieure à cet angle (en "
+"degrés).\n"
+"Une valeur raisonnable est 35. Réglez sur 0 pour désactiver."
msgid "°"
msgstr "°"
msgid "Don't alternate fill direction"
-msgstr ""
+msgstr "Ne pas alterner le sens de remplissage"
msgid "Disable alternating fill direction when using Z contouring."
msgstr ""
+"Désactive l’alternance du sens de remplissage lors de l’utilisation du "
+"contournage en Z."
msgid "Minimum z height"
-msgstr ""
+msgstr "Hauteur Z minimale"
msgid ""
"Minimum Z-layer height.\n"
"Also controls the slicing plane."
msgstr ""
+"Hauteur minimale des couches en Z.\n"
+"Contrôle également le plan de découpe."
msgid "This G-code is inserted at every layer change after the Z lift."
msgstr ""
@@ -16769,7 +17113,7 @@ msgstr ""
"utilise une accélération plus faible pour imprimer"
msgid "Emit limits to G-code"
-msgstr "Emission des limites vers le G-code"
+msgstr "Émission des limites vers le G-code"
msgid "Machine limits"
msgstr "Limites de la machine"
@@ -16958,12 +17302,14 @@ msgid "Maximum speed of resonance avoidance."
msgstr "Vitesse maximale d'évitement de résonance."
msgid "Emit input shaping"
-msgstr ""
+msgstr "Émettre la mise en forme du signal"
msgid ""
"Override firmware input shaping settings.\n"
"If disabled, firmware settings are used."
msgstr ""
+"Remplace les réglages de mise en forme du signal du firmware.\n"
+"S’il est désactivé, les réglages du firmware sont utilisés."
msgid "Input shaper type"
msgstr "Type de compensateur de résonance"
@@ -16973,42 +17319,45 @@ msgid ""
"Default uses the firmware default settings.\n"
"Disable turns off input shaping in the firmware."
msgstr ""
+"Choisissez l’algorithme de mise en forme du signal.\n"
+"« Default » utilise les réglages par défaut du firmware.\n"
+"« Disable » désactive la mise en forme du signal dans le firmware."
msgid "MZV"
-msgstr ""
+msgstr "MZV"
msgid "ZV"
-msgstr ""
+msgstr "ZV"
msgid "ZVD"
-msgstr ""
+msgstr "ZVD"
msgid "ZVDD"
-msgstr ""
+msgstr "ZVDD"
msgid "ZVDDD"
-msgstr ""
+msgstr "ZVDDD"
msgid "EI"
-msgstr ""
+msgstr "EI"
msgid "EI2"
-msgstr ""
+msgstr "EI2"
msgid "2HUMP_EI"
-msgstr ""
+msgstr "2HUMP_EI"
msgid "EI3"
-msgstr ""
+msgstr "EI3"
msgid "3HUMP_EI"
-msgstr ""
+msgstr "3HUMP_EI"
msgid "DAA"
-msgstr ""
+msgstr "DAA"
msgid "X"
-msgstr ""
+msgstr "X"
msgid ""
"Resonant frequency for the X axis input shaper.\n"
@@ -17016,15 +17365,22 @@ msgid ""
"To disable input shaping, use the Disable type.\n"
"RRF: X and Y values are equal."
msgstr ""
+"Fréquence de résonance du correcteur de mise en forme du signal de l’axe X.\n"
+"Zéro utilise la fréquence du firmware.\n"
+"Pour désactiver la mise en forme du signal, utilisez le type « Disable ».\n"
+"RRF : les valeurs X et Y sont identiques."
msgid "Y"
-msgstr ""
+msgstr "Y"
msgid ""
"Resonant frequency for the Y axis input shaper.\n"
"Zero will use the firmware frequency.\n"
"To disable input shaping, use the Disable type."
msgstr ""
+"Fréquence de résonance du correcteur de mise en forme du signal de l’axe Y.\n"
+"Zéro utilise la fréquence du firmware.\n"
+"Pour désactiver la mise en forme du signal, utilisez le type « Disable »."
msgid ""
"Damping ratio for the X axis input shaper.\n"
@@ -17032,12 +17388,21 @@ msgid ""
"To disable input shaping, use the Disable type.\n"
"RRF: X and Y values are equal."
msgstr ""
+"Facteur d’amortissement du correcteur de mise en forme du signal de l’axe "
+"X.\n"
+"Zéro utilise le facteur d’amortissement du firmware.\n"
+"Pour désactiver la mise en forme du signal, utilisez le type « Disable ».\n"
+"RRF : les valeurs X et Y sont identiques."
msgid ""
"Damping ratio for the Y axis input shaper.\n"
"Zero will use the firmware damping ratio.\n"
"To disable input shaping, use the Disable type."
msgstr ""
+"Facteur d’amortissement du correcteur de mise en forme du signal de l’axe "
+"Y.\n"
+"Zéro utilise le facteur d’amortissement du firmware.\n"
+"Pour désactiver la mise en forme du signal, utilisez le type « Disable »."
msgid ""
"Part cooling fan speed may be increased when auto cooling is enabled. This "
@@ -17174,10 +17539,12 @@ msgstr ""
"utiliser cette fonctionnalité. Commande G-code : M106 P2 S(0-255)"
msgid "For the first"
-msgstr ""
+msgstr "Pour les premières"
msgid "Set special auxiliary cooling fan for the first certain layers."
msgstr ""
+"Définit un ventilateur de refroidissement auxiliaire spécial pour les "
+"premières couches indiquées."
msgid ""
"Auxiliary fan speed will be ramped up linearly from layer \"For the first\" "
@@ -17186,10 +17553,18 @@ msgid ""
"in which case the fan will run at maximum allowed speed at layer \"For the "
"first\" + 1."
msgstr ""
+"La vitesse du ventilateur auxiliaire augmente linéairement depuis la couche "
+"« Pour les premières » jusqu’au maximum à la couche « Ventilateur à pleine "
+"vitesse à la couche ».\n"
+"« Ventilateur à pleine vitesse à la couche » est ignorée si elle est "
+"inférieure à « Pour les premières » ; dans ce cas, le ventilateur tourne à "
+"la vitesse maximale autorisée à la couche « Pour les premières » + 1."
msgid ""
"Special auxiliary cooling fan speed, effective only for the first x layers."
msgstr ""
+"Vitesse spéciale du ventilateur de refroidissement auxiliaire, effective "
+"uniquement pour les x premières couches."
msgid ""
"The lowest printable layer height for the extruder. Used to limit the "
@@ -17363,9 +17738,8 @@ msgstr ""
"par un matériau conique. Une valeur de 0 remplira tous les trous dans la "
"base du modèle."
-#, fuzzy
msgid "Detect overhang walls"
-msgstr "Détecter une paroi en surplomb"
+msgstr "Détecter les parois en surplomb"
#, c-format, boost-format
msgid ""
@@ -17376,8 +17750,21 @@ msgstr ""
"utilisez une vitesse différente pour imprimer. Pour un surplomb de 100%% la "
"vitesse du pont est utilisée."
-msgid "Filament to print walls."
-msgstr "Filament pour imprimer les parois"
+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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -17430,12 +17817,15 @@ msgstr ""
"configuration Orca Slicer en lisant les variables d’environnement."
msgid "Change extrusion role G-code (process)"
-msgstr ""
+msgstr "G-code de changement du rôle de l’extrusion (traitement)"
msgid ""
"This G-code is inserted when the extrusion role is changed. It runs after "
"the machine and filament extrusion role G-code."
msgstr ""
+"Ce G-code est inséré lorsque le rôle de l’extrusion change. Il s’exécute "
+"après le G-code de changement de rôle d’extrusion de la machine et du "
+"filament."
msgid "Printer type"
msgstr "Type d’imprimante"
@@ -17652,7 +18042,7 @@ msgid ""
"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only "
"lift Z above/below)."
msgstr ""
-"Appliquer le comportement du décalage en Z. Ce paramètre est impacté par les "
+"Appliquer le comportement du décalage en Z. Ce paramètre est affecté par les "
"paramètres ci-dessus (décalage en Z au-dessus/en dessous uniquement)."
msgid "All Surfaces"
@@ -17897,11 +18287,11 @@ msgid "Use scarf joint for inner walls as well."
msgstr "Utiliser également un joint en biseau pour les parois intérieures."
msgid "Role base wipe speed"
-msgstr "Vitesse d’essuyage basée sur la vitesse d’extrusion"
+msgstr "Vitesse d’essuyage en fonction de la vitesse d’extrusion"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -18086,19 +18476,27 @@ msgstr ""
msgid "Minimum sparse infill threshold"
msgstr "Seuil minimum de remplissage"
-#, fuzzy
msgid ""
"Sparse infill areas smaller than this threshold value are replaced by "
"internal solid infill."
msgstr ""
-"La zone de remplissage inférieure à la valeur seuil est remplacée par un "
-"remplissage plein interne"
+"Les zones de remplissage plus petites que cette valeur seuil sont remplacées "
+"par un remplissage solide interne."
-msgid "Solid infill"
-msgstr "Remplissage solide"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "Filament pour l’impression de remplissage solide"
+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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -18311,7 +18709,7 @@ msgid "Enable filament ramming"
msgstr "Activer le bourrage de filament"
msgid "Tool change on wipe tower"
-msgstr ""
+msgstr "Changement d’outil sur la tour d’essuyage"
msgid ""
"Force the toolhead to travel to the wipe tower before issuing the tool "
@@ -18322,6 +18720,14 @@ msgid ""
"this option if you want the tool change to always be issued above the wipe "
"tower instead."
msgstr ""
+"Force la tête d’outil à se déplacer vers la tour d’essuyage avant d’émettre "
+"la commande de changement d’outil (Tx). Pertinent uniquement pour les "
+"imprimantes multi-extrudeurs (à têtes d’outil multiples) utilisant une tour "
+"d’essuyage de type 2. Par défaut, Orca omet ce déplacement sur les machines "
+"à têtes d’outil multiples car le firmware gère le changement de tête, ce qui "
+"peut entraîner l’émission de la commande Tx au-dessus de la pièce imprimée. "
+"Activez cette option si vous préférez que le changement d’outil soit "
+"toujours émis au-dessus de la tour d’essuyage."
msgid "No sparse layers (beta)"
msgstr "Pas de couches éparses (beta)"
@@ -18368,8 +18774,8 @@ msgid ""
"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to "
"close all holes in the model."
msgstr ""
-"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez "
-"« Fermer les trous » pour fermer tous les trous du modèle."
+"Utilisez « Pair-impair » pour les modèles d'avion 3DLabPrint. Utilisez « "
+"Fermer les trous » pour fermer tous les trous du modèle."
msgid "Regular"
msgstr "Standard"
@@ -18449,7 +18855,7 @@ msgstr ""
"Ce paramètre génère uniquement les supports qui commencent sur le plateau"
msgid "Support critical regions only"
-msgstr "Ne supporter que les régions critiques"
+msgstr "Ne créer des supports que pour les régions critiques"
msgid ""
"Only create support for critical regions including sharp tail, cantilever, "
@@ -18488,12 +18894,10 @@ msgid "Support/raft base"
msgstr "Support/base du radeau"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"Filament pour imprimer les supports et radeaux. « Par défaut » signifie "
-"qu'aucun filament spécifique n'est utilisé comme support et que le filament "
-"actuel est utilisé"
msgid "Avoid interface filament for base"
msgstr "Réduire le filament d’interface pour la base"
@@ -18524,12 +18928,10 @@ msgid "Support/raft interface"
msgstr "Support/base d'interface"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"Filament pour l'impression des interfaces de support. \"Défaut\" signifie "
-"qu'il n'y a pas de filament spécifique pour l'interface de support et que le "
-"filament actuel est utilisé"
msgid "Top interface layers"
msgstr "Couches d'interface supérieures"
@@ -18865,8 +19267,8 @@ msgstr "Activer le contrôle de la température"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -18932,18 +19334,16 @@ msgstr ""
msgid "Nozzle temperature for layers after the initial one."
msgstr "Température de la buse pour les couches après la première"
-#, fuzzy
msgid "Detect thin walls"
msgstr "Détecter les parois fines"
-#, fuzzy
msgid ""
"Detect thin walls which can't contain two line widths, and use single line "
"to print. Maybe not printed very well, because it's not a closed loop."
msgstr ""
-"Détecte les parois fines qui ne peuvent pas contenir deux largeurs de ligne. "
-"Et utilisez une seule ligne pour imprimer. Peut ne pas être très bien "
-"imprimé, car ce n'est pas en boucle fermée"
+"Détecte les parois fines qui ne peuvent pas contenir deux largeurs de ligne "
+"et les imprime avec une seule ligne. L’impression peut ne pas être très "
+"réussie car il ne s’agit pas d’une boucle fermée."
msgid ""
"This G-code is inserted when filament is changed, including T commands to "
@@ -18956,12 +19356,14 @@ msgid "This G-code is inserted when the extrusion role is changed."
msgstr "Ce G-code est inséré lorsque le rôle d’extrusion est modifié."
msgid "Change extrusion role G-code (filament)"
-msgstr ""
+msgstr "G-code de changement du rôle de l’extrusion (filament)"
msgid ""
"This G-code is inserted when the extrusion role is changed for the active "
"filament."
msgstr ""
+"Ce G-code est inséré lorsque le rôle de l’extrusion change pour le filament "
+"actif."
msgid ""
"Line width for top surfaces. If expressed as a %, it will be computed over "
@@ -19141,7 +19543,6 @@ msgstr ""
msgid "Maximum wipe tower print speed"
msgstr "Vitesse maximale d’impression de la tour d’essuyage"
-#, fuzzy
msgid ""
"The maximum print speed when purging in the wipe tower and printing the wipe "
"tower sparse layers. When purging, if the sparse infill speed or calculated "
@@ -19163,27 +19564,27 @@ msgid ""
"For the wipe tower external perimeters the internal perimeter speed is used "
"regardless of this setting."
msgstr ""
-"Vitesse d'impression maximale lors de la purge dans la tour de raclage et de "
-"l'impression des couches éparses de la tour d'essuyage. Lors de la purge, si "
+"Vitesse d’impression maximale lors de la purge dans la tour d’essuyage et de "
+"l’impression des couches éparses de la tour d’essuyage. Lors de la purge, si "
"la vitesse de remplissage ou la vitesse calculée à partir de la vitesse "
-"volumétrique maximale du filament est inférieure, c'est la vitesse la plus "
-"faible qui sera utilisée.\n"
+"volumétrique maximale du filament est inférieure, c’est la plus faible qui "
+"sera utilisée.\n"
"\n"
"Lors de l’impression des couches éparses, si la vitesse du périmètre interne "
"ou la vitesse calculée à partir de la vitesse volumétrique maximale du "
-"filament est inférieure, c’est la vitesse la plus faible qui sera utilisée.\n"
+"filament est inférieure, c’est la plus faible qui sera utilisée.\n"
"\n"
"L’augmentation de cette vitesse peut affecter la stabilité de la tour et "
-"augmenter la force avec laquelle la buse entre en collision avec les blobs "
-"qui peuvent s’être formés sur la tour d’essuyage.\n"
+"accroître la force avec laquelle la buse heurte les éventuels amas qui se "
+"sont formés sur la tour d’essuyage.\n"
"\n"
"Avant d’augmenter ce paramètre au-delà de la valeur par défaut de 90 mm/s, "
-"assurez-vous que votre imprimante peut effectuer un pontage fiable à des "
-"vitesses élevées et que le suintement lors du changement d’outil est bien "
-"contrôlé.\n"
+"assurez-vous que votre imprimante peut réaliser des ponts de façon fiable à "
+"des vitesses plus élevées et que le suintement lors des changements d’outil "
+"est bien maîtrisé.\n"
"\n"
-"Pour les périmètres externes de la tour d’essuyage, la vitesse du périmètre "
-"interne est utilisée indépendamment de ce paramètre."
+"Pour les périmètres externes de la tour d’essuyage, c’est la vitesse du "
+"périmètre interne qui est utilisée, indépendamment de ce paramètre."
msgid "Wall type"
msgstr "Type de paroi"
@@ -19366,32 +19767,31 @@ msgstr ""
msgid "X-Y hole compensation"
msgstr "Compensation de trou X-Y"
-#, fuzzy
msgid ""
"Holes in objects will expand or contract in the XY plane by the configured "
"value. Positive values make holes bigger, negative values make holes "
"smaller. This function is used to adjust sizes slightly when the objects "
"have assembling issues."
msgstr ""
-"Les trous de l'objet seront agrandis ou rétrécis dans le plan XY par la "
-"valeur configurée. Une valeur positive agrandit les trous. Une valeur "
-"négative rend les trous plus petits. Cette fonction est utilisée pour "
-"ajuster légèrement la taille lorsque l'objet a un problème d'assemblage"
+"Les trous des objets s’agrandissent ou se rétrécissent dans le plan XY selon "
+"la valeur configurée. Les valeurs positives agrandissent les trous, les "
+"valeurs négatives les rétrécissent. Cette fonction sert à ajuster légèrement "
+"les dimensions lorsque les objets présentent des problèmes d’assemblage."
msgid "X-Y contour compensation"
msgstr "Compensation de contour X-Y"
-#, fuzzy
msgid ""
"Contours of objects will expand or contract in the XY plane by the "
"configured value. Positive values make contours bigger, negative values make "
"contours smaller. This function is used to adjust sizes slightly when the "
"objects have assembling issues."
msgstr ""
-"Le contour de l'objet sera agrandi ou rétréci dans le plan XY par la valeur "
-"configurée. Une valeur positive agrandit le contour. Une valeur négative "
-"rend le contour plus petit. Cette fonction est utilisée pour ajuster "
-"légèrement la taille lorsque l'objet a un problème d'assemblage"
+"Les contours des objets s’agrandissent ou se rétrécissent dans le plan XY "
+"selon la valeur configurée. Les valeurs positives agrandissent les contours, "
+"les valeurs négatives les rétrécissent. Cette fonction sert à ajuster "
+"légèrement les dimensions lorsque les objets présentent des problèmes "
+"d’assemblage."
msgid "Convert holes to polyholes"
msgstr "Convertir les trous en trous polygones"
@@ -19438,7 +19838,7 @@ msgid ""
"following format: \"XxY, XxY, ...\""
msgstr ""
"Tailles des images à stocker dans les fichiers .gcode et .sl1/.sl1s, au "
-"format suivant : \"XxY, XxY, ...\""
+"format suivant : \"XxY, XxY, …\""
msgid "Format of G-code thumbnails"
msgstr "Format des vignettes G-code"
@@ -19459,8 +19859,8 @@ msgid ""
"Wipe tower is only compatible with relative mode. It is recommended on most "
"printers. Default is checked."
msgstr ""
-"L’extrusion relative est recommandée lors de l’utilisation de l’option "
-"« label_objects ». Certains extrudeurs fonctionnent mieux avec cette option "
+"L’extrusion relative est recommandée lors de l’utilisation de l’option « "
+"label_objects ». Certains extrudeurs fonctionnent mieux avec cette option "
"non verrouillée (mode d’extrusion absolu). La tour d’essuyage n’est "
"compatible qu’avec le mode relatif. Il est recommandé sur la plupart des "
"imprimantes. L’option par défaut est cochée"
@@ -19580,15 +19980,18 @@ msgstr ""
"paroi » est activée."
msgid "Maximum wall resolution"
-msgstr ""
+msgstr "Résolution maximale des parois"
msgid ""
"This value determines the smallest wall line segment length in mm. The "
"smaller you set this value, the more accurate and precise the walls will be."
msgstr ""
+"Cette valeur détermine la longueur du plus petit segment de ligne de paroi, "
+"en mm. Plus cette valeur est faible, plus les parois seront exactes et "
+"précises."
msgid "Maximum wall deviation"
-msgstr ""
+msgstr "Écart maximal des parois"
msgid ""
"The maximum deviation allowed when reducing the resolution for the 'Maximum "
@@ -19597,6 +20000,11 @@ msgid ""
"'Maximum wall resolution', so if the two conflict, 'Maximum wall deviation' "
"takes precedence."
msgstr ""
+"Écart maximal autorisé lors de la réduction de la résolution pour le "
+"paramètre « Résolution maximale des parois ». Si vous l’augmentez, "
+"l’impression sera moins exacte, mais le G-code sera plus petit. « Écart "
+"maximal des parois » limite « Résolution maximale des parois » ; en cas de "
+"conflit entre les deux, « Écart maximal des parois » est prioritaire."
msgid "First layer minimum wall width"
msgstr "Largeur minimale de la paroi de la première couche"
@@ -19625,9 +20033,8 @@ msgstr ""
"l'élément lui-même. Elle est exprimée en pourcentage par rapport au diamètre "
"de la buse"
-#, fuzzy
msgid "Detect narrow internal solid infills"
-msgstr "Détecter un remplissage plein interne étroit"
+msgstr "Détecter les remplissages solides internes étroits"
msgid ""
"This option will auto-detect narrow internal solid infill areas. If enabled, "
@@ -19645,6 +20052,9 @@ msgstr "valeur invalide "
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "Valeur non valide lorsque le mode vase en spirale est activé: "
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "largeur de ligne trop importante "
@@ -19909,11 +20319,17 @@ msgid "Debug level"
msgstr "Niveau de débogage"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
+msgstr ""
+"Définit le niveau de journalisation du débogage. 0 :fatal, 1 :erreur, 2 :"
+"avertissement, 3 :info, 4 :débogage, 5 :trace\n"
+
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
msgstr ""
-"Définit le niveau de journalisation du débogage. 0 :fatal, 1 :erreur, "
-"2 :avertissement, 3 :info, 4 :débogage, 5 :trace\n"
msgid "Enable timelapse for print"
msgstr "Activer le timelapse pour l’impression"
@@ -20055,8 +20471,8 @@ msgid ""
"Specific for sequential printing. Zero-based index of currently printed "
"object."
msgstr ""
-"Spécifique à l’impression séquentielle. Index basé sur zéro de l’objet en "
-"cours d’impression."
+"Spécifique à l’impression séquentielle. Index commençant à zéro de l’objet "
+"en cours d’impression."
msgid "Has wipe tower"
msgstr "Possède une tour d’essuyage"
@@ -20071,7 +20487,7 @@ msgid ""
"Zero-based index of the first extruder used in the print. Same as "
"initial_tool."
msgstr ""
-"Index basé sur zéro du premier extrudeur utilisé dans l’impression. "
+"Index commençant à zéro du premier extrudeur utilisé dans l’impression. "
"Identique à initial_tool."
msgid "Initial tool"
@@ -20081,7 +20497,7 @@ msgid ""
"Zero-based index of the first extruder used in the print. Same as "
"initial_extruder."
msgstr ""
-"Index basé sur zéro du premier extrudeur utilisé dans l’impression. "
+"Index commençant à zéro du premier extrudeur utilisé dans l’impression. "
"Identique à initial_extruder."
msgid "Is extruder used?"
@@ -20254,8 +20670,8 @@ msgid ""
"Example: 'x:100% y:50% z:100%'."
msgstr ""
"Contient une chaîne de caractères contenant des informations sur la mise à "
-"l’échelle appliquée aux différents objets. L’indexation des objets est basée "
-"sur le zéro (le premier objet a l’index 0).\n"
+"l’échelle appliquée aux différents objets. L’indexation des objets commence "
+"à zéro (le premier objet a l’index 0).\n"
"Exemple : « x:100% y:50% z:100% »."
msgid "Input filename without extension"
@@ -20396,7 +20812,7 @@ msgid "Generating infill toolpath"
msgstr "Génération d'un parcours d'outil de remplissage"
msgid "Z contouring"
-msgstr ""
+msgstr "Contournage en Z"
msgid "Detect overhangs for auto-lift"
msgstr "Détectez les surplombs pour un levage automatique"
@@ -20475,13 +20891,13 @@ msgstr "Le fichier fourni n'a pas pu être lu car il est vide"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
-"Format de fichier inconnu : le fichier d'entrée doit porter "
-"l'extension .stl, .obj ou .amf (.xml)."
+"Format de fichier inconnu : le fichier d'entrée doit porter l'extension ."
+"stl, .obj ou .amf (.xml)."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
-"Format de fichier inconnu : le fichier d'entrée doit porter l'extension "
-".3mf, .zip ou .amf."
+"Format de fichier inconnu : le fichier d'entrée doit porter "
+"l'extension .3mf, .zip ou .amf."
msgid "load_obj: failed to parse"
msgstr "load_obj : échec de l'analyse"
@@ -20952,7 +21368,7 @@ msgid "Complete Calibration"
msgstr "Calibration complète"
msgid "Fine Calibration based on flow ratio"
-msgstr "Calibration précise basée sur le ratio du débit"
+msgstr "Calibration précise d’après le ratio du débit"
msgid "Title"
msgstr "Titre"
@@ -21023,7 +21439,8 @@ msgid "%s is not compatible with %s"
msgstr "%s n’est pas compatible avec %s"
msgid "TPU is not supported for Flow Dynamics Auto-Calibration."
-msgstr "Le TPU n’est pas supporté pour la calibration dynamique du débit."
+msgstr ""
+"Le TPU n’est pas pris en charge pour la calibration dynamique du débit."
msgid ""
"Selected nozzle temperatures are incompatible. For multi-material printing, "
@@ -21031,6 +21448,11 @@ msgid ""
"temperature range of the other filaments. Otherwise, nozzle clogging or "
"printer damage may occur."
msgstr ""
+"Les températures de buse sélectionnées sont incompatibles. Pour l’impression "
+"multi-matériaux, la température de buse de chaque filament doit se situer "
+"dans la plage de température de buse recommandée des autres filaments. "
+"Sinon, un bouchage de la buse ou des dommages à l’imprimante peuvent "
+"survenir."
msgid "Sync AMS and nozzle information"
msgstr "Synchroniser les informations de l'AMS et de la buse"
@@ -21089,7 +21511,7 @@ msgstr ""
"Ce type de machine ne peut contenir que %d résultats historiques par buse."
msgid "Edit Flow Dynamics Calibration"
-msgstr "Editer la calibration dynamique du débit"
+msgstr "Modifier la calibration dynamique du débit"
#, c-format, boost-format
msgid ""
@@ -21460,24 +21882,33 @@ msgid "NOTE: High values may cause Layer shift (>%s)"
msgstr "NOTE : Des valeurs élevées peuvent causer un décalage de couche (>%s)"
msgid "Flow Ratio Calibration"
-msgstr ""
+msgstr "Calibration du rapport de débit"
msgid "Calibration Test Type"
-msgstr ""
+msgstr "Type de test de calibration"
msgid "Pass 1 (Coarse)"
-msgstr ""
+msgstr "Passe 1 (grossière)"
msgid "Pass 2 (Fine)"
-msgstr ""
+msgstr "Passe 2 (fine)"
msgid "YOLO (Recommended)"
msgstr "YOLO (Recommandé)"
msgid "YOLO (Perfectionist)"
-msgstr ""
+msgstr "YOLO (perfectionniste)"
msgid "Top Surface Pattern"
+msgstr "Motif de la surface supérieure"
+
+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"
@@ -21506,6 +21937,48 @@ msgstr ""
msgid "Upload"
msgstr "Envoyer"
+msgid "Leveling before print"
+msgstr ""
+
+msgid "Time-lapse"
+msgstr "Timelapse"
+
+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"
msgstr "File d’attente d’envoi de l’hôte d’impression"
@@ -21550,9 +22023,6 @@ msgstr ""
"Le type de plateau sélectionné ne correspond pas au fichier. Veuillez "
"confirmer avant de lancer l’impression."
-msgid "Time-lapse"
-msgstr "Timelapse"
-
msgid "Heated Bed Leveling"
msgstr "Mise à niveau du plateau chauffant"
@@ -21562,6 +22032,16 @@ msgstr "Plateau texturé (côté A)"
msgid "Smooth Build Plate (Side B)"
msgstr "Plateau texturé (côté B)"
+#, 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"
msgstr ""
"Impossible d’effectuer une opération booléenne sur les pièces sélectionnées"
@@ -21692,11 +22172,8 @@ msgid "Vendor is not selected, please reselect vendor."
msgstr ""
"Le fournisseur n’est pas sélectionné, veuillez le sélectionner à nouveau."
-#, fuzzy
msgid "Custom vendor is missing, please input custom vendor."
-msgstr ""
-"Le fournisseur personnalisé n’est pas saisi, veuillez saisir le fournisseur "
-"personnalisé."
+msgstr "Le fournisseur personnalisé est manquant, veuillez le saisir."
msgid ""
"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments."
@@ -21756,8 +22233,8 @@ msgstr ""
"Voulez-vous le réécrire ?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
"Nous renommerions les préréglages en « Vendor Type Serial @printer you "
@@ -21950,12 +22427,18 @@ msgid ""
"\n"
"Available nozzle profiles for this printer:"
msgstr ""
+"\n"
+"\n"
+"Profils de buse disponibles pour cette imprimante :"
msgid ""
"\n"
"\n"
"Choose YES to switch existing preset:"
msgstr ""
+"\n"
+"\n"
+"Choisissez OUI pour changer le préréglage existant :"
msgid "Printer Created Successfully"
msgstr "Création d’une imprimante réussie"
@@ -22297,9 +22780,18 @@ msgstr ""
"Sélectionner l'implémentation de l'agent réseau pour la communication avec "
"l'imprimante. Les agents disponibles sont enregistrés au démarrage."
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "Impossible d’obtenir une référence d’imprimante hôte valide"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "Succès !"
@@ -22349,6 +22841,30 @@ msgid "Connection to printers connected via the print host failed."
msgstr ""
"La connexion aux imprimantes connectées via l’hôte d’impression a échoué."
+msgid "3DPrinterOS Cloud upload options"
+msgstr "Options de téléversement vers 3DPrinterOS Cloud"
+
+msgid "Single file"
+msgstr "Fichier unique"
+
+msgid "Project File"
+msgstr "Fichier de projet"
+
+msgid "Project:"
+msgstr "Projet :"
+
+msgid "Printer type:"
+msgstr "Type d’imprimante :"
+
+msgid "Printer type not found, please select manually."
+msgstr "Type d’imprimante introuvable, veuillez le sélectionner manuellement."
+
+msgid "Authorizing..."
+msgstr "Autorisation en cours…"
+
+msgid "Error session check"
+msgstr ""
+
#, c-format, boost-format
msgid "Mismatched type of print host: %s"
msgstr "Type d’hôte d’impression non compatible : %s"
@@ -23122,7 +23638,7 @@ msgid "Global settings"
msgstr "Paramètres globaux"
msgid "Video tutorial"
-msgstr ""
+msgstr "Tutoriel vidéo"
msgid "(Sync with printer)"
msgstr "(Synchroniser avec l'imprimante)"
@@ -23165,12 +23681,27 @@ msgstr ""
"Le compte SimplyPrint n’est pas lié. Allez dans les options de connexion "
"pour le configurer."
+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."
msgstr "La connexion série à Flashforge fonctionne correctement."
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr "Impossible de se connecter à Flashforge via la connexion série"
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "L’état communiqué n’est pas correct."
@@ -23197,16 +23728,18 @@ msgid "Detection radius"
msgstr "Rayon de détection"
msgid "Selected"
-msgstr ""
+msgstr "Sélectionné"
msgid "Auto-generate"
-msgstr ""
+msgstr "Générer automatiquement"
msgid "Generate brim ears using Max angle and Detection radius"
msgstr ""
+"Générer les bordures à oreilles à partir de l’angle max et du rayon de "
+"détection"
msgid "Add or Select"
-msgstr ""
+msgstr "Ajouter ou sélectionner"
msgid ""
"Warning: The brim type is not set to \"painted\", the brim ears will not "
@@ -23219,7 +23752,7 @@ msgid "Set the brim type of this object to \"painted\""
msgstr "Définir le type de bordure de cet objet sur \"peint\""
msgid "invalid brim ears"
-msgstr ""
+msgstr "bordures à oreilles non valides"
msgid "Brim Ears"
msgstr "Bordure à oreilles"
@@ -23388,7 +23921,7 @@ msgid "Number of triangular facets"
msgstr "Nombre de facettes triangulaires"
msgid "Calculating, please wait..."
-msgstr "Calcul en cours, veuillez patienter..."
+msgstr "Calcul en cours, veuillez patienter…"
msgid ""
"The filament may not be compatible with the current machine settings. "
@@ -23514,6 +24047,11 @@ msgid ""
"the surface quality of your overhangs? However, it can cause wall "
"inconsistencies so use carefully!"
msgstr ""
+"Inverser lors du passage pair\n"
+"Saviez-vous que la fonction Inverser lors du passage pair peut "
+"améliorer significativement la qualité de surface de vos surplombs ? Elle "
+"peut toutefois provoquer des irrégularités de paroi, alors utilisez-la avec "
+"précaution !"
#: resources/data/hints.ini: [hint:Cut Tool]
msgid ""
@@ -23789,17 +24327,16 @@ msgstr ""
#: resources/data/hints.ini: [hint:When do you need to print with the printer
#: door opened]
-#, fuzzy
msgid ""
"When do you need to print with the printer door opened?\n"
"Did you know that opening the printer door can reduce the probability of "
"extruder/hotend clogging when printing lower temperature filament with a "
"higher enclosure temperature? More info about this in the Wiki."
msgstr ""
-"Quand il faut imprimer avec la porte de l’imprimante ouverte\n"
-"Saviez-vous que l’ouverture de la porte de l’imprimante peut réduire la "
-"probabilité de blocage de l’extrudeuse/du réchauffeur lors de l’impression "
-"de filament à basse température avec une température de boîtier plus élevée? "
+"Quand faut-il imprimer avec la porte de l’imprimante ouverte ?\n"
+"Saviez-vous que l’ouverture de la porte de l’imprimante peut réduire le "
+"risque de bouchage de l’extrudeur/du hotend lors de l’impression de "
+"filaments à basse température avec une température de boîtier plus élevée ? "
"Plus d’informations à ce sujet dans le Wiki."
#: resources/data/hints.ini: [hint:Avoid warping]
@@ -23814,6 +24351,271 @@ msgstr ""
"déformer, tels que l’ABS, une augmentation appropriée de la température du "
"plateau chauffant peut réduire la probabilité de déformation?"
+#, c-format, boost-format
+#~ msgid ""
+#~ "Failed to connect to OrcaCloud.\n"
+#~ "Please check your network connectivity\n"
+#~ "(HTTP %u): %s"
+#~ msgstr ""
+#~ "Impossible de se connecter à OrcaCloud.\n"
+#~ "Veuillez vérifier votre connexion réseau\n"
+#~ "(HTTP %u) : %s"
+
+#, c-format, boost-format
+#~ msgid ""
+#~ "Failed to connect to OrcaCloud.\n"
+#~ "Please check your network connectivity\n"
+#~ "(HTTP %u)"
+#~ msgstr ""
+#~ "Impossible de se connecter à OrcaCloud.\n"
+#~ "Veuillez vérifier votre connexion réseau\n"
+#~ "(HTTP %u)"
+
+#~ msgid "Cloud Error"
+#~ msgstr "Erreur cloud"
+
+#~ msgid ""
+#~ "This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This "
+#~ "stops the transmission of data to Bambu's cloud services too. Users who "
+#~ "don't use BBL machines or use LAN mode only can safely turn on this "
+#~ "function."
+#~ msgstr ""
+#~ "Ceci désactive tous les services cloud, par exemple Orca Cloud et Bambu "
+#~ "Cloud. Cela arrête également la transmission de données vers les services "
+#~ "cloud de Bambu. Les utilisateurs qui n’utilisent pas de machines BBL ou "
+#~ "uniquement le mode LAN peuvent activer cette fonction sans risque."
+
+#~ 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 ""
+#~ "L’option Essuyage n’est pas disponible lors de l’utilisation du mode "
+#~ "Rétraction Firmware.\n"
+#~ "\n"
+#~ "Voulez-vous désactiver cette option pour activer la Rétraction Firmware ?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\" a été trouvé dans le G-code avant le changement de couche, ce "
+#~ "qui est incompatible avec l’extrusion absolue de l’extrudeur."
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\" a été trouvé dans le G-code de changement de couche, ce qui "
+#~ "est incompatible avec l’extrusion absolue de l’extrudeur."
+
+#, 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 ""
+#~ "Forçage de l’angle des ponts. S’il est laissé à zéro, l’angle des ponts "
+#~ "sera calculé automatiquement. Sinon, l’angle fourni sera utilisé pour les "
+#~ "ponts externes. Utilisez 180° pour un angle nul."
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "Priorité à l’angle de pont interne. S’il est laissé à zéro, l’angle de "
+#~ "pontage sera calculé automatiquement. Dans le cas contraire, l’angle "
+#~ "fourni sera utilisé pour les ponts internes. Utiliser 180° pour l’angle "
+#~ "zéro.\n"
+#~ "\n"
+#~ "Il est recommandé de le laisser à 0, à moins qu’un modèle spécifique "
+#~ "impose de ne pas le faire."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+#~ msgstr ""
+#~ "Contrôle la densité (espacement) des lignes de pont externe. La valeur "
+#~ "par défaut est 100 %.\n"
+#~ "\n"
+#~ "Une densité de pont externe plus faible peut améliorer la fiabilité car "
+#~ "il y a plus d'espace pour la circulation de l'air autour du pont extrudé, "
+#~ "améliorant sa vitesse de refroidissement. Le minimum est de 10 %.\n"
+#~ "\n"
+#~ "Des densités plus élevées peuvent produire des surfaces de pont plus "
+#~ "lisses, car les lignes qui se chevauchent fournissent un soutien "
+#~ "supplémentaire pendant l'impression. Le maximum est de 120 %.\n"
+#~ "Note : Une densité de pont trop élevée peut provoquer du gauchissement ou "
+#~ "de la surextrusion."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "Contrôle la densité (l’espacement) des lignes de pont internes. 100 % "
+#~ "signifie que le pont est plein. La valeur par défaut est 100%.\n"
+#~ "\n"
+#~ " Des ponts internes moins denses peuvent contribuer à réduire le "
+#~ "gonflement de la surface supérieure et à améliorer la fiabilité des ponts "
+#~ "internes, car l’air a plus de place pour circuler autour du pont extrudé, "
+#~ "ce qui améliore sa vitesse de refroidissement.\n"
+#~ "\n"
+#~ "Cette option fonctionne particulièrement bien lorsqu’elle est combinée "
+#~ "avec la deuxième option de pont interne sur le remplissage, ce qui permet "
+#~ "d’améliorer encore la structure du pont interne avant l’extrusion du "
+#~ "remplissage solide."
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "Diminuez légèrement cette valeur (par exemple 0,9) pour réduire la "
+#~ "quantité de matériau pour le pont, afin d’améliorer l’affaissement.\n"
+#~ "\n"
+#~ "Le débit réel du pont utilisé est calculé en multipliant cette valeur par "
+#~ "le rapport de débit du filament et, s’il est défini, par le rapport de "
+#~ "débit de l’objet."
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "Cette valeur détermine l’épaisseur de la couche de pont interne. Il "
+#~ "s’agit de la première couche au-dessus d’un remplissage peu dense. "
+#~ "Diminuez légèrement cette valeur (par exemple 0,9) pour améliorer la "
+#~ "qualité de la surface sur un remplissage peu dense.\n"
+#~ "\n"
+#~ "Le débit du pont interne utilisé est calculé en multipliant cette valeur "
+#~ "par le rapport de débit du pont, le rapport de débit du filament et, s’il "
+#~ "est défini, le rapport de débit de l’objet."
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "Par exemple, un ralentissement supplémentaire sera appliqué lors de "
+#~ "l’impression de surplombs sur des angles aigus comme l’avant de la coque "
+#~ "du Benchy, réduisant ainsi l’enroulement qui s’aggrave sur plusieurs "
+#~ "couches.\n"
+#~ "\n"
+#~ "Il est généralement recommandé d’activer cette option à moins que le "
+#~ "refroidissement de votre imprimante soit suffisamment puissant ou que la "
+#~ "vitesse d’impression soit suffisamment lente pour que le recourbement du "
+#~ "périmètre ne se produise pas. Si vous imprimez avec une vitesse de "
+#~ "périmètre externe élevée, ce paramètre peut introduire de légers "
+#~ "artefacts lors du ralentissement en raison de la grande variance des "
+#~ "vitesses d’impression. Si vous remarquez des artefacts, assurez-vous que "
+#~ "votre avance de pression est réglée correctement.\n"
+#~ "\n"
+#~ "Remarque : lorsque cette option est activée, les périmètres en surplomb "
+#~ "sont traités comme des surplombs, ce qui signifie que la vitesse de "
+#~ "surplomb est appliquée même si le périmètre en surplomb fait partie d’un "
+#~ "pont. Par exemple, lorsque les périmètres sont en surplomb de 100 %, sans "
+#~ "paroi les soutenant par en dessous, la vitesse de surplomb de 100 % sera "
+#~ "appliquée."
+
+#~ 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 ""
+#~ "S'ils sont activés, les ponts sont plus fiables et peuvent couvrir de "
+#~ "plus longues distances, mais ils peuvent sembler moins jolis. S'ils sont "
+#~ "désactivés, les ponts ont une meilleure apparence mais ne sont fiables "
+#~ "que sur de courtes distances."
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "Si cette option est activée, des ponts internes épais seront utilisés. Il "
+#~ "est généralement recommandé d’activer cette fonctionnalité. Pensez "
+#~ "cependant à la désactiver si vous utilisez des buses larges."
+
+#~ msgid ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+#~ msgstr ""
+#~ "Aligne les directions de remplissage et de surface sur l'orientation du "
+#~ "modèle sur la plaque de construction. Lorsqu'activé, les directions de "
+#~ "remplissage tournent avec le modèle pour maintenir des caractéristiques "
+#~ "de résistance optimales."
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "Filament pour imprimer un remplissage interne."
+
+#~ msgid "Filament to print walls."
+#~ msgstr "Filament pour imprimer les parois"
+
+#~ msgid "Solid infill"
+#~ msgstr "Remplissage solide"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "Filament pour l’impression de remplissage solide"
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "Filament pour imprimer les supports et radeaux. « Par défaut » signifie "
+#~ "qu'aucun filament spécifique n'est utilisé comme support et que le "
+#~ "filament actuel est utilisé"
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "Filament pour l'impression des interfaces de support. \"Défaut\" signifie "
+#~ "qu'il n'y a pas de filament spécifique pour l'interface de support et que "
+#~ "le filament actuel est utilisé"
+
#~ msgid "Erase all painting"
#~ msgstr "Effacer tout"
@@ -25888,8 +26690,8 @@ msgstr ""
#~ "modèle. Réglez le « seuil d’une paroi » dans les paramètres avancés ci-"
#~ "dessous pour ajuster la sensibilité de ce qui est considéré comme une "
#~ "surface supérieure. Le « seuil d’une paroi » n’est visible que si ce "
-#~ "paramètre est supérieur à la valeur par défaut de 0,5 ou si l’option "
-#~ "« surfaces supérieures à une paroi » est activée."
+#~ "paramètre est supérieur à la valeur par défaut de 0,5 ou si l’option « "
+#~ "surfaces supérieures à une paroi » est activée."
#, c-format, boost-format
#~ msgid ""
@@ -26718,8 +27520,8 @@ msgstr ""
#~ "thickness (top+bottom solid layers)"
#~ msgstr ""
#~ "Ajoutez du remplissage solide à proximité des surfaces inclinées pour "
-#~ "garantir l'épaisseur verticale de la coque (couches solides "
-#~ "supérieure+inférieure)."
+#~ "garantir l'épaisseur verticale de la coque (couches solides supérieure"
+#~ "+inférieure)."
#~ msgid "Further reduce solid infill on walls (beta)"
#~ msgstr "Réduire davantage le remplissage solide des parois (expérimental)"
diff --git a/localization/i18n/hu/OrcaSlicer_hu.po b/localization/i18n/hu/OrcaSlicer_hu.po
index 15157d7ba8..e6809d1f81 100644
--- a/localization/i18n/hu/OrcaSlicer_hu.po
+++ b/localization/i18n/hu/OrcaSlicer_hu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1036,7 +1036,8 @@ msgstr "Érvénytelen stílus."
#, boost-format
msgid "Style \"%1%\" can't be used and will be removed from a list."
-msgstr "A(z) \"%1%\" stílus nem használható, ezért el lesz távolítva a listából."
+msgstr ""
+"A(z) \"%1%\" stílus nem használható, ezért el lesz távolítva a listából."
msgid "Unset italic"
msgstr "Dőlt kikapcsolása"
@@ -1143,7 +1144,9 @@ msgid "Rotate text Clockwise."
msgstr "Szöveg forgatása az óramutató járásával megegyezően."
msgid "Unlock the text's rotation when moving text along the object's surface."
-msgstr "A szöveg forgatásának feloldása, amikor a szöveget az objektum felületén mozgatod."
+msgstr ""
+"A szöveg forgatásának feloldása, amikor a szöveget az objektum felületén "
+"mozgatod."
msgid "Lock the text's rotation when moving text along the object's surface."
msgstr ""
@@ -1788,8 +1791,8 @@ msgstr "Nyomtató- és filamentprofilok betöltése"
msgid "Creating main window"
msgstr "Főablak létrehozása"
-msgid "Loading current beállítás"
-msgstr "Jelenlegi beállítás betöltése"
+msgid "Loading current preset"
+msgstr ""
msgid "Showing main window"
msgstr "Fő ablak megjelenítése"
@@ -1846,8 +1849,20 @@ msgstr ""
msgid "User logged out"
msgstr "Felhasználó kijelentkezett"
+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!"
-msgstr "a projektfájlokkal kapcsolatos műveletek nem engedélyezettek szeletés közben!"
+msgstr ""
+"a projektfájlokkal kapcsolatos műveletek nem engedélyezettek szeletés közben!"
msgid "Open Project"
msgstr "Projekt megnyitása"
@@ -1859,28 +1874,25 @@ msgstr ""
"A Orca Slicer ezen verziója túl régi és a legfrissebb verzióra kell "
"frissíteni, mielőtt rendesen használható lenne"
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-"Nem sikerült csatlakozni az OrcaCloudhoz.\n"
-"Ellenőrizd a hálózati kapcsolatodat\n"
-"(HTTP %u): %s"
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-"Nem sikerült csatlakozni az OrcaCloudhoz.\n"
-"Ellenőrizd a hálózati kapcsolatodat\n"
-"(HTTP %u)"
-msgid "Cloud Error"
-msgstr "Cloud hiba"
+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 ""
msgid "Retrieving printer information, please try again later."
msgstr "Nyomtatóinformációk lekérése folyamatban, próbáld újra később."
@@ -1936,8 +1948,8 @@ msgid "Privacy Policy Update"
msgstr "Adatvédelmi szabályzat frissítése"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
-msgstr "a Bambu Cloud-profilod (felhasználói azonosító: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
+msgstr "a Orca Cloud-profilod (felhasználói azonosító: \"%s\")"
msgid "your default profile"
msgstr "az alapértelmezett profilod"
@@ -1954,7 +1966,8 @@ msgid ""
msgstr ""
"Meglévő felhasználói beállítások találhatók a %s-ban.\n"
"Szeretnéd áttelepíteni őket OrcaCloud-profilba?\n"
-"Ezzel átmásolja az beállítás értékeket, így azok elérhetők lesznek az új fiókjában."
+"Ezzel átmásolja az beállítás értékeket, így azok elérhetők lesznek az új "
+"fiókjában."
msgid "Migrate User Presets"
msgstr ""
@@ -1982,9 +1995,9 @@ msgid ""
"reduce the preset size by removing custom configurations or use it locally "
"only."
msgstr ""
-"Az beállítás tartalom túl nagy a cloud-al való szinkronizáláshoz "
-"(több mint 1 MB). Csökkentsd a beállítás méretet az egyéni "
-"konfigurációk eltávolításával, vagy használd csak helyileg."
+"Az beállítás tartalom túl nagy a cloud-al való szinkronizáláshoz (több mint "
+"1 MB). Csökkentsd a beállítás méretet az egyéni konfigurációk "
+"eltávolításával, vagy használd csak helyileg."
#, c-format, boost-format
msgid "%s updated from %s to %s"
@@ -2194,6 +2207,9 @@ msgstr "Tórusz"
msgid "Orca Cube"
msgstr "Orca kocka"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Orca tolerancia teszt"
@@ -2976,7 +2992,8 @@ msgid "Failed to connect to cloud service"
msgstr "Nem sikerült csatlakozni a felhőszolgáltatáshoz"
msgid "Please click on the hyperlink above to view the cloud service status"
-msgstr "A felhőszolgáltatás állapotának megtekintéséhez kattints a fenti hivatkozásra"
+msgstr ""
+"A felhőszolgáltatás állapotának megtekintéséhez kattints a fenti hivatkozásra"
msgid "Failed to connect to the printer"
msgstr "Nem sikerült csatlakozni a nyomtatóhoz"
@@ -3385,7 +3402,8 @@ msgstr ""
"nyomtatási feladatot küldesz a nyomtatóra."
msgid "Encountered an unknown error with the Storage status. Please try again."
-msgstr "Ismeretlen hiba történt a tároló állapotával kapcsolatban. Próbáld újra."
+msgstr ""
+"Ismeretlen hiba történt a tároló állapotával kapcsolatban. Próbáld újra."
msgid "Sending G-code file over LAN"
msgstr "G-kód fájl küldése LAN-on keresztül"
@@ -3566,10 +3584,10 @@ msgstr ""
"A nyílt forráskódú szeletelés az együttműködés és a hozzárendelés "
"hagyományán alapul. Az Alessandro Ranellucci és a RepRap közösség által "
"létrehozott Slic3r lerakta az alapot. A Prusa Research által készített "
-"PrusaSlicer erre a munkára épült, a Bambu Studio a PrusaSlicerből "
-"született, a SuperSlicer pedig közösségvezérelt fejlesztésekkel bővítette "
-"ki. Mindegyik projekt az elődök munkáját vitte előre, elismerését fejezve ki"
-" az előbbieknek."
+"PrusaSlicer erre a munkára épült, a Bambu Studio a PrusaSlicerből született, "
+"a SuperSlicer pedig közösségvezérelt fejlesztésekkel bővítette ki. Mindegyik "
+"projekt az elődök munkáját vitte előre, elismerését fejezve ki az "
+"előbbieknek."
msgid ""
"OrcaSlicer began in that same spirit, drawing from PrusaSlicer, BambuStudio, "
@@ -5579,6 +5597,9 @@ msgstr "Túlnyúlások"
msgid "Outline"
msgstr "Körvonal"
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr "Perspektíva"
@@ -5621,7 +5642,7 @@ msgstr "Térfogat:"
msgid "Size:"
msgstr "Méret:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5883,15 +5904,18 @@ msgstr "Beállítás varázsló"
msgid "Show Configuration Folder"
msgstr "Konfigurációs mappa megjelenítése"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "Hálózati teszt megnyitása"
+
msgid "Show Tip of the Day"
msgstr "A nap tippjének megjelenítése"
msgid "Check for Updates"
msgstr "Frissítések keresése"
-msgid "Open Network Test"
-msgstr "Hálózati teszt megnyitása"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "&%s névjegye"
@@ -7234,6 +7258,12 @@ msgstr "Sikeresen exportálva"
msgid "Model file downloaded."
msgstr "Modellfájl letöltve."
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr "Megosztott profilok állnak rendelkezésre ehhez a nyomtatóhoz."
@@ -7275,8 +7305,7 @@ msgid ""
"The application cannot run normally because OpenGL version is lower than "
"3.2.\n"
msgstr ""
-"Az alkalmazás nem futtatható megfelelően, mert az OpenGL verzió 3.2 "
-"alatti.\n"
+"Az alkalmazás nem futtatható megfelelően, mert az OpenGL verzió 3.2 alatti.\n"
msgid "Please upgrade your graphics card driver."
msgstr "Kérlek, frissítsd a grafikus kártya illesztőprogramját."
@@ -7752,7 +7781,8 @@ msgstr ""
msgid ""
"The 3MF file was generated by an older version, loading geometry data only."
msgstr ""
-"A 3MF fájlt egy régebbi verzió hozta létre, csak a geometriai adatok töltődnek be."
+"A 3MF fájlt egy régebbi verzió hozta létre, csak a geometriai adatok "
+"töltődnek be."
msgid "The 3MF file was generated by BambuStudio, loading geometry data only."
msgstr ""
@@ -7814,7 +7844,8 @@ msgstr ""
msgid ""
"The 3MF was created by BambuStudio. Some settings may differ from OrcaSlicer."
msgstr ""
-"A 3MF-et a BambuStudio készítette. Egyes beállítások eltérhetnek az OrcaSlicer-től."
+"A 3MF-et a BambuStudio készítette. Egyes beállítások eltérhetnek az "
+"OrcaSlicer-től."
msgid "Invalid values found in the 3MF:"
msgstr "Érvénytelen értékek találhatók a 3MF-ben:"
@@ -8280,6 +8311,12 @@ msgstr ""
"Nem végezhető logikai művelet a modelleken. Csak a pozitív részek lesznek "
"exportálva."
+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?"
msgstr "Készen áll a nyomtató? A nyomtatólap a helyén van, üres és tiszta?"
@@ -8849,6 +8886,24 @@ msgstr ""
msgid "Graphics"
msgstr "Grafika"
+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"
msgstr "Élsimítás"
@@ -8866,11 +8921,11 @@ msgid ""
"Requires application restart."
msgstr ""
"Állítsd be a Multi-Sample Anti-Aliasing szintjét.\n"
-"A magasabb értékek simább éleket eredményeznek, de a teljesítményre gyakorolt hatás "
-"exponenciális.\n"
+"A magasabb értékek simább éleket eredményeznek, de a teljesítményre "
+"gyakorolt hatás exponenciális.\n"
"Az alacsonyabb értékek javítják a teljesítményt a szaggatott élek árán.\n"
-"Ha le van tiltva, ajánlott az FXAA engedélyezése, hogy minimális teljesítményhatás mellett "
-"csökkentse a szaggatott éleket.\n"
+"Ha le van tiltva, ajánlott az FXAA engedélyezése, hogy minimális "
+"teljesítményhatás mellett csökkentse a szaggatott éleket.\n"
"\n"
"Az alkalmazás újraindítása szükséges."
@@ -8887,7 +8942,8 @@ msgid ""
"Takes effect immediately."
msgstr ""
"Gyors, hozzávetőleges élsimítást alkalmaz képernyőközi átlépésként.\n"
-"Hasznos az MSAA beállítás letiltásához vagy csökkentéséhez a teljesítmény javítása érdekében.\n"
+"Hasznos az MSAA beállítás letiltásához vagy csökkentéséhez a teljesítmény "
+"javítása érdekében.\n"
"\n"
"Azonnal hatályba lép."
@@ -8904,7 +8960,8 @@ msgid ""
"Limits viewport frame rate to reduce GPU load and power usage.\n"
"Set to 0 for unlimited frame rate."
msgstr ""
-"Korlátozza a nézetablak képsebességét a GPU terhelés és az energiafogyasztás csökkentése érdekében.\n"
+"Korlátozza a nézetablak képsebességét a GPU terhelés és az energiafogyasztás "
+"csökkentése érdekében.\n"
"Állítsd 0-ra a korlátlan képkockasebességhez."
msgid "Show FPS overlay"
@@ -8920,14 +8977,17 @@ msgid "Stealth mode"
msgstr "Lopakodó mód"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
-"Ezzel letilt minden felhőszolgáltatást, pl. Orca Cloud és Bambu Cloud. Ez "
-"leállítja az adatok továbbítását a Bambu felhőszolgáltatásai felé is. Azok a "
-"felhasználók, akik nem használnak BBL gépeket vagy csak LAN módot "
-"használnak, biztonságosan bekapcsolhatják ezt a funkciót."
msgid "Network test"
msgstr "Hálózati teszt"
@@ -8956,7 +9016,8 @@ msgstr "Csak stabil frissítések keresése"
msgid "Auto sync user presets (Printer/Filament/Process)"
msgstr ""
-"Felhasználói beállítások automatikus szinkronizálása (Nyomtató/Filament/Folyamat)"
+"Felhasználói beállítások automatikus szinkronizálása (Nyomtató/Filament/"
+"Folyamat)"
msgid "Update built-in Presets automatically."
msgstr "Beépített beállítások automatikus frissítése."
@@ -9088,12 +9149,23 @@ msgid "(Experimental) Keep painted feature after mesh change"
msgstr "(Kísérleti) A festett jellemző megtartása hálócsere után"
msgid ""
-"Attempt to keep painted features (color/seam/support/fuzzy etc.) after changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n"
+"Attempt to keep painted features (color/seam/support/fuzzy etc.) after "
+"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n"
"Highly experimental! Slow and may create artifact."
msgstr ""
-"Megpróbálja tartani a festett jellemzőket (szín/varrat/támasz/fuzzy stb.) az objektumháló megváltoztatása után (például kivágás/újratöltés lemezről/egyszerűsítés/javítás stb.)\n"
+"Megpróbálja tartani a festett jellemzőket (szín/varrat/támasz/fuzzy stb.) az "
+"objektumháló megváltoztatása után (például kivágás/újratöltés lemezről/"
+"egyszerűsítés/javítás stb.)\n"
"Kísérletei szint! Lassú és hibákat hozhat létre."
+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"
msgstr "Rendellenes tároló engedélyezése"
@@ -9462,7 +9534,8 @@ msgstr ""
"szeleteld ->"
msgid "Manually change external spool during printing for multi-color printing"
-msgstr "Többszínű nyomtatáshoz manuálisan cseréld a külső tekercset nyomtatás közben"
+msgstr ""
+"Többszínű nyomtatáshoz manuálisan cseréld a külső tekercset nyomtatás közben"
msgid "Multi-color with external"
msgstr "Többszínű nyomtatás külső tekercssel"
@@ -9841,8 +9914,8 @@ msgid ""
"filament in the external spool."
msgstr ""
"A külső filament típusa ismeretlen, vagy nem egyezik a szeletelőfájlban "
-"szereplő filament típusával. Győződj meg arról, hogy a megfelelő "
-"filamentet helyezted be a külső orsóba."
+"szereplő filament típusával. Győződj meg arról, hogy a megfelelő filamentet "
+"helyezted be a külső orsóba."
msgid "Please refer to Wiki before use->"
msgstr "Használat előtt nézd meg a Wikit ->"
@@ -10227,8 +10300,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Ha a nyomtatófej nélküli időfelvétel engedélyezve van, javasoljuk, hogy "
"helyezz el a tálcán egy \"Időfelvétel törlőtornyot\". Ehhez kattints jobb "
@@ -10718,13 +10791,11 @@ msgid "Retraction when switching material"
msgstr "Visszahúzás anyagváltáskor"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"A törlés opció nem érhető el firmware-es visszahúzási mód használatakor.\n"
-"\n"
-"Letiltsam ezt az opciót a firmware-es visszahúzás engedélyezéséhez?"
msgid "Firmware Retraction"
msgstr "Firmware-ben megadott visszahúzás"
@@ -10795,7 +10866,8 @@ msgstr ""
msgid ""
"Some first-layer and other-layer temperature pairs exceed safety limits.\n"
msgstr ""
-"Egyes első és további réteg hőmérsékletpárok túllépik a biztonsági határértékeket.\n"
+"Egyes első és további réteg hőmérsékletpárok túllépik a biztonsági "
+"határértékeket.\n"
msgid ""
"\n"
@@ -10809,7 +10881,8 @@ msgid ""
"You can go back to edit values, or continue if this is intentional."
msgstr ""
"\n"
-"Visszatérhetsz az értékek szerkesztéséhez, vagy folytathatod, ha ez szándékos."
+"Visszatérhetsz az értékek szerkesztéséhez, vagy folytathatod, ha ez "
+"szándékos."
msgid ""
"\n"
@@ -10841,7 +10914,8 @@ msgid "Right: %s"
msgstr "Jobb: %s"
msgid "Click to reset current value and attach to the global value."
-msgstr "Kattints ide az érték visszaállításához és a globális érték használatához."
+msgstr ""
+"Kattints ide az érték visszaállításához és a globális érték használatához."
msgid "Click to drop current modify and reset to saved value."
msgstr ""
@@ -10948,7 +11022,8 @@ msgstr ""
#, boost-format
msgid "Preset \"%1%\" contains the following unsaved changes:"
-msgstr "A(z) \"%1%\" beállítás a következő elmentetlen változásokat tartalmazza:"
+msgstr ""
+"A(z) \"%1%\" beállítás a következő elmentetlen változásokat tartalmazza:"
#, boost-format
msgid ""
@@ -11449,8 +11524,8 @@ msgid ""
"Failed to initialize the native Wayland GStreamer video sink. Please check "
"your GStreamer GTK plugin installation."
msgstr ""
-"Nem sikerült inicializálni a natív Wayland GStreamer videonyelőt."
-"Ellenőrizd a GStreamer GTK bővítmény telepítését."
+"Nem sikerült inicializálni a natív Wayland GStreamer videonyelőt.Ellenőrizd "
+"a GStreamer GTK bővítmény telepítését."
msgid ""
"Windows Media Player is required for this task! Do you want to enable "
@@ -11491,7 +11566,8 @@ msgstr ""
"gstreamer1.0-libav csomagokat, majd indítsd újra az Orca Slicert.)"
msgid "Cloud agent is not available. Please restart OrcaSlicer and try again."
-msgstr "A cloud ügynök nem érhető el. Indítsd újra az OrcaSlicert és próbáljd újra."
+msgstr ""
+"A cloud ügynök nem érhető el. Indítsd újra az OrcaSlicert és próbáljd újra."
msgid "Bambu Network plug-in not detected."
msgstr "A Bambu Network plug-in nem található."
@@ -12040,7 +12116,8 @@ msgstr ""
"Ellenőrizd a firmware verzióját és állítsd a G-kód változatot „Marlin 2”-re"
msgid "Input shaping is only supported by Klipper, RepRapFirmware and Marlin 2"
-msgstr "A rezgéskompenzációt csak a Klipper, a RepRapFirmware és a Marlin 2 támogatja"
+msgstr ""
+"A rezgéskompenzációt csak a Klipper, a RepRapFirmware és a Marlin 2 támogatja"
msgid "Grouping error: "
msgstr "Csoportosítási hiba: "
@@ -12174,7 +12251,9 @@ msgid "%1% is too tall, and collisions will be caused."
msgstr "%1% túl magas, a nyomtatás során előfordulhatnak ütközések."
msgid " is too close to exclusion area, there may be collisions when printing."
-msgstr " túl közel van a tiltott területhez, a nyomtatás során előfordulhatnak ütközések."
+msgstr ""
+" túl közel van a tiltott területhez, a nyomtatás során előfordulhatnak "
+"ütközések."
msgid ""
" is too close to clumping detection area, there may be collisions when "
@@ -12187,10 +12266,13 @@ msgid "Prime Tower"
msgstr "Törlőtorony"
msgid " is too close to others, and collisions may be caused.\n"
-msgstr " túl közel van más tárgyakhoz, a nyomtatás során előfordulhatnak ütközések.\n"
+msgstr ""
+" túl közel van más tárgyakhoz, a nyomtatás során előfordulhatnak ütközések.\n"
msgid " is too close to exclusion area, and collisions will be caused.\n"
-msgstr " túl közel van a tiltott területhez, a nyomtatás során előfordulhatnak ütközések.\n"
+msgstr ""
+" túl közel van a tiltott területhez, a nyomtatás során előfordulhatnak "
+"ütközések.\n"
msgid ""
" is too close to clumping detection area, and collisions will be caused.\n"
@@ -12219,7 +12301,8 @@ msgid ""
"Control / Slicing / Remove mixed temperature restriction."
msgstr ""
"Ha továbbra is szeretnél nyomtatni, engedélyezheted az opciót itt: "
-"Beállítások / Vezérlés / Szeletelés / Vegyes hőmérséklet korlátozás feloldása."
+"Beállítások / Vezérlés / Szeletelés / Vegyes hőmérséklet korlátozás "
+"feloldása."
msgid "No extrusions under current settings."
msgstr "A jelenlegi beállításokkal nincsenek extrudálások."
@@ -12453,6 +12536,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
msgstr "A rétegmagasság nem lehet nagyobb a fúvóka átmérőjénél."
+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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -12463,18 +12559,14 @@ msgstr ""
"hozzá a \"G92 E0\" parancsot a layer_gcode-hoz."
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"A \"G92 E0\" megtalálható a before_layer_gcode részben, ami nem kompatibilis "
-"az abszolút extrudercímzéssel."
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"A \"G92 E0\" megtalálható a layer_gcode részben, ami nem kompatibilis az "
-"abszolút extrudercímzéssel."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -12579,6 +12671,31 @@ msgstr "Nyomtatható terület"
msgid "Extruder printable area"
msgstr "Extruder nyomtatható területe"
+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"
msgstr "Asztal kizárási terület"
@@ -12631,8 +12748,8 @@ msgid ""
msgstr ""
"A belső szilárd töltés sűrűsége az elefánt lábrétegeinek kompenzálásához.\n"
"A második réteg kezdeti értéke van állítva.\n"
-"A következő rétegek lineárisan sűrűbbé válnak az elefant_foot_compensation_layers "
-"paraméterben megadott magassággal."
+"A következő rétegek lineárisan sűrűbbé válnak az "
+"elefant_foot_compensation_layers paraméterben megadott magassággal."
msgid ""
"Slicing height for each layer. Smaller layer height means more accurate and "
@@ -12645,7 +12762,8 @@ msgid "Printable height"
msgstr "Nyomtatási magasság"
msgid "Maximum printable height which is limited by mechanism of printer."
-msgstr "Maximális nyomtatható magasság a nyomtató mechanikája által korlátozva."
+msgstr ""
+"Maximális nyomtatható magasság a nyomtató mechanikája által korlátozva."
msgid "Extruder printable height"
msgstr "Extruder nyomtatható magassága"
@@ -12661,7 +12779,8 @@ msgid "Preferred orientation"
msgstr "Előnyben részesített orientáció"
msgid "Automatically orient STL files on the Z axis upon initial import."
-msgstr "Az STL fájlok automatikus Z tengely szerinti tájolása első importáláskor."
+msgstr ""
+"Az STL fájlok automatikus Z tengely szerinti tájolása első importáláskor."
msgid "Printer preset names"
msgstr "Nyomtató beállítások neve"
@@ -12717,6 +12836,12 @@ msgstr ""
"A Orca Slicer képes G-kód fájlokat feltölteni a nyomtatóra. Ennek a mezőnek "
"tartalmaznia kell a hitelesítéshez szükséges API-kulcsot vagy jelszót."
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "A nyomtató neve"
@@ -13064,122 +13189,134 @@ msgstr "Külső híd kitöltési iránya"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"Az áthidalás szögének felülbírálása. A 0 érték azt jelenti, hogy az "
-"áthidalás szöge automatikusan kerül kiszámításra. Máskülönben a megadott "
-"érték kerül alkalmazásra. Ha az áthidalást a falakkal párhuzamosra szeretnéd "
-"állítani, használj 180°-os értéket."
msgid "Internal bridge infill direction"
msgstr "Belső híd kitöltési iránya"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"A belső áthidalási szög felülbírálása. Ha 0-n marad, az áthidalási szög "
-"automatikusan kerül kiszámításra. Ellenkező esetben a megadott szög lesz "
-"használva a belső hidakhoz. Nullszöghöz használj 180°-ot.\n"
-"\n"
-"Ajánlott 0-n hagyni, hacsak egy adott modell nem igényel ettől eltérő "
-"beállítást."
msgid "External bridge density"
msgstr "Külső híd sűrűsége"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
-"A külső hídvonalak sűrűségét (távolságát) szabályozza. Az alapértelmezett "
-"érték 100%.\n"
-"\n"
-"Az alacsonyabb sűrűségű külső hidak javíthatják a megbízhatóságot, mert több "
-"hely marad a levegő áramlásának az extrudált híd körül, ami gyorsabb hűlést "
-"eredményez. A minimum 10%.\n"
-"\n"
-"A nagyobb sűrűség simább híd felületeket eredményezhet, mivel az átfedő "
-"vonalak nyomtatás közben további alátámasztást biztosítanak. A maximum "
-"120%.\n"
-"Megjegyzés: A túl nagy hídsűrűség kunkorodást vagy túlextrudálást okozhat."
msgid "Internal bridge density"
msgstr "Belső híd sűrűsége"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"A belső hídvonalak sűrűségét (távolságát) szabályozza. A 100% tömör hidat "
-"jelent. Az alapértelmezett érték 100%.\n"
-"\n"
-"Az alacsonyabb sűrűségű belső hidak segíthetnek csökkenteni a felső felület "
-"párnásodását, és javíthatják a belső hidak megbízhatóságát, mivel több hely "
-"marad a levegő áramlásának az extrudált híd körül, ami gyorsabb hűlést "
-"eredményez.\n"
-"\n"
-"Ez az opció különösen jól működik, ha a kitöltés fölötti második belső híd "
-"beállítással együtt használod, tovább javítva a belső áthidalási szerkezetet "
-"mielőtt a tömör kitöltés extrudálása megtörténne."
msgid "Bridge flow ratio"
msgstr "Áthidalás áramlási sebessége"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Csökkentsd ezt az értéket kissé (például 0,9-re), hogy csökkenjen a hídhoz "
-"felhasznált anyagmennyiség, és javuljon a belógás mértéke.\n"
+
+#, 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"
-"A ténylegesen használt hídáramlás ennek az értéknek, a filament áramlási "
-"arányának, valamint ha be van állítva, az objektum áramlási arányának a "
-"szorzatából adódik."
+"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"
msgstr "Belső híd áramlási aránya"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Ez az érték szabályozza a belső hídréteg vastagságát. Ez a ritka kitöltés "
-"fölötti első réteg. Csökkentsd ezt az értéket kissé (például 0,9-re), hogy "
-"javuljon a felületi minőség a ritka kitöltés fölött.\n"
-"\n"
-"A ténylegesen használt belső hídáramlás ennek az értéknek, a híd áramlási "
-"arányának, a filament áramlási arányának, valamint ha be van állítva, az "
-"objektum áramlási arányának a szorzatából adódik."
msgid "Top surface flow ratio"
msgstr "Felső felület anyagáramlása"
@@ -13534,41 +13671,35 @@ msgstr "Lassítás felkunkorodó kerületeknél"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"Engedélyezd ezt az opciót, hogy a nyomtatás lelassuljon azokon a "
-"területeken, ahol a kerületek felfelé kunkorodhatnak. Például további "
-"lassítás történik meredek sarkoknál lévő túlnyúlások nyomtatásakor, mint a "
-"Benchy hajótestének elején, csökkentve a több rétegen át fokozódó "
-"felkunkorodást.\n"
-"\n"
-"Általában ajánlott ezt az opciót bekapcsolva hagyni, kivéve ha a nyomtató "
-"hűtése elég erős, vagy a nyomtatási sebesség elég alacsony ahhoz, hogy ne "
-"jelentkezzen kerületfelkunkorodás. Ha nagy külső kerületi sebességgel "
-"nyomtatsz, ez a paraméter enyhe hibákat okozhat a lassításkor fellépő nagy "
-"sebességkülönbségek miatt. Ha ilyet tapasztalsz, ellenőrizd, hogy a "
-"nyomáskiegyenlítés megfelelően van-e beállítva.\n"
-"\n"
-"Megjegyzés: Ha ez az opció engedélyezve van, a túlnyúló kerületek "
-"túlnyúlásként lesznek kezelve, vagyis a túlnyúlási sebesség akkor is "
-"alkalmazásra kerül, ha a túlnyúló kerület egy híd része. Például ha a "
-"kerületek 100%-ban túlnyúlnak, és alulról nem támasztja őket fal, akkor a "
-"100%-os túlnyúlási sebesség kerül alkalmazásra."
msgid "mm/s or %"
msgstr "mm/s vagy %"
@@ -13639,8 +13770,9 @@ msgid ""
msgstr ""
"Ez a tényező befolyásolja a karimák anyagának mennyiségét.\n"
"\n"
-"A ténylegesen használt peremáramlást úgy számítjuk ki, hogy ezt az értéket megszorozzuk a "
-"filament áramlási arányával, és ha be van állítva, akkor az objektum áramlási arányával.\n"
+"A ténylegesen használt peremáramlást úgy számítjuk ki, hogy ezt az értéket "
+"megszorozzuk a filament áramlási arányával, és ha be van állítva, akkor az "
+"objektum áramlási arányával.\n"
"\n"
"Megjegyzés: A kapott értéket nem befolyásolja az első réteg áramlási aránya."
@@ -13672,8 +13804,8 @@ msgid ""
"Combine multiple brims into one when they are close to each other. This can "
"improve brim adhesion."
msgstr ""
-"Karimák egybevonása, ha azok közel vannak egymáshoz. Ez "
-"javíthatja a perem tapadását."
+"Karimák egybevonása, ha azok közel vannak egymáshoz. Ez javíthatja a perem "
+"tapadását."
msgid "Brim ears"
msgstr "Karimás fülek"
@@ -13848,26 +13980,25 @@ msgid "Thick external bridges"
msgstr "Vastag külső hidak"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Ha engedélyezve van, az áthidalások megbízhatóbbak, nagyobb távolságokat "
-"tudnak áthidalni, de rosszabbul nézhetnek ki.\n"
-"Ha ki van kapcsolva, az áthidalások jobban néznek ki, de csak a rövidebb "
-"áthidalt távolságokon megbízhatóak."
msgid "Thick internal bridges"
msgstr "Vastag belső hidak"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Ha engedélyezve van, vastag belső hidak lesznek használva. Általában "
-"ajánlott ezt a funkciót bekapcsolva tartani de széles fúvókák használata "
-"esetén azonban érdemes megfontolni a kikapcsolását."
msgid "Extra bridge layers (beta)"
msgstr "Extra hídrétegek (béta)"
@@ -14230,8 +14361,8 @@ msgid ""
msgstr ""
"Az az irány, amerre a kontúrfalhurkok extrudálódnak felülről lefelé nézve.\n"
"A lyukak a kontúrral ellentétes irányban vannak nyomtatva, hogy fenntartsák "
-"az igazodást azokkal a rétegekkel, amelyek kontúrpoligonjai nem teljesek "
-"és megváltoztatják az irányt, ugyanakkor a lyuk részleges kontúrját képezve.\n"
+"az igazodást azokkal a rétegekkel, amelyek kontúrpoligonjai nem teljesek és "
+"megváltoztatják az irányt, ugyanakkor a lyuk részleges kontúrját képezve.\n"
"\n"
"Ez az opció le lesz tiltva, ha a spirálváza mód engedélyezve van."
@@ -15118,13 +15249,11 @@ msgid "Align infill direction to model"
msgstr "Kitöltési irány igazítása a modellhez"
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
-"A kitöltés és a felületi kitöltés irányát a modell tárgyasztalon lévő "
-"tájolásához igazítja. Bekapcsolva a kitöltési irányok együtt forognak a "
-"modellel, hogy megmaradjanak az optimális szilárdsági jellemzők."
msgid "Insert solid layers"
msgstr "Tömör rétegek beszúrása"
@@ -15153,6 +15282,7 @@ msgstr ""
msgid "Z-buckling bias optimization (experimental)"
msgstr "Z-kihajlási torzítás optimalizálása (kísérleti)"
+#, fuzzy, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -15164,8 +15294,8 @@ msgstr ""
"(függőleges) tengely mentén, hogy lerövidítse a tényleges függőleges "
"oszlophosszt és javítsa a Z-tengely összenyomódási kihajlási ellenállását. A "
"filamenthasználat megmarad. Nincs hatása ~30%-os és afeletti ritka kitöltési "
-"sűrűségnél. Csak akkor érvényes, ha a Ritka kitöltési minta Gyroid-ra "
-"van állítva."
+"sűrűségnél. Csak akkor érvényes, ha a Ritka kitöltési minta Gyroid-ra van "
+"állítva."
msgid "Sparse infill pattern"
msgstr "Kitöltési mintázat"
@@ -15258,6 +15388,27 @@ msgid ""
msgstr ""
"A kitöltés ferde vonalainak szöge. A 60° tiszta méhsejtmintát eredményez."
+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"
msgstr "Ritka kitöltés horgonyhossza"
@@ -15348,8 +15499,8 @@ msgid "mm/s² or %"
msgstr "mm/s² vagy %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Gyorsulás a ritkás kitöltéseknél. Ha az érték százalékban van megadva (pl. "
"100%), akkor az alapértelmezett gyorsulás alapján kerül kiszámításra."
@@ -15383,7 +15534,8 @@ msgid "Enable accel_to_decel"
msgstr "accel_to_decel engedélyezése"
msgid "Klipper's max_accel_to_decel will be adjusted automatically."
-msgstr "A Klipper max_accel_to_decel értékét a rendszer automatikusan beállítja"
+msgstr ""
+"A Klipper max_accel_to_decel értékét a rendszer automatikusan beállítja"
msgid "accel_to_decel"
msgstr "accel_to_decel"
@@ -15488,10 +15640,10 @@ msgstr "Teljes ventilátor fordulatszám ennél a rétegnél"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"A ventilátor fordulatszáma lineárisan nő nulláról a "
"\"close_fan_the_first_x_layers\" rétegtől a maximális értékig a "
@@ -15722,8 +15874,8 @@ msgstr ""
"Márványszerű textúrákat hoz létre.\n"
"Voronoi: A felületet voronoi cellákra osztja, és mindegyiket véletlenszerűen "
"kiszorítja. Patchwork textúrát hoz létre.\n"
-"Hullámozás: Egységes hullámzási minta, amely az eredeti útvonaltól balra és jobbra "
-"hullámzik. Ismétlődő minta, szövött megjelenés."
+"Hullámozás: Egységes hullámzási minta, amely az eredeti útvonaltól balra és "
+"jobbra hullámzik. Ismétlődő minta, szövött megjelenés."
msgid "Classic"
msgstr "Klasszikus"
@@ -15796,16 +15948,16 @@ msgid ""
"The shift is applied once every number of layers set by Layers between "
"ripple offset, so layers within the same group are printed identically."
msgstr ""
-"Előre tolja a hullámos fázist a nyomtatási útvonal mentén a hullámhossz meghatározott "
-"százalékával minden rétegperiódusban.\n"
+"Előre tolja a hullámos fázist a nyomtatási útvonal mentén a hullámhossz "
+"meghatározott százalékával minden rétegperiódusban.\n"
"- A 0% minden réteget azonosan tart.\n"
-"- 50% fél hullámhosszal eltolja a mintát, hatékonyan megfordítva a "
-"fázist.\n"
+"- 50% fél hullámhosszal eltolja a mintát, hatékonyan megfordítva a fázist.\n"
"- 100% eltolja a mintát egy teljes hullámhosszal, visszatérve az eredeti "
"fázishoz.\n"
"\n"
-"Az eltolás a hullámosság eltolása közötti rétegek által beállított rétegközzel "
-"érvényesül, így az azonos csoporton belüli rétegek nyomtatása azonos."
+"Az eltolás a hullámosság eltolása közötti rétegek által beállított "
+"rétegközzel érvényesül, így az azonos csoporton belüli rétegek nyomtatása "
+"azonos."
msgid "Layers between ripple offset"
msgstr "A hullámosság eltolása közötti rétegek"
@@ -15821,12 +15973,12 @@ msgid ""
"to 6 are shifted by the configured offset, then layers 7 to 9 return to the "
"base pattern, etc."
msgstr ""
-"Meghatározza, hogy hány egymást követő réteg osztozik ugyanazon a hullámzási fázison az "
-"eltolás alkalmazása előtt.\n"
+"Meghatározza, hogy hány egymást követő réteg osztozik ugyanazon a hullámzási "
+"fázison az eltolás alkalmazása előtt.\n"
"Például:\n"
"- 1 = Az 1. réteg az alap hullámmintával kerül nyomtatásra, majd a 2. réteg "
-"eltolódik a konfigurált eltolás szerint, majd a 3. réteg visszatér az alapmintázathoz, "
-"és így tovább.\n"
+"eltolódik a konfigurált eltolás szerint, majd a 3. réteg visszatér az "
+"alapmintázathoz, és így tovább.\n"
"- 3 = Az 1-től 3-ig rétegek nyomtatása az alap hullámmintával, majd a 4-től "
"6-ig a konfigurált eltolás szerint eltolódik, majd a 7-től 9-ig visszaáll az "
"alapmintázat stb."
@@ -16057,21 +16209,22 @@ msgid ""
"below the one you know it can actually spool at.\n"
"Set to 0 to deactivate."
msgstr ""
-"Egyes részleges hűtőventilátorok nem tudnak pörögni, ha egy bizonyos "
-"PWM munkaciklus alá utasítják őket. Ha 0 fölé állítod, minden nem nulla "
-"részleges hűtési ventilátorparancs legalább erre a százalékra emelkedik, "
-"így a ventilátor megbízhatóan elindul. A 0-s ventilátorparancs (ventilátor "
-"kikapcsolva) mindig pontosan végrhajtódik. Ez a korlátozás minden "
-"második ventilátorszámítás után alkalmazódik (első réteg rámpa, rétegidő "
-"interpoláció, túlnyúlás/híd/tartófelület/vasalás felülbírálása), így a skálázás "
-"továbbra is a [ez az érték, 100%] tartományon belül működik.\n"
-"Ha a firmware már letiltja a ventilátort egy küszöbérték alatt (például a Klipper "
-"[fan] off_below: 0.10 értéke kikapcsolja a ventilátort, ha a parancsolt munkaciklus "
-"10% alatt van), akkor ezt az opciót és a firmware küszöbértékét ideális esetben "
-"ugyanarra az értékre kell állítani. Ezek megfeleltetése (pl. off_below: 0,10 a "
-"Klipperben és 10% itt) garantálja, hogy a szeletelő soha nem ad ki olyan nullától "
-"eltérő értéket, amelyet a firmware csendben ejtene, és a ventilátor soha nem kap "
-"olyan értéket, amely alacsonyabb, mint amiről tudod, hogy ténylegesen képes forogni.\n"
+"Egyes részleges hűtőventilátorok nem tudnak pörögni, ha egy bizonyos PWM "
+"munkaciklus alá utasítják őket. Ha 0 fölé állítod, minden nem nulla "
+"részleges hűtési ventilátorparancs legalább erre a százalékra emelkedik, így "
+"a ventilátor megbízhatóan elindul. A 0-s ventilátorparancs (ventilátor "
+"kikapcsolva) mindig pontosan végrhajtódik. Ez a korlátozás minden második "
+"ventilátorszámítás után alkalmazódik (első réteg rámpa, rétegidő "
+"interpoláció, túlnyúlás/híd/tartófelület/vasalás felülbírálása), így a "
+"skálázás továbbra is a [ez az érték, 100%] tartományon belül működik.\n"
+"Ha a firmware már letiltja a ventilátort egy küszöbérték alatt (például a "
+"Klipper [fan] off_below: 0.10 értéke kikapcsolja a ventilátort, ha a "
+"parancsolt munkaciklus 10% alatt van), akkor ezt az opciót és a firmware "
+"küszöbértékét ideális esetben ugyanarra az értékre kell állítani. Ezek "
+"megfeleltetése (pl. off_below: 0,10 a Klipperben és 10% itt) garantálja, "
+"hogy a szeletelő soha nem ad ki olyan nullától eltérő értéket, amelyet a "
+"firmware csendben ejtene, és a ventilátor soha nem kap olyan értéket, amely "
+"alacsonyabb, mint amiről tudod, hogy ténylegesen képes forogni.\n"
"A deaktiváláshoz állítsd 0-ra."
msgid "%"
@@ -16268,7 +16421,9 @@ msgid "Infill lock depth"
msgstr "Kitöltés rögzítési mélysége"
msgid "The parameter sets the overlapping depth between the interior and skin."
-msgstr "Ez a paraméter a belső rész és a felületi réteg közötti átfedés mélységét állítja be."
+msgstr ""
+"Ez a paraméter a belső rész és a felületi réteg közötti átfedés mélységét "
+"állítja be."
msgid "Skin line width"
msgstr "Felületi vonalszélesség"
@@ -16338,8 +16493,10 @@ msgstr "Csomósodás kizárási területének szondázása"
msgid "Probing exclude area of clumping."
msgstr "Csomósodás kizárási területének szondázása."
-msgid "Filament to print internal sparse infill."
-msgstr "Filament a belső ritkás kitöltésekhez."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -16557,7 +16714,8 @@ msgid ""
"Affects perimeters with a slope less than this angle (degrees).\n"
"A reasonable value is 35. Set to 0 to disable."
msgstr ""
-"Csökkentsd a felső felület kerületének magasságát, hogy megfeleljen a modell élmagasságának.\n"
+"Csökkentsd a felső felület kerületének magasságát, hogy megfeleljen a modell "
+"élmagasságának.\n"
"Befolyásolja az ennél a szögnél (foknál) kisebb lejtésű kerületeket.\n"
"Az ésszerű érték 35. A letiltáshoz állítsd 0-ra."
@@ -16581,7 +16739,9 @@ msgstr ""
"Vezérli a szeletelő síkot is."
msgid "This G-code is inserted at every layer change after the Z lift."
-msgstr "Ez a G-kód minden rétegváltásnál beillesztésre kerül a Z tengely megemelése után."
+msgstr ""
+"Ez a G-kód minden rétegváltásnál beillesztésre kerül a Z tengely megemelése "
+"után."
msgid "Clumping detection G-code"
msgstr "Csomósodásészlelés G-kód"
@@ -17012,7 +17172,8 @@ msgid "For the first"
msgstr "Az első"
msgid "Set special auxiliary cooling fan for the first certain layers."
-msgstr "A speciális kiegészítő hűtőventilátor beállítása az első bizonyos rétegekhez."
+msgstr ""
+"A speciális kiegészítő hűtőventilátor beállítása az első bizonyos rétegekhez."
msgid ""
"Auxiliary fan speed will be ramped up linearly from layer \"For the first\" "
@@ -17023,14 +17184,15 @@ msgid ""
msgstr ""
"A segédventilátor sebessége lineárisan megemelkedik az \"Az első\" rétegtől "
"a maximálisig a \"Teljes ventilátorsebesség\" rétegnél.\n"
-"A rendszer figyelmen kívül hagyja a „teljes ventilátor fordulatszámot” ha alacsonyabb, "
-"mint „Az első”, ebben az esetben a ventilátor a maximális megengedett sebességgel "
-"fog működni „Az első” + 1 rétegben."
+"A rendszer figyelmen kívül hagyja a „teljes ventilátor fordulatszámot” ha "
+"alacsonyabb, mint „Az első”, ebben az esetben a ventilátor a maximális "
+"megengedett sebességgel fog működni „Az első” + 1 rétegben."
msgid ""
"Special auxiliary cooling fan speed, effective only for the first x layers."
msgstr ""
-"Speciális kiegészítő hűtőventilátor sebessége, csak az első x rétegeknél hatásos."
+"Speciális kiegészítő hűtőventilátor sebessége, csak az első x rétegeknél "
+"hatásos."
msgid ""
"The lowest printable layer height for the extruder. Used to limit the "
@@ -17208,8 +17370,21 @@ msgstr ""
"más sebességet használ. A 100%%-os túlnyúlás esetén az áthidaláshoz "
"beállított sebességet használja."
-msgid "Filament to print walls."
-msgstr "A falak nyomtatásához használt filament."
+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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -17391,8 +17566,7 @@ msgid ""
"Experimental feature: Retraction length before cutting off during filament "
"change."
msgstr ""
-"Kísérleti funkció: a visszahúzás hossza a filamentváltás közbeni vágás "
-"előtt."
+"Kísérleti funkció: a visszahúzás hossza a filamentváltás közbeni vágás előtt."
msgid "Long retraction when extruder change"
msgstr "Hosszú visszahúzás extruderváltáskor"
@@ -17727,8 +17901,8 @@ msgid "Role base wipe speed"
msgstr "Szerepalapú törlési sebesség"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -17922,11 +18096,20 @@ msgstr ""
"Az ennél a küszöbértéknél kisebb ritka kitöltési területek belső tömör "
"kitöltéssel helyettesítődnek."
-msgid "Solid infill"
-msgstr "Tömör kitöltés"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "A tömör kitöltés nyomtatásához használt filament."
+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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -18269,7 +18452,8 @@ msgid "Pattern angle"
msgstr "Mintázat szöge"
msgid "Use this setting to rotate the support pattern on the horizontal plane."
-msgstr "Ezzel a beállítással elforgathatod a támasz mintázatát a vízszintes síkon."
+msgstr ""
+"Ezzel a beállítással elforgathatod a támasz mintázatát a vízszintes síkon."
msgid "On build plate only"
msgstr "Csak a tárgyasztaltól"
@@ -18317,12 +18501,10 @@ msgid "Support/raft base"
msgstr "Támasz/tutaj alap"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"A támasz alapjához és a tutaj nyomtatásához használt filament. Az "
-"\"Alapértelmezett\" beállítás választásakor a jelenleg használt filament "
-"kerül felhasználásra."
msgid "Avoid interface filament for base"
msgstr "Kerülje a támaszanyag használatát az alaphoz"
@@ -18353,12 +18535,10 @@ msgid "Support/raft interface"
msgstr "Támasz/tutaj interfész"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"Filament a támasz érintkező felületének nyomtatásához. Az "
-"\"Alapértelmezett\" beállítás választásakor a jelenleg használt filament "
-"kerül felhasználásra."
msgid "Top interface layers"
msgstr "Felső érintkező rétegek"
@@ -18686,8 +18866,8 @@ msgstr "Hőmérséklet-szabályozás aktiválása"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -19458,6 +19638,9 @@ msgstr "érvénytelen érték "
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "Érvénytelen érték spirálváza mód engedélyezésekor: "
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "túl nagy vonalszélesség "
@@ -19714,11 +19897,17 @@ msgid "Debug level"
msgstr "Hibakeresés szintje"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
+msgstr ""
+"A hibakeresési naplózási szint beállítása. 0:fatal, 1:error, 2:warning, 3:"
+"info, 4:debug, 5:trace\n"
+
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
msgstr ""
-"A hibakeresési naplózási szint beállítása. 0:fatal, 1:error, 2:warning, "
-"3:info, 4:debug, 5:trace\n"
msgid "Enable timelapse for print"
msgstr "Időfelvétel engedélyezése a nyomtatáshoz"
@@ -21108,7 +21297,8 @@ msgid ""
"Check your firmware documentation for supported shaper types."
msgstr ""
"RepRap firmware verzió => 3.4.0\n"
-"Ellenőrizd a firmware dokumentációját a támogatott rezgéskompenzátor-típusokhoz."
+"Ellenőrizd a firmware dokumentációját a támogatott rezgéskompenzátor-"
+"típusokhoz."
msgid "Frequency (Start / End): "
msgstr "Frekvencia (Kezdés / Vég): "
@@ -21256,6 +21446,15 @@ msgstr "YOLO (perfekcionista)"
msgid "Top Surface Pattern"
msgstr "Felső felület mintázata"
+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"
msgstr "G-kód küldése a nyomtató gazdagépének"
@@ -21278,6 +21477,48 @@ msgstr "A feltöltendő fájlnév nem végződik \"%s\"-ra. Folytatod?"
msgid "Upload"
msgstr "Feltöltés"
+msgid "Leveling before print"
+msgstr ""
+
+msgid "Time-lapse"
+msgstr "Időzített felvétel"
+
+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"
msgstr "Feltöltési sor nyomtatása"
@@ -21322,9 +21563,6 @@ msgstr ""
"A kiválasztott tárgyasztaltípus nem egyezik a fájlban megadottal. A "
"nyomtatás indítása előtt erősítsd meg."
-msgid "Time-lapse"
-msgstr "Időzített felvétel"
-
msgid "Heated Bed Leveling"
msgstr "Fűtött tárgyasztal szintezése"
@@ -21334,6 +21572,16 @@ msgstr "Texturált tárgyasztal (A oldal)"
msgid "Smooth Build Plate (Side B)"
msgstr "Sima tárgyasztal (B oldal)"
+#, 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"
msgstr "Nem lehet logikai műveletet végrehajtani a kiválasztott tárgyakon"
@@ -21516,8 +21764,8 @@ msgstr ""
"Szeretnéd felülírni?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
"A beállításokat a következő formára nevezzük át: \"Gyártó Típus Sorozat @a "
@@ -22038,9 +22286,18 @@ msgstr ""
"Válaszd ki a nyomtatókommunikációhoz használt hálózati ügynök "
"implementációját. Az elérhető ügynökök indításkor kerülnek regisztrálásra."
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "Nem sikerült érvényes nyomtató hivatkozást lekérni"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "Sikerült!"
@@ -22091,6 +22348,30 @@ msgstr ""
"A nyomtatóállomáson keresztül csatlakoztatott nyomtatókhoz való csatlakozás "
"sikertelen."
+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
msgid "Mismatched type of print host: %s"
msgstr "A nyomtatóállomás típusa nem egyezik: %s"
@@ -22886,12 +23167,27 @@ msgstr ""
"A SimplyPrint-fiók nincs összekapcsolva. A beállításhoz lépj a Csatlakozási "
"beállításokhoz."
+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."
msgstr "A Flashforge soros kapcsolata megfelelően működik."
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr "Nem sikerült soros kapcsolaton keresztül csatlakozni a Flashforge-hoz"
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "A megadott állapot nem megfelelő."
@@ -22920,7 +23216,8 @@ msgid "Auto-generate"
msgstr "Automatikus generálás"
msgid "Generate brim ears using Max angle and Detection radius"
-msgstr "Hozzon létre peremfüleket a Max szög és az észlelési sugár használatával"
+msgstr ""
+"Hozzon létre peremfüleket a Max szög és az észlelési sugár használatával"
msgid "Add or Select"
msgstr "Hozzáadás vagy kiválasztás"
@@ -23227,9 +23524,9 @@ msgid ""
"inconsistencies so use carefully!"
msgstr ""
"Fordítás a párosan\n"
-"Tudtad, hogy a Fordítás a párosan funkció jelentősen javíthatja "
-"a túlnyúlások felületi minőségét? Azonban fal egyenetlenséget okozhat, "
-"ezért óvatosan használjad!"
+"Tudtad, hogy a Fordítás a párosan funkció jelentősen javíthatja a "
+"túlnyúlások felületi minőségét? Azonban fal egyenetlenséget okozhat, ezért "
+"óvatosan használjad!"
#: resources/data/hints.ini: [hint:Cut Tool]
msgid ""
@@ -23523,6 +23820,267 @@ msgstr ""
"tárgyasztal hőmérsékletének növelése csökkentheti a kunkorodás "
"valószínűségét?"
+#~ msgid "Loading current beállítás"
+#~ msgstr "Jelenlegi beállítás betöltése"
+
+#, c-format, boost-format
+#~ msgid ""
+#~ "Failed to connect to OrcaCloud.\n"
+#~ "Please check your network connectivity\n"
+#~ "(HTTP %u): %s"
+#~ msgstr ""
+#~ "Nem sikerült csatlakozni az OrcaCloudhoz.\n"
+#~ "Ellenőrizd a hálózati kapcsolatodat\n"
+#~ "(HTTP %u): %s"
+
+#, c-format, boost-format
+#~ msgid ""
+#~ "Failed to connect to OrcaCloud.\n"
+#~ "Please check your network connectivity\n"
+#~ "(HTTP %u)"
+#~ msgstr ""
+#~ "Nem sikerült csatlakozni az OrcaCloudhoz.\n"
+#~ "Ellenőrizd a hálózati kapcsolatodat\n"
+#~ "(HTTP %u)"
+
+#~ msgid "Cloud Error"
+#~ msgstr "Cloud hiba"
+
+#~ msgid ""
+#~ "This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This "
+#~ "stops the transmission of data to Bambu's cloud services too. Users who "
+#~ "don't use BBL machines or use LAN mode only can safely turn on this "
+#~ "function."
+#~ msgstr ""
+#~ "Ezzel letilt minden felhőszolgáltatást, pl. Orca Cloud és Bambu Cloud. Ez "
+#~ "leállítja az adatok továbbítását a Bambu felhőszolgáltatásai felé is. "
+#~ "Azok a felhasználók, akik nem használnak BBL gépeket vagy csak LAN módot "
+#~ "használnak, biztonságosan bekapcsolhatják ezt a funkciót."
+
+#~ 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 ""
+#~ "A törlés opció nem érhető el firmware-es visszahúzási mód használatakor.\n"
+#~ "\n"
+#~ "Letiltsam ezt az opciót a firmware-es visszahúzás engedélyezéséhez?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "A \"G92 E0\" megtalálható a before_layer_gcode részben, ami nem "
+#~ "kompatibilis az abszolút extrudercímzéssel."
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "A \"G92 E0\" megtalálható a layer_gcode részben, ami nem kompatibilis az "
+#~ "abszolút extrudercímzéssel."
+
+#, 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 ""
+#~ "Az áthidalás szögének felülbírálása. A 0 érték azt jelenti, hogy az "
+#~ "áthidalás szöge automatikusan kerül kiszámításra. Máskülönben a megadott "
+#~ "érték kerül alkalmazásra. Ha az áthidalást a falakkal párhuzamosra "
+#~ "szeretnéd állítani, használj 180°-os értéket."
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "A belső áthidalási szög felülbírálása. Ha 0-n marad, az áthidalási szög "
+#~ "automatikusan kerül kiszámításra. Ellenkező esetben a megadott szög lesz "
+#~ "használva a belső hidakhoz. Nullszöghöz használj 180°-ot.\n"
+#~ "\n"
+#~ "Ajánlott 0-n hagyni, hacsak egy adott modell nem igényel ettől eltérő "
+#~ "beállítást."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+#~ msgstr ""
+#~ "A külső hídvonalak sűrűségét (távolságát) szabályozza. Az alapértelmezett "
+#~ "érték 100%.\n"
+#~ "\n"
+#~ "Az alacsonyabb sűrűségű külső hidak javíthatják a megbízhatóságot, mert "
+#~ "több hely marad a levegő áramlásának az extrudált híd körül, ami gyorsabb "
+#~ "hűlést eredményez. A minimum 10%.\n"
+#~ "\n"
+#~ "A nagyobb sűrűség simább híd felületeket eredményezhet, mivel az átfedő "
+#~ "vonalak nyomtatás közben további alátámasztást biztosítanak. A maximum "
+#~ "120%.\n"
+#~ "Megjegyzés: A túl nagy hídsűrűség kunkorodást vagy túlextrudálást okozhat."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "A belső hídvonalak sűrűségét (távolságát) szabályozza. A 100% tömör hidat "
+#~ "jelent. Az alapértelmezett érték 100%.\n"
+#~ "\n"
+#~ "Az alacsonyabb sűrűségű belső hidak segíthetnek csökkenteni a felső "
+#~ "felület párnásodását, és javíthatják a belső hidak megbízhatóságát, mivel "
+#~ "több hely marad a levegő áramlásának az extrudált híd körül, ami gyorsabb "
+#~ "hűlést eredményez.\n"
+#~ "\n"
+#~ "Ez az opció különösen jól működik, ha a kitöltés fölötti második belső "
+#~ "híd beállítással együtt használod, tovább javítva a belső áthidalási "
+#~ "szerkezetet mielőtt a tömör kitöltés extrudálása megtörténne."
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "Csökkentsd ezt az értéket kissé (például 0,9-re), hogy csökkenjen a "
+#~ "hídhoz felhasznált anyagmennyiség, és javuljon a belógás mértéke.\n"
+#~ "\n"
+#~ "A ténylegesen használt hídáramlás ennek az értéknek, a filament áramlási "
+#~ "arányának, valamint ha be van állítva, az objektum áramlási arányának a "
+#~ "szorzatából adódik."
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "Ez az érték szabályozza a belső hídréteg vastagságát. Ez a ritka kitöltés "
+#~ "fölötti első réteg. Csökkentsd ezt az értéket kissé (például 0,9-re), "
+#~ "hogy javuljon a felületi minőség a ritka kitöltés fölött.\n"
+#~ "\n"
+#~ "A ténylegesen használt belső hídáramlás ennek az értéknek, a híd áramlási "
+#~ "arányának, a filament áramlási arányának, valamint ha be van állítva, az "
+#~ "objektum áramlási arányának a szorzatából adódik."
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "Engedélyezd ezt az opciót, hogy a nyomtatás lelassuljon azokon a "
+#~ "területeken, ahol a kerületek felfelé kunkorodhatnak. Például további "
+#~ "lassítás történik meredek sarkoknál lévő túlnyúlások nyomtatásakor, mint "
+#~ "a Benchy hajótestének elején, csökkentve a több rétegen át fokozódó "
+#~ "felkunkorodást.\n"
+#~ "\n"
+#~ "Általában ajánlott ezt az opciót bekapcsolva hagyni, kivéve ha a nyomtató "
+#~ "hűtése elég erős, vagy a nyomtatási sebesség elég alacsony ahhoz, hogy ne "
+#~ "jelentkezzen kerületfelkunkorodás. Ha nagy külső kerületi sebességgel "
+#~ "nyomtatsz, ez a paraméter enyhe hibákat okozhat a lassításkor fellépő "
+#~ "nagy sebességkülönbségek miatt. Ha ilyet tapasztalsz, ellenőrizd, hogy a "
+#~ "nyomáskiegyenlítés megfelelően van-e beállítva.\n"
+#~ "\n"
+#~ "Megjegyzés: Ha ez az opció engedélyezve van, a túlnyúló kerületek "
+#~ "túlnyúlásként lesznek kezelve, vagyis a túlnyúlási sebesség akkor is "
+#~ "alkalmazásra kerül, ha a túlnyúló kerület egy híd része. Például ha a "
+#~ "kerületek 100%-ban túlnyúlnak, és alulról nem támasztja őket fal, akkor a "
+#~ "100%-os túlnyúlási sebesség kerül alkalmazásra."
+
+#~ 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 ""
+#~ "Ha engedélyezve van, az áthidalások megbízhatóbbak, nagyobb távolságokat "
+#~ "tudnak áthidalni, de rosszabbul nézhetnek ki.\n"
+#~ "Ha ki van kapcsolva, az áthidalások jobban néznek ki, de csak a rövidebb "
+#~ "áthidalt távolságokon megbízhatóak."
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "Ha engedélyezve van, vastag belső hidak lesznek használva. Általában "
+#~ "ajánlott ezt a funkciót bekapcsolva tartani de széles fúvókák használata "
+#~ "esetén azonban érdemes megfontolni a kikapcsolását."
+
+#~ msgid ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+#~ msgstr ""
+#~ "A kitöltés és a felületi kitöltés irányát a modell tárgyasztalon lévő "
+#~ "tájolásához igazítja. Bekapcsolva a kitöltési irányok együtt forognak a "
+#~ "modellel, hogy megmaradjanak az optimális szilárdsági jellemzők."
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "Filament a belső ritkás kitöltésekhez."
+
+#~ msgid "Filament to print walls."
+#~ msgstr "A falak nyomtatásához használt filament."
+
+#~ msgid "Solid infill"
+#~ msgstr "Tömör kitöltés"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "A tömör kitöltés nyomtatásához használt filament."
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "A támasz alapjához és a tutaj nyomtatásához használt filament. Az "
+#~ "\"Alapértelmezett\" beállítás választásakor a jelenleg használt filament "
+#~ "kerül felhasználásra."
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "Filament a támasz érintkező felületének nyomtatásához. Az "
+#~ "\"Alapértelmezett\" beállítás választásakor a jelenleg használt filament "
+#~ "kerül felhasználásra."
+
#~ msgid "Erase all painting"
#~ msgstr "Minden festés törlése"
diff --git a/localization/i18n/it/OrcaSlicer_it.po b/localization/i18n/it/OrcaSlicer_it.po
index c45b45eea0..7809137e11 100644
--- a/localization/i18n/it/OrcaSlicer_it.po
+++ b/localization/i18n/it/OrcaSlicer_it.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -510,7 +510,7 @@ msgid "Count"
msgstr ""
msgid "Gap"
-msgstr ""
+msgstr "Gap"
msgid "Spacing"
msgstr "Spaziatura"
@@ -1873,6 +1873,17 @@ msgstr ""
msgid "User logged out"
msgstr "Utente disconnesso"
+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!"
msgstr ""
"non è consentito creare o aprire un file di progetto durante il processo di "
@@ -1888,21 +1899,24 @@ msgstr ""
"La versione di OrcaSlicer è obsoleta. Devi aggiornarla all'ultima versione "
"prima di poter utilizzare normalmente il programma."
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
@@ -1960,8 +1974,8 @@ msgid "Privacy Policy Update"
msgstr "Aggiornamento dell'informativa sulla riservatezza"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
-msgstr "il tuo profilo Bambu Cloud (ID utente: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
+msgstr "il tuo profilo Orca Cloud (ID utente: \"%s\")"
msgid "your default profile"
msgstr "il tuo profilo predefinito"
@@ -2220,6 +2234,9 @@ msgstr "Toroide"
msgid "Orca Cube"
msgstr "Cubo di Orca"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Test di tolleranza di OrcaSlicer"
@@ -5636,6 +5653,9 @@ msgstr "Sporgenze"
msgid "Outline"
msgstr "Contorno"
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr "Prospettiva"
@@ -5678,7 +5698,7 @@ msgstr "Volume:"
msgid "Size:"
msgstr "Dimensione:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5941,15 +5961,18 @@ msgstr "Configurazione Guidata"
msgid "Show Configuration Folder"
msgstr "Mostra cartella di configurazione"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "Apri test di rete"
+
msgid "Show Tip of the Day"
msgstr "Suggerimento del giorno"
msgid "Check for Updates"
msgstr "Verifica aggiornamenti"
-msgid "Open Network Test"
-msgstr "Apri test di rete"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "Inform&azioni su %s"
@@ -7304,6 +7327,12 @@ msgstr "Esportazione riuscita"
msgid "Model file downloaded."
msgstr "File del modello scaricato."
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr "Per questa stampante potrebbero essere disponibili profili condivisi."
@@ -8362,6 +8391,12 @@ msgstr ""
"Impossibile eseguire operazioni booleane sulle maglie del modello. Verranno "
"esportate solo le parti positive."
+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?"
msgstr ""
"La stampante è pronta? Il piano di stampa è in posizione, vuoto e pulito?"
@@ -8940,6 +8975,24 @@ msgstr ""
msgid "Graphics"
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"
msgstr ""
@@ -8997,14 +9050,17 @@ msgid "Stealth mode"
msgstr "Modalità invisibile"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
-"Questa opzione disabilita tutti i servizi cloud, ad esempio Orca Cloud e "
-"Bambu Cloud. Interrompe anche la trasmissione dei dati ai servizi cloud di "
-"Bambu. Gli utenti che non utilizzano macchine BBL o che utilizzano solo la "
-"modalità LAN, possono attivare questa opzione in tutta sicurezza."
msgid "Network test"
msgstr "Test di rete"
@@ -9165,6 +9221,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr "Consenti memoria anomala"
@@ -10314,8 +10378,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Quando si registra un timelapse senza la testina di stampa, si consiglia di "
"aggiungere un \"Timelapse Torre di spurgo\"\n"
@@ -10813,14 +10877,11 @@ msgid "Retraction when switching material"
msgstr "Retrazione quando si cambia materiale"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"La funzione di Spurgo non è disponibile quando si usa la modalità Retrazione "
-"del Firmware.\n"
-"\n"
-"Devo disattivarla per poter abilitare la modalità Retrazione del Firmware?"
msgid "Firmware Retraction"
msgstr "Modalità Retrazione del Firmware"
@@ -11649,16 +11710,16 @@ msgid "Global shortcuts"
msgstr "Scorciatoie globali"
msgid "Pan View"
-msgstr ""
+msgstr "Vista panoramica"
msgid "Rotate View"
-msgstr ""
+msgstr "Ruota vista"
msgid "Middle mouse button"
msgstr ""
msgid "Zoom View"
-msgstr ""
+msgstr "Vista Zoom"
msgid ""
"Auto orients selected objects or all objects. If there are selected objects, "
@@ -12036,8 +12097,8 @@ msgid ""
msgstr ""
"È stato rilevato un aggiornamento importante che deve essere eseguito prima "
"che la stampa possa continuare. Si desidera aggiornare ora? È possibile "
-"effettuare l'aggiornamento anche in un secondo momento da \"Aggiorna "
-"firmware\"."
+"effettuare l'aggiornamento anche in un secondo momento da \"Aggiorna firmware"
+"\"."
msgid ""
"The firmware version is abnormal. Repairing and updating are required before "
@@ -12574,6 +12635,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
msgstr "L'altezza dello strato non può superare il diametro dell'ugello."
+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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -12584,18 +12658,14 @@ msgstr ""
"in virgola mobile. Aggiungi \"G92 E0\" a layer_gcode."
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"\"G92 E0\" trovato in before_layer_gcode, che è incompatibile con "
-"l'indirizzamento assoluto dell'estrusore."
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"\"G92 E0\" trovato in layer_gcode, che è incompatibile con l'indirizzamento "
-"assoluto dell'estrusore."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -12703,6 +12773,31 @@ msgstr "Area di stampa"
msgid "Extruder printable area"
msgstr "Area stampabile dell'estrusore"
+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"
msgstr "Zona piatto esclusa"
@@ -12849,6 +12944,12 @@ msgstr ""
"OrcaSlicer può caricare i file G-code su un host di stampa. Questo campo "
"deve contenere la chiave API o la password richiesta per l'autenticazione."
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "Nome della stampante."
@@ -13213,123 +13314,134 @@ msgstr "Angolo riempimento ponti esterni"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"Sovrascrive l'angolo di riempimento dei ponti. Un valore pari a 0 indica che "
-"l'angolo di riempimento verrà calcolato automaticamente. Il valore fornito "
-"verrà utilizzato per i ponti esterni. Utilizzare 180° per l'angolo zero."
msgid "Internal bridge infill direction"
msgstr "Angolo riempimento ponti interni"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"Sovrascrive l'angolo di riempimento dei ponti interni. Se lasciato a zero, "
-"l'angolo di riempimento verrà calcolato automaticamente. Il valore fornito "
-"verrà utilizzato per i ponti interni. Utilizzare 180° per l'angolo zero.\n"
-"\n"
-"Si consiglia di lasciare questo valore a 0, a meno che il modello non lo "
-"richieda."
msgid "External bridge density"
msgstr "Densità ponti esterni"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
-"Controlla la densità (spaziatura) delle linee del ponte esterno. Il valore "
-"predefinito è 100%.\n"
-"\n"
-"Ponti esterni a densità inferiore possono migliorare l'affidabilità poiché "
-"c'è più spazio per la circolazione dell'aria attorno al ponte estruso, "
-"migliorandone la velocità di raffreddamento. Il minimo è il 10%.\n"
-"\n"
-"Densità più elevate possono produrre superfici del ponte più lisce, poiché "
-"le linee sovrapposte forniscono supporto aggiuntivo durante la stampa. Il "
-"massimo è il 120%.\n"
-"Nota: una densità del ponte troppo alta può causare deformazione o "
-"sovraestrusione."
msgid "Internal bridge density"
msgstr "Densità ponti interni"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"Controlla la densità (spaziatura) delle linee dei ponti interni. 100% indica "
-"un ponte solido. Il valore predefinito è 100%.\n"
-"\n"
-"I ponti interni a densità inferiore possono contribuire a ridurre le lacune "
-"o fori della superficie superiore e a migliorare l'affidabilità, poiché c'è "
-"più spazio per far circolare l'aria attorno al ponte estruso, migliorandone "
-"la velocità di raffreddamento.\n"
-"\n"
-"Questa opzione funziona particolarmente bene se combinata con la seconda "
-"opzione di riempimento dei ponti interni, migliorando ulteriormente la "
-"struttura interna dei ponti prima che il riempimento solido venga estruso."
msgid "Bridge flow ratio"
msgstr "Flusso di stampa ponti"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Diminuisci leggermente questo valore (ad esempio 0,9) per ridurre la "
-"quantità di filamento estruso per i ponti e tendere il materiale.\n"
+
+#, 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"
-"Il flusso di stampa effettivo per i ponti viene calcolato moltiplicando "
-"questo valore con il flusso di stampa del filamento e, se impostato, con il "
-"flusso di stampa dell'oggetto."
+"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"
msgstr "Flusso di stampa ponti interni"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Questo valore regola lo spessore dello strato dei ponti interni. È il primo "
-"strato sopra il riempimento sparso. Ridurre leggermente questo valore (ad "
-"esempio 0,9) per migliorare la qualità della superficie sopra i riempimenti "
-"sparsi.\n"
-"\n"
-"Il flusso di stampa effettivo utilizzato per i ponti interni viene calcolato "
-"moltiplicando questo valore con il flusso di stampa dei ponti, il flusso di "
-"stampa del filamento e, se impostato, con il flusso di stampa dell'oggetto."
msgid "Top surface flow ratio"
msgstr "Flusso di stampa superficie superiore"
@@ -13693,43 +13805,35 @@ msgstr "Rallenta per pareti incurvate"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"Abilita questa opzione per rallentare la stampa nelle aree in cui potrebbero "
-"potenzialmente formarsi deformazioni delle pareti verso l'alto. Ad esempio, "
-"la velocità sarà ridotta ulteriormente durante la stampa di sporgenze su "
-"angoli stretti, come la prua dello scafo della Benchy, riducendo la "
-"deformazione che può accumularsi su più strati.\n"
-"\n"
-"In genere si consiglia di attivare questa opzione a meno che il "
-"raffreddamento della stampante non sia sufficientemente potente o la "
-"velocità di stampa sufficientemente lenta da impedire la deformazione delle "
-"pareti. Se si stampano le pareti esterne con un'elevata velocità, questo "
-"parametro potrebbe introdurre lievi artefatti durante il rallentamento a "
-"causa della grande variazione nella velocità di stampa. Se si notano "
-"artefatti, assicurarsi che l'anticipo di pressione sia regolato "
-"correttamente.\n"
-"\n"
-"Nota: quando questa opzione è abilitata, le pareti sporgenti vengono "
-"trattati come sporgenze, il che significa che la velocità utilizzata per le "
-"sporgenze viene applicata anche se la parete sporgente fa parte di un ponte. "
-"Ad esempio, quando le pareti sono sporgenti al 100%, senza alcun muro che li "
-"supporti dal basso, verrà applicata la velocità per le sporgente al 100%."
msgid "mm/s or %"
msgstr "mm/s o %"
@@ -14016,25 +14120,25 @@ msgid "Thick external bridges"
msgstr "Ponti esterni spessi"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Se abilitato, i ponti sono più affidabili e possono colmare distanze "
-"maggiori, ma potrebbero avere un aspetto peggiore. Se disattivato, avranno "
-"un aspetto migliore ma sono affidabili solo per distanze ridotte."
msgid "Thick internal bridges"
msgstr "Ponti interni spessi"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Se abilitato, verranno utilizzati ponti interni spessi. Di solito si "
-"consiglia di attivare questa funzione. Tuttavia, considera di disattivarlo "
-"se stai utilizzando ugelli di grandi dimensioni."
msgid "Extra bridge layers (beta)"
msgstr "Strati ponte aggiuntivi (beta)"
@@ -15077,9 +15181,9 @@ msgid ""
"this movement should be before the filament is retracted again."
msgstr ""
"Se impostato su un valore diverso da zero, il filamento viene spostato verso "
-"l'ugello tra i singoli movimenti nei tubi di raffreddamento "
-"(\"timbratura\"). Questa opzione configura la durata di questo movimento "
-"prima che il filamento venga nuovamente retratto."
+"l'ugello tra i singoli movimenti nei tubi di raffreddamento (\"timbratura"
+"\"). Questa opzione configura la durata di questo movimento prima che il "
+"filamento venga nuovamente retratto."
msgid "Speed of the first cooling move"
msgstr "Velocità del primo movimento di raffreddamento"
@@ -15328,14 +15432,11 @@ msgid "Align infill direction to model"
msgstr "Allinea direzione riempimento al modello"
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
-"Allinea le direzioni di riempimento e di riempimento superficiale per "
-"seguire l'orientamento del modello sul piano di stampa. Quando abilitato, le "
-"direzioni di riempimento ruotano con il modello per mantenere "
-"caratteristiche di resistenza ottimali."
msgid "Insert solid layers"
msgstr "Inserisci strati solidi"
@@ -15363,6 +15464,7 @@ msgstr ""
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -15463,6 +15565,27 @@ msgstr ""
"L'angolo delle linee inclinate del riempimento. 60° produrrà un nido d'ape "
"puro."
+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"
msgstr "Lunghezza ancoraggio riempimento sparso"
@@ -15553,8 +15676,8 @@ msgid "mm/s² or %"
msgstr "mm/s o %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Accelerazione del riempimento sparso. Se il valore è espresso in percentuale "
"(ad esempio 100%), verrà calcolato in base all'accelerazione predefinita."
@@ -15699,17 +15822,17 @@ msgstr "Velocità massima ventola su strato"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"La velocità della ventola aumenterà in modo lineare da zero nello strato "
"\"close_fan_the_first_x_layers\" al massimo nello strato "
"\"full_fan_speed_layer\". Se inferiore a \"close_fan_the_first_x_layers\", "
"\"full_fan_speed_layer\" verrà ignorato. in tal caso la ventola funzionerà "
-"alla massima velocità consentita nello strato "
-"\"close_fan_the_first_x_layers\" + 1."
+"alla massima velocità consentita nello strato \"close_fan_the_first_x_layers"
+"\" + 1."
msgid "layer"
msgstr "strato"
@@ -16549,8 +16672,10 @@ msgstr "Area di esclusione sondaggio ammassi"
msgid "Probing exclude area of clumping."
msgstr "Area di esclusione sondaggio ammassi."
-msgid "Filament to print internal sparse infill."
-msgstr "Filamento per la stampa del riempimento sparso interno."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -17265,9 +17390,9 @@ msgid ""
"in which case the fan will run at maximum allowed speed at layer \"For the "
"first\" + 1."
msgstr ""
-"La velocità della ventola ausiliaria aumenterà linearmente da \"Per il "
-"primo\" fino al valore massimo impostato su \"Velocità massima ventola su "
-"strato\".\n"
+"La velocità della ventola ausiliaria aumenterà linearmente da \"Per il primo"
+"\" fino al valore massimo impostato su \"Velocità massima ventola su strato"
+"\".\n"
"Il valore \"Velocità massima ventola su strato\" verrà ignorato se inferiore "
"a \"Per il primo\"; in tal caso, la ventola funzionerà alla velocità massima "
"consentita con il valore \"Per il primo\" + 1."
@@ -17461,8 +17586,21 @@ msgstr ""
"utilizza un velocità di stampa differente. Per una sporgenza del 100%%, "
"viene utilizzata la velocità dei ponti."
-msgid "Filament to print walls."
-msgstr "Filamento per stampa pareti."
+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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -17994,8 +18132,8 @@ msgid "Role base wipe speed"
msgstr "Velocità di spurgo basata su ruolo"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -18185,11 +18323,20 @@ msgstr ""
"Le aree di riempimento sparso di dimensioni inferiori a questa soglia "
"vengono sostituite con il riempimento solido interno."
-msgid "Solid infill"
-msgstr "Riempimento solido"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "Filamento utilizzato per stampare il riempimento solido."
+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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -18577,12 +18724,10 @@ msgid "Support/raft base"
msgstr "Base supporto/zattera"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"Filamento per stampare basi di supporto e zattere. \"Predefinito\" indica "
-"che non verrà utilizzato alcun filamento specifico per il supporto e che "
-"sarà utilizzato il filamento corrente."
msgid "Avoid interface filament for base"
msgstr "Evita filamento interfaccia per base"
@@ -18613,12 +18758,10 @@ msgid "Support/raft interface"
msgstr "Interfaccia supporto/zattera"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"Filamento per la stampa delle interfacce di supporto. \"Predefinito\" indica "
-"che non verrà utilizzato alcun filamento specifico per l'interfaccia di "
-"supporto e che sarà utilizzato il filamento corrente."
msgid "Top interface layers"
msgstr "Strati interfaccia superiore"
@@ -18954,8 +19097,8 @@ msgstr "Attiva controllo della temperatura"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -19736,6 +19879,9 @@ msgstr "valore non valido "
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "Valore non valido quando la modalità vaso a spirale è abilitata: "
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "larghezza della linea troppo grande "
@@ -19991,11 +20137,17 @@ msgid "Debug level"
msgstr "Livello di debug"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
+msgstr ""
+"Imposta livello di debug. 0:fatale, 1:errore, 2:avviso, 3:info, 4:debug, 5:"
+"traccia\n"
+
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
msgstr ""
-"Imposta livello di debug. 0:fatale, 1:errore, 2:avviso, 3:info, 4:debug, "
-"5:traccia\n"
msgid "Enable timelapse for print"
msgstr "Abilita timelapse per la stampa"
@@ -20559,13 +20711,13 @@ msgstr "Impossibile leggere il file fornito perché è vuoto"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
-"Formato file sconosciuto: il file di input deve avere "
-"un'estensione .stl, .obj o .amf(.xml)."
+"Formato file sconosciuto: il file di input deve avere un'estensione .stl, ."
+"obj o .amf(.xml)."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
-"Formato file sconosciuto: il file di input deve avere un'estensione .3mf "
-"o .zip.amf."
+"Formato file sconosciuto: il file di input deve avere un'estensione .3mf o ."
+"zip.amf."
msgid "load_obj: failed to parse"
msgstr "load_obj: impossibile analizzare"
@@ -21570,6 +21722,15 @@ msgstr "YOLO (Perfezionista)"
msgid "Top Surface Pattern"
msgstr "Motivo superficie superiore"
+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"
msgstr "Invia G-code all'host di stampa"
@@ -21592,6 +21753,48 @@ msgstr "Il nome del file caricato non finisce con \"%s\". Vuoi continuare?"
msgid "Upload"
msgstr "Carica"
+msgid "Leveling before print"
+msgstr ""
+
+msgid "Time-lapse"
+msgstr "Timelapse"
+
+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"
msgstr "Coda caricamento host di stampa"
@@ -21636,9 +21839,6 @@ msgstr ""
"Il tipo di piatto selezionato non corrisponde al file. Si prega di "
"confermare prima di avviare la stampa."
-msgid "Time-lapse"
-msgstr "Timelapse"
-
msgid "Heated Bed Leveling"
msgstr "Livellamento del piano riscaldato"
@@ -21648,6 +21848,16 @@ msgstr "Piano di stampa ruvido (Lato A)"
msgid "Smooth Build Plate (Side B)"
msgstr "Piano di stampa liscio (Lato B)"
+#, 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"
msgstr "Impossibile eseguire un'operazione booleana sulle parti selezionate"
@@ -21838,12 +22048,12 @@ msgstr ""
"Vuoi riscriverlo?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
-"Rinomineremo i profili come \"Produttore Tipo Seriale @stampante "
-"selezionata\".\n"
+"Rinomineremo i profili come \"Produttore Tipo Seriale @stampante selezionata"
+"\".\n"
"Per aggiungere il profilo per più stampanti, vai alla selezione della "
"stampante"
@@ -22368,9 +22578,18 @@ msgstr ""
"Selezionare l'implementazione dell'agente di rete per la comunicazione con "
"la stampante. Gli agenti disponibili vengono registrati all'avvio."
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "Impossibile ottenere un riferimento host di stampa valido"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "Successo!"
@@ -22422,6 +22641,30 @@ msgid "Connection to printers connected via the print host failed."
msgstr ""
"Connessione alle stampanti collegate tramite l'host di stampa non riuscita."
+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
msgid "Mismatched type of print host: %s"
msgstr "Tipo di host di stampa non corrispondente: %s"
@@ -23222,12 +23465,27 @@ msgstr ""
"Profilo SimplyPrint non collegato. Vai alle opzioni di connessione per "
"configurarlo."
+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."
msgstr "La connessione seriale a Flashforge funziona correttamente."
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr "Impossibile connettersi a Flashforge tramite seriale"
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "Lo stato fornito non è corretto."
@@ -23863,6 +24121,250 @@ msgstr ""
"aumentare in modo appropriato la temperatura del piano riscaldato può "
"ridurre la probabilità di deformazione?"
+#~ msgid ""
+#~ "This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This "
+#~ "stops the transmission of data to Bambu's cloud services too. Users who "
+#~ "don't use BBL machines or use LAN mode only can safely turn on this "
+#~ "function."
+#~ msgstr ""
+#~ "Questa opzione disabilita tutti i servizi cloud, ad esempio Orca Cloud e "
+#~ "Bambu Cloud. Interrompe anche la trasmissione dei dati ai servizi cloud "
+#~ "di Bambu. Gli utenti che non utilizzano macchine BBL o che utilizzano "
+#~ "solo la modalità LAN, possono attivare questa opzione in tutta sicurezza."
+
+#~ 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 ""
+#~ "La funzione di Spurgo non è disponibile quando si usa la modalità "
+#~ "Retrazione del Firmware.\n"
+#~ "\n"
+#~ "Devo disattivarla per poter abilitare la modalità Retrazione del Firmware?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\" trovato in before_layer_gcode, che è incompatibile con "
+#~ "l'indirizzamento assoluto dell'estrusore."
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\" trovato in layer_gcode, che è incompatibile con "
+#~ "l'indirizzamento assoluto dell'estrusore."
+
+#, 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 ""
+#~ "Sovrascrive l'angolo di riempimento dei ponti. Un valore pari a 0 indica "
+#~ "che l'angolo di riempimento verrà calcolato automaticamente. Il valore "
+#~ "fornito verrà utilizzato per i ponti esterni. Utilizzare 180° per "
+#~ "l'angolo zero."
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "Sovrascrive l'angolo di riempimento dei ponti interni. Se lasciato a "
+#~ "zero, l'angolo di riempimento verrà calcolato automaticamente. Il valore "
+#~ "fornito verrà utilizzato per i ponti interni. Utilizzare 180° per "
+#~ "l'angolo zero.\n"
+#~ "\n"
+#~ "Si consiglia di lasciare questo valore a 0, a meno che il modello non lo "
+#~ "richieda."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+#~ msgstr ""
+#~ "Controlla la densità (spaziatura) delle linee del ponte esterno. Il "
+#~ "valore predefinito è 100%.\n"
+#~ "\n"
+#~ "Ponti esterni a densità inferiore possono migliorare l'affidabilità "
+#~ "poiché c'è più spazio per la circolazione dell'aria attorno al ponte "
+#~ "estruso, migliorandone la velocità di raffreddamento. Il minimo è il "
+#~ "10%.\n"
+#~ "\n"
+#~ "Densità più elevate possono produrre superfici del ponte più lisce, "
+#~ "poiché le linee sovrapposte forniscono supporto aggiuntivo durante la "
+#~ "stampa. Il massimo è il 120%.\n"
+#~ "Nota: una densità del ponte troppo alta può causare deformazione o "
+#~ "sovraestrusione."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "Controlla la densità (spaziatura) delle linee dei ponti interni. 100% "
+#~ "indica un ponte solido. Il valore predefinito è 100%.\n"
+#~ "\n"
+#~ "I ponti interni a densità inferiore possono contribuire a ridurre le "
+#~ "lacune o fori della superficie superiore e a migliorare l'affidabilità, "
+#~ "poiché c'è più spazio per far circolare l'aria attorno al ponte estruso, "
+#~ "migliorandone la velocità di raffreddamento.\n"
+#~ "\n"
+#~ "Questa opzione funziona particolarmente bene se combinata con la seconda "
+#~ "opzione di riempimento dei ponti interni, migliorando ulteriormente la "
+#~ "struttura interna dei ponti prima che il riempimento solido venga estruso."
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "Diminuisci leggermente questo valore (ad esempio 0,9) per ridurre la "
+#~ "quantità di filamento estruso per i ponti e tendere il materiale.\n"
+#~ "\n"
+#~ "Il flusso di stampa effettivo per i ponti viene calcolato moltiplicando "
+#~ "questo valore con il flusso di stampa del filamento e, se impostato, con "
+#~ "il flusso di stampa dell'oggetto."
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "Questo valore regola lo spessore dello strato dei ponti interni. È il "
+#~ "primo strato sopra il riempimento sparso. Ridurre leggermente questo "
+#~ "valore (ad esempio 0,9) per migliorare la qualità della superficie sopra "
+#~ "i riempimenti sparsi.\n"
+#~ "\n"
+#~ "Il flusso di stampa effettivo utilizzato per i ponti interni viene "
+#~ "calcolato moltiplicando questo valore con il flusso di stampa dei ponti, "
+#~ "il flusso di stampa del filamento e, se impostato, con il flusso di "
+#~ "stampa dell'oggetto."
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "Abilita questa opzione per rallentare la stampa nelle aree in cui "
+#~ "potrebbero potenzialmente formarsi deformazioni delle pareti verso "
+#~ "l'alto. Ad esempio, la velocità sarà ridotta ulteriormente durante la "
+#~ "stampa di sporgenze su angoli stretti, come la prua dello scafo della "
+#~ "Benchy, riducendo la deformazione che può accumularsi su più strati.\n"
+#~ "\n"
+#~ "In genere si consiglia di attivare questa opzione a meno che il "
+#~ "raffreddamento della stampante non sia sufficientemente potente o la "
+#~ "velocità di stampa sufficientemente lenta da impedire la deformazione "
+#~ "delle pareti. Se si stampano le pareti esterne con un'elevata velocità, "
+#~ "questo parametro potrebbe introdurre lievi artefatti durante il "
+#~ "rallentamento a causa della grande variazione nella velocità di stampa. "
+#~ "Se si notano artefatti, assicurarsi che l'anticipo di pressione sia "
+#~ "regolato correttamente.\n"
+#~ "\n"
+#~ "Nota: quando questa opzione è abilitata, le pareti sporgenti vengono "
+#~ "trattati come sporgenze, il che significa che la velocità utilizzata per "
+#~ "le sporgenze viene applicata anche se la parete sporgente fa parte di un "
+#~ "ponte. Ad esempio, quando le pareti sono sporgenti al 100%, senza alcun "
+#~ "muro che li supporti dal basso, verrà applicata la velocità per le "
+#~ "sporgente al 100%."
+
+#~ 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 ""
+#~ "Se abilitato, i ponti sono più affidabili e possono colmare distanze "
+#~ "maggiori, ma potrebbero avere un aspetto peggiore. Se disattivato, "
+#~ "avranno un aspetto migliore ma sono affidabili solo per distanze ridotte."
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "Se abilitato, verranno utilizzati ponti interni spessi. Di solito si "
+#~ "consiglia di attivare questa funzione. Tuttavia, considera di "
+#~ "disattivarlo se stai utilizzando ugelli di grandi dimensioni."
+
+#~ msgid ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+#~ msgstr ""
+#~ "Allinea le direzioni di riempimento e di riempimento superficiale per "
+#~ "seguire l'orientamento del modello sul piano di stampa. Quando abilitato, "
+#~ "le direzioni di riempimento ruotano con il modello per mantenere "
+#~ "caratteristiche di resistenza ottimali."
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "Filamento per la stampa del riempimento sparso interno."
+
+#~ msgid "Filament to print walls."
+#~ msgstr "Filamento per stampa pareti."
+
+#~ msgid "Solid infill"
+#~ msgstr "Riempimento solido"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "Filamento utilizzato per stampare il riempimento solido."
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "Filamento per stampare basi di supporto e zattere. \"Predefinito\" indica "
+#~ "che non verrà utilizzato alcun filamento specifico per il supporto e che "
+#~ "sarà utilizzato il filamento corrente."
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "Filamento per la stampa delle interfacce di supporto. \"Predefinito\" "
+#~ "indica che non verrà utilizzato alcun filamento specifico per "
+#~ "l'interfaccia di supporto e che sarà utilizzato il filamento corrente."
+
#~ msgid "Erase all painting"
#~ msgstr "Cancella tutto"
@@ -25708,10 +26210,9 @@ msgstr ""
#~ "\n"
#~ "\n"
#~ "Per impostazione predefinita, i piccoli bridge interni vengono filtrati e "
-#~ "il riempimento solido interno viene stampato direttamente sul "
-#~ "riempimento.Questo metodo funziona bene nella maggior parte dei casi, "
-#~ "velocizzando la stampa senza compromettere troppo la qualità della "
-#~ "superficie superiore.\n"
+#~ "il riempimento solido interno viene stampato direttamente sul riempimento."
+#~ "Questo metodo funziona bene nella maggior parte dei casi, velocizzando la "
+#~ "stampa senza compromettere troppo la qualità della superficie superiore.\n"
#~ "\n"
#~ "Tuttavia, in modelli fortemente inclinati o curvi, soprattutto se si "
#~ "utilizza una densità di riempimento troppo bassa, potrebbe comportare "
@@ -25925,13 +26426,12 @@ msgstr ""
#~ "nostro wiki.\n"
#~ "\n"
#~ "Di solito la calibrazione non è necessaria. Quando si avvia una stampa a "
-#~ "singolo colore/materiale, con l'opzione \"calibrazione dinamica del "
-#~ "flusso\" selezionata nel menu di avvio della stampa, la stampante seguirà "
-#~ "il vecchio modo, calibrando il filamento prima della stampa; Quando si "
-#~ "avvia una stampa multicolore/materiale, la stampante utilizzerà il "
-#~ "parametro di compensazione predefinito per il filamento durante ogni "
-#~ "cambio di filamento, che avrà un buon risultato nella maggior parte dei "
-#~ "casi.\n"
+#~ "singolo colore/materiale, con l'opzione \"calibrazione dinamica del flusso"
+#~ "\" selezionata nel menu di avvio della stampa, la stampante seguirà il "
+#~ "vecchio modo, calibrando il filamento prima della stampa; Quando si avvia "
+#~ "una stampa multicolore/materiale, la stampante utilizzerà il parametro di "
+#~ "compensazione predefinito per il filamento durante ogni cambio di "
+#~ "filamento, che avrà un buon risultato nella maggior parte dei casi.\n"
#~ "\n"
#~ "Si prega di notare che ci sono alcuni casi che renderanno il risultato "
#~ "della calibrazione non affidabile: utilizzo di una piastra di texture per "
diff --git a/localization/i18n/ja/OrcaSlicer_ja.po b/localization/i18n/ja/OrcaSlicer_ja.po
index a7ea831179..45d4bb4453 100644
--- a/localization/i18n/ja/OrcaSlicer_ja.po
+++ b/localization/i18n/ja/OrcaSlicer_ja.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -506,7 +506,7 @@ msgid "Count"
msgstr ""
msgid "Gap"
-msgstr ""
+msgstr "ギャップ"
msgid "Spacing"
msgstr "間隔"
@@ -1833,6 +1833,17 @@ msgstr "変更したプリセットをデフォルトとして保存できます
msgid "User logged out"
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!"
msgstr "スライス中には、プロジェクトを新規作成や開くことができません"
@@ -1846,21 +1857,24 @@ msgstr ""
"現在のOrca Slicerはバージョンが古いため使用できません、アップデートしてくださ"
"い。"
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
@@ -1916,7 +1930,7 @@ msgid "Privacy Policy Update"
msgstr "プライバシーポリシーの更新"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
msgstr ""
msgid "your default profile"
@@ -2166,6 +2180,9 @@ msgstr "Torus"
msgid "Orca Cube"
msgstr "Orca Cube"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Orca公差テスト"
@@ -2225,7 +2242,7 @@ msgid "Support Enforcer"
msgstr "サポート増強器"
msgid "Change part type"
-msgstr ""
+msgstr "部品タイプを変更"
msgid "Set as an individual object"
msgstr "個別オブジェクトとして設定"
@@ -5180,7 +5197,7 @@ msgid "Filament change times"
msgstr "フィラメント交換回数"
msgid "Tool changes"
-msgstr ""
+msgstr "ツールチェンジ"
msgid "Color change"
msgstr "色変更"
@@ -5443,6 +5460,9 @@ msgstr "オーバーハング"
msgid "Outline"
msgstr "アウトライン"
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr "パースペクティブ"
@@ -5459,7 +5479,7 @@ msgid "Paint Toolbar"
msgstr "ペイント ツールバー"
msgid "part selection"
-msgstr ""
+msgstr "パーツ選択"
msgid "Explosion Ratio"
msgstr "分解比率"
@@ -5485,7 +5505,7 @@ msgstr "ボリューム"
msgid "Size:"
msgstr "サイズ:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5743,15 +5763,18 @@ msgstr "セットアップ ウィザード"
msgid "Show Configuration Folder"
msgstr "構成フォルダを表示"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "ネットワークテストを開く"
+
msgid "Show Tip of the Day"
msgstr "「毎日のヒント」を表示"
msgid "Check for Updates"
msgstr "アップデートを確認"
-msgid "Open Network Test"
-msgstr "ネットワークテストを開く"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "%s について"
@@ -6038,7 +6061,7 @@ msgid "Flow ratio"
msgstr "流量比"
msgid "Flow Rate Calibration"
-msgstr ""
+msgstr "流量比キャリブレーション"
msgid "Retraction"
msgstr "リトラクション"
@@ -7070,6 +7093,12 @@ msgstr "エクスポートが成功しました。"
msgid "Model file downloaded."
msgstr "モデルファイルがダウンロードされました。"
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr ""
@@ -8079,6 +8108,12 @@ 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?"
msgstr ""
"プリンター準備はできていますか?プリントシートの上は空で、きれいな状態で装着"
@@ -8636,6 +8671,24 @@ msgstr "ファイルロード後のプリンタープリセット同期の選択
msgid "Graphics"
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"
msgstr ""
@@ -8693,9 +8746,16 @@ msgid "Stealth mode"
msgstr "ステルスモード"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
msgid "Network test"
@@ -8854,6 +8914,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr "異常なストレージを許可"
@@ -9939,8 +10007,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"ヘッド無しのタイムラプスビデオを録画する時に、「タイムラプスプライムタワー」"
"を追加してください。プレートで右クリックして、「プリミティブを追加」→「タイム"
@@ -10410,14 +10478,11 @@ msgid "Retraction when switching material"
msgstr "素材変更時のリトラクション"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"ファームウェアリトラクションモード使用時はワイプオプションが利用できませ"
-"ん。\n"
-"\n"
-"ファームウェアリトラクションを有効にするためにワイプを無効にしますか?"
msgid "Firmware Retraction"
msgstr "ファームウェアリトラクション"
@@ -11172,16 +11237,16 @@ msgid "Global shortcuts"
msgstr "ショートカット"
msgid "Pan View"
-msgstr ""
+msgstr "移動"
msgid "Rotate View"
-msgstr ""
+msgstr "回転"
msgid "Middle mouse button"
msgstr ""
msgid "Zoom View"
-msgstr ""
+msgstr "ズーム"
msgid ""
"Auto orients selected objects or all objects. If there are selected objects, "
@@ -11483,6 +11548,8 @@ msgid ""
"Connection failed! If your IP and Access Code is correct, \n"
"please move to step 3 for troubleshooting network issues"
msgstr ""
+"接続に失敗しました!IPとアクセスコードが正しい場合は、\n"
+"ネットワーク問題のトラブルシューティングのステップ3に進んでください。"
msgid "Connection failed! Please refer to the wiki page."
msgstr "接続に失敗しました!Wikiページを参照してください。"
@@ -12029,6 +12096,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -12039,18 +12119,14 @@ msgstr ""
"に \"G92 E0 \"を追加する。"
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"before_layer_gcode に \"G92 E0\" が見つかりましたが、これはエクストルーダーの"
-"絶対アドレッシングと互換性がありません。"
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"layer_gcode に \"G92 E0\" が見つかりましたが、これはエクストルーダーの絶対ア"
-"ドレッシングと互換性がありません。"
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -12133,6 +12209,31 @@ msgstr "造形可能領域"
msgid "Extruder printable area"
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"
msgstr "除外領域"
@@ -12249,6 +12350,12 @@ msgid ""
"contain the API Key or the password required for authentication."
msgstr "APIキーとパスワードを入力してください。"
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "プリンター名"
@@ -12527,23 +12634,42 @@ msgstr "外部ブリッジインフィル方向"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"ブリッジ角度。値が0の場合は自動計算となります。0°を使用したい場合は180を入力"
-"していください。"
msgid "Internal bridge infill direction"
msgstr "内部ブリッジインフィル方向"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
msgid "External bridge density"
@@ -12551,54 +12677,90 @@ msgstr "外部ブリッジ密度"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
msgid "Internal bridge density"
msgstr "内部ブリッジ密度"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
msgid "Bridge flow ratio"
msgstr "ブリッジ流量"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
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"
msgstr "内部ブリッジフロー率"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
msgid "Top surface flow ratio"
@@ -12846,22 +13008,34 @@ msgstr "カールした外周のスローダウン"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
msgid "mm/s or %"
@@ -13105,20 +13279,24 @@ msgid "Thick external bridges"
msgstr "厚い外部ブリッジ"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"有効になる場合、より長いブリッジを造形できますが、仕上がりが劣る可能性があり"
-"ます。"
msgid "Thick internal bridges"
msgstr "厚い内部ブリッジ"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
msgid "Extra bridge layers (beta)"
@@ -13292,6 +13470,8 @@ msgid ""
"Line pattern of internal solid infill. if the detect narrow internal solid "
"infill be enabled, the concentric pattern will be used for the small area."
msgstr ""
+"内部ソリッドインフィルのラインパターン:「狭い内部ソリッドインフィルを検出」"
+"が有効になっている場合、小さなエリアには同心円パターンが使用されます。"
msgid ""
"Line width of outer wall. If expressed as a %, it will be computed over the "
@@ -13607,7 +13787,7 @@ msgstr ""
"転・停止の頻度を減らします。"
msgid "Don't slow down outer walls"
-msgstr ""
+msgstr "外周壁の速度を低下させない"
msgid ""
"If enabled, this setting will ensure external perimeters are not slowed down "
@@ -13619,6 +13799,12 @@ msgid ""
"3. To avoid printing at speeds which cause VFAs (fine artifacts) on the "
"external walls"
msgstr ""
+"この設定を有効にすると、最小レイヤー時間を満たすために外周壁の速度が低下する"
+"のを防ぎます。以下のようなケースで特に効果的です:\n"
+"1. 光沢フィラメントの印刷時に、艶のムラを防ぐため\n"
+"2. 外周壁の速度変化によって発生する、Zバンディングのような微細なアーティファ"
+"クトを防ぐため\n"
+"3. 外周壁にVFAs(微細なアーティファクト)が出る原因となる低速印刷を避けるため"
msgid "Layer time"
msgstr "積層時間"
@@ -13643,10 +13829,10 @@ msgstr ""
"右クリックでシステムデフォルトにリセット。"
msgid "Filament notes"
-msgstr ""
+msgstr "フィラメントノート"
msgid "You can put your notes regarding the filament here."
-msgstr ""
+msgstr "フィラメントに関するメモをここに記入できます。"
msgid "Required nozzle HRC"
msgstr "ノズルHRC"
@@ -13742,6 +13928,9 @@ msgid ""
"on the temperature of the first filament or the highest temperature of the "
"printed filaments."
msgstr ""
+"このオプションは、スライス時のベッド温度の設定方法を決定します。最初のフィラ"
+"メントの温度に基づくか、印刷するフィラメントの最高温度に基づくかを選択できま"
+"す。"
msgid "By First filament"
msgstr "最初のフィラメント基準"
@@ -13782,7 +13971,7 @@ msgid ""
msgstr ""
msgid "Max volumetric speed multinomial coefficients"
-msgstr ""
+msgstr "最大体積速度の多項式係数"
msgid "Shrinkage (XY)"
msgstr ""
@@ -13905,53 +14094,63 @@ msgid ""
msgstr ""
msgid "Wipe tower cooling"
-msgstr ""
+msgstr "ワイプタワー冷却"
msgid "Temperature drop before entering filament tower"
-msgstr ""
+msgstr "フィラメントタワーに入る前に温度を下げる"
msgid "Interface layer pre-extrusion distance"
-msgstr ""
+msgstr "インターフェース層の事前押出し距離"
msgid ""
"Pre-extrusion distance for prime tower interface layer (where different "
"materials meet)."
msgstr ""
+"異なる材料が接するプライムタワーのインターフェース層における、事前押出し距離"
+"です。"
msgid "Interface layer pre-extrusion length"
-msgstr ""
+msgstr "インターフェース層の事前押出し長さ"
msgid ""
"Pre-extrusion length for prime tower interface layer (where different "
"materials meet)."
msgstr ""
+"異なる材料が接するプライムタワーのインターフェース層における、事前押出しの長"
+"さです。"
msgid "Tower ironing area"
-msgstr ""
+msgstr "タワーアイロニング領域"
msgid ""
"Ironing area for prime tower interface layer (where different materials "
"meet)."
msgstr ""
+"異なる材料が接するプライムタワーのインターフェース層に適用される、アイロニン"
+"グの領域です。"
msgid "mm²"
msgstr "mm²"
msgid "Interface layer purge length"
-msgstr ""
+msgstr "インターフェース層のパージ長さ"
msgid ""
"Purge length for prime tower interface layer (where different materials "
"meet)."
msgstr ""
+"異なる材料が接するプライムタワーのインターフェース層における、パージの長さで"
+"す。"
msgid "Interface layer print temperature"
-msgstr ""
+msgstr "インターフェース層の造形温度"
msgid ""
"Print temperature for prime tower interface layer (where different materials "
"meet). If set to -1, use max recommended nozzle temperature."
msgstr ""
+"異なる材料が接するプライムタワーのインターフェース層に使用する造形温度で"
+"す。-1 に設定すると、推奨ノズル温度の最大値が使用されます。"
msgid "Speed of the last cooling move"
msgstr "最後の冷却移動の速度"
@@ -14022,6 +14221,8 @@ msgid ""
"When changing the extruder, it is recommended to extrude a certain length of "
"filament from the original extruder. This helps minimize nozzle oozing."
msgstr ""
+"押出機を交換する際は、元の押出機から一定長さのフィラメントを押し出すことをお"
+"勧めします。これにより、ノズルのオーズを最小限に抑えることができます。"
msgid "Support material"
msgstr "サポート材料"
@@ -14037,7 +14238,7 @@ msgid "The filament is printable in extruder."
msgstr "このフィラメントはエクストルーダーで印刷可能です。"
msgid "Softening temperature"
-msgstr ""
+msgstr "軟化温度"
msgid ""
"The material softens at this temperature, so when the bed temperature is "
@@ -14055,7 +14256,7 @@ msgid "money/kg"
msgstr "USD/kg"
msgid "Vendor"
-msgstr ""
+msgstr "ベンダー"
msgid "Vendor of filament. For show only."
msgstr ""
@@ -14092,9 +14293,10 @@ msgid "Align infill direction to model"
msgstr "インフィル方向をモデルに合わせる"
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
msgid "Insert solid layers"
@@ -14112,11 +14314,12 @@ msgstr "マルチラインフィル"
msgid ""
"Using multiple lines for the infill pattern, if supported by infill pattern."
-msgstr ""
+msgstr "充填パターンが対応している場合は、複数のラインを使って充填します。"
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -14211,6 +14414,27 @@ msgid ""
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
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"
msgstr ""
@@ -14228,10 +14452,10 @@ msgid ""
msgstr ""
msgid "0 (no open anchors)"
-msgstr ""
+msgstr "0(開いているアンカーなし)"
msgid "1000 (unlimited)"
-msgstr ""
+msgstr "1000 (無制限)"
msgid "Maximum length of the infill anchor"
msgstr "最長インフィルアンカー"
@@ -14277,9 +14501,11 @@ msgid "mm/s² or %"
msgstr "mm/s² 或は %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
+"スパースインフィルの加速度です。値がパーセンテージ(例:100%)で指定された場"
+"合、デフォルトの加速度を基に計算されます。"
msgid ""
"Acceleration of internal solid infill. If the value is expressed as a "
@@ -14302,7 +14528,7 @@ msgid ""
msgstr ""
msgid "Enable accel_to_decel"
-msgstr ""
+msgstr "加減速制御を有効にする"
msgid "Klipper's max_accel_to_decel will be adjusted automatically."
msgstr ""
@@ -14398,10 +14624,10 @@ msgstr "最大回転速度の積層"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
msgid "layer"
@@ -14459,7 +14685,7 @@ msgid ""
msgstr ""
msgid "Ironing inset"
-msgstr ""
+msgstr "アイロニングインセット"
msgid ""
"Filament-specific override for ironing inset. This allows you to customize "
@@ -14513,13 +14739,13 @@ msgid ""
msgstr "ポイント間の平均距離"
msgid "Apply fuzzy skin to first layer"
-msgstr ""
+msgstr "一層目にファジースキンを適用"
msgid "Whether to apply fuzzy skin on the first layer."
-msgstr ""
+msgstr "一層目にファジースキンを適用するかどうかを指定します。"
msgid "Fuzzy skin generator mode"
-msgstr ""
+msgstr "ファジースキンの生成モード"
#, c-format, boost-format
msgid ""
@@ -14555,7 +14781,7 @@ msgid "Combined"
msgstr ""
msgid "Fuzzy skin noise type"
-msgstr ""
+msgstr "ファジースキンのノイズタイプ"
msgid ""
"Noise type to use for fuzzy skin generation:\n"
@@ -14589,12 +14815,14 @@ msgid "Ripple"
msgstr ""
msgid "Fuzzy skin feature size"
-msgstr ""
+msgstr "ファジースキンの特徴サイズ"
msgid ""
"The base size of the coherent noise features, in mm. Higher values will "
"result in larger features."
msgstr ""
+"ノイズパターンの基本サイズ(mm)。値を大きくすると、より大きなパターンになり"
+"ます。"
msgid "Fuzzy Skin Noise Octaves"
msgstr ""
@@ -14603,14 +14831,18 @@ msgid ""
"The number of octaves of coherent noise to use. Higher values increase the "
"detail of the noise, but also increase computation time."
msgstr ""
+"使用するノイズのオクターブ数。値を大きくするとディテールが増えますが、計算時"
+"間も増加します。"
msgid "Fuzzy skin noise persistence"
-msgstr ""
+msgstr "ファジースキンのノイズ減衰率"
msgid ""
"The decay rate for higher octaves of the coherent noise. Lower values will "
"result in smoother noise."
msgstr ""
+"高次オクターブにおけるノイズの減衰率を指定します。値を小さくすると、より滑ら"
+"かなノイズになります。"
msgid "Number of ripples per layer"
msgstr ""
@@ -14650,7 +14882,7 @@ msgid ""
msgstr ""
msgid "Filter out tiny gaps"
-msgstr ""
+msgstr "微小な隙間を除外"
msgid "Layers and Perimeters"
msgstr "積層と境界"
@@ -14669,7 +14901,7 @@ msgstr ""
"す。"
msgid "Precise Z height"
-msgstr ""
+msgstr "正確なZの高さ"
msgid ""
"Enable this to get precise Z height of object after slicing. It will get the "
@@ -14753,7 +14985,7 @@ msgid "HRC"
msgstr "HRC"
msgid "Printer structure"
-msgstr ""
+msgstr "プリンタ構造"
msgid "The physical arrangement and components of a printing device."
msgstr ""
@@ -14771,10 +15003,10 @@ msgid "Delta"
msgstr ""
msgid "Best object position"
-msgstr ""
+msgstr "最適なオブジェクト位置"
msgid "Best auto arranging position in range [0,1] w.r.t. bed shape."
-msgstr ""
+msgstr "ベッド形状に対する最適な自動配置位置(範囲 [0,1])を設定します。"
msgid ""
"Enable this option if machine has auxiliary part cooling fan. G-code "
@@ -14844,7 +15076,7 @@ msgid "money/h"
msgstr ""
msgid "Support control chamber temperature"
-msgstr ""
+msgstr "チャンバー温度の制御サポート"
msgid ""
"This option is enabled if machine support controlling chamber temperature\n"
@@ -14852,7 +15084,7 @@ msgid ""
msgstr ""
msgid "Support air filtration"
-msgstr ""
+msgstr "Support air filtration"
msgid ""
"Enable this if printer support air filtration\n"
@@ -14896,7 +15128,7 @@ msgstr ""
"りません。"
msgid "Exclude objects"
-msgstr ""
+msgstr "オブジェクトを除外"
msgid "Enable this option to add EXCLUDE OBJECT command in G-code."
msgstr ""
@@ -14930,6 +15162,8 @@ msgid ""
"This parameter adds a slight displacement to each layer of infill to create "
"a cross texture."
msgstr ""
+"このパラメータは、インフィルの各層にわずかな変位を加え、クロステクスチャを作"
+"成します。"
msgid "Sparse infill rotation template"
msgstr "スパースインフィル回転テンプレート"
@@ -14982,25 +15216,25 @@ msgid "Skin infill depth"
msgstr "スキンインフィル深さ"
msgid "The parameter sets the depth of skin."
-msgstr ""
+msgstr "このパラメーターはスキンの深さを設定します。"
msgid "Infill lock depth"
msgstr "インフィルロック深さ"
msgid "The parameter sets the overlapping depth between the interior and skin."
-msgstr ""
+msgstr "このパラメーターは、内部とスキンが重なる深さを設定します。"
msgid "Skin line width"
msgstr "スキンライン幅"
msgid "Adjust the line width of the selected skin paths."
-msgstr ""
+msgstr "選択したスキンパスの線幅を調整します。"
msgid "Skeleton line width"
msgstr "スケルトンライン幅"
msgid "Adjust the line width of the selected skeleton paths."
-msgstr ""
+msgstr "選択したスケルトンパスの線幅を調整します。"
msgid "Symmetric infill Y axis"
msgstr "Y軸対称インフィル"
@@ -15042,8 +15276,10 @@ msgstr "クランピングのプロービング除外エリア"
msgid "Probing exclude area of clumping."
msgstr "クランピングのプロービング除外エリア。"
-msgid "Filament to print internal sparse infill."
-msgstr "スパース インフィルを造形時使用するフィラメントです。"
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -15083,22 +15319,26 @@ msgid "Name of parent profile."
msgstr ""
msgid "Interface shells"
-msgstr ""
+msgstr "インターフェースシェル"
msgid ""
"Force the generation of solid shells between adjacent materials/volumes. "
"Useful for multi-extruder prints with translucent materials or manual "
"soluble support material."
msgstr ""
+"隣接するマテリアル/ボリューム間に強制的にソリッド(塗りつぶし)シェルを生成しま"
+"す。 半透明材料または可溶性サポート材を使用したマルチエクストルーダーのプリン"
+"トに役立ちます。"
msgid "Maximum width of a segmented region"
-msgstr ""
+msgstr "分割領域の最大幅"
msgid "Maximum width of a segmented region. Zero disables this feature."
msgstr ""
+"セグメント化された領域の最大幅。値が 0 の場合、この機能は無効になります。"
msgid "Interlocking depth of a segmented region"
-msgstr ""
+msgstr "分割領域のかみ合わせ深さ"
msgid ""
"Interlocking depth of a segmented region. It will be ignored if "
@@ -15106,8 +15346,8 @@ msgid ""
"\"mmu_segmented_region_interlocking_depth\" is bigger than "
"\"mmu_segmented_region_max_width\". Zero disables this feature."
msgstr ""
-"セグメント化された領域の連動深さ。mmu_segmented_region_max_width \"が0か、"
-"\"mmu_segmented_region_interlocking_depth \"が "
+"セグメント化された領域の連動深さ。mmu_segmented_region_max_width \"が0"
+"か、\"mmu_segmented_region_interlocking_depth \"が "
"\"mmu_segmented_region_max_width \"より大きい場合は無視される。ゼロはこの機能"
"を無効にする。"
@@ -15133,7 +15373,7 @@ msgid "Interlocking direction"
msgstr "インターロックの方向"
msgid "Orientation of interlock beams."
-msgstr ""
+msgstr "インターロックビームの向き"
msgid "Interlocking beam layers"
msgstr "インターロックビームの層"
@@ -15189,7 +15429,7 @@ msgid "All solid layers"
msgstr "全てのソリッド積層"
msgid "Ironing Pattern"
-msgstr ""
+msgstr "アイロニングパターン"
msgid "The pattern that will be used when ironing."
msgstr ""
@@ -15264,7 +15504,7 @@ msgid "This G-code is inserted at every layer change after the Z lift."
msgstr "積層が変わる直後に実行するG-codeです。"
msgid "Clumping detection G-code"
-msgstr ""
+msgstr "クラミング検出G-code"
msgid "Supports silent mode"
msgstr "サイレントモード"
@@ -15606,10 +15846,10 @@ msgid ""
msgstr ""
msgid "For the first"
-msgstr ""
+msgstr "最初に"
msgid "Set special auxiliary cooling fan for the first certain layers."
-msgstr ""
+msgstr "最初の指定層に対して補助冷却ファンを設定します。"
msgid ""
"Auxiliary fan speed will be ramped up linearly from layer \"For the first\" "
@@ -15778,7 +16018,20 @@ msgstr ""
"この設定により、線幅に対するオーバーハングの割合を検出し、異なる速度で造形し"
"ます。100%%のオーバーハングの場合、ブリッジの速度が使用されます。"
-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 ""
msgid ""
@@ -15793,7 +16046,7 @@ msgid "Number of walls of every layer."
msgstr "壁面の層数です。"
msgid "Alternate extra wall"
-msgstr ""
+msgstr "代替エクストラウォール"
msgid ""
"This setting adds an extra wall to every other layer. This way the infill "
@@ -15826,13 +16079,13 @@ msgid "Printer type"
msgstr "プリンタータイプ"
msgid "Type of the printer."
-msgstr ""
+msgstr "プリンターのタイプ。"
msgid "Printer notes"
-msgstr ""
+msgstr "プリンターメモ"
msgid "You can put your notes regarding the printer here."
-msgstr ""
+msgstr "プリンターに関するメモをここに記入できます。"
msgid "Printer variant"
msgstr "プリンターバリエーション"
@@ -15926,7 +16179,7 @@ msgid ""
msgstr ""
msgid "Retraction distance when cut"
-msgstr ""
+msgstr "カット時の後退距離"
msgid ""
"Experimental feature: Retraction length before cutting off during filament "
@@ -15934,10 +16187,10 @@ msgid ""
msgstr ""
msgid "Long retraction when extruder change"
-msgstr ""
+msgstr "押出機切り替え時のロングリトラクション"
msgid "Retraction distance when extruder change"
-msgstr ""
+msgstr "押出機切替時のリトラクション距離"
msgid "Z-hop height"
msgstr ""
@@ -16023,13 +16276,13 @@ msgid "Top and Bottom"
msgstr ""
msgid "Direct Drive"
-msgstr ""
+msgstr "ダイレクトドライブ"
msgid "Bowden"
msgstr "ボーデン"
msgid "Extra length on restart"
-msgstr ""
+msgstr "再開時の追加長さ"
msgid ""
"When the retraction is compensated after the travel move, the extruder will "
@@ -16060,7 +16313,7 @@ msgid ""
msgstr ""
msgid "Use firmware retraction"
-msgstr ""
+msgstr "ファームウェアリトラクションを使用"
msgid ""
"This experimental setting uses G10 and G11 commands to have the firmware "
@@ -16109,7 +16362,7 @@ msgstr ""
"成するものです。"
msgid "Seam gap"
-msgstr ""
+msgstr "継ぎ目ギャップ"
msgid ""
"In order to reduce the visibility of the seam in a closed loop extrusion, "
@@ -16123,17 +16376,20 @@ msgstr ""
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
msgstr ""
+"Use scarf joint to minimize seam visibility and increase seam strength."
msgid "Conditional scarf joint"
-msgstr ""
+msgstr "Conditional scarf joint"
msgid ""
"Apply scarf joints only to smooth perimeters where traditional seams do not "
"conceal the seams at sharp corners effectively."
msgstr ""
+"従来のシームが鋭角部でシームを十分に隠せない場合にのみ、滑らかな外周にスカー"
+"フ継手を適用してください。"
msgid "Conditional angle threshold"
-msgstr ""
+msgstr "Conditional angle threshold"
msgid ""
"This option sets the threshold angle for applying a conditional scarf joint "
@@ -16176,46 +16432,51 @@ msgid "This factor affects the amount of material for scarf joints."
msgstr ""
msgid "Scarf start height"
-msgstr ""
+msgstr "スカーフ開始高さ"
msgid ""
"Start height of the scarf.\n"
"This amount can be specified in millimeters or as a percentage of the "
"current layer height. The default value for this parameter is 0."
msgstr ""
+"Start height of the scarf.\n"
+"This amount can be specified in millimeters or as a percentage of the "
+"current layer height. The default value for this parameter is 0."
msgid "Scarf around entire wall"
-msgstr ""
+msgstr "壁全体にスカーフを巻く"
msgid "The scarf extends to the entire length of the wall."
-msgstr ""
+msgstr "斜め継ぎ目は壁の全長にわたって延長されます。"
msgid "Scarf length"
-msgstr ""
+msgstr "スカーフの長さ"
msgid ""
"Length of the scarf. Setting this parameter to zero effectively disables the "
"scarf."
msgstr ""
+"斜め継ぎ目の長さ。このパラメータをゼロに設定すると、斜め継ぎ目は実質的に無効"
+"になります。"
msgid "Scarf steps"
-msgstr ""
+msgstr "スカーフのステップ"
msgid "Minimum number of segments of each scarf."
-msgstr ""
+msgstr "各斜め継ぎ目の最小セグメント数"
msgid "Scarf joint for inner walls"
-msgstr ""
+msgstr "内壁用のスカーフ継ぎ目"
msgid "Use scarf joint for inner walls as well."
-msgstr ""
+msgstr "内壁にも斜め継ぎ目を使用"
msgid "Role base wipe speed"
msgstr ""
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -16244,7 +16505,7 @@ msgid ""
msgstr ""
msgid "Wipe speed"
-msgstr ""
+msgstr "拭き上げ速度"
msgid ""
"The wipe speed is determined by the speed setting specified in this "
@@ -16268,7 +16529,7 @@ msgid ""
msgstr ""
msgid "Skirt height"
-msgstr ""
+msgstr "スカートの高さ"
msgid "How many layers of skirt. Usually only one layer."
msgstr ""
@@ -16354,10 +16615,19 @@ msgstr ""
"スパース インフィルの面積がこの値以下の場合、ソリッド インフィルに変換されま"
"す"
-msgid "Solid infill"
-msgstr "ソリッドインフィル"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+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 ""
msgid ""
@@ -16377,7 +16647,7 @@ msgstr ""
"で、シームはありません。"
msgid "Smooth Spiral"
-msgstr ""
+msgstr "スムーススパイラル"
msgid ""
"Smooth Spiral smooths out X and Y moves as well, resulting in no visible "
@@ -16385,7 +16655,7 @@ msgid ""
msgstr ""
msgid "Max XY Smoothing"
-msgstr ""
+msgstr "最大XYスムージング"
#, no-c-format, no-boost-format
msgid ""
@@ -16567,6 +16837,9 @@ msgid ""
"triangle mesh slicing. The gap closing operation may reduce the final print "
"resolution, therefore it is advisable to keep the value reasonably low."
msgstr ""
+"Cracks smaller than 2x gap closing radius are being filled during the "
+"triangle mesh slicing. The gap closing operation may reduce the final print "
+"resolution, therefore it is advisable to keep the value reasonably low."
msgid "Slicing Mode"
msgstr "スライシングモード"
@@ -16575,12 +16848,14 @@ msgid ""
"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to "
"close all holes in the model."
msgstr ""
+"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to "
+"close all holes in the model."
msgid "Regular"
msgstr "レギュラー"
msgid "Even-odd"
-msgstr ""
+msgstr "Even-odd"
msgid "Close holes"
msgstr "穴を閉じる"
@@ -16630,10 +16905,10 @@ msgid "XY separation between an object and its support."
msgstr "オブジェクトとサポートのXY距離です。"
msgid "Support/object first layer gap"
-msgstr ""
+msgstr "サポート/オブジェクト一層目のギャップ"
msgid "XY separation between an object and its support at the first layer."
-msgstr ""
+msgstr "1層目でのオブジェクトとサポートの間のXY方向の間隔"
msgid "Pattern angle"
msgstr "パターン角度"
@@ -16680,21 +16955,22 @@ msgstr ""
"印刷されます(隙間なし)。"
msgid "Support/raft base"
-msgstr ""
+msgstr "サポート/ラフトベース"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"サポートとラフトを造形用のフィラメント。「デフォルト」では当時のフィラメント"
-"を使用する意味です。"
msgid "Avoid interface filament for base"
-msgstr ""
+msgstr "ベース用のインターフェイスフィラメントを回避"
msgid ""
"Avoid using support interface filament to print support base if possible."
msgstr ""
+"可能な場合、サポートベースの印刷にサポートインターフェイスフィラメントを使用"
+"しないようにします。"
msgid ""
"Line width of support. If expressed as a %, it will be computed over the "
@@ -16711,14 +16987,13 @@ msgstr ""
"なっています。"
msgid "Support/raft interface"
-msgstr ""
+msgstr "サポート/ラフトインターフェース"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"サポートの接触面用のフィラメントです。「デフォルト」では指定しなく、当時の"
-"フィラメントを使用する意味です。"
msgid "Top interface layers"
msgstr "トップ接触面の層数"
@@ -16733,7 +17008,7 @@ msgid "Number of bottom interface layers."
msgstr ""
msgid "Same as top"
-msgstr ""
+msgstr "トップと同じ"
msgid "Top interface spacing"
msgstr "トップ接触面間隔"
@@ -16785,7 +17060,7 @@ msgstr ""
"を使用する場合同心です。"
msgid "Rectilinear Interlaced"
-msgstr ""
+msgstr "直線インターレース"
msgid "Base pattern spacing"
msgstr "基本パターン間隔"
@@ -16816,7 +17091,7 @@ msgid "Default (Grid/Organic)"
msgstr ""
msgid "Snug"
-msgstr ""
+msgstr "Snug"
msgid "Organic"
msgstr "オーガニック"
@@ -17001,8 +17276,8 @@ msgstr ""
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -17163,7 +17438,7 @@ msgid "Internal ribs"
msgstr "内部リブ"
msgid "Enable internal ribs to increase the stability of the prime tower."
-msgstr ""
+msgstr "プライムタワーの安定性を高めるために内部リブを有効にします。"
msgid "Purging volumes"
msgstr "フラッシュ体積"
@@ -17195,6 +17470,8 @@ msgid ""
"Brim width of prime tower, negative number means auto calculated width based "
"on the height of prime tower."
msgstr ""
+"プライムタワーのブリム幅を設定します。負の値を指定すると、プライムタワーの高"
+"さに基づいて自動計算されます。"
msgid "Stabilization cone apex angle"
msgstr "スタビライザーコーンの頂角"
@@ -17244,7 +17521,7 @@ msgid ""
msgstr ""
msgid "Rectangle"
-msgstr ""
+msgstr "長方形"
msgid "Rib"
msgstr "リブ"
@@ -17262,7 +17539,7 @@ msgid "Rib width"
msgstr "リブ幅"
msgid "Rib width is always less than half the prime tower side length."
-msgstr ""
+msgstr "リブの幅は常にプライムタワーの一辺の長さの半分未満になります。"
msgid "Fillet wall"
msgstr "フィレット壁"
@@ -17452,7 +17729,7 @@ msgstr ""
"メモリのファームウェアのため"
msgid "Use relative E distances"
-msgstr ""
+msgstr "相対E距離を使用"
msgid ""
"Relative extrusion is recommended when using \"label_objects\" option. Some "
@@ -17589,16 +17866,19 @@ msgstr ""
"す。"
msgid "invalid value "
-msgstr ""
+msgstr "無効な値"
msgid "Invalid value when spiral vase mode is enabled: "
+msgstr "スパイラルベースモードが有効な場合、無効な値です:"
+
+msgid "Bridge line width must not exceed nozzle diameter: "
msgstr ""
msgid "too large line width "
-msgstr ""
+msgstr "線幅が大きすぎます"
msgid " not in range "
-msgstr ""
+msgstr "範囲外 "
msgid "Export 3MF"
msgstr "3mf をエクスポート"
@@ -17619,7 +17899,7 @@ msgid "Load cached slicing data from directory."
msgstr "スライスデータを読込み"
msgid "Export STL"
-msgstr ""
+msgstr "Export STL"
msgid "Export the objects as single STL."
msgstr ""
@@ -17646,7 +17926,7 @@ msgid "Update the config values of 3MF to latest."
msgstr "3mfの構成値を更新"
msgid "Load default filaments"
-msgstr ""
+msgstr "Load default filaments"
msgid "Load first filament as default for those not loaded."
msgstr ""
@@ -17661,25 +17941,25 @@ msgid "mtcpp"
msgstr "mtcpp"
msgid "max triangle count per plate for slicing."
-msgstr ""
+msgstr "max triangle count per plate for slicing"
msgid "mstpp"
msgstr "mstpp"
msgid "max slicing time per plate in seconds."
-msgstr ""
+msgstr "max slicing time per plate in seconds"
msgid "No check"
-msgstr ""
+msgstr "チェックなし"
msgid "Do not run any validity checks, such as G-code path conflicts check."
msgstr ""
msgid "Normative check"
-msgstr ""
+msgstr "Normative check"
msgid "Check the normative items."
-msgstr ""
+msgstr "Check the normative items."
msgid "Output Model Info"
msgstr "出力モデル情報"
@@ -17742,10 +18022,10 @@ msgid "Rotation angle around the Z axis in degrees."
msgstr "Z軸周りの回転角度(度)。"
msgid "Rotate around X"
-msgstr ""
+msgstr "X軸周りで回転"
msgid "Rotation angle around the X axis in degrees."
-msgstr ""
+msgstr "X軸の周りの回転角度(度)。"
msgid "Rotate around Y"
msgstr "Y軸周りの回転"
@@ -17836,11 +18116,17 @@ msgid "Debug level"
msgstr "デバッグ レベル"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
+msgstr ""
+"デバッグロギングレベルを設定します。0:fatal、1:error、2:warning、3:info、4:"
+"debug、5:trace。\n"
+
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
msgstr ""
-"デバッグロギングレベルを設定します。0:fatal、1:error、2:warning、3:info、"
-"4:debug、5:trace。\n"
msgid "Enable timelapse for print"
msgstr ""
@@ -18066,23 +18352,27 @@ msgid "Number of layers in the entire print."
msgstr "全てのプリントのレイヤー数"
msgid "Print time (normal mode)"
-msgstr ""
+msgstr "プリント時間(ノーマルモード)"
msgid ""
"Estimated print time when printed in normal mode (i.e. not in silent mode). "
"Same as print_time."
msgstr ""
+"通常モード (静音モードではない) でプリントした場合の推定プリント時間。 プリン"
+"ト時間と同じです。"
msgid ""
"Estimated print time when printed in normal mode (i.e. not in silent mode). "
"Same as normal_print_time."
msgstr ""
+"通常モード (静音モードではない) でプリントしたときの推定プリント時間。 ノーマ"
+"ルプリント時間と同じです。"
msgid "Print time (silent mode)"
-msgstr ""
+msgstr "プリント時間(静音モード)"
msgid "Estimated print time when printed in silent mode."
-msgstr ""
+msgstr "静音モードでプリントしたときのプリント時間の目安です。"
msgid ""
"Total cost of all material used in the print. Calculated from filament_cost "
@@ -18090,7 +18380,7 @@ msgid ""
msgstr ""
msgid "Total wipe tower cost"
-msgstr ""
+msgstr "ワイプタワーのトータルコスト"
msgid ""
"Total cost of the material wasted on the wipe tower. Calculated from "
@@ -18098,16 +18388,16 @@ msgid ""
msgstr ""
msgid "Wipe tower volume"
-msgstr ""
+msgstr "ワイプタワー体積"
msgid "Total filament volume extruded on the wipe tower."
-msgstr ""
+msgstr "ワイプタワー上で押し出されたフィラメントの総体積。"
msgid "Used filament"
msgstr "フィラメント使用量"
msgid "Total length of filament used in the print."
-msgstr ""
+msgstr "プリントに使用されるフィラメントの全長。"
msgid "Print time (seconds)"
msgstr ""
@@ -18147,6 +18437,10 @@ msgid ""
"index 0).\n"
"Example: 'x:100% y:50% z:100%'."
msgstr ""
+"個々のオブジェクトに適用されたスケーリングに関する情報を含む文字列が含まれま"
+"す。 オブジェクトのインデックス付けはゼロベースです (最初のオブジェクトのイン"
+"デックスは 0)。\n"
+"例: 'x:100% y:50% z:100%'。"
msgid "Input filename without extension"
msgstr "拡張子を除いたファイル名を入力。"
@@ -18248,7 +18542,7 @@ msgid "Index of the current layer. One-based (i.e. first layer is number 1)."
msgstr ""
msgid "Layer Z"
-msgstr ""
+msgstr "レイヤーZ"
msgid ""
"Height of the current layer above the print bed, measured to the top of the "
@@ -18256,7 +18550,7 @@ msgid ""
msgstr "プリント ベッド上の現在のレイヤーの高さ (レイヤーの最上部までの計測)。"
msgid "Maximal layer Z"
-msgstr ""
+msgstr "最大のZレイヤー"
msgid "Height of the last layer above the print bed."
msgstr "プリントベッド上の最後のレイヤーの高さ。"
@@ -18289,19 +18583,21 @@ msgid "Checking support necessity"
msgstr "サポートの必要性を確認"
msgid "floating regions"
-msgstr ""
+msgstr "浮動領域"
msgid "floating cantilever"
-msgstr ""
+msgstr "浮動片持ち梁"
msgid "large overhangs"
-msgstr ""
+msgstr "大きなオーバーハング"
#, c-format, boost-format
msgid ""
"It seems object %s has %s. Please re-orient the object or enable support "
"generation."
msgstr ""
+"オブジェクト %s に %s があるようです。オブジェクトの向きを変更するか、サポー"
+"ト生成を有効にしてください。."
msgid "Generating support"
msgstr "サポートを生成"
@@ -18316,6 +18612,8 @@ msgid ""
"No layers were detected. You might want to repair your STL file(s) or check "
"their size or thickness and retry.\n"
msgstr ""
+"レイヤーが検出されませんでした。STLファイルを修正するか、サイズや厚さを確認し"
+"て再試行してください。\n"
msgid ""
"An object's XY size compensation will not be used because it is also color-"
@@ -18328,103 +18626,114 @@ msgid ""
"is also fuzzy skin painted.\n"
"XY Size compensation cannot be combined with fuzzy skin painting."
msgstr ""
+"オブジェクトにXYサイズ補正が設定されていますが、ファジースキン塗りが適用され"
+"ているため無効になります。\n"
+"XYサイズ補正とファジースキン塗りは同時に使用できません。"
msgid "Object name"
-msgstr ""
+msgstr "オブジェクト名"
msgid "Support: generate contact points"
msgstr "サポート: 接触点を生成"
msgid "Loading of a model file failed."
-msgstr ""
+msgstr "モデルファイルの読み込みに失敗しました。"
msgid "Meshing of a model file failed or no valid shape."
msgstr ""
+"モデルファイルのメッシュ処理に失敗したか、有効な形状が見つかりませんでした。"
msgid "The supplied file couldn't be read because it's empty"
-msgstr ""
+msgstr "提供されたファイルは空であるため読み込めませんでした。"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
+"ファイル形式が不明です。入力ファイルの拡張子は .stl、.obj、.amf(.xml)である"
+"必要があります。"
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
+"不明なファイル形式です。入力ファイルは .3mf または .zip.amf 拡張子である必要"
+"があります。"
msgid "load_obj: failed to parse"
-msgstr ""
+msgstr "load_obj: 解析に失敗しました"
msgid "load mtl in obj: failed to parse"
-msgstr ""
+msgstr "load mtl in obj: 解析に失敗しました"
msgid "The file contains polygons with more than 4 vertices."
-msgstr ""
+msgstr "ファイルに4つ以上の頂点を持つポリゴンが含まれています。"
msgid "The file contains polygons with less than 2 vertices."
-msgstr ""
+msgstr "ファイルに頂点が2つ未満のポリゴンが含まれています。"
msgid "The file contains invalid vertex index."
-msgstr ""
+msgstr "ファイルに無効な頂点インデックスが含まれています"
msgid "This OBJ file couldn't be read because it's empty."
-msgstr ""
+msgstr "このOBJファイルは空なので読み込めませんでした。"
msgid "Max Volumetric Speed Calibration"
-msgstr ""
+msgstr "最大体積速度キャリブレーション"
msgid "Manage Result"
-msgstr ""
+msgstr "結果を管理"
msgid "Manual Calibration"
-msgstr ""
+msgstr "手動キャリブレーション"
msgid "Result can be read by human eyes."
-msgstr ""
+msgstr "結果は簡単に確認でき、理解できます。"
msgid "Auto-Calibration"
-msgstr ""
+msgstr " 自動キャリブレーション"
msgid "We would use Lidar to read the calibration result"
-msgstr ""
+msgstr "We would use Lidar to read the calibration result."
msgid "Prev"
-msgstr ""
+msgstr "前へ"
msgid "Recalibration"
-msgstr ""
+msgstr "再キャリブレーション"
msgid "Calibrate"
-msgstr ""
+msgstr "キャリブレーション"
msgid "Finish"
msgstr "完了"
msgid "How to use calibration result?"
-msgstr ""
+msgstr "キャリブレーション結果をどのように活用できますか?"
msgid ""
"You could change the Flow Dynamics Calibration Factor in material editing"
-msgstr ""
+msgstr "動的流量キャリブレーション係数は、材料編集で変更できます。"
msgid ""
"The current firmware version of the printer does not support calibration.\n"
"Please upgrade the printer firmware."
msgstr ""
+"現在のプリンタのファームウェアバージョンはキャリブレーションをサポートしてい"
+"ません。\n"
+"プリンタのファームウェアをアップグレードしてください。"
msgid "Calibration not supported"
-msgstr ""
+msgstr "キャリブレーションは対応していません。"
msgid "Error desc"
-msgstr ""
+msgstr "エラー詳細"
msgid "Extra info"
-msgstr ""
+msgstr "追加情報"
msgid "Flow Dynamics"
-msgstr ""
+msgstr "動的流量"
msgid "Max Volumetric Speed"
-msgstr ""
+msgstr "最大体積速度"
#, c-format, boost-format
msgid ""
@@ -18436,40 +18745,42 @@ msgid ""
msgstr ""
msgid "The name cannot be empty."
-msgstr ""
+msgstr "名前を空にすることはできません。"
#, c-format, boost-format
msgid "The selected preset: %s was not found."
msgstr ""
msgid "The name cannot be the same as the system preset name."
-msgstr ""
+msgstr "システムプリセット名と同じ名前にすることはできません。"
msgid "The name is the same as another existing preset name"
-msgstr ""
+msgstr "名前が既存のプリセット名と同じです。"
msgid "create new preset failed."
-msgstr ""
+msgstr "新しいプリセットの作成に失敗しました。"
#, c-format, boost-format
msgid "Could not find parameter: %s."
-msgstr ""
+msgstr "パラメーター 「%s」 が見つかりませんでした。"
msgid ""
"Are you sure to cancel the current calibration and return to the home page?"
msgstr ""
+"Are you sure you want to cancel the current calibration and return to the "
+"home page?"
msgid "No Printer Connected!"
-msgstr ""
+msgstr "プリンタが接続されていません!"
msgid "Printer is not connected yet."
-msgstr ""
+msgstr "プリンタはまだ接続されていません。"
msgid "Please select filament to calibrate."
-msgstr ""
+msgstr "キャリブレーションするフィラメントを選択してください。"
msgid "The input value size must be 3."
-msgstr ""
+msgstr "入力値のサイズは 3 でなければなりません。"
msgid ""
"This machine type can only hold 16 history results per nozzle. You can "
@@ -18484,6 +18795,8 @@ msgid ""
"Only one of the results with the same name: %s will be saved. Are you sure "
"you want to override the other results?"
msgstr ""
+"同じ名前の結果(%s)は1つだけ保存されます。他の結果を上書きしてもよろしいです"
+"か?"
#, c-format, boost-format
msgid ""
@@ -18491,6 +18804,8 @@ msgid ""
"Only one of the results with the same name is saved. Are you sure you want "
"to override the historical result?"
msgstr ""
+"同じ名前 (%s) のキャリブレーション結果がすでに存在します。名前付きの結果は1つ"
+"のみ保存されます。以前の結果を上書きしてもよろしいですか?"
#, c-format, boost-format
msgid ""
@@ -18498,27 +18813,32 @@ msgid ""
"type, nozzle diameter, and nozzle flow are the same.\n"
"Are you sure you want to override the historical result?"
msgstr ""
+"同じ押出機内で、フィラメントの種類、ノズルの直径、およびノズル流量が同じ場合"
+"は、名前 (%s) が一意である必要があります。\n"
+"過去の結果を上書きしてもよろしいですか。"
#, c-format, boost-format
msgid ""
"This machine type can only hold %d history results per nozzle. This result "
"will not be saved."
msgstr ""
+"この機種では、ノズルごとに最大 %d 件の履歴結果のみ保持できます。この結果は保"
+"存されません。"
msgid "Connecting to printer..."
-msgstr ""
+msgstr "プリンタに接続中..."
msgid "The failed test result has been dropped."
-msgstr ""
+msgstr "失敗したテスト結果は削除されました。"
msgid "Flow Dynamics Calibration result has been saved to the printer."
msgstr ""
msgid "Internal Error"
-msgstr ""
+msgstr "内部エラー"
msgid "Please select at least one filament for calibration"
-msgstr ""
+msgstr "キャリブレーション用フィラメントを最低1本お選びください。"
msgid "Flow rate calibration result has been saved to preset."
msgstr ""
@@ -18527,7 +18847,7 @@ msgid "Max volumetric speed calibration result has been saved to preset."
msgstr ""
msgid "When do you need Flow Dynamics Calibration"
-msgstr ""
+msgstr "動的流量キャリブレーションが必要な場合"
msgid ""
"We now have added the auto-calibration for different filaments, which is "
@@ -18541,7 +18861,7 @@ msgid ""
msgstr ""
msgid "About this calibration"
-msgstr ""
+msgstr "このキャリブレーションについて"
msgid ""
"Please find the details of Flow Dynamics Calibration from our wiki.\n"
@@ -18581,7 +18901,7 @@ msgstr ""
"しており、新しいアップデートで改善を行う予定です。"
msgid "When to use Flow Rate Calibration"
-msgstr ""
+msgstr "フロー率キャリブレーションを使用する場合"
msgid ""
"After using Flow Dynamics Calibration, there might still be some extrusion "
@@ -18600,6 +18920,9 @@ msgid ""
"PLA used in RC planes. These materials expand greatly when heated, and "
"calibration provides a useful reference flow rate."
msgstr ""
+"さらに、LW-PLAのような発泡材料(RC飛行機用)においては、流量比キャリブレー"
+"ションが重要です。これらの材料は加熱時に大きく膨張し、キャリブレーションに"
+"よって参考となる流量が得られます。"
msgid ""
"Flow Rate Calibration measures the ratio of expected to actual extrusion "
@@ -18609,6 +18932,12 @@ msgid ""
"you still see the listed defects after you have done other calibrations. For "
"more details, please check out the wiki article."
msgstr ""
+"流量比キャリブレーションは、期待される押出量と実際の押出量の比率を測定しま"
+"す。デフォルト設定は、Bambu Lab製プリンタと公式フィラメントに最適化されてお"
+"り、事前にキャリブレーションと微調整が行われています。一般的なフィラメントで"
+"は、他のキャリブレーションを実施した後もリストにある欠陥が見られる場合を除"
+"き、流量比キャリブレーションを行う必要はありません。詳細については、Wiki記事"
+"をご確認ください。"
msgid ""
"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, "
@@ -18628,67 +18957,87 @@ msgid ""
"can lead to sub-par prints or printer damage. Please make sure to carefully "
"read and understand the process before doing it."
msgstr ""
+"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, "
+"directly measuring the calibration patterns. However, please be advised that "
+"the efficacy and accuracy of this method may be compromised with specific "
+"types of materials. Particularly, filaments that are transparent or semi-"
+"transparent, sparkling-particled, or have a high-reflective finish may not "
+"be suitable for this calibration and can produce less-than-desirable "
+"results.\n"
+"\n"
+"The calibration results may vary between each calibration or filament. We "
+"are still improving the accuracy and compatibility of this calibration "
+"through firmware updates over time.\n"
+"\n"
+"Caution: Flow Rate Calibration is an advanced process, to be attempted only "
+"by those who fully understand its purpose and implications. Incorrect usage "
+"can lead to sub-par prints or printer damage. Please make sure to carefully "
+"read and understand the process before performing it."
msgid "When you need Max Volumetric Speed Calibration"
-msgstr ""
+msgstr "最大体積速度キャリブレーションが必要な場合"
msgid "Over-extrusion or under extrusion"
-msgstr ""
+msgstr "過剰押出または過少押出"
msgid "Max Volumetric Speed calibration is recommended when you print with:"
-msgstr ""
+msgstr "最大体積速度キャリブレーションは、次の場合に推奨されます:"
msgid "material with significant thermal shrinkage/expansion, such as..."
-msgstr ""
+msgstr "熱膨張/収縮が大きい材料、例えば..."
msgid "materials with inaccurate filament diameter"
-msgstr ""
+msgstr "不正確なフィラメント径の材料"
msgid "We found the best Flow Dynamics Calibration Factor"
-msgstr ""
+msgstr "最適な動的流量キャリブレーション係数を見つけました。"
msgid ""
"Part of the calibration failed! You may clean the plate and retry. The "
"failed test result would be dropped."
msgstr ""
+"キャリブレーションの一部が失敗しました!プレートを掃除して再試行してくださ"
+"い。失敗したテスト結果は破棄されます。"
msgid ""
"*We recommend you to add brand, materia, type, and even humidity level in "
"the Name"
msgstr ""
+"*We recommend that you add brand, material, type, and even humidity level to "
+"the name"
msgid "Please enter the name you want to save to printer."
-msgstr ""
+msgstr "プリンタに保存する名前を入力してください。"
msgid "The name cannot exceed 40 characters."
-msgstr ""
+msgstr "名前は40文字を超えることはできません。"
msgid "Please find the best line on your plate"
-msgstr ""
+msgstr "プレート上で最適なラインを見つけてください。"
msgid "Please find the corner with the perfect degree of extrusion"
msgstr ""
msgid "Input Value"
-msgstr ""
+msgstr "値を入力"
msgid "Save to Filament Preset"
-msgstr ""
+msgstr "フィラメントプリセットに保存"
msgid "Record Factor"
-msgstr ""
+msgstr "記録ファクター"
msgid "We found the best flow ratio for you"
-msgstr ""
+msgstr "最適な流量比を見つけました。"
msgid "Flow Ratio"
-msgstr ""
+msgstr "流量比"
msgid "Please input a valid value (0.0 < flow ratio < 2.0)"
-msgstr ""
+msgstr "有効な値(0.0 < 流量比 < 2.0)を入力してください"
msgid "Please enter the name of the preset you want to save."
-msgstr ""
+msgstr "保存したいプリセットの名前を入力してください。"
msgid "Calibration1"
msgstr "Calibration1"
@@ -18697,43 +19046,45 @@ msgid "Calibration2"
msgstr "Calibration2"
msgid "Please find the best object on your plate"
-msgstr ""
+msgstr "プレート上で最適なオブジェクトを見つけてください"
msgid "Fill in the value above the block with smoothest top surface"
-msgstr ""
+msgstr "トップ面が最も滑らかなブロックの上に値を入力してください。"
msgid "Skip Calibration2"
-msgstr ""
+msgstr "キャリブレーション2をスキップ"
#, c-format, boost-format
msgid "flow ratio : %s "
-msgstr ""
+msgstr "流量比: %s"
msgid "Please choose a block with smoothest top surface."
-msgstr ""
+msgstr "トップ面が最も滑らかなブロックを選択してください。"
msgid "Please input a valid value (0 <= Max Volumetric Speed <= 60)"
-msgstr ""
+msgstr "有効な値を入力してください(0 <= 最大体積速度<= 60)"
msgid "Calibration Type"
-msgstr ""
+msgstr "キャリブレーションタイプ"
msgid "Complete Calibration"
-msgstr ""
+msgstr "徹底キャリブレーション"
msgid "Fine Calibration based on flow ratio"
-msgstr ""
+msgstr "流量比に基づく微調整キャリブレーション"
msgid "Title"
-msgstr ""
+msgstr "タイトル"
msgid ""
"A test model will be printed. Please clear the build plate and place it back "
"to the hot bed before calibration."
msgstr ""
+"テストモデルが印刷されます。キャリブレーションの前にビルドプレートを取り外"
+"し、ホットベッドに戻してください。"
msgid "Printing Parameters"
-msgstr ""
+msgstr "印刷パラメータ"
msgid "- ℃"
msgstr "- ℃"
@@ -19194,6 +19545,15 @@ msgstr ""
msgid "Top Surface Pattern"
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"
msgstr "プリンターサーバーにGコードを送信"
@@ -19218,6 +19578,48 @@ msgstr "アップロードファイル名が\"%s\"で終わっていません。
msgid "Upload"
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"
msgstr "印刷ホストアップロードキュー"
@@ -19262,9 +19664,6 @@ msgstr ""
"選択したベッドタイプがファイルと一致しません。印刷を開始する前に確認してくだ"
"さい。"
-msgid "Time-lapse"
-msgstr "タイムラプス"
-
msgid "Heated Bed Leveling"
msgstr "ヒートベッドレベリング"
@@ -19274,6 +19673,16 @@ msgstr "テクスチャービルドプレート(A面)"
msgid "Smooth Build Plate (Side B)"
msgstr "スムースビルドプレート(B面)"
+#, 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"
msgstr "選択したパーツでブーリアン演算を実行できません"
@@ -19421,9 +19830,13 @@ msgid ""
"There may be escape characters in the vendor or serial input of filament. "
"Please delete and re-enter."
msgstr ""
+"フィラメントのベンダーまたはシリアル入力に許可されていない文字が含まれている"
+"可能性があります。削除して再入力してください。"
msgid "All inputs in the custom vendor or serial are spaces. Please re-enter."
msgstr ""
+"カスタムプリンタのベンダーまたはシリアルのすべての入力が空白です。再入力して"
+"ください。"
msgid "The vendor cannot be a number. Please re-enter."
msgstr ""
@@ -19431,6 +19844,8 @@ msgstr ""
msgid ""
"You have not selected a printer or preset yet. Please select at least one."
msgstr ""
+"プリンタまたはプリセットが選択されていません。少なくとも1つを選択してくださ"
+"い。"
#, c-format, boost-format
msgid ""
@@ -19440,16 +19855,18 @@ msgid ""
msgstr ""
msgid "Some existing presets have failed to be created, as follows:\n"
-msgstr ""
+msgstr "以下のように、いくつかの既存のプリセットが作成に失敗しました:\n"
msgid ""
"\n"
"Do you want to rewrite it?"
msgstr ""
+"\n"
+"書き直しますか?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
@@ -19509,16 +19926,17 @@ msgstr "最大印刷高さ"
#, c-format, boost-format
msgid "The file exceeds %d MB, please import again."
-msgstr ""
+msgstr "ファイルが%d MBを超えています。もう一度インポートしてください。"
msgid "Exception in obtaining file size, please import again."
msgstr ""
+"ファイルサイズの取得中に例外が発生しました。もう一度インポートしてください。"
msgid "Preset path was not found, please reselect vendor."
msgstr ""
msgid "The printer model was not found, please reselect."
-msgstr ""
+msgstr "プリンタモデルが見つかりませんでした。再選択してください。"
msgid "The nozzle diameter was not found, please reselect."
msgstr ""
@@ -19542,11 +19960,15 @@ msgid ""
"You have not yet chosen which printer preset to create based on. Please "
"choose the vendor and model of the printer"
msgstr ""
+"どのプリンタプリセットに基づいて作成するかはまだ選択されていません。プリンタ"
+"のベンダーとモデルを選択してください。"
msgid ""
"You have entered an illegal input in the printable area section on the first "
"page. Please check before creating it."
msgstr ""
+"印刷可能領域のセクション(1ページ目)に許可されていない文字が入力されていま"
+"す。数字のみを使用してください。"
msgid ""
"The printer preset you created already has a preset with the same name. Do "
@@ -19557,24 +19979,31 @@ msgid ""
"reserve.\n"
"\tCancel: Do not create a preset, return to the creation interface."
msgstr ""
+"The printer preset you created already has a preset with the same name. Do "
+"you want to overwrite it?\n"
+"\tYes: Overwrite the printer preset with the same name, and filament and "
+"process presets with the same preset name will be recreated \n"
+"and filament and process presets without the same preset name will be "
+"reserved.\n"
+"\tCancel: Do not create a preset; return to the creation interface."
msgid "You need to select at least one filament preset."
-msgstr ""
+msgstr "少なくとも1つのフィラメントプリセットを選択する必要があります。"
msgid "You need to select at least one process preset."
-msgstr ""
+msgstr "少なくとも1つのプロセスプリセットを選択する必要があります。"
msgid "Create filament presets failed. As follows:\n"
-msgstr ""
+msgstr "フィラメントプリセットの作成に失敗した。詳細は以下の通りです。\n"
msgid "Create process presets failed. As follows:\n"
-msgstr ""
+msgstr "作成に失敗しました。詳細は以下の通りです。\n"
msgid "Vendor was not found, please reselect."
msgstr ""
msgid "Current vendor has no models, please reselect."
-msgstr ""
+msgstr "現在のベンダーにはモデルがありません。再選択してください。"
msgid ""
"You have not selected the vendor and model or entered the custom vendor and "
@@ -19585,25 +20014,33 @@ msgid ""
"There may be escape characters in the custom printer vendor or model. Please "
"delete and re-enter."
msgstr ""
+"カスタムプリンタのメーカー名またはモデル名にエスケープ文字が含まれている可能"
+"性があります。削除して再入力してください。"
msgid ""
"All inputs in the custom printer vendor or model are spaces. Please re-enter."
msgstr ""
+"カスタムプリンタのベンダーまたはモデルのすべての入力が空白です。再入力してく"
+"ださい。"
msgid "Please check bed printable shape and origin input."
-msgstr ""
+msgstr "ベッドの印刷可能な形状と原点の入力を確認してください。"
msgid ""
"You have not yet selected the printer to replace the nozzle, please choose."
msgstr ""
+"ノズルを交換するプリンタがまだ選択されていません。プリンタを選択してくださ"
+"い。"
msgid "The entered nozzle diameter is invalid, please re-enter:\n"
-msgstr ""
+msgstr "入力したノズル径が無効です。再入力してください。\n"
msgid ""
"The system preset does not allow creation. \n"
"Please re-enter the printer model or nozzle diameter."
msgstr ""
+"システムプリセットでは作成できません。 \n"
+"プリンタ機種またはノズル径を再入力してください。"
msgid ""
"\n"
@@ -19638,6 +20075,9 @@ msgid ""
"volumetric speed has a significant impact on printing quality. Please set "
"them carefully."
msgstr ""
+"必要に応じてフィラメント設定に移動し、プリセットを編集してください。ノズル温"
+"度、ホットベッド温度、最大体積速度は、印刷品質に大きな影響を与えますので、慎"
+"重に設定してください。"
msgid ""
"\n"
@@ -19691,6 +20131,9 @@ msgid ""
"If not, a time suffix will be added, and you can modify the name after "
"creation."
msgstr ""
+"現在のディレクトリに「%s」フォルダがすでに存在します。削除して再作成します"
+"か? \n"
+"削除しない場合、時間のサフィックスが追加され、作成後に名前を変更できます。"
#, c-format, boost-format
msgid ""
@@ -19714,26 +20157,35 @@ msgid ""
"Only display printer names with changes to printer, filament, and process "
"presets."
msgstr ""
+"プリンタ、フィラメント、加工プリセットに変更があるプリンタのみが表示されま"
+"す。"
msgid "Only display the filament names with changes to filament presets."
-msgstr ""
+msgstr "フィラメントプリセットを変更したフィラメント名のみを表示します。"
msgid ""
"Only printer names with user printer presets will be displayed, and each "
"preset you choose will be exported as a zip."
msgstr ""
+"ユーザープリンタプリセットを持つプリンタ名のみが表示され、選択した各プリセッ"
+"トがZIPとしてエクスポートされます。"
msgid ""
"Only the filament names with user filament presets will be displayed, \n"
"and all user filament presets in each filament name you select will be "
"exported as a zip."
msgstr ""
+"ユーザーフィラメントプリセットを含むフィラメント名のみが表示されます、 \n"
+"選択した各フィラメント名に含まれるすべてのユーザーフィラメントプリセットがZIP"
+"形式でエクスポートされます。"
msgid ""
"Only printer names with changed process presets will be displayed, \n"
"and all user process presets in each printer name you select will be "
"exported as a zip."
msgstr ""
+"変更されたプロセスプリセットがあるプリンタ名のみが表示され、選択した各プリン"
+"タ名にあるすべてのユーザープロセスプリセットがZIP形式でエクスポートされます。"
msgid "Please select at least one printer or filament."
msgstr "少なくとも1つのプリンターまたはフィラメントを選択してください。"
@@ -19743,6 +20195,7 @@ msgstr "エクスポートしたいタイプを選択してください"
msgid "Failed to create temporary folder, please try Export Configs again."
msgstr ""
+"一時フォルダの作成に失敗しました。もう一度設定をエクスポートしてください。"
msgid "Edit Filament"
msgstr "フィラメントを編集"
@@ -19754,6 +20207,8 @@ msgid ""
"Note: If the only preset under this filament is deleted, the filament will "
"be deleted after exiting the dialog."
msgstr ""
+"注記:このフィラメントの唯一のプリセットが削除されると、ダイアログを閉じた後"
+"にフィラメントが削除されます。"
msgid "Presets inherited by other presets cannot be deleted"
msgstr "他のプリセットに継承されているプリセットは削除できません"
@@ -19794,6 +20249,8 @@ msgstr "フィラメントからプリセットをコピー"
msgid "The filament choice not find filament preset, please reselect it"
msgstr ""
+"フィラメントの選択肢がフィラメントプリセットが見つかりません。再選択してくだ"
+"さい。"
msgid "[Delete Required]"
msgstr "【削除が必要】"
@@ -19835,18 +20292,22 @@ msgid "Need select printer"
msgstr "プリンターを選ぶ必要があります"
msgid "The start, end or step is not valid value."
-msgstr ""
+msgstr "開始、終了、またはステップの値が無効です。"
msgid ""
"The number of printer extruders and the printer selected for calibration "
"does not match."
msgstr ""
+"プリンタの押出機の数と、キャリブレーション対象として選択されたプリンタの数が"
+"一致しません。"
#, c-format, boost-format
msgid ""
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
+"%s押出機のノズル径は0.2mmのため、自動フローダイナミクスキャリブレーションに"
+"は対応していません。"
#, c-format, boost-format
msgid ""
@@ -19854,11 +20315,15 @@ msgid ""
"actual nozzle diameter.\n"
"Please click the Sync button above and restart the calibration."
msgstr ""
+"現在選択されている%s 押出機のノズル径が実際のノズル径と一致しません。\n"
+"上の「同期」ボタンをクリックして、キャリブレーションを再開してください。"
msgid ""
"The nozzle diameter does not match the actual printer nozzle diameter.\n"
"Please click the Sync button above and restart the calibration."
msgstr ""
+"ノズル径が実際のプリンタノズル径と一致しません。\n"
+"上の「同期」ボタンをクリックし、キャリブレーションをやり直してください。"
#, c-format, boost-format
msgid ""
@@ -19866,17 +20331,22 @@ msgid ""
"printer nozzle type.\n"
"Please click the Sync button above and restart the calibration."
msgstr ""
+"現在選択されている%s 押出機のノズルタイプが、実際のプリンタのノズルタイプと一"
+"致していません。\n"
+"上の「同期」ボタンをクリックし、キャリブレーションを再開してください。"
msgid ""
"Unable to calibrate: maybe because the set calibration value range is too "
"large, or the step is too small"
msgstr ""
+"キャリブレーションできません。設定されたキャリブレーション値の範囲が広すぎる"
+"か、ステップが小さすぎる可能性があります。"
msgid "Physical Printer"
-msgstr ""
+msgstr "実物プリンター"
msgid "Print Host upload"
-msgstr ""
+msgstr "プリントホストのアップロード"
msgid ""
"Select the network agent implementation for printer communication. Available "
@@ -19885,9 +20355,18 @@ msgstr ""
"プリンター通信用のネットワークエージェント実装を選択します。使用可能なエー"
"ジェントは起動時に登録されます。"
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "有効なプリンタホスト参照を取得できませんでした"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "成功!"
@@ -19904,23 +20383,28 @@ msgid ""
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
"signed certificate."
msgstr ""
+"HTTPS CAファイルはオプションです。自己署名証明書を使用する場合のみ必要です。"
msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*"
-msgstr ""
+msgstr "証明書ファイル(*.crt, *.pem)|*.crt;*.pem|全ファイル|*.*)"
msgid "Open CA certificate file"
-msgstr ""
+msgstr "CA 証明書ファイルを開く"
#, c-format, boost-format
msgid ""
"On this system, %s uses HTTPS certificates from the system Certificate Store "
"or Keychain."
msgstr ""
+"このシステムでは、%s はシステムの証明書ストアまたはキーチェーンからHTTPS証明"
+"書を使用します。"
msgid ""
"To use a custom CA file, please import your CA file into Certificate Store / "
"Keychain."
msgstr ""
+"カスタムCAファイルを使用するには、CAファイルを証明書ストア/キーチェーンにイン"
+"ポートしてください。"
msgid "Login/Test"
msgstr "ログイン/テスト"
@@ -19928,6 +20412,30 @@ msgstr "ログイン/テスト"
msgid "Connection to printers connected via the print host failed."
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
msgid "Mismatched type of print host: %s"
msgstr "印刷ホストのタイプが一致しません: %s"
@@ -19969,6 +20477,8 @@ msgid ""
"Note: FlashAir with firmware 2.00.02 or newer and activated upload function "
"is required."
msgstr ""
+"注記:ファームウェア2.00.02以降のFlashAirと、アップロード機能が有効化されたも"
+"のが必要です。"
msgid "Connection to MKS is working correctly."
msgstr "MKSへの接続は正常に動作しています。"
@@ -20036,6 +20546,8 @@ msgid ""
"HTTP status: %1%\n"
"Message body: \"%2%\""
msgstr ""
+"HTTPステータス: %1%\n"
+"メッセージ本文: \"%2%\""
#, boost-format
msgid ""
@@ -20043,6 +20555,9 @@ msgid ""
"Message body: \"%1%\"\n"
"Error: \"%2%\""
msgstr ""
+"ホスト応答の解析に失敗しました。\n"
+"メッセージ本文:\"%1%\"\n"
+"エラー:\"%2%\""
#, boost-format
msgid ""
@@ -20050,6 +20565,9 @@ msgid ""
"Message body: \"%1%\"\n"
"Error: \"%2%\""
msgstr ""
+"ホストプリンタの列挙に失敗しました。\n"
+"メッセージ本文:「%1%」\n"
+"エラー: 「%2%」"
msgid ""
"It has a small layer height. This results in almost negligible layer lines "
@@ -20226,28 +20744,41 @@ msgid ""
"vendor for suitable profile before printing and adjust some parameters "
"according to its performances."
msgstr ""
+"これは一般的なフィラメントでもなく、Bambuフィラメントでもありません。さらに、"
+"ブランドによって性能が大きく異なるため、印刷前に販売元へ適切なプロファイルを"
+"確認し、その性能に応じてパラメーターを調整することを強くお勧めします。"
msgid ""
"When printing this filament, there's a risk of warping and low layer "
"adhesion strength. To get better results, please refer to this wiki: "
"Printing Tips for High Temp / Engineering materials."
msgstr ""
+"このフィラメントを印刷する際、ワーピングや層間の密着強度の低下のリスクがあり"
+"ます。より良い結果を得るために、こちらのWiki「高温・エンジニアリング素材の印"
+"刷ヒント」を参照してください。"
msgid ""
"When printing this filament, there's a risk of nozzle clogging, oozing, "
"warping and low layer adhesion strength. To get better results, please refer "
"to this wiki: Printing Tips for High Temp / Engineering materials."
msgstr ""
+"このフィラメントを印刷する際、ノズルの詰まり、オーズ、ワーピング、層間の密着"
+"強度の低下のリスクがあります。より良い結果を得るために、こちらのWiki「高温・"
+"エンジニアリング素材の印刷ヒント」を参照してください。"
msgid ""
"To get better transparent or translucent results with the corresponding "
"filament, please refer to this wiki: Printing tips for transparent PETG."
msgstr ""
+"対応するフィラメントでより良い透明または半透明の仕上がりを得るには、、この"
+"ウィキページ「透明PETGのための印刷のヒント」を参照してください。"
msgid ""
"To make the prints get higher gloss, please dry the filament before use, and "
"set the outer wall speed to be 40 to 60 mm/s when slicing."
msgstr ""
+"プリントをより光沢のあるものにするには、使用前にフィラメントを乾燥させ、スラ"
+"イス時の外壁速度を40~60mm/sに設定してください。"
msgid ""
"This filament is only used to print models with a low density usually, and "
@@ -20255,24 +20786,36 @@ msgid ""
"refer to this wiki: Instructions for printing RC model with foaming PLA (PLA "
"Aero)."
msgstr ""
+"このフィラメントは通常、低密度のモデルの印刷にのみ使用され、特定のパラメータ"
+"が必要です。より良い印刷品質を得るために、こちらのWiki「発泡PLA(PLA Aero)を"
+"使用したRCモデルの印刷手順」を参照してください。"
msgid ""
"This filament is only used to print models with a low density usually, and "
"some special parameters are required. To get better printing quality, please "
"refer to this wiki: ASA Aero Printing Guide."
msgstr ""
+"このフィラメントは通常、低密度のモデルの印刷にのみ使用され、特定のパラメータ"
+"が必要です。より良い印刷品質を得るために、こちらのWiki「ASA Aero印刷ガイド」"
+"を参照してください。"
msgid ""
"This filament is too soft and not compatible with the AMS. Printing it is of "
"many requirements, and to get better printing quality, please refer to this "
"wiki: TPU printing guide."
msgstr ""
+"このフィラメントは柔らかすぎるため、AMSと互換性がありません。印刷にはいくつか"
+"の要件があり、より良い印刷品質を得るために、こちらのWiki「TPU印刷ガイド」を参"
+"照してください。"
msgid ""
"This filament has high enough hardness (about 67D) and is compatible with "
"the AMS. Printing it is of many requirements, and to get better printing "
"quality, please refer to this wiki: TPU printing guide."
msgstr ""
+"このフィラメントは十分な硬度(約67D)を持ち、AMSと互換性があります。印刷には"
+"いくつかの要件があり、より良い印刷品質を得るために、こちらのWiki「TPU印刷ガイ"
+"ド」を参照してください。"
msgid ""
"If you are to print a kind of soft TPU, please don't slice with this "
@@ -20280,6 +20823,10 @@ msgid ""
"55D) and is compatible with the AMS. To get better printing quality, please "
"refer to this wiki: TPU printing guide."
msgstr ""
+"柔らかいTPUを印刷する場合、このプロファイルでスライスしないでください。このプ"
+"ロファイルは、硬度が十分に高いTPU(55D以上)で、AMSに対応しているものにのみ適"
+"しています。より良い印刷品質を得るために、こちらのWiki:TPU印刷ガイドをご参照"
+"ください。"
msgid ""
"This is a water-soluble support filament, and usually it is only for the "
@@ -20287,6 +20834,9 @@ msgid ""
"many requirements, and to get better printing quality, please refer to this "
"wiki: PVA Printing Guide."
msgstr ""
+"これは水溶性のサポートフィラメントで、通常はサポート構造専用であり、モデル本"
+"体には使用されません。印刷にはいくつかの要件があり、より良い印刷品質を得るた"
+"めに、こちらのWiki「PVA印刷ガイド」を参照してください。"
msgid ""
"This is a non-water-soluble support filament, and usually it is only for the "
@@ -20294,51 +20844,57 @@ msgid ""
"quality, please refer to this wiki: Printing Tips for Support Filament and "
"Support Function."
msgstr ""
+"これは水溶性ではないサポートフィラメントで、通常はサポート構造専用であり、モ"
+"デル本体には使用されません。より良い印刷品質を得るために、こちらのWiki「サ"
+"ポートフィラメントとサポート機能の印刷ヒント」を参照してください。"
msgid ""
"The generic presets are conservatively tuned for compatibility with a wider "
"range of filaments. For higher printing quality and speeds, please use Bambu "
"filaments with Bambu presets."
msgstr ""
+"ジェネリックプリセットは、幅広いフィラメントとの互換性を考慮し、控えめに調整"
+"されています。より高い印刷品質と速度を求める場合は、BambuフィラメントとBambu"
+"プリセットを使用してください。"
msgid "High quality profile for 0.2mm nozzle, prioritizing print quality."
-msgstr ""
+msgstr "造形品質を重視した、0.2mmノズル用の高品質プロファイルです。"
msgid ""
"High quality profile for 0.16mm layer height, prioritizing print quality and "
"strength."
-msgstr ""
+msgstr "高品質・高強度を重視した、0.16mmレイヤー高用の高品質プロファイルです。"
msgid "Standard profile for 0.16mm layer height, prioritizing speed."
-msgstr ""
+msgstr "造形速度を重視した、0.16mmレイヤー高用の標準プロファイルです。"
msgid ""
"High quality profile for 0.2mm layer height, prioritizing strength and print "
"quality."
-msgstr ""
+msgstr "造形品質と強度を重視した、0.2mmノズル用の高品質プロファイルです。"
msgid "Standard profile for 0.4mm nozzle, prioritizing speed."
-msgstr ""
+msgstr "造形速度を重視した、0.4mmノズル用の標準プロファイルです。"
msgid ""
"High quality profile for 0.6mm nozzle, prioritizing print quality and "
"strength."
-msgstr ""
+msgstr "造形品質を重視した、0.6mmノズル用の高品質プロファイルです。"
msgid "Strength profile for 0.6mm nozzle, prioritizing strength."
-msgstr ""
+msgstr "強度を重視した、0.6mmノズル用の強化プロファイルです。"
msgid "Standard profile for 0.6mm nozzle, prioritizing speed."
-msgstr ""
+msgstr "造形速度を重視した、0.6mmノズル用の標準プロファイルです。"
msgid "High quality profile for 0.8mm nozzle, prioritizing print quality."
-msgstr ""
+msgstr "造形品質を重視した、0.8mmノズル用の高品質プロファイルです。"
msgid "Strength profile for 0.8mm nozzle, prioritizing strength."
-msgstr ""
+msgstr "強度を重視した、0.8mmノズル用の強化プロファイルです。"
msgid "Standard profile for 0.8mm nozzle, prioritizing speed."
-msgstr ""
+msgstr "造形速度を重視した、0.8mmノズル用の標準プロファイルです。"
msgid "No AMS"
msgstr "AMSなし"
@@ -20515,7 +21071,7 @@ msgid "Global settings"
msgstr "グローバル設定"
msgid "Video tutorial"
-msgstr ""
+msgstr "ビデオチュートリアル"
msgid "(Sync with printer)"
msgstr "(プリンターと同期)"
@@ -20556,12 +21112,27 @@ msgstr ""
"SimplyPrintアカウントがリンクされていません。接続オプションに移動して設定して"
"ください。"
+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."
msgstr "Flashforgeへのシリアル接続は正常に動作しています。"
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr "シリアル経由でFlashforgeに接続できませんでした"
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "指定された状態が正しくありません。"
@@ -20894,6 +21465,9 @@ msgid ""
"Did you know that you can fix a corrupted 3D model to avoid a lot of slicing "
"problems on the Windows system?"
msgstr ""
+"モデルを修正\n"
+"Windowsシステム上で発生する多くのスライス問題を回避するために、破損した3Dモデ"
+"ルを修正できることをご存知ですか?"
#: resources/data/hints.ini: [hint:Timelapse]
msgid ""
@@ -21130,6 +21704,68 @@ msgstr ""
"ABSのような反りやすい素材を印刷する場合、ヒートベッドの温度を適切に上げること"
"で、反りが発生する確率を下げることができることをご存知ですか?"
+#~ 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 ""
+#~ "ファームウェアリトラクションモード使用時はワイプオプションが利用できませ"
+#~ "ん。\n"
+#~ "\n"
+#~ "ファームウェアリトラクションを有効にするためにワイプを無効にしますか?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "before_layer_gcode に \"G92 E0\" が見つかりましたが、これはエクストルー"
+#~ "ダーの絶対アドレッシングと互換性がありません。"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "layer_gcode に \"G92 E0\" が見つかりましたが、これはエクストルーダーの絶対"
+#~ "アドレッシングと互換性がありません。"
+
+#, 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 ""
+#~ "ブリッジ角度。値が0の場合は自動計算となります。0°を使用したい場合は180を入"
+#~ "力していください。"
+
+#~ 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 ""
+#~ "有効になる場合、より長いブリッジを造形できますが、仕上がりが劣る可能性があ"
+#~ "ります。"
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "スパース インフィルを造形時使用するフィラメントです。"
+
+#~ msgid "Solid infill"
+#~ msgstr "ソリッドインフィル"
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "サポートとラフトを造形用のフィラメント。「デフォルト」では当時のフィラメン"
+#~ "トを使用する意味です。"
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "サポートの接触面用のフィラメントです。「デフォルト」では指定しなく、当時の"
+#~ "フィラメントを使用する意味です。"
+
#~ msgid "Erase all painting"
#~ msgstr "全てを消去"
diff --git a/localization/i18n/ko/OrcaSlicer_ko.po b/localization/i18n/ko/OrcaSlicer_ko.po
index e536c9e4f9..5858124bdd 100644
--- a/localization/i18n/ko/OrcaSlicer_ko.po
+++ b/localization/i18n/ko/OrcaSlicer_ko.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: 2025-06-02 17:12+0900\n"
"Last-Translator: crwusiz \n"
"Language-Team: \n"
@@ -508,7 +508,7 @@ msgid "Count"
msgstr ""
msgid "Gap"
-msgstr ""
+msgstr "간격"
msgid "Spacing"
msgstr "간격"
@@ -1830,6 +1830,17 @@ msgstr ""
msgid "User logged out"
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!"
msgstr "슬라이싱 중에는 새 프로젝트를 만들거나 프로젝트 파일을 열 수 없습니다!"
@@ -1843,21 +1854,24 @@ msgstr ""
"Orca Slicer의 버전이 너무 낮아 최신 버전으로 업데이트해야 정상적으로 사용 가"
"능합니다"
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
@@ -1912,7 +1926,7 @@ msgid "Privacy Policy Update"
msgstr "개인 정보 보호 정책 업데이트"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
msgstr ""
msgid "your default profile"
@@ -2163,6 +2177,9 @@ msgstr "토러스"
msgid "Orca Cube"
msgstr "Orca 큐브"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Orca 공차 테스트"
@@ -2222,7 +2239,7 @@ msgid "Support Enforcer"
msgstr "서포트 강제기"
msgid "Change part type"
-msgstr ""
+msgstr "부품 유형 변경"
msgid "Set as an individual object"
msgstr "개별 객체로 설정"
@@ -3572,6 +3589,9 @@ msgid ""
"the filament.\n"
"'Device -> Print parts'"
msgstr ""
+"노즐 유량이 설정되지 않았습니다. 필라멘트를 편집하기 전에 노즐 유량을 설정하"
+"세요.\n"
+"'장치 -> 파트 출력'"
msgid "AMS"
msgstr "AMS"
@@ -3658,7 +3678,7 @@ msgid "Step"
msgstr "단계"
msgid "Unmapped"
-msgstr ""
+msgstr "매핑되지 않음"
msgid ""
"Upper half area: Original\n"
@@ -3666,48 +3686,57 @@ msgid ""
"unmapped.\n"
"And you can click it to modify"
msgstr ""
+"상반신 영역: 원본\n"
+"아래쪽 절반 영역: 매핑을 해제하면 원본 프로젝트의 필라멘트가 사용됩니다.\n"
+"그리고 클릭하여 수정할 수 있습니다"
msgid ""
"Upper half area: Original\n"
"Lower half area: Filament in AMS\n"
"And you can click it to modify"
msgstr ""
+"상반신 영역: 원본\n"
+"아래쪽 절반 영역: AMS의 필라멘트\n"
+"클릭하여 수정할 수 있습니다"
msgid ""
"Upper half area: Original\n"
"Lower half area: Filament in AMS\n"
"And you cannot click it to modify"
msgstr ""
+"상반신 영역: 원본\n"
+"아래쪽 절반 영역: AMS의 필라멘트\n"
+"클릭하여 수정할 수 없습니다"
msgid "AMS Slots"
msgstr "AMS 슬롯"
msgid "Please select from the following filaments"
-msgstr ""
+msgstr "다음 필라멘트 중에서 선택하세요"
msgid "Select filament that installed to the left nozzle"
-msgstr ""
+msgstr "왼쪽 노즐에 설치된 필라멘트를 선택합니다"
msgid "Select filament that installed to the right nozzle"
-msgstr ""
+msgstr "오른쪽 노즐에 설치된 필라멘트를 선택합니다"
msgid "Left AMS"
-msgstr ""
+msgstr "왼쪽 AMS"
msgid "External"
msgstr "외부"
msgid "Reset current filament mapping"
-msgstr ""
+msgstr "현재 필라멘트 매핑 재설정"
msgid "Right AMS"
-msgstr ""
+msgstr "오른쪽 AMS"
msgid "Left Nozzle"
-msgstr ""
+msgstr "왼쪽 노즐"
msgid "Right Nozzle"
-msgstr ""
+msgstr "오른쪽 노즐"
msgid "Nozzle"
msgstr "노즐"
@@ -3718,15 +3747,20 @@ msgid ""
"slicing file. If you want to use this slot, you can install %s instead of %s "
"and change slot information on the 'Device' page."
msgstr ""
+"참고: 필라멘트 유형(%s)이 슬라이싱 파일에 있는 필라멘트 유형(%s)과 일치하지 "
+"않습니다. 이 슬롯을 사용하려면 %s 대신 %s 을 설치하고 '장치' 페이지에서 슬롯 "
+"정보를 변경하면 됩니다."
#, c-format, boost-format
msgid ""
"Note: the slot is empty or undefined. If you want to use this slot, you can "
"install %s and change slot information on the 'Device' page."
msgstr ""
+"참고: 슬롯이 비어 있거나 정의되지 않았습니다. 이 슬롯을 사용하려면 %s 을 설치"
+"하고 '장치' 페이지에서 슬롯 정보를 변경할 수 있습니다."
msgid "Note: Only filament-loaded slots can be selected."
-msgstr ""
+msgstr "참고: 필라멘트가 로드된 슬롯만 선택할 수 있습니다."
msgid "Enable AMS"
msgstr "AMS 사용"
@@ -3796,6 +3830,8 @@ msgid ""
"When the current material runs out, the printer would use identical filament "
"to continue printing."
msgstr ""
+"현재 재료가 다 떨어지면 프린터는 동일한 필라멘트를 사용하여 출력을 계속합니"
+"다."
msgid "The printer does not currently support auto refill."
msgstr "프린터는 현재 자동 리필을 지원하지 않습니다."
@@ -3809,6 +3845,9 @@ msgid ""
"to continue printing.\n"
"*Identical filament: same brand, type and color."
msgstr ""
+"현재 필라멘트가 다 떨어지면 프린터는 동일한 필라멘트를 사용하여 출력을 계속합"
+"니다.\n"
+"*동일한 필라멘트: 동일한 브랜드, 유형 및 색상."
msgid "DRY"
msgstr "건조함"
@@ -3868,7 +3907,7 @@ msgstr "남은 용량 업데이트"
msgid ""
"AMS will attempt to estimate the remaining capacity of the Bambu Lab "
"filaments."
-msgstr ""
+msgstr "AMS는 Bambu Lab 필라멘트의 남은 용량을 추정하려고 시도합니다."
msgid "AMS filament backup"
msgstr "AMS 필라멘트 백업"
@@ -3891,27 +3930,29 @@ msgstr ""
"합니다."
msgid "AMS Type"
-msgstr ""
+msgstr "AMS 유형"
msgid "Switching"
-msgstr ""
+msgstr "전환 중"
msgid "The printer is busy and cannot switch AMS type."
-msgstr ""
+msgstr "프린터가 사용 중이어서 AMS 유형을 전환할 수 없습니다."
msgid "Please unload all filament before switching."
-msgstr ""
+msgstr "교체하기 전에 모든 필라멘트를 언로드하십시오."
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
msgstr ""
msgid "Arrange AMS Order"
-msgstr ""
+msgstr "AMS 순서 정렬"
msgid ""
"AMS ID will be reset. If you want a specific ID sequence, disconnect all AMS "
"before resetting and connect them in the desired order after resetting."
msgstr ""
+"AMS ID가 재설정됩니다. 특정 ID 순서를 원하시면 재설정 전에 모든 AMS 연결을 해"
+"제하고, 재설정 후 원하는 순서대로 다시 연결하세요."
msgid "File"
msgstr "파일"
@@ -5398,6 +5439,9 @@ msgstr "오버행"
msgid "Outline"
msgstr "외곽선"
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr "원근법"
@@ -5414,7 +5458,7 @@ msgid "Paint Toolbar"
msgstr "칠하기 도구 모음"
msgid "part selection"
-msgstr ""
+msgstr "부품 선택"
msgid "Explosion Ratio"
msgstr "분해 비율"
@@ -5440,7 +5484,7 @@ msgstr "용량:"
msgid "Size:"
msgstr "크기:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5697,15 +5741,18 @@ msgstr "설정 마법사"
msgid "Show Configuration Folder"
msgstr "설정 폴더 열기"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "네트워크 테스트 열기"
+
msgid "Show Tip of the Day"
msgstr "오늘의 팁 표시"
msgid "Check for Updates"
msgstr "업데이트 확인"
-msgid "Open Network Test"
-msgstr "네트워크 테스트 열기"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "%s 정보 (&A)"
@@ -6325,8 +6372,8 @@ msgid ""
"The .gcode.3mf file contains no G-code data. Please slice it with Orca "
"Slicer and export a new .gcode.3mf file."
msgstr ""
-".gcode.3mf 파일에는 Gcode 데이터가 없습니다. OrcaSlicer에서 슬라이스하고 "
-"새 .gcode.3mf 파일을 내보내십시오."
+".gcode.3mf 파일에는 Gcode 데이터가 없습니다. OrcaSlicer에서 슬라이스하고 새 ."
+"gcode.3mf 파일을 내보내십시오."
#, c-format, boost-format
msgid "File '%s' was lost! Please download it again."
@@ -7023,6 +7070,12 @@ msgstr "내보내기 성공."
msgid "Model file downloaded."
msgstr "모델 파일이 다운로드되었습니다."
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr ""
@@ -7273,28 +7326,28 @@ msgstr "사용자 정의 플레이트"
#, c-format, boost-format
msgid "The %s nozzle can not print %s."
-msgstr ""
+msgstr "%s 노즐은 %s 을 인쇄할 수 없습니다."
#, boost-format
msgid "Mixing %1% with %2% in printing is not recommended.\n"
-msgstr ""
+msgstr "%1%와 %2% 혼합 출력을 권장하지 않습니다.\n"
msgid " nozzle"
-msgstr ""
+msgstr "노즐"
#, boost-format
msgid ""
"It is not recommended to print the following filament(s) with %1%: %2%\n"
-msgstr ""
+msgstr "다음 필라멘트로 출력하지 않는 것이 좋습니다: %1%%2%\n"
msgid ""
"It is not recommended to use the following nozzle and filament "
"combinations:\n"
-msgstr ""
+msgstr "다음과 같은 노즐과 필라멘트 조합은 사용하지 않는 것이 좋습니다.\n"
#, boost-format
msgid "%1% with %2%\n"
-msgstr ""
+msgstr "%1%와 %2%\n"
#, boost-format
msgid " plate %1%:"
@@ -7325,16 +7378,16 @@ msgid "Filament changes"
msgstr "필라멘트 변경"
msgid "Set the number of AMS installed on the nozzle."
-msgstr ""
+msgstr "노즐에 설치된 AMS의 개수를 설정합니다."
msgid "AMS(4 slots)"
-msgstr ""
+msgstr "AMS(4 슬롯)"
msgid "AMS(1 slot)"
-msgstr ""
+msgstr "AMS(1 슬롯)"
msgid "Not installed"
-msgstr ""
+msgstr "설치되지 않음"
msgid ""
"The software does not support using different diameter of nozzles for one "
@@ -7344,39 +7397,43 @@ msgid ""
msgstr ""
msgid "Switch diameter"
-msgstr ""
+msgstr "직경 스위치"
msgid "Configuration incompatible"
msgstr "호환되지 않는 구성"
msgid "Sync printer information"
-msgstr ""
+msgstr "프린터 정보 동기화"
msgid ""
"The currently selected machine preset is inconsistent with the connected "
"printer type.\n"
"Are you sure to continue syncing?"
msgstr ""
+"현재 선택한 컴퓨터 사전 설정이 연결된 프린터 유형과 일치하지 않습니다.\n"
+"동기화를 계속하시겠습니까?"
msgid ""
"There are unset nozzle types. Please set the nozzle types of all extruders "
"before synchronizing."
msgstr ""
+"설정되지 않은 노즐 유형이 있습니다. 동기화하기 전에 모든 압출기의 노즐 유형"
+"을 설정하세요."
msgid "Sync extruder infomation"
-msgstr ""
+msgstr "압출기 정보 동기화"
msgid "Connection"
msgstr "연결"
msgid "Synchronize nozzle information and the number of AMS"
-msgstr ""
+msgstr "노즐 정보 및 AMS 개수 동기화"
msgid "Click to edit preset"
msgstr "클릭하여 사전 설정 편집"
msgid "Project Filaments"
-msgstr ""
+msgstr "프로젝트 필라멘트"
msgid "Flushing volumes"
msgstr "버리기 볼륨"
@@ -7403,7 +7460,7 @@ msgstr "펠릿"
msgid ""
"After completing your operation, %s project will be closed and create a new "
"project."
-msgstr ""
+msgstr "작업을 완료하면 %s 프로젝트가 닫히고 새 프로젝트가 만들어집니다."
msgid "There are no compatible filaments, and sync is not performed."
msgstr "호환되는 필라멘트가 없으며 동기화가 수행되지 않습니다."
@@ -7424,6 +7481,7 @@ msgid ""
"Filament type and color information have been synchronized, but slot "
"information is not included."
msgstr ""
+"필라멘트 유형 및 색상 정보는 동기화되었지만 슬롯 정보는 포함되지 않았습니다."
#, boost-format
msgid "Do you want to save changes to \"%1%\"?"
@@ -7475,6 +7533,9 @@ msgid ""
"Smooth mode for timelapse is enabled, but the prime tower is off, which may "
"cause print defects. Please enable the prime tower, re-slice and print again."
msgstr ""
+"타임랩스용 스무드 모드가 활성화되어 있지만 프라임 타워가 꺼져 있어 출력 결함"
+"이 발생할 수 있습니다. 프라임 타워를 활성화하고 다시 슬라이스한 후 다시 출력"
+"하세요."
msgid "Expand sidebar"
msgstr "사이드바 확장"
@@ -7819,7 +7880,7 @@ msgid ""
msgstr ""
msgid "Sync now"
-msgstr ""
+msgstr "지금 동기화"
msgid "You can keep the modified presets to the new project or discard them"
msgstr "수정된 사전 설정을 새 프로젝트에 유지하거나 삭제할 수 있습니다"
@@ -7967,10 +8028,10 @@ msgstr ""
"%s 파일이 프린터의 저장 공간으로 전송되었으며 프린터에서 볼 수 있습니다."
msgid "The nozzle type is not set. Please set the nozzle and try again."
-msgstr ""
+msgstr "노즐 유형이 설정되지 않았습니다. 노즐을 설정하고 다시 시도하세요."
msgid "The nozzle type is not set. Please check."
-msgstr ""
+msgstr "노즐 유형이 설정되지 않았습니다. 확인해 주세요."
msgid ""
"Unable to perform boolean operation on model meshes. Only positive parts "
@@ -8001,6 +8062,12 @@ msgid ""
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?"
msgstr "프린터가 준비됐나요? 출력 시트가 제자리에 있고 비어 있고 깨끗합니까?"
@@ -8034,6 +8101,8 @@ msgid ""
"Printer not connected. Please go to the device page to connect %s before "
"syncing."
msgstr ""
+"프린터가 연결되지 않았습니다. 동기화하기 전에 장치 페이지로 이동하여 %s를 연"
+"결하세요."
#, c-format, boost-format
msgid ""
@@ -8046,22 +8115,26 @@ msgid ""
"The currently connected printer on the device page is not %s. Please switch "
"to %s before syncing."
msgstr ""
+"장치 페이지의 현재 연결된 프린터가 %s이 아닙니다. 동기화하기 전에 %s로 전환하"
+"세요."
msgid ""
"There are no filaments on the printer. Please load the filaments on the "
"printer first."
-msgstr ""
+msgstr "프린터에 필라멘트가 없습니다. 먼저 프린터에 필라멘트를 로드하세요."
msgid ""
"The filaments on the printer are all unknown types. Please go to the printer "
"screen or software device page to set the filament type."
msgstr ""
+"프린터의 필라멘트가 모두 알 수 없는 유형입니다. 프린터 화면 또는 소프트웨어 "
+"장치 페이지로 이동하여 필라멘트 유형을 설정하세요."
msgid "Device Page"
-msgstr ""
+msgstr "디바이스 페이지"
msgid "Synchronize AMS Filament Information"
-msgstr ""
+msgstr "AMS 필라멘트 정보 동기화"
msgid "Plate Settings"
msgstr "플레이트 설정"
@@ -8117,28 +8190,28 @@ msgstr ""
msgid ""
"Currently, the object configuration form cannot be used with a multiple-"
"extruder printer."
-msgstr ""
+msgstr "현재 개체 구성 양식은 다중 압출기 프린터와 함께 사용할 수 없습니다."
msgid "Not available"
-msgstr ""
+msgstr "사용 불가"
msgid "isometric"
-msgstr ""
+msgstr "아이소메트릭"
msgid "top_front"
msgstr ""
msgid "top"
-msgstr ""
+msgstr "상단"
msgid "bottom"
-msgstr ""
+msgstr "하단"
msgid "front"
-msgstr ""
+msgstr "앞"
msgid "rear"
-msgstr ""
+msgstr "뒤"
msgid "Switching the language requires application restart.\n"
msgstr "언어를 전환하려면 애플리케이션을 다시 시작해야 합니다.\n"
@@ -8180,7 +8253,7 @@ msgid "The period of backup in seconds."
msgstr "백업 기간(초)입니다."
msgid "Bed Temperature Difference Warning"
-msgstr ""
+msgstr "침대 온도 차이 경고"
msgid ""
"Using filaments with significantly different temperatures may cause:\n"
@@ -8190,6 +8263,12 @@ msgid ""
"\n"
"Continue with enabling this feature?"
msgstr ""
+"온도가 크게 다른 필라멘트를 사용하면 발생할 수 있습니다:\n"
+"- 압출기 막힘\n"
+"- 노즐 손상\n"
+"- 레이어 접착 문제\n"
+"\n"
+"이 기능을 계속 사용하시겠습니까?"
msgid "Browse"
msgstr "탐색"
@@ -8380,7 +8459,7 @@ msgstr ""
"활성화하면 여러 장치에 동시에 작업을 보내고 여러 장치를 관리할 수 있습니다."
msgid "Pop up to select filament grouping mode"
-msgstr ""
+msgstr "필라멘트 그룹화 모드를 선택하기 위한 팝업"
msgid "Quality level for Draco export"
msgstr ""
@@ -8428,7 +8507,7 @@ msgstr ""
msgid ""
"With this option enabled, you can print materials with a large temperature "
"difference together."
-msgstr ""
+msgstr "이 옵션을 활성화하면 온도 차이가 큰 재료를 함께 출력할 수 있습니다."
msgid "Touchpad"
msgstr "터치패드"
@@ -8514,11 +8593,29 @@ msgstr ""
msgid ""
"Clear my choice for synchronizing printer preset after loading the file."
-msgstr ""
+msgstr "파일을 로드한 후 프린터 사전 설정 동기화를 선택 취소합니다."
msgid "Graphics"
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"
msgstr ""
@@ -8576,9 +8673,16 @@ msgid "Stealth mode"
msgstr "스텔스 모드"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
msgid "Network test"
@@ -8728,6 +8832,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr ""
@@ -8848,16 +8960,16 @@ msgid "Incompatible presets"
msgstr "호환되지 않는 사전 설정"
msgid "My Printer"
-msgstr ""
+msgstr "내 프린터"
msgid "Left filaments"
-msgstr ""
+msgstr "왼쪽 필라멘트"
msgid "AMS filaments"
msgstr "AMS 필라멘트"
msgid "Right filaments"
-msgstr ""
+msgstr "오른쪽 필라멘트"
msgid "Click to select filament color"
msgstr "필라멘트 색상 선택"
@@ -8878,13 +8990,13 @@ msgid "Bundle presets"
msgstr ""
msgid "System"
-msgstr ""
+msgstr "시스템"
msgid "Unsupported presets"
-msgstr ""
+msgstr "지원되지 않는 사전 설정"
msgid "Unsupported"
-msgstr ""
+msgstr "지원되지 않음"
msgid "Add/Remove filaments"
msgstr "필라멘트 추가/제거"
@@ -9078,28 +9190,28 @@ msgid "Bambu Textured PEI Plate"
msgstr "뱀부 텍스처 PEI 플레이트"
msgid "Bambu Cool Plate SuperTack"
-msgstr ""
+msgstr "Bambu 쿨 플레이트 슈퍼택"
msgid "Send print job"
-msgstr ""
+msgstr "출력 작업 보내기"
msgid "On"
-msgstr ""
+msgstr "켜기"
msgid "Not satisfied with the grouping of filaments? Regroup and slice ->"
-msgstr ""
+msgstr "필라멘트 그룹화가 만족스럽지 않으신가요? 재그룹화 및 슬라이스 ->"
msgid "Manually change external spool during printing for multi-color printing"
-msgstr ""
+msgstr "멀티 컬러 출력을 위해 출력 중 외부 스풀을 수동으로 변경합니다."
msgid "Multi-color with external"
-msgstr ""
+msgstr "외부 멀티 컬러"
msgid "Your filament grouping method in the sliced file is not optimal."
-msgstr ""
+msgstr "슬라이스된 파일의 필라멘트 그룹화 방법이 최적이 아닙니다."
msgid "Auto Bed Leveling"
-msgstr ""
+msgstr "자동 베드 레벨링"
msgid ""
"This checks the flatness of heatbed. Leveling makes extruded height "
@@ -9107,6 +9219,8 @@ msgid ""
"*Automatic mode: Run a leveling check(about 10 seconds). Skip if surface is "
"fine."
msgstr ""
+"열판의 평탄도를 확인합니다. 수평을 맞추면 압출 높이가 균일해집니다.\n"
+"*자동 모드: 레벨링 검사를 실행합니다(약 10초). 표면이 평탄하면 건너뜁니다."
msgid "Flow Dynamics Calibration"
msgstr "동적 압출량 교정"
@@ -9116,14 +9230,18 @@ msgid ""
"quality.\n"
"*Automatic mode: Skip if the filament was calibrated recently."
msgstr ""
+"이 프로세스는 전반적인 출력 품질을 개선하기 위해 동적 흐름 값을 결정합니다.\n"
+"*자동 모드: 필라멘트가 최근에 보정된 경우 건너뜁니다."
msgid "Nozzle Offset Calibration"
-msgstr ""
+msgstr "노즐 오프셋 정 실패."
msgid ""
"Calibrate nozzle offsets to enhance print quality.\n"
"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
msgstr ""
+"노즐 오프셋을 보정하여 출력 품질을 향상시킵니다.\n"
+"*자동 모드: 출력하기 전에 보정 여부를 확인합니다. 불필요한 경우 건너뜁니다."
msgid "Send complete"
msgstr "전송 완료"
@@ -9132,7 +9250,7 @@ msgid "Error code"
msgstr "오류 코드"
msgid "High Flow"
-msgstr ""
+msgstr "높은 흐름"
#, c-format, boost-format
msgid ""
@@ -9140,6 +9258,9 @@ msgid ""
"Please make sure the nozzle installed matches with settings in printer, then "
"set the corresponding printer preset while slicing."
msgstr ""
+"%s(%s)의 노즐 유량 설정이 슬라이싱 파일(%s)과 일치하지 않습니다. 설치된 노즐"
+"이 프린터의 설정과 일치하는지 확인한 다음 슬라이싱하는 동안 해당 프린터 프리"
+"셋을 설정하세요."
#, c-format, boost-format
msgid ""
@@ -9162,6 +9283,8 @@ msgid ""
"(%s). Please adjust the printer preset in the prepare page or choose a "
"compatible printer on this page."
msgstr ""
+"선택한 프린터(%s)가 출력 파일 구성(%s)과 호환되지 않습니다. 준비 페이지에서 "
+"프린터 사전 설정을 조정하거나 이 페이지에서 호환되는 프린터를 선택하세요."
msgid ""
"When enable spiral vase mode, machines with I3 structure will not generate "
@@ -9174,6 +9297,7 @@ msgid ""
"The current printer does not support timelapse in Traditional Mode when "
"printing By-Object."
msgstr ""
+"현재 프린터는 개체별 출력 시 기존 모드에서 타임랩스를 지원하지 않습니다."
msgid "Errors"
msgstr "오류"
@@ -9182,11 +9306,15 @@ msgid ""
"More than one filament types have been mapped to the same external spool, "
"which may cause printing issues. The printer won't pause during printing."
msgstr ""
+"두 개 이상의 필라멘트 유형이 동일한 외부 스풀에 매핑되어 출력 문제가 발생할 "
+"수 있습니다. 출력중에 프린터가 일시 중지되지 않습니다."
msgid ""
"The filament type setting of external spool is different from the filament "
"in the slicing file."
msgstr ""
+"외부 스풀의 필라멘트 유형 설정이 슬라이싱 파일의 필라멘트와 다릅니다, \n"
+"출력 문제가 발생할 수 있습니다. "
msgid ""
"The printer type selected when generating G-code is not consistent with the "
@@ -9217,11 +9345,12 @@ msgstr "그래도 출력을 계속하려면 확인 버튼을 클릭하세요."
msgid ""
"This checks the flatness of heatbed. Leveling makes extruded height uniform."
msgstr ""
+"히트 베드의 평탄도를 확인합니다. 수평을 맞추면 압출 높이가 균일해집니다."
msgid ""
"This process determines the dynamic flow values to improve overall print "
"quality."
-msgstr ""
+msgstr "이 프로세스는 동적 흐름 값을 결정하여 전체 인쇄 품질을 개선합니다."
msgid "Preparing print job"
msgstr "출력 작업 준비 중"
@@ -9231,18 +9360,20 @@ msgstr "이름 길이가 제한을 초과합니다."
#, c-format, boost-format
msgid "Cost %dg filament and %d changes more than optimal grouping."
-msgstr ""
+msgstr "비용 %dg 필라멘트 및 %d 최적의 그룹화보다 더 많이 변경됩니다."
msgid "nozzle"
-msgstr ""
+msgstr "노즐"
msgid "both extruders"
-msgstr ""
+msgstr "두 압출기"
msgid ""
"Tips: If you changed your nozzle of your printer lately, Please go to "
"'Device -> Printer parts' to change your nozzle setting."
msgstr ""
+"팁: 최근에 프린터의 노즐을 변경한 경우 '장치 -> 프린터 부품'으로 이동하여 노"
+"즐 설정을 변경하세요."
#, c-format, boost-format
msgid ""
@@ -9250,6 +9381,9 @@ msgid ""
"file (%.1fmm). Please make sure the nozzle installed matches with settings "
"in printer, then set the corresponding printer preset when slicing."
msgstr ""
+"현재 프린터의 %s 직경(%.1fmm)이 슬라이싱 파일(%.1fmm)과 일치하지 않습니다. 설"
+"치된 노즐이 프린터의 설정과 일치하는지 확인한 다음 슬라이싱할 때 해당 프린터 "
+"프리셋을 설정하세요."
#, c-format, boost-format
msgid ""
@@ -9257,12 +9391,17 @@ msgid ""
"(%.1fmm). Please make sure the nozzle installed matches with settings in "
"printer, then set the corresponding printer preset when slicing."
msgstr ""
+"현재 노즐 직경(%.1fmm)이 슬라이싱 파일(%.1fmm)과 일치하지 않습니다. 설치된 노"
+"즐이 프린터의 설정과 일치하는지 확인한 다음 슬라이싱할 때 해당 프린터 프리셋"
+"을 설정하세요."
#, c-format, boost-format
msgid ""
"The hardness of current material (%s) exceeds the hardness of %s(%s). Please "
"verify the nozzle or material settings and try again."
msgstr ""
+"현재 재료의 경도 (%s) 가 경도 %s (%s) 를 초과합니다. 노즐 또는 재료 설정을 확"
+"인하고 다시 시도하십시오."
#, c-format, boost-format
msgid ""
@@ -9272,23 +9411,26 @@ msgstr ""
#, c-format, boost-format
msgid "[ %s ] requires printing in a high-temperature environment."
-msgstr ""
+msgstr "[ %s ] 고온 환경에서 출력해야 합니다."
#, c-format, boost-format
msgid "The filament on %s may soften. Please unload."
-msgstr ""
+msgstr "%s의 필라멘트가 연화될 수 있습니다. 언로드하십시오."
#, c-format, boost-format
msgid "The filament on %s is unknown and may soften. Please set filament."
msgstr ""
+"%s의 필라멘트는 알 수 없으며 연화될 수 있습니다. 필라멘트를 설정하십시오."
msgid ""
"Unable to automatically match to suitable filament. Please click to manually "
"match."
msgstr ""
+"적합한 필라멘트와 자동으로 일치시킬 수 없습니다. 수동으로 일치시키려면 클릭하"
+"십시오."
msgid "Install toolhead enhanced cooling fan to prevent filament softening."
-msgstr ""
+msgstr "필라멘트 연화를 방지하기 위해 툴헤드 강화 냉각 팬을 설치하세요."
msgid "Smooth Cool Plate"
msgstr "부드러운 쿨 플레이트"
@@ -9331,12 +9473,14 @@ msgid ""
msgstr "프린터가 명령을 실행하고 있습니다. 종료 후 출력을 다시 시작하세요"
msgid "AMS is setting up. Please try again later."
-msgstr ""
+msgstr "AMS를 설정하는 중입니다. 나중에 다시 시도하세요."
msgid ""
"Not all filaments used in slicing are mapped to the printer. Please check "
"the mapping of filaments."
msgstr ""
+"슬라이싱에 사용된 모든 필라멘트가 프린터에 매핑되어 있지 않습니다. 필라멘트 "
+"매핑을 확인해 주세요."
msgid "Please do not mix-use the Ext with AMS."
msgstr ""
@@ -9345,15 +9489,16 @@ msgid ""
"Invalid nozzle information, please refresh or manually set nozzle "
"information."
msgstr ""
+"노즐 정보가 잘못되었습니다. 노즐 정보를 새로 고치거나 수동으로 설정하세요."
msgid "Storage needs to be inserted before printing via LAN."
-msgstr ""
+msgstr "LAN을 통해 출력하기 전에 스토리지를 삽입해야 합니다."
msgid "Storage is in abnormal state or is in read-only mode."
msgstr ""
msgid "Storage needs to be inserted before printing."
-msgstr ""
+msgstr "출력하기 전에 저장소를 삽입해야 합니다."
msgid ""
"Cannot send the print job to a printer whose firmware is required to get "
@@ -9364,21 +9509,25 @@ msgid "Cannot send a print job for an empty plate."
msgstr "빈 플레이트에 대한 출력 작업을 보낼 수 없습니다"
msgid "Storage needs to be inserted to record timelapse."
-msgstr ""
+msgstr "타임랩스를 녹화하려면 스토리지를 삽입해야 합니다."
msgid ""
"You have selected both external and AMS filaments for an extruder. You will "
"need to manually switch the external filament during printing."
msgstr ""
+"압출기용 외부 필라멘트와 AMS 필라멘트를 모두 선택했습니다. 출력 중에 외부 필"
+"라멘트를 수동으로 전환해야 합니다."
msgid ""
"TPU 90A/TPU 85A is too soft and does not support automatic Flow Dynamics "
"calibration."
msgstr ""
+"TPU 90A/TPU 85A는 너무 부드러워서 자동 흐름 역학 보정을 지원하지 않습니다."
msgid ""
"Set dynamic flow calibration to 'OFF' to enable custom dynamic flow value."
msgstr ""
+"사용자 지정 동적 흐름 값을 사용하려면 동적 흐름 보정을 '꺼짐'으로 설정합니다."
msgid "This printer does not support printing all plates."
msgstr "이 프린터는 모든 플레이트 출력을 지원하지 않습니다"
@@ -9389,6 +9538,9 @@ msgid ""
"try updating the firmware. If you are still restricted after the update, "
"please wait for subsequent firmware support."
msgstr ""
+"현재 펌웨어는 최대 16개의 재료를 지원합니다. 준비 페이지에서 재료 수를 16개 "
+"이하로 줄이거나 펌웨어를 업데이트해 보세요. 업데이트 후에도 여전히 제한이 있"
+"는 경우, 다음 펌웨어 지원이 나올 때까지 기다려 주세요."
msgid ""
"The type of external filament is unknown or does not match with the filament "
@@ -9397,31 +9549,31 @@ msgid ""
msgstr ""
msgid "Please refer to Wiki before use->"
-msgstr ""
+msgstr "사용하기 전에 Wiki를 참조하십시오->"
msgid "Current firmware does not support file transfer to internal storage."
-msgstr ""
+msgstr "현재 펌웨어는 내부 스토리지로의 파일 전송을 지원하지 않습니다."
msgid "Send to Printer storage"
-msgstr ""
+msgstr "프린터 저장소로 보내기"
msgid "Try to connect"
-msgstr ""
+msgstr "연결 시도"
msgid "Internal Storage"
-msgstr ""
+msgstr "내부 스토리지"
msgid "External Storage"
-msgstr ""
+msgstr "외부 스토리지"
msgid "Upload file timeout, please check if the firmware version supports it."
-msgstr ""
+msgstr "파일 업로드 시간 초과, 펌웨어 버전이 이를 지원하는지 확인하세요."
msgid "Connection timed out, please check your network."
-msgstr ""
+msgstr "연결 시간이 초과되었습니다. 네트워크를 확인해 주세요."
msgid "Connection failed. Click the icon to retry"
-msgstr ""
+msgstr "연결에 실패했습니다. 아이콘을 클릭하여 다시 시도하세요."
msgid "Cannot send the print task when the upgrade is in progress"
msgstr "업그레이드가 진행 중일 때 출력 작업을 보낼 수 없습니다"
@@ -9430,21 +9582,23 @@ msgid "The selected printer is incompatible with the chosen printer presets."
msgstr "선택한 프린터가 선택한 프린터 사전 설정과 호환되지 않습니다."
msgid "Storage needs to be inserted before send to printer."
-msgstr ""
+msgstr "프린터로 보내기 전에 저장소를 삽입해야 합니다."
msgid "The printer is required to be in the same LAN as Orca Slicer."
msgstr "프린터는 Orca Slicer와 동일한 네트워크에 있어야 합니다."
msgid "The printer does not support sending to printer storage."
-msgstr ""
+msgstr "프린터가 프린터 저장소로 전송을 지원하지 않습니다."
msgid "Sending..."
-msgstr ""
+msgstr "보내는 중..."
msgid ""
"File upload timed out. Please check if the firmware version supports this "
"operation or verify if the printer is functioning properly."
msgstr ""
+"파일 업로드 시간이 초과되었습니다. 펌웨어 버전이 이 작업을 지원하는지 확인하"
+"거나 프린터가 제대로 작동하는지 확인하세요."
msgid "Slice ok."
msgstr "슬라이스 완료."
@@ -9740,8 +9894,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"툴헤드 없이 시간 경과를 기록할 경우 \"타임랩스 프라임 타워\"를 추가하는 것이 "
"좋습니다\n"
@@ -9875,7 +10029,7 @@ msgid "Support filament"
msgstr "서포트 필라멘트"
msgid "Support ironing"
-msgstr ""
+msgstr "지지대 다림질"
msgid "Tree supports"
msgstr "트리 서포트"
@@ -10051,7 +10205,7 @@ msgid "Wipe tower parameters"
msgstr "프라임 타워 매개변수"
msgid "Multi Filament"
-msgstr ""
+msgstr "멀티 필라멘트"
msgid "Tool change parameters with single extruder MM printers"
msgstr "다중 재료 프린터의 단일 압출기 툴 체인지 매개변수"
@@ -10122,7 +10276,7 @@ msgid "Timelapse G-code"
msgstr "타임랩스 Gcode"
msgid "Clumping Detection G-code"
-msgstr ""
+msgstr "뭉침 감지 G-code"
msgid "Change filament G-code"
msgstr "필라멘트 교체 Gcode"
@@ -10210,13 +10364,11 @@ msgid "Retraction when switching material"
msgstr "재료 전환 시 후퇴"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"노즐 청소 옵션은 펌웨어 후퇴 모드를 사용하는 경우에는 사용할 수 없습니다.\n"
-"\n"
-"펌웨어 후퇴를 활성화하기 위해 비활성화하겠습니까?"
msgid "Firmware Retraction"
msgstr "펌웨어 리트렉션"
@@ -10225,9 +10377,11 @@ msgid ""
"Switching to a printer with different extruder types or numbers will discard "
"or reset changes to extruder or multi-nozzle-related parameters."
msgstr ""
+"압출기 유형 또는 번호가 다른 프린터로 전환하면 압출기 또는 다중 노즐 관련 매"
+"개 변수의 변경 사항이 삭제되거나 초기화됩니다."
msgid "Use Modified Value"
-msgstr ""
+msgstr "수정된 값 사용"
msgid "Detached"
msgstr "분리됨"
@@ -10300,7 +10454,7 @@ msgid "Temperature Safety Check"
msgstr ""
msgid "Continue"
-msgstr ""
+msgstr "계속"
msgid "Back"
msgstr "뒷면"
@@ -10310,11 +10464,11 @@ msgstr ""
#, c-format, boost-format
msgid "Left: %s"
-msgstr ""
+msgstr "왼쪽: %s"
#, c-format, boost-format
msgid "Right: %s"
-msgstr ""
+msgstr "오른쪽: %s"
msgid "Click to reset current value and attach to the global value."
msgstr "현재 값을 재설정하고 전역 값에 연결하려면 클릭합니다."
@@ -10577,7 +10731,7 @@ msgid "OBJ file import color"
msgstr "Obj 파일 가져오기 색상"
msgid "Some faces don't have color defined."
-msgstr ""
+msgstr "일부 면에는 색상이 정의되어 있지 않습니다."
msgid "MTL file exist error, could not find the material:"
msgstr ""
@@ -10589,22 +10743,22 @@ msgid "Specify number of colors:"
msgstr "색상 수 지정:"
msgid "Enter or click the adjustment button to modify number again"
-msgstr ""
+msgstr "숫자를 다시 수정하려면 입력하거나 조정 버튼을 클릭하세요."
msgid "Recommended "
msgstr "추천 "
msgid "view"
-msgstr ""
+msgstr "보기"
msgid "Current filament colors"
-msgstr ""
+msgstr "현재 필라멘트 색상"
msgid "Matching"
-msgstr ""
+msgstr "매칭"
msgid "Quick set"
-msgstr ""
+msgstr "빠른 설정"
msgid "Color match"
msgstr "색상 일치"
@@ -10616,18 +10770,20 @@ msgid "Append"
msgstr "추가"
msgid "Append to existing filaments"
-msgstr ""
+msgstr "기존 필라멘트에 추가"
msgid "Reset mapped extruders."
msgstr "매핑된 압출기를 재설정합니다."
msgid "Note"
-msgstr ""
+msgstr "메모"
msgid ""
"The color has been selected, you can choose OK \n"
" to continue or manually adjust it."
msgstr ""
+"색상이 선택되었으면 확인\n"
+" 을 선택하여 계속하거나 수동으로 조정할 수 있습니다."
msgid "—> "
msgstr ""
@@ -10637,117 +10793,130 @@ msgid ""
"presets.\n"
"Are you sure you want to continue?"
msgstr ""
+"AMS 필라멘트를 동기화하면 수정되었지만 저장되지 않은 필라멘트 사전 설정이 삭"
+"제됩니다.\n"
+"계속하시겠습니까?"
msgctxt "Sync_AMS"
msgid "Original"
-msgstr ""
+msgstr "원본"
msgid "After mapping"
-msgstr ""
+msgstr "매핑 후"
msgid "After overwriting"
-msgstr ""
+msgstr "덮어쓰기 후"
msgctxt "Sync_AMS"
msgid "Plate"
-msgstr ""
+msgstr "접시"
msgid ""
"The connected printer does not match the currently selected printer. Please "
"change the selected printer."
msgstr ""
+"연결된 프린터가 현재 선택한 프린터와 일치하지 않습니다. 선택한 프린터를 변경"
+"하세요."
msgid "Mapping"
-msgstr ""
+msgstr "맵핑"
msgid "Overwriting"
-msgstr ""
+msgstr "덮어쓰기"
msgid "Reset all filament mapping"
-msgstr ""
+msgstr "모든 필라멘트 매핑 재설정"
msgid "Left Extruder"
-msgstr ""
+msgstr "왼쪽 압출기"
msgid "(Recommended filament)"
-msgstr ""
+msgstr "(권장 필라멘트)"
msgid "Right Extruder"
-msgstr ""
+msgstr "오른쪽 압출기"
msgid "Advanced Options"
-msgstr ""
+msgstr "고급 옵션"
msgid ""
"Check heatbed flatness. Leveling makes extruded height uniform.\n"
"*Automatic mode: Level first (about 10 seconds). Skip if surface is fine."
msgstr ""
+"열판 평탄도를 확인합니다. 수평을 맞추면 압출 높이가 균일해집니다.\n"
+"*자동 모드: 먼저 수평을 맞춥니다(약 10초). 표면이 평탄하면 건너뜁니다."
msgid ""
"Calibrate nozzle offsets to enhance print quality.\n"
"*Automatic mode: Check for calibration before printing; skip if unnecessary."
msgstr ""
+"노즐 오프셋을 보정하여 출력 품질을 향상시킵니다.\n"
+"*자동 모드: 출력하기 전에 보정 여부를 확인하고 불필요한 경우 건너뜁니다."
msgid "Use AMS"
msgstr "AMS 사용"
msgid "Tip"
-msgstr ""
+msgstr "도움말"
msgid ""
"Only synchronize filament type and color, not including AMS slot information."
-msgstr ""
+msgstr "필라멘트 유형과 색상만 동기화하며, AMS 슬롯 정보는 포함하지 않습니다."
msgid ""
"Replace the project filaments list sequentially based on printer filaments. "
"And unused printer filaments will be automatically added to the end of the "
"list."
msgstr ""
+"프린터 필라멘트를 기준으로 프로젝트 필라멘트 목록을 순차적으로 교체합니다. 사"
+"용하지 않는 프린터 필라멘트는 자동으로 목록 끝에 추가됩니다."
msgid "Advanced settings"
-msgstr ""
+msgstr "고급 설정"
msgid "Add unused AMS filaments to filaments list."
-msgstr ""
+msgstr "미사용 AMS 필라멘트를 필라멘트 목록에 추가하기."
msgid "Automatically merge the same colors in the model after mapping."
-msgstr ""
+msgstr "매핑 후 모델에서 동일한 색상을 자동으로 병합합니다."
msgid "After being synced, this action cannot be undone."
-msgstr ""
+msgstr "동기화 후에는 이 작업을 취소할 수 없습니다."
msgid ""
"After being synced, the project's filament presets and colors will be "
"replaced with the mapped filament types and colors. This action cannot be "
"undone."
msgstr ""
+"동기화되면 프로젝트의 필라멘트 사전 설정과 색상이 매핑된 필라멘트 유형과 색상"
+"으로 바뀝니다. 이 작업은 실행 취소할 수 없습니다."
msgid "Are you sure to synchronize the filaments?"
-msgstr ""
+msgstr "필라멘트를 동기화하시겠습니까?"
msgid "Synchronize now"
-msgstr ""
+msgstr "지금 동기화"
msgid "Synchronize Filament Information"
-msgstr ""
+msgstr "필라멘트 정보 동기화"
msgid "Add unused filaments to filaments list."
-msgstr ""
+msgstr "미사용 필라멘트를 필라멘트 목록에 추가하기."
msgid ""
"Only synchronize filament type and color, not including slot information."
-msgstr ""
+msgstr "슬롯 정보는 포함하지 않고 필라멘트 유형과 색상만 동기화합니다."
msgid "Ext spool"
-msgstr ""
+msgstr "외부 스풀"
msgid ""
"Please check whether the nozzle type of the device is the same as the preset "
"nozzle type."
-msgstr ""
+msgstr "장치의 노즐 유형이 사전 설정된 노즐 유형과 동일한지 확인하세요."
msgid "Storage is not available or is in read-only mode."
-msgstr ""
+msgstr "저장소를 사용할 수 없거나 읽기 전용 모드입니다."
#, c-format, boost-format
msgid ""
@@ -10766,29 +10935,31 @@ msgid ""
"You selected external and AMS filament at the same time in an extruder, you "
"will need manually change external filament."
msgstr ""
+"압출기에서 외부 필라멘트와 AMS 필라멘트를 동시에 선택한 경우 외부 필라멘트를 "
+"수동으로 변경해야 합니다."
msgid "Successfully synchronized nozzle information."
-msgstr ""
+msgstr "노즐 정보를 성공적으로 동기화했습니다."
msgid "Successfully synchronized nozzle and AMS number information."
-msgstr ""
+msgstr "노즐 및 AMS 번호 정보를 성공적으로 동기화했습니다."
msgid "Continue to sync filaments"
-msgstr ""
+msgstr "필라멘트 동기화 계속하기"
msgctxt "Sync_Nozzle_AMS"
msgid "Cancel"
-msgstr ""
+msgstr "취소"
msgid "Successfully synchronized filament color from printer."
msgstr ""
msgid "Successfully synchronized color and type of filament from printer."
-msgstr ""
+msgstr "프린터에서 색상과 필라멘트 유형을 성공적으로 동기화했습니다."
msgctxt "FinishSyncAms"
msgid "OK"
-msgstr ""
+msgstr "확인"
msgid "Ramming customization"
msgstr "채워넣기 사용자 정의"
@@ -10850,10 +11021,10 @@ msgid "Re-calculate"
msgstr "다시 계산"
msgid "Left extruder"
-msgstr ""
+msgstr "왼쪽 압출기"
msgid "Right extruder"
-msgstr ""
+msgstr "오른쪽 압출기"
msgid "Multiplier"
msgstr "승수"
@@ -10862,7 +11033,7 @@ msgid "Flushing volumes for filament change"
msgstr "필라멘트 교체를 위한 버리기 볼륨"
msgid "Please choose the filament colour"
-msgstr ""
+msgstr "필라멘트 색상을 선택하세요"
msgid ""
"Native Wayland liveview requires the GStreamer GTK video sink. Please "
@@ -10961,16 +11132,16 @@ msgid "Global shortcuts"
msgstr "전역 단축키"
msgid "Pan View"
-msgstr ""
+msgstr "보기 이동"
msgid "Rotate View"
-msgstr ""
+msgstr "보기 회전"
msgid "Middle mouse button"
msgstr ""
msgid "Zoom View"
-msgstr ""
+msgstr "줌 뷰"
msgid ""
"Auto orients selected objects or all objects. If there are selected objects, "
@@ -10988,7 +11159,7 @@ msgid "Collapse/Expand the sidebar"
msgstr "사이드바 접기/펼치기"
msgid "Any arrow"
-msgstr ""
+msgstr "모든 화살표"
msgid "Movement in camera space"
msgstr "카메라 공간에서 이동"
@@ -11206,6 +11377,8 @@ msgid ""
"Try the following methods to update the connection parameters and reconnect "
"to the printer."
msgstr ""
+"연결 매개변수를 업데이트하고 프린터에 다시 연결하려면 다음 방법을 시도해 보세"
+"요."
msgid "1. Please confirm Orca Slicer and your printer are in the same LAN."
msgstr ""
@@ -11214,11 +11387,14 @@ msgid ""
"2. If the IP and Access Code below are different from the actual values on "
"your printer, please correct them."
msgstr ""
+"2. 아래 IP 및 액세스 코드가 프린터의 실제 값과 다른 경우 이를 수정하세요."
msgid ""
"3. Please obtain the device SN from the printer side; it is usually found in "
"the device information on the printer screen."
msgstr ""
+"3. 일반적으로 프린터 화면의 장치 정보에서 찾을 수 있는 장치 SN을 프린터 측에"
+"서 받으세요."
msgid "IP"
msgstr "IP"
@@ -11273,33 +11449,35 @@ msgstr ""
"네트워크 문제를 해결하려면 3단계로 이동하세요"
msgid "Connection failed! Please refer to the wiki page."
-msgstr ""
+msgstr "연결에 실패했습니다! 위키 페이지를 참조하세요."
msgid "sending failed"
-msgstr ""
+msgstr "전송 실패"
msgid ""
"Failed to send. Click Retry to attempt sending again. If retrying does not "
"work, please check the reason."
msgstr ""
+"전송하지 못했습니다. 다시 보내기를 클릭하여 다시 전송을 시도합니다. 다시 시도"
+"해도 전송이 되지 않으면 이유를 확인하세요."
msgid "reconnect"
-msgstr ""
+msgstr "다시 연결"
msgid "Air Pump"
-msgstr ""
+msgstr "공기 펌프"
msgid "Laser 10W"
-msgstr ""
+msgstr "레이저 10W"
msgid "Laser 40W"
-msgstr ""
+msgstr "레이저 40W"
msgid "Cutting Module"
-msgstr ""
+msgstr "커팅 모듈"
msgid "Auto Fire Extinguishing System"
-msgstr ""
+msgstr "자동 화재 진압 시스템"
msgid "Update firmware"
msgstr "펌웨어 업데이트"
@@ -11424,7 +11602,7 @@ msgid "Generating G-code: layer %1%"
msgstr "Gcode 생성 중: 레이어 %1%"
msgid "Flush volumes matrix do not match to the correct size!"
-msgstr ""
+msgstr "플러시 볼륨 매트릭스가 올바른 크기와 일치하지 않습니다!"
msgid "set_accel_and_jerk() is only supported by Klipper"
msgstr ""
@@ -11438,10 +11616,10 @@ msgid "Input shaping is only supported by Klipper, RepRapFirmware and Marlin 2"
msgstr ""
msgid "Grouping error: "
-msgstr ""
+msgstr "그룹화 오류입니다:"
msgid " can not be placed in the "
-msgstr ""
+msgstr " 에 배치할 수 없습니다"
msgid "Internal Bridge"
msgstr "내부 브릿지"
@@ -11572,7 +11750,7 @@ msgstr ""
msgid ""
" is too close to clumping detection area, there may be collisions when "
"printing."
-msgstr ""
+msgstr " 뭉침 감지 영역에 너무 가까워 출력 시 충돌이 발생할 수 있습니다."
msgid "Prime Tower"
msgstr "프라임 타워"
@@ -11586,7 +11764,7 @@ msgstr ""
msgid ""
" is too close to clumping detection area, and collisions will be caused.\n"
-msgstr ""
+msgstr " 뭉침 감지 영역에 너무 가까워 충돌이 발생할 수 있습니다.\n"
msgid ""
"Selected nozzle temperatures are incompatible. Each filament's nozzle "
@@ -11615,7 +11793,7 @@ msgstr ""
msgid ""
"Clumping detection is not supported when \"by object\" sequence is enabled."
-msgstr ""
+msgstr "\"객체별\" 시퀀스가 활성화된 경우 뭉침 감지가 지원되지 않습니다."
msgid ""
"Enabling both precise Z height and the prime tower may cause slicing errors."
@@ -11803,6 +11981,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -11812,17 +12003,14 @@ msgstr ""
"설정해야 합니다. layer_gcode에 \"G92 E0\"을 추가하세요."
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"\"G92 E0\"이 before_layer_gcode에서 발견되었으며 절대 압출 모드와 호환되지 않"
-"습니다."
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"\"G92 E0\"이 layer_gcode에서 발견되었으며 절대 압출 모드와 호환되지 않습니다."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -11912,6 +12100,31 @@ msgid "Printable area"
msgstr "출력 가능 영역"
msgid "Extruder printable area"
+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"
@@ -11978,7 +12191,7 @@ msgid "Maximum printable height which is limited by mechanism of printer."
msgstr "프린터 기계장치에 의해 제한되는 출력 가능한 최대 높이"
msgid "Extruder printable height"
-msgstr ""
+msgstr "압출기 출력 가능 높이"
msgid ""
"Maximum printable height of this extruder which is limited by mechanism of "
@@ -12018,9 +12231,9 @@ msgid ""
msgstr ""
"Orca Slicer은 Gcode 파일을 프린터 호스트에 업로드할 수 있습니다. 이 필드에는 "
"프린터 호스트 인스턴스의 호스트 이름, IP 주소 또는 URL이 포함되어야 합니다. "
-"기본 인증이 활성화된 HAProxy 뒤의 출력 호스트는 https://"
-"username:password@your-octopi-address/ 형식의 URL에 사용자 이름과 암호를 입력"
-"하여 액세스할 수 있습니다"
+"기본 인증이 활성화된 HAProxy 뒤의 출력 호스트는 https://username:"
+"password@your-octopi-address/ 형식의 URL에 사용자 이름과 암호를 입력하여 액세"
+"스할 수 있습니다"
msgid "Device UI"
msgstr "장치 UI"
@@ -12040,6 +12253,12 @@ msgstr ""
"Orca Slicer은 Gcode 파일을 프린터 호스트에 업로드할 수 있습니다. 이 필드에는 "
"인증에 필요한 API 키 또는 비밀번호가 포함되어야 합니다."
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "프린터 이름"
@@ -12367,105 +12586,134 @@ msgstr "외부 브릿지 채우기 방향"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"브릿지 출력 각도 재정의. 0°으로 두면 브릿지 출력 각도가 자동으로 계산됩니다. "
-"그렇지 않으면 제공된 각도가 외부 브릿지 출력에 사용됩니다. 0도에는 180°를 사"
-"용합니다."
msgid "Internal bridge infill direction"
msgstr "내부 브릿지 채우기 방향"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"내부 브릿지 각도 오버라이드. 0으로 두면 브릿지 각도가 자동으로 계산됩니다. 그"
-"렇지 않으면 제공된 각도가 내부 브릿지에 사용됩니다. 0 각도는 180°를 사용합니"
-"다.\n"
-"\n"
-"특정 모델이 필요하지 않는 한 0으로 두는 것이 좋습니다."
msgid "External bridge density"
msgstr "외부 브릿지 밀도"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
msgid "Internal bridge density"
msgstr "내부 브릿지 밀도"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"내부 브릿지 라인의 밀도(간격)를 제어합니다. 100%는 솔리드 브릿지를 의미합니"
-"다. 기본값은 100%입니다.\n"
-"\n"
-" 내부 브릿지의 밀도가 낮으면 돌출된 브릿지 주변에 공기가 순환할 수 있는 공간"
-"이 더 많아져 냉각 속도가 향상되므로 상단 표면 필링을 줄이고 내부 브릿지 안정"
-"성을 개선하는 데 도움이 됩니다.\n"
-"\n"
-"이 옵션은 특히 두 번째 내부 브릿지 오버 인필 옵션과 함께 사용하면 솔리드 인필"
-"이 압출되기 전에 내부 브릿지 구조를 더욱 개선할 수 있습니다."
msgid "Bridge flow ratio"
msgstr "브릿지 압출량 비율"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"이 값을 약간 낮추면(예: 0.9) 브릿지의 재질 양을 줄여 처짐을 개선할 수 있습니"
-"다.\n"
+
+#, 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"
msgstr "내부 브릿지 압출량 비율"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"이 값은 내부 브릿지 레이어의 두께를 결정합니다. 이 레이어는 스파스 인필 위에 "
-"있는 첫 번째 레이어입니다. 이 값을 약간 낮추면(예: 0.9) 스파스 인필에 대한 표"
-"면 품질을 향상시킬 수 있습니다.\n"
-"\n"
-"사용되는 실제 내부 브릿지 흐름은 이 값에 브릿지 흐름 비율, 필라멘트 흐름 비"
-"율, 설정된 경우 객체의 흐름 비율을 곱하여 계산됩니다."
msgid "Top surface flow ratio"
msgstr "상단 표면 압출량 비율"
@@ -12755,22 +13003,34 @@ msgstr "구부러진 둘레에서 감속"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
msgid "mm/s or %"
@@ -13027,25 +13287,25 @@ msgid "Thick external bridges"
msgstr "두꺼운 외부 브릿지"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"활성화하면 브릿지는 더 견고해지고 더 먼 거리를 생성할 수 있지만 나빠 보일 수 "
-"있습니다. 비활성화하면 브릿지가 더 좋아 보이지만 짧은 브릿지 거리에 대해서만 "
-"안정적입니다."
msgid "Thick internal bridges"
msgstr "두꺼운 내부 브릿지"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"활성화되면 두꺼운 내부 브릿지가 사용됩니다. 일반적으로 다음을 권장합니다.이 "
-"기능을 켜두세요. 하지만 다음과 같은 경우에는 끄는 것을 고려해 보세요.큰 노즐"
-"을 사용합니다."
msgid "Extra bridge layers (beta)"
msgstr "추가 브릿지 레이어(베타)"
@@ -13493,7 +13753,7 @@ msgstr ""
"정합니다."
msgid "Grab length"
-msgstr ""
+msgstr "그랩 길이"
msgid "Extruder Color"
msgstr "압출기 색상"
@@ -13744,16 +14004,16 @@ msgstr ""
"을 의미합니다."
msgid "Filament map to extruder"
-msgstr ""
+msgstr "압출기에 대한 필라멘트 맵"
msgid "Filament map to extruder."
msgstr ""
msgid "Auto For Flush"
-msgstr ""
+msgstr "자동 플러시"
msgid "Auto For Match"
-msgstr ""
+msgstr "자동 경기"
msgid "Enable filament dynamic map"
msgstr ""
@@ -13768,7 +14028,7 @@ msgid "Printer has a filament switcher hardware (e.g., AMS)."
msgstr ""
msgid "Flush temperature"
-msgstr ""
+msgstr "플러시 온도"
msgid ""
"Temperature when flushing filament. 0 indicates the upper bound of the "
@@ -13776,7 +14036,7 @@ msgid ""
msgstr ""
msgid "Flush volumetric speed"
-msgstr ""
+msgstr "플러시 체적 속도"
msgid ""
"Volumetric speed when flushing filament. 0 indicates the max volumetric "
@@ -13829,19 +14089,21 @@ msgstr ""
"0입니다. 통계용으로만 사용됩니다"
msgid "Bed temperature type"
-msgstr ""
+msgstr "베드 온도 유형"
msgid ""
"This option determines how the bed temperature is set during slicing: based "
"on the temperature of the first filament or the highest temperature of the "
"printed filaments."
msgstr ""
+"이 옵션은 첫 번째 필라멘트의 온도 또는 출력된 필라멘트의 최고 온도에 따라 슬"
+"라이싱 중 베드 온도를 설정하는 방법을 결정합니다."
msgid "By First filament"
-msgstr ""
+msgstr "By 첫 번째 필라멘트"
msgid "By Highest Temp"
-msgstr ""
+msgstr "최고 온도 기준"
msgid ""
"Filament diameter is used to calculate extrusion in G-code, so it is "
@@ -13871,7 +14133,7 @@ msgstr ""
"filament_diameter = sqrt( (4 * pellet_flow_coefficient) / PI )"
msgid "Adaptive volumetric speed"
-msgstr ""
+msgstr "적응형 볼륨 속도"
msgid ""
"When enabled, the extrusion flow is limited by the smaller of the fitted "
@@ -13883,7 +14145,7 @@ msgid ""
msgstr ""
msgid "Max volumetric speed multinomial coefficients"
-msgstr ""
+msgstr "최대 체적 속도 다항 계수"
msgid "Shrinkage (XY)"
msgstr "수축(XY)"
@@ -13911,7 +14173,7 @@ msgstr ""
"우 94%). 보상을 위해 부품의 크기가 Z로 조정됩니다."
msgid "Adhesiveness Category"
-msgstr ""
+msgstr "접착력 카테고리"
msgid "Filament category."
msgstr ""
@@ -14007,53 +14269,60 @@ msgstr ""
"이밍하여 연속적인 채우기 또는 희생 물체 압출을 안정적으로 생성합니다."
msgid "Wipe tower cooling"
-msgstr ""
+msgstr "와이프 타워 냉각"
msgid "Temperature drop before entering filament tower"
-msgstr ""
+msgstr "필라멘트 타워 진입 전 온도 강하"
msgid "Interface layer pre-extrusion distance"
-msgstr ""
+msgstr "인터페이스 레이어 사전 압출 거리"
msgid ""
"Pre-extrusion distance for prime tower interface layer (where different "
"materials meet)."
msgstr ""
+"프라임 타워 인터페이스 레이어(서로 다른 재료가 만나는 부분)의 사전 압출 거"
+"리."
msgid "Interface layer pre-extrusion length"
-msgstr ""
+msgstr "인터페이스 레이어 사전 압출 길이"
msgid ""
"Pre-extrusion length for prime tower interface layer (where different "
"materials meet)."
msgstr ""
+"프라임 타워 인터페이스 레이어(서로 다른 재료가 만나는 부분)의 사전 압출 길이."
msgid "Tower ironing area"
-msgstr ""
+msgstr "타워 다림질 영역"
msgid ""
"Ironing area for prime tower interface layer (where different materials "
"meet)."
msgstr ""
+"프라임 타워 인터페이스 레이어(서로 다른 재료가 만나는 부분)의 다림질 영역."
msgid "mm²"
msgstr "mm²"
msgid "Interface layer purge length"
-msgstr ""
+msgstr "인터페이스 레이어 퍼지 길이"
msgid ""
"Purge length for prime tower interface layer (where different materials "
"meet)."
msgstr ""
+"프라임 타워 인터페이스 레이어(서로 다른 재료가 만나는 부분)의 퍼지 길이."
msgid "Interface layer print temperature"
-msgstr ""
+msgstr "인터페이스 레이어 출력 온도"
msgid ""
"Print temperature for prime tower interface layer (where different materials "
"meet). If set to -1, use max recommended nozzle temperature."
msgstr ""
+"서로 다른 재료가 만나는 프라임 타워 인터페이스 층의 출력 온도입니다. -1로 설"
+"정하면 권장 최대 노즐 온도를 사용합니다."
msgid "Speed of the last cooling move"
msgstr "마지막 냉각 이동 속도"
@@ -14104,7 +14373,7 @@ msgid "Filament density. For statistics only."
msgstr "필라멘트 밀도. 통계 전용"
msgid "g/cm³"
-msgstr ""
+msgstr "g/cm³"
msgid "The material type of filament."
msgstr "필라멘트의 재료 유형"
@@ -14118,12 +14387,14 @@ msgstr ""
"가용성 재료는 일반적으로 서포트 및 서포트 접점을 출력하는 데 사용됩니다"
msgid "Filament ramming length"
-msgstr ""
+msgstr "필라멘트 충돌 길이"
msgid ""
"When changing the extruder, it is recommended to extrude a certain length of "
"filament from the original extruder. This helps minimize nozzle oozing."
msgstr ""
+"압출기를 교체할 때는 원래 압출기에서 일정 길이의 필라멘트를 압출하는 것이 좋"
+"습니다. 이렇게 하면 노즐 흘러내림을 최소화할 수 있습니다."
msgid "Support material"
msgstr "서포트 재료"
@@ -14134,7 +14405,7 @@ msgstr ""
"서포트 재료는 일반적으로 서포트 및 서포트 접점을 출력하는 데 사용됩니다"
msgid "Filament printable"
-msgstr ""
+msgstr "필라멘트 출력 가능"
msgid "The filament is printable in extruder."
msgstr ""
@@ -14199,9 +14470,10 @@ msgid "Align infill direction to model"
msgstr ""
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
msgid "Insert solid layers"
@@ -14219,11 +14491,12 @@ msgstr ""
msgid ""
"Using multiple lines for the infill pattern, if supported by infill pattern."
-msgstr ""
+msgstr "채우기 패턴에서 지원되는 경우 채우기 패턴에 여러 줄을 사용합니다."
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -14239,13 +14512,13 @@ msgid "Line pattern for internal sparse infill."
msgstr "드문 내부 채우기의 선 패턴"
msgid "Zig Zag"
-msgstr ""
+msgstr "지그재그"
msgid "Cross Zag"
-msgstr ""
+msgstr "크로스 재그"
msgid "Locked Zag"
-msgstr ""
+msgstr "잠긴 재그"
msgid "Line"
msgstr "선"
@@ -14318,6 +14591,27 @@ msgid ""
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
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"
msgstr "드문 채우기 고정점 길이"
@@ -14402,8 +14696,8 @@ msgid "mm/s² or %"
msgstr "mm/s² 또는 %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"드문 채우기 가속도. 값이 백분율 (예. 100%)로 표시되면 기본 가속도를 기준으로 "
"계산됩니다."
@@ -14532,10 +14826,10 @@ msgstr "팬 최대 속도 레이어"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"팬 속도는 \"close_fan_the_first_x_layers\" 의 0에서 \"full_fan_speed_layer\" "
"의 최고 속도까지 선형적으로 증가합니다. \"full_fan_speed_layer\"가 "
@@ -14580,7 +14874,7 @@ msgstr ""
"이 가해져 파트가 뒤틀리는 현상을 줄일 수 있습니다."
msgid "Ironing fan speed"
-msgstr ""
+msgstr "다림질 속도"
msgid ""
"This part cooling fan speed is applied when ironing. Setting this parameter "
@@ -14667,7 +14961,7 @@ msgid "Whether to apply fuzzy skin on the first layer."
msgstr "첫 번째 레이어에 퍼지 스킨을 적용할지 여부"
msgid "Fuzzy skin generator mode"
-msgstr ""
+msgstr "솜털 스킨 생성기 모드"
#, c-format, boost-format
msgid ""
@@ -14694,10 +14988,10 @@ msgid ""
msgstr ""
msgid "Displacement"
-msgstr ""
+msgstr "배수량"
msgid "Extrusion"
-msgstr ""
+msgstr "압출"
msgid "Combined"
msgstr "결합"
@@ -14908,7 +15202,7 @@ msgid "Stainless steel"
msgstr "스테인레스 스틸"
msgid "Tungsten carbide"
-msgstr ""
+msgstr "텅스텐 카바이드"
msgid "Nozzle HRC"
msgstr "노즐 HRC"
@@ -15112,12 +15406,13 @@ msgstr ""
"다. 벽은 여전히 설정된 레이어 높이로 출력됩니다."
msgid "Infill shift step"
-msgstr ""
+msgstr "인필 시프트 단계"
msgid ""
"This parameter adds a slight displacement to each layer of infill to create "
"a cross texture."
msgstr ""
+"이 파라미터는 각 인필 레이어에 약간의 변위를 추가하여 교차 텍스처를 만듭니다."
msgid "Sparse infill rotation template"
msgstr ""
@@ -15145,7 +15440,7 @@ msgid ""
msgstr ""
msgid "Skeleton infill density"
-msgstr ""
+msgstr "골격 채우기 밀도"
msgid ""
"The remaining part of the model contour after removing a certain depth from "
@@ -15156,7 +15451,7 @@ msgid ""
msgstr ""
msgid "Skin infill density"
-msgstr ""
+msgstr "표면 채우기 밀도"
msgid ""
"The portion of the model's outer surface within a certain depth range is "
@@ -15167,28 +15462,28 @@ msgid ""
msgstr ""
msgid "Skin infill depth"
-msgstr ""
+msgstr "표면 채우기 깊이"
msgid "The parameter sets the depth of skin."
-msgstr ""
+msgstr "매개변수는 표면의 깊이를 설정합니다."
msgid "Infill lock depth"
-msgstr ""
+msgstr "채우기 잠금 깊이"
msgid "The parameter sets the overlapping depth between the interior and skin."
-msgstr ""
+msgstr "매개변수는 내부와 표면 사이의 겹치는 깊이를 설정합니다."
msgid "Skin line width"
-msgstr ""
+msgstr "표면 선 폭"
msgid "Adjust the line width of the selected skin paths."
-msgstr ""
+msgstr "선택한 표면 경로의 선 폭를 조정합니다."
msgid "Skeleton line width"
-msgstr ""
+msgstr "골격 선 폭"
msgid "Adjust the line width of the selected skeleton paths."
-msgstr ""
+msgstr "선택한 골격 경로의 선 폭를 조정합니다."
msgid "Symmetric infill Y axis"
msgstr ""
@@ -15226,22 +15521,24 @@ msgstr ""
"값은 노즐 직경보다 커서는 안 됩니다."
msgid "Enable clumping detection"
-msgstr ""
+msgstr "뭉침 감지 활성화"
msgid "Clumping detection layers"
-msgstr ""
+msgstr "뭉침 감지 레이어"
msgid "Clumping detection layers."
-msgstr ""
+msgstr "뭉침 감지 레이어."
msgid "Probing exclude area of clumping"
-msgstr ""
+msgstr "뭉침 영역 프로빙 제외"
msgid "Probing exclude area of clumping."
-msgstr ""
+msgstr "뭉침 감지 제외 영역."
-msgid "Filament to print internal sparse infill."
-msgstr "내부 드문 채우기를 출력할 필라멘트."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -15473,7 +15770,7 @@ msgid "This G-code is inserted at every layer change after the Z lift."
msgstr "이 Gcode는 Z올리기 이후 모든 레이어 변경에 삽입됩니다"
msgid "Clumping detection G-code"
-msgstr ""
+msgstr "뭉침 감지 G-code"
msgid "Supports silent mode"
msgstr "무음 모드 지원"
@@ -15859,10 +16156,10 @@ msgstr ""
"M106 P2 S(0-255)"
msgid "For the first"
-msgstr ""
+msgstr "첫 몇개의"
msgid "Set special auxiliary cooling fan for the first certain layers."
-msgstr ""
+msgstr "첫 몇 개의 특정 레이어에 대해 특수 보조 냉각 팬을 설정하십시오."
msgid ""
"Auxiliary fan speed will be ramped up linearly from layer \"For the first\" "
@@ -16035,8 +16332,21 @@ msgstr ""
"선 너비에 비례하여 오버행 백분율을 감지하고 다른 속도를 사용하여 출력합니다. "
"100%% 오버행의 경우 브릿지 속도가 사용됩니다."
-msgid "Filament to print walls."
-msgstr "벽을 출력하는 필라멘트"
+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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -16206,10 +16516,10 @@ msgid ""
msgstr "실험적 기능. 필라멘트 교체 시 절단 전 후퇴 길이."
msgid "Long retraction when extruder change"
-msgstr ""
+msgstr "압출기 교체 시 긴 수축"
msgid "Retraction distance when extruder change"
-msgstr ""
+msgstr "압출기 교체 시 수축 거리"
msgid "Z-hop height"
msgstr "Z올리기 높이"
@@ -16308,7 +16618,7 @@ msgid "Top and Bottom"
msgstr "상단 및 하단 표면"
msgid "Direct Drive"
-msgstr ""
+msgstr "직접 드라이브"
msgid "Bowden"
msgstr "보우덴"
@@ -16525,8 +16835,8 @@ msgid "Role base wipe speed"
msgstr "역할 기반 노즐 청소 속도"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -16698,11 +17008,20 @@ msgid ""
"internal solid infill."
msgstr "임계값보다 작은 드문 채우기 영역은 꽉찬 내부 채우기로 대체됩니다"
-msgid "Solid infill"
-msgstr "솔리드 채우기"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "솔리드 인필을 출력하는 필라멘트"
+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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -17058,11 +17377,10 @@ msgid "Support/raft base"
msgstr "서포트/라프트 기본"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"기본 서포트 및 라프트를 출력하기 위한 필라멘트. \"기본값\"은 지원을 위한 특"
-"정 필라멘트가 없으며 현재 필라멘트가 사용됨을 의미합니다"
msgid "Avoid interface filament for base"
msgstr "베이스용 인터페이스 필라멘트 줄이기"
@@ -17089,11 +17407,10 @@ msgid "Support/raft interface"
msgstr "서포트/라프트 접점"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"서포트 및 라프트 접점을 출력하기 위한 필라멘트. \"기본값\"은 지원을 위한 특"
-"정 필라멘트가 없으며 현재 필라멘트가 사용됨을 의미합니다"
msgid "Top interface layers"
msgstr "상단 접점 레이어"
@@ -17386,8 +17703,8 @@ msgstr "온도 제어 활성화"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -17512,7 +17829,7 @@ msgstr ""
"로 상단 쉘 레이어에 의해 결정됨을 의미합니다"
msgid "Top surface density"
-msgstr ""
+msgstr "상단 표면 밀도"
msgid ""
"Density of top surface layer. A value of 100% creates a fully solid, smooth "
@@ -17523,7 +17840,7 @@ msgid ""
msgstr ""
msgid "Bottom surface density"
-msgstr ""
+msgstr "하단 표면 밀도"
msgid ""
"Density of the bottom surface layer. Intended for aesthetic or functional "
@@ -17575,10 +17892,10 @@ msgstr ""
"하고 노즐 내부의 압력을 안정화하는 데 사용할 수 있습니다."
msgid "Internal ribs"
-msgstr ""
+msgstr "내부 갈비"
msgid "Enable internal ribs to increase the stability of the prime tower."
-msgstr ""
+msgstr "프라임 타워의 안정성을 높이기 위해 내부 리브를 활성화합니다."
msgid "Purging volumes"
msgstr "버리기 볼륨"
@@ -17611,6 +17928,8 @@ msgid ""
"Brim width of prime tower, negative number means auto calculated width based "
"on the height of prime tower."
msgstr ""
+"프라임 타워의 테두리 너비, 음수는 프라임 타워 높이에 따라 자동으로 계산된 너"
+"비를 의미합니다."
msgid "Stabilization cone apex angle"
msgstr "안정화 원뿔 정점 각도"
@@ -17681,7 +18000,7 @@ msgid "Rib"
msgstr ""
msgid "Extra rib length"
-msgstr ""
+msgstr "추가 리브 길이"
msgid ""
"Positive values can increase the size of the rib wall, while negative values "
@@ -17690,13 +18009,13 @@ msgid ""
msgstr ""
msgid "Rib width"
-msgstr ""
+msgstr "리브 너비"
msgid "Rib width is always less than half the prime tower side length."
-msgstr ""
+msgstr "리브 너비는 항상 프라임 타워 변 길이의 절반 미만입니다."
msgid "Fillet wall"
-msgstr ""
+msgstr "필렛 벽"
msgid "The wall of prime tower will fillet."
msgstr ""
@@ -17720,13 +18039,13 @@ msgstr ""
"다. 이러한 값은 아래의 전체 청소 부피 생성을 단순화하는 데 사용됩니다."
msgid "Skip points"
-msgstr ""
+msgstr "포인트 건너뛰기"
msgid "The wall of prime tower will skip the start points of wipe path."
msgstr ""
msgid "Enable tower interface features"
-msgstr ""
+msgstr "타워 인터페이스 기능 활성화"
msgid ""
"Enable optimized prime tower interface behavior when different materials "
@@ -17743,7 +18062,7 @@ msgid ""
msgstr ""
msgid "Infill gap"
-msgstr ""
+msgstr "인필 갭"
msgid "Infill gap."
msgstr ""
@@ -18067,6 +18386,9 @@ msgstr "잘못된 값 "
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "나선형 꽃병 모드가 활성화된 경우 유효하지 않은 값: "
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "너무 넓은 선 너비 "
@@ -18315,12 +18637,18 @@ msgid "Debug level"
msgstr "디버그 수준"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
msgstr ""
"디버그 로깅 수준을 설정합니다. 0:치명적, 1:오류, 2:경고, 3:정보, 4:디버그, 5:"
"추적\n"
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
+msgstr ""
+
msgid "Enable timelapse for print"
msgstr "출력에 타임랩스 활성화"
@@ -18811,9 +19139,12 @@ msgid ""
"is also fuzzy skin painted.\n"
"XY Size compensation cannot be combined with fuzzy skin painting."
msgstr ""
+"물체가 XY 크기 교정을 활성화했으며, 이 교정도 솜털 표면이 페인팅되었기 때문"
+"에 사용되지 않습니다.\n"
+"XY 크기 교정은 솜털 표면 페인팅과 결합할 수 없습니다."
msgid "Object name"
-msgstr ""
+msgstr "물체 이름"
msgid "Support: generate contact points"
msgstr "서포트: 접점 생성"
@@ -18822,7 +19153,7 @@ msgid "Loading of a model file failed."
msgstr "모델 파일 로드에 실패했습니다."
msgid "Meshing of a model file failed or no valid shape."
-msgstr ""
+msgstr "모델 파일의 메싱이 실패했거나 유효한 형태가 없습니다."
msgid "The supplied file couldn't be read because it's empty"
msgstr "제공된 파일이 비어 있어 읽을 수 없습니다"
@@ -18946,7 +19277,7 @@ msgstr "새 사전 설정을 생성하지 못했습니다."
#, c-format, boost-format
msgid "Could not find parameter: %s."
-msgstr ""
+msgstr "매개 변수를 찾을 수 없습니다: %s."
msgid ""
"Are you sure to cancel the current calibration and return to the home page?"
@@ -18981,6 +19312,7 @@ msgid ""
"Only one of the results with the same name: %s will be saved. Are you sure "
"you want to override the other results?"
msgstr ""
+"이름이 같은 결과 중 %s 하나만 저장됩니다. 다른 결과를 재정의하시겠습니까?"
#, c-format, boost-format
msgid ""
@@ -18997,6 +19329,9 @@ msgid ""
"type, nozzle diameter, and nozzle flow are the same.\n"
"Are you sure you want to override the historical result?"
msgstr ""
+"동일한 압출기 내에서 필라멘트 유형, 노즐 직경 및 노즐 흐름이 동일한 경우 이름"
+"(%s)은 고유해야 합니다.\n"
+"과거 결과를 재정의하시겠습니까?"
#, c-format, boost-format
msgid ""
@@ -19273,25 +19608,27 @@ msgid "- ℃"
msgstr ""
msgid "Synchronize nozzle and AMS information"
-msgstr ""
+msgstr "노즐 및 AMS 정보 동기화"
msgid "Please connect the printer first before synchronizing."
-msgstr ""
+msgstr "동기화하기 전에 먼저 프린터를 연결하세요."
#, c-format, boost-format
msgid ""
"Printer %s nozzle information has not been set. Please configure it before "
"proceeding with the calibration."
msgstr ""
+"프린터 %s 노즐 정보가 설정되지 않았습니다. 보정을 진행하기 전에 구성해 주세"
+"요."
msgid "AMS and nozzle information are synced"
-msgstr ""
+msgstr "AMS와 노즐 정보가 동기화되었습니다."
msgid "Nozzle Flow"
-msgstr ""
+msgstr "노즐 흐름"
msgid "Nozzle Info"
-msgstr ""
+msgstr "노즐 정보"
msgid "Plate Type"
msgstr "플레이트 타입"
@@ -19332,12 +19669,12 @@ msgid ""
msgstr ""
msgid "Sync AMS and nozzle information"
-msgstr ""
+msgstr "AMS와 노즐 정보 동기화"
msgid ""
"Calibration only supports cases where the left and right nozzle diameters "
"are identical."
-msgstr ""
+msgstr "보정은 왼쪽과 오른쪽 노즐 직경이 동일한 경우에만 지원됩니다."
msgid "From k Value"
msgstr "K 값에서"
@@ -19391,6 +19728,8 @@ msgid ""
"type, nozzle diameter, and nozzle flow are identical. Please choose a "
"different name."
msgstr ""
+"동일한 압출기 내에서 필라멘트 유형, 노즐 직경 및 노즐 흐름이 동일한 경우 "
+"'%s'라는 이름은 고유해야 합니다. 다른 이름을 선택해 주세요."
msgid "New Flow Dynamic Calibration"
msgstr "새로운 압출량 동적 교정"
@@ -19399,10 +19738,10 @@ msgid "The filament must be selected."
msgstr "필라멘트를 선택해야 합니다."
msgid "The extruder must be selected."
-msgstr ""
+msgstr "압출기를 선택해야 합니다."
msgid "The nozzle must be selected."
-msgstr ""
+msgstr "노즐을 선택해야 합니다."
msgid "Network lookup"
msgstr "네트워크 검색"
@@ -19736,6 +20075,15 @@ msgstr ""
msgid "Top Surface Pattern"
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"
msgstr "Gcode를 프린터 호스트로 보내기"
@@ -19758,6 +20106,48 @@ msgstr "업로드 파일 이름이 \"%s\"로 끝나지 않습니다. 계속하
msgid "Upload"
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"
msgstr "출력 호스트 업로드 대기열"
@@ -19802,9 +20192,6 @@ msgstr ""
"선택한 베드 유형이 파일과 일치하지 않습니다. 출력을 시작하기 전에 확인해 주세"
"요."
-msgid "Time-lapse"
-msgstr "타임랩스"
-
msgid "Heated Bed Leveling"
msgstr "히트 베드 레벨링"
@@ -19814,6 +20201,16 @@ msgstr "텍스처 빌드 플레이트(A면)"
msgid "Smooth Build Plate (Side B)"
msgstr "매끄러운 빌드 플레이트(B면)"
+#, 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"
msgstr "선택한 부품에서 부울 연산을 수행할 수 없습니다"
@@ -19997,8 +20394,8 @@ msgstr ""
"다시 작성하시겠습니까?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
@@ -20039,10 +20436,10 @@ msgid "Can't find my printer model"
msgstr "내 프린터 모델을 찾을 수 없습니다"
msgid "Input Custom Nozzle Diameter"
-msgstr ""
+msgstr "사용자 지정 노즐 직경 입력"
msgid "Can't find my nozzle diameter"
-msgstr ""
+msgstr "노즐 직경을 찾을 수 없습니다"
msgid "Printable Space"
msgstr "출력 가능 공간"
@@ -20163,12 +20560,14 @@ msgid ""
msgstr "노즐을 교체할 프린터를 아직 선택하지 않으셨습니다. 선택해 주세요."
msgid "The entered nozzle diameter is invalid, please re-enter:\n"
-msgstr ""
+msgstr "입력한 노즐 직경이 잘못되었습니다. 다시 입력해 주세요:\n"
msgid ""
"The system preset does not allow creation. \n"
"Please re-enter the printer model or nozzle diameter."
msgstr ""
+"시스템 프리셋으로 만들 수 없습니다.\n"
+"프린터 모델 또는 노즐 직경을 다시 입력하세요."
msgid ""
"\n"
@@ -20411,15 +20810,19 @@ msgid ""
"The printer nozzle information has not been set.\n"
"Please configure it before proceeding with the calibration."
msgstr ""
+"프린터 노즐 정보가 설정되지 않았습니다.\n"
+"보정을 진행하기 전에 구성해 주세요."
msgid ""
"The nozzle type does not match the actual printer nozzle type.\n"
"Please click the Sync button above and restart the calibration."
msgstr ""
+"노즐 유형이 실제 프린터 노즐 유형과 일치하지 않습니다.\n"
+"위의 동기화 버튼을 클릭하고 보정을 다시 시작하세요."
#, c-format, boost-format
msgid "Printing %1s material with %2s nozzle may cause nozzle damage."
-msgstr ""
+msgstr "%2s 노즐로 %1s 자료를 인쇄하면 노즐이 손상될 수 있습니다."
msgid "Need select printer"
msgstr "프린터 선택 필요"
@@ -20430,13 +20833,14 @@ msgstr "시작, 끝 또는 단계가 유효한 값이 아닙니다."
msgid ""
"The number of printer extruders and the printer selected for calibration "
"does not match."
-msgstr ""
+msgstr "프린터 압출기 수와 보정을 위해 선택한 프린터가 일치하지 않습니다."
#, c-format, boost-format
msgid ""
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
+"%s 압출기의 노즐 직경은 0.2mm이며 자동 유동 역학 보정을 지원하지 않습니다."
#, c-format, boost-format
msgid ""
@@ -20444,11 +20848,15 @@ msgid ""
"actual nozzle diameter.\n"
"Please click the Sync button above and restart the calibration."
msgstr ""
+"현재 선택된 %s 압출기의 노즐 직경이 실제 노즐 직경과 일치하지 않습니다.\n"
+"위의 동기화 버튼을 클릭하고 보정을 다시 시작하세요."
msgid ""
"The nozzle diameter does not match the actual printer nozzle diameter.\n"
"Please click the Sync button above and restart the calibration."
msgstr ""
+"노즐 직경이 실제 프린터 노즐 직경과 일치하지 않습니다.\n"
+"위의 동기화 버튼을 클릭하고 보정을 다시 시작하세요."
#, c-format, boost-format
msgid ""
@@ -20456,6 +20864,9 @@ msgid ""
"printer nozzle type.\n"
"Please click the Sync button above and restart the calibration."
msgstr ""
+"현재 선택한 %s 압출기의 노즐 유형이 실제 프린터 노즐 유형과 일치하지 않습니"
+"다.\n"
+"위의 동기화 버튼을 클릭하고 보정을 다시 시작하십시오."
msgid ""
"Unable to calibrate: maybe because the set calibration value range is too "
@@ -20475,9 +20886,18 @@ msgid ""
"agents are registered at startup."
msgstr ""
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "유효한 프린터 호스트 참조를 가져올 수 없습니다"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "성공!"
@@ -20523,6 +20943,30 @@ msgstr "로그인/테스트"
msgid "Connection to printers connected via the print host failed."
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
msgid "Mismatched type of print host: %s"
msgstr "일치하지 않는 출력 호스트 유형: %s"
@@ -20880,28 +21324,41 @@ msgid ""
"vendor for suitable profile before printing and adjust some parameters "
"according to its performances."
msgstr ""
+"이것은 일반적으로 사용되는 필라멘트도 아니고 Bambu 필라멘트도 아니며 브랜드마"
+"다 매우 다양하므로 출력하기 전에 공급업체에 적합한 프로파일을 요청하고 성능"
+"에 따라 일부 매개 변수를 조정하는 것이 좋습니다."
msgid ""
"When printing this filament, there's a risk of warping and low layer "
"adhesion strength. To get better results, please refer to this wiki: "
"Printing Tips for High Temp / Engineering materials."
msgstr ""
+"이 필라멘트를 출력할 때는 뒤틀리거나 레이어 접착 강도가 낮아질 위험이 있습니"
+"다. 더 나은 결과를 얻으려면 이 위키를 참조하세요: 고온/엔지니어링 소재 출력 "
+"팁을 참조하세요."
msgid ""
"When printing this filament, there's a risk of nozzle clogging, oozing, "
"warping and low layer adhesion strength. To get better results, please refer "
"to this wiki: Printing Tips for High Temp / Engineering materials."
msgstr ""
+"이 필라멘트를 출력할 때는 노즐 막힘, 흘러내림, 뒤틀림 및 낮은 레이어 접착 강"
+"도의 위험이 있습니다. 더 나은 결과를 얻으려면 이 위키를 참조하세요: 고온/엔지"
+"니어링 재료를 위한 출력 팁을 참조하세요."
msgid ""
"To get better transparent or translucent results with the corresponding "
"filament, please refer to this wiki: Printing tips for transparent PETG."
msgstr ""
+"해당 필라멘트로 더 나은 투명 또는 반투명 결과를 얻으려면 이 위키를 참조하세"
+"요: 투명 PETG를 위한 출력 팁을 참조하세요."
msgid ""
"To make the prints get higher gloss, please dry the filament before use, and "
"set the outer wall speed to be 40 to 60 mm/s when slicing."
msgstr ""
+"출력물의 광택을 높이려면 사용하기 전에 필라멘트를 건조시키고 슬라이스할 때 외"
+"벽 속도를 40~60mm/s로 설정하세요."
msgid ""
"This filament is only used to print models with a low density usually, and "
@@ -20909,24 +21366,36 @@ msgid ""
"refer to this wiki: Instructions for printing RC model with foaming PLA (PLA "
"Aero)."
msgstr ""
+"이 필라멘트는 일반적으로 밀도가 낮은 모델을 출력하는 데만 사용되며 몇 가지 특"
+"수 매개변수가 필요합니다. 더 나은 출력 품질을 얻으려면 이 위키를 참조하세요: "
+"발포 PLA(PLA Aero)로 RC 모델 출력 지침을 참조하세요."
msgid ""
"This filament is only used to print models with a low density usually, and "
"some special parameters are required. To get better printing quality, please "
"refer to this wiki: ASA Aero Printing Guide."
msgstr ""
+"이 필라멘트는 일반적으로 밀도가 낮은 모델을 출력하는 데만 사용되며 몇 가지 특"
+"수 매개변수가 필요합니다. 더 나은 출력 품질을 얻으려면 이 위키를 참조하세요: "
+"ASA 에어로 출력 가이드."
msgid ""
"This filament is too soft and not compatible with the AMS. Printing it is of "
"many requirements, and to get better printing quality, please refer to this "
"wiki: TPU printing guide."
msgstr ""
+"이 필라멘트는 너무 부드러워서 AMS와 호환되지 않습니다. 출력에는 많은 요구 사"
+"항이 있으며 더 나은 출력 품질을 얻으려면 이 위키를 참조하세요: TPU 출력 가이"
+"드."
msgid ""
"This filament has high enough hardness (about 67D) and is compatible with "
"the AMS. Printing it is of many requirements, and to get better printing "
"quality, please refer to this wiki: TPU printing guide."
msgstr ""
+"이 필라멘트는 경도가 충분히 높으며(약 67D) AMS와 호환됩니다. 출력에는 많은 요"
+"구 사항이 있으며 더 나은 출력 품질을 얻으려면 이 위키를 참조하세요: TPU 출력 "
+"가이드."
msgid ""
"If you are to print a kind of soft TPU, please don't slice with this "
@@ -20934,6 +21403,9 @@ msgid ""
"55D) and is compatible with the AMS. To get better printing quality, please "
"refer to this wiki: TPU printing guide."
msgstr ""
+"부드러운 TPU를 출력할 경우 이 프로파일로 슬라이스하지 마시고, 경도가 충분히 "
+"높고(55D 이상) AMS와 호환되는 TPU에만 사용하시기 바랍니다. 더 나은 출력 품질"
+"을 얻으려면 이 위키를 참조하세요: TPU 출력 가이드."
msgid ""
"This is a water-soluble support filament, and usually it is only for the "
@@ -20941,6 +21413,9 @@ msgid ""
"many requirements, and to get better printing quality, please refer to this "
"wiki: PVA Printing Guide."
msgstr ""
+"수용성 서포트 필라멘트로, 일반적으로 모델 본체가 아닌 서포트 구조에만 사용됩"
+"니다. 이 필라멘트를 출력하려면 많은 요구 사항이 있으며, 더 나은 출력 품질을 "
+"얻으려면 이 위키를 참조하세요: PVA 프린팅 가이드."
msgid ""
"This is a non-water-soluble support filament, and usually it is only for the "
@@ -20948,51 +21423,57 @@ msgid ""
"quality, please refer to this wiki: Printing Tips for Support Filament and "
"Support Function."
msgstr ""
+"이것은 수용성이 아닌 서포트 필라멘트로, 일반적으로 모델 본체가 아닌 서포트 구"
+"조에만 사용됩니다. 더 나은 출력 품질을 얻으려면 이 위키를 참조하세요: 서포트 "
+"필라멘트 및 서포트 기능을 위한 출력 팁을 참고하세요."
msgid ""
"The generic presets are conservatively tuned for compatibility with a wider "
"range of filaments. For higher printing quality and speeds, please use Bambu "
"filaments with Bambu presets."
msgstr ""
+"일반 사전 설정은 더 다양한 필라멘트와의 호환성을 위해 보수적으로 조정되었습니"
+"다. 출력 품질과 속도를 높이려면 Bambu 사전 설정과 함께 Bambu 필라멘트를 사용"
+"하세요."
msgid "High quality profile for 0.2mm nozzle, prioritizing print quality."
-msgstr ""
+msgstr "출력 품질을 우선시하는 0.2mm 노즐에 대한 고품질 프로필."
msgid ""
"High quality profile for 0.16mm layer height, prioritizing print quality and "
"strength."
-msgstr ""
+msgstr "출력 품질과 강도를 우선시하는 0.16mm 레이어 높이의 고품질 프로필."
msgid "Standard profile for 0.16mm layer height, prioritizing speed."
-msgstr ""
+msgstr "속도를 우선시하는 0.16mm 레이어 높이의 표준 프로필."
msgid ""
"High quality profile for 0.2mm layer height, prioritizing strength and print "
"quality."
-msgstr ""
+msgstr "강도 및 출력 품질을 우선시하는 0.2mm 레이어 높이의 고품질 프로필."
msgid "Standard profile for 0.4mm nozzle, prioritizing speed."
-msgstr ""
+msgstr "속도를 우선시하는 0.4mm 노즐의 표준 프로필."
msgid ""
"High quality profile for 0.6mm nozzle, prioritizing print quality and "
"strength."
-msgstr ""
+msgstr "출력 품질과 강도를 우선시하는 0.6mm 노즐용 고품질 프로필."
msgid "Strength profile for 0.6mm nozzle, prioritizing strength."
-msgstr ""
+msgstr "강도를 우선시하는 0.6mm 노즐의 강도 프로필"
msgid "Standard profile for 0.6mm nozzle, prioritizing speed."
-msgstr ""
+msgstr "속도를 우선시하는 0.6mm 노즐의 표준 프로필."
msgid "High quality profile for 0.8mm nozzle, prioritizing print quality."
-msgstr ""
+msgstr "출력 품질을 우선시하는 0.8mm 노즐용 고품질 프로필."
msgid "Strength profile for 0.8mm nozzle, prioritizing strength."
-msgstr ""
+msgstr "강도를 우선시하는 0.8mm 노즐의 강도 프로필."
msgid "Standard profile for 0.8mm nozzle, prioritizing speed."
-msgstr ""
+msgstr "속도를 우선시하는 0.8mm 노즐의 표준 프로필."
msgid "No AMS"
msgstr "AMS 없음"
@@ -21136,19 +21617,19 @@ msgid "Removed"
msgstr "삭제됨"
msgid "Don't remind me again"
-msgstr ""
+msgstr "다시 알리지 마세요"
msgid "No further pop-up will appear. You can reopen it in 'Preferences'"
-msgstr ""
+msgstr "더 이상 팝업이 표시되지 않습니다. '환경설정'에서 다시 열 수 있습니다"
msgid "Filament-Saving Mode"
-msgstr ""
+msgstr "필라멘트 절약 모드"
msgid "Convenience Mode"
-msgstr ""
+msgstr "편의 모드"
msgid "Custom Mode"
-msgstr ""
+msgstr "사용자 지정 모드"
msgid ""
"Generates filament grouping for the left and right nozzles based on the most "
@@ -21162,19 +21643,19 @@ msgid ""
msgstr ""
msgid "Manually assign filament to the left or right nozzle"
-msgstr ""
+msgstr "필라멘트를 왼쪽 또는 오른쪽 노즐에 수동으로 할당합니다"
msgid "Global settings"
-msgstr ""
+msgstr "글로벌 설정"
msgid "Video tutorial"
-msgstr ""
+msgstr "비디오 자습서"
msgid "(Sync with printer)"
-msgstr ""
+msgstr "(프린터와 동기화)"
msgid "We will slice according to this grouping method:"
-msgstr ""
+msgstr "이 그룹화 방법에 따라 슬라이싱합니다:"
msgid "Tip: You can drag the filaments to reassign them to different nozzles."
msgstr ""
@@ -21183,6 +21664,8 @@ msgid ""
"The filament grouping method for current plate is determined by the dropdown "
"option at the slicing plate button."
msgstr ""
+"현재 플레이트의 필라멘트 그룹화 방법은 슬라이스 플레이트 버튼의 드롭다운 옵션"
+"에 따라 결정됩니다."
msgid "Connected to Obico successfully!"
msgstr "Obico에 성공적으로 연결되었습니다!"
@@ -21206,12 +21689,27 @@ msgid "SimplyPrint account not linked. Go to Connect options to set it up."
msgstr ""
"SimplyPrint 계정이 연결되지 않았습니다. 연결 옵션으로 이동하여 설정합니다."
+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."
msgstr ""
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr ""
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "제공된 상태가 올바르지 않습니다."
@@ -21254,7 +21752,7 @@ msgstr ""
"다!"
msgid "Set the brim type of this object to \"painted\""
-msgstr ""
+msgstr "이 개체의 테두리 유형을 \"페인트\"로 설정합니다"
msgid "invalid brim ears"
msgstr ""
@@ -21266,57 +21764,57 @@ msgid "Please select single object."
msgstr "단일 객체를 선택하세요."
msgid "Zoom Out"
-msgstr ""
+msgstr "축소"
msgid "Zoom In"
-msgstr ""
+msgstr "확대"
msgid "Load skipping objects information failed. Please try again."
-msgstr ""
+msgstr "건너뛰는 개체 정보를 로드하지 못했습니다. 다시 시도해 주세요."
#, c-format, boost-format
msgid "/%d Selected"
-msgstr ""
+msgstr "/%d 선택됨"
msgid "Nothing selected"
-msgstr ""
+msgstr "선택한 것이 없습니다."
msgid "Over 64 objects in single plate"
-msgstr ""
+msgstr "단일 플레이트에 64개 이상의 물체"
msgid "The current print job cannot be skipped"
-msgstr ""
+msgstr "현재 출력 작업은 건너뛸 수 없습니다."
msgid "Skipping all objects."
-msgstr ""
+msgstr "모든 객체를 건너뛰기."
msgid "The printing job will be stopped. Continue?"
-msgstr ""
+msgstr "출력 작업이 중단됩니다. 계속하시겠습니까?"
#, c-format, boost-format
msgid "Skipping %d objects."
-msgstr ""
+msgstr "%d 물체 건너뛰기"
msgid "This action cannot be undone. Continue?"
-msgstr ""
+msgstr "이 작업은 취소할 수 없습니다. 계속하시겠습니까?"
msgid "Skipping objects."
-msgstr ""
+msgstr "물체 건너뛰기"
msgid "Select Filament"
-msgstr ""
+msgstr "필라멘트 선택"
msgid "Null Color"
-msgstr ""
+msgstr "무효 색상"
msgid "Multiple Color"
-msgstr ""
+msgstr "다중 색상"
msgid "Official Filament"
-msgstr ""
+msgstr "공식 필라멘트"
msgid "More Colors"
-msgstr ""
+msgstr "더 많은 색상"
msgid "Network Plug-in Update Available"
msgstr ""
@@ -21391,53 +21889,59 @@ msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
-msgstr ""
+msgstr "스텝 파일 가져오기 매개변수"
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
+"선형 및 각도 편향이 작을수록 고품질 변환이 가능하지만 처리 시간이 늘어납니다."
msgid "Linear Deflection"
-msgstr ""
+msgstr "선형 편향"
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
-msgstr ""
+msgstr "유효한 값(0.001 < 선형 편향 < 0.1)을 입력하세요"
msgid "Angle Deflection"
-msgstr ""
+msgstr "각도 편향"
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
-msgstr ""
+msgstr "유효한 값(0.01 < 각도 편향 < 1.0)을 입력하세요"
msgid "Split compound and compsolid into multiple objects"
-msgstr ""
+msgstr "컴파운드 및 컴솔리드를 여러 개체로 분할하고 통합하기"
msgid "Number of triangular facets"
-msgstr ""
+msgstr "삼각형 패싯 수"
msgid "Calculating, please wait..."
-msgstr ""
+msgstr "계산 중, 잠시만 기다려주세요..."
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
+"필라멘트가 현재 기계 설정과 호환되지 않을 수 있습니다. 일반 필라멘트 사전 설"
+"정이 사용됩니다."
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
+"미지의 필라멘트 모델. 여전히 이전 필라멘트 사전 설정을 사용하고 있습니다."
msgid "The filament model is unknown. Generic filament presets will be used."
-msgstr ""
+msgstr "필라멘트 모델을 알 수 없습니다. 일반 필라멘트 사전 설정이 사용됩니다."
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
+"필라멘트가 현재 기기 설정과 호환되지 않을 수 있습니다. 임의의 필라멘트 사전 "
+"설정이 사용됩니다."
msgid "The filament model is unknown. A random filament preset will be used."
-msgstr ""
+msgstr "미지의 필라멘트 모델. 무작위 필라멘트 사전 설정이 사용됩니다."
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
@@ -21815,6 +22319,150 @@ msgstr ""
"ABS와 같이 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 "
"높이면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?"
+#~ 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 ""
+#~ "노즐 청소 옵션은 펌웨어 후퇴 모드를 사용하는 경우에는 사용할 수 없습니"
+#~ "다.\n"
+#~ "\n"
+#~ "펌웨어 후퇴를 활성화하기 위해 비활성화하겠습니까?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\"이 before_layer_gcode에서 발견되었으며 절대 압출 모드와 호환되"
+#~ "지 않습니다."
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\"이 layer_gcode에서 발견되었으며 절대 압출 모드와 호환되지 않습니"
+#~ "다."
+
+#, 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 ""
+#~ "브릿지 출력 각도 재정의. 0°으로 두면 브릿지 출력 각도가 자동으로 계산됩니"
+#~ "다. 그렇지 않으면 제공된 각도가 외부 브릿지 출력에 사용됩니다. 0도에는 "
+#~ "180°를 사용합니다."
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "내부 브릿지 각도 오버라이드. 0으로 두면 브릿지 각도가 자동으로 계산됩니"
+#~ "다. 그렇지 않으면 제공된 각도가 내부 브릿지에 사용됩니다. 0 각도는 180°를 "
+#~ "사용합니다.\n"
+#~ "\n"
+#~ "특정 모델이 필요하지 않는 한 0으로 두는 것이 좋습니다."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "내부 브릿지 라인의 밀도(간격)를 제어합니다. 100%는 솔리드 브릿지를 의미합"
+#~ "니다. 기본값은 100%입니다.\n"
+#~ "\n"
+#~ " 내부 브릿지의 밀도가 낮으면 돌출된 브릿지 주변에 공기가 순환할 수 있는 공"
+#~ "간이 더 많아져 냉각 속도가 향상되므로 상단 표면 필링을 줄이고 내부 브릿지 "
+#~ "안정성을 개선하는 데 도움이 됩니다.\n"
+#~ "\n"
+#~ "이 옵션은 특히 두 번째 내부 브릿지 오버 인필 옵션과 함께 사용하면 솔리드 "
+#~ "인필이 압출되기 전에 내부 브릿지 구조를 더욱 개선할 수 있습니다."
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "이 값을 약간 낮추면(예: 0.9) 브릿지의 재질 양을 줄여 처짐을 개선할 수 있습"
+#~ "니다.\n"
+#~ "\n"
+#~ "실제 사용되는 브릿지 압출량은 이 값에 필라멘트 압출량 비율을 곱하여 계산되"
+#~ "며, 설정된 경우 객체의 압출량 비율을 곱합니다."
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "이 값은 내부 브릿지 레이어의 두께를 결정합니다. 이 레이어는 스파스 인필 위"
+#~ "에 있는 첫 번째 레이어입니다. 이 값을 약간 낮추면(예: 0.9) 스파스 인필에 "
+#~ "대한 표면 품질을 향상시킬 수 있습니다.\n"
+#~ "\n"
+#~ "사용되는 실제 내부 브릿지 흐름은 이 값에 브릿지 흐름 비율, 필라멘트 흐름 "
+#~ "비율, 설정된 경우 객체의 흐름 비율을 곱하여 계산됩니다."
+
+#~ 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 ""
+#~ "활성화하면 브릿지는 더 견고해지고 더 먼 거리를 생성할 수 있지만 나빠 보일 "
+#~ "수 있습니다. 비활성화하면 브릿지가 더 좋아 보이지만 짧은 브릿지 거리에 대"
+#~ "해서만 안정적입니다."
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "활성화되면 두꺼운 내부 브릿지가 사용됩니다. 일반적으로 다음을 권장합니다."
+#~ "이 기능을 켜두세요. 하지만 다음과 같은 경우에는 끄는 것을 고려해 보세요."
+#~ "큰 노즐을 사용합니다."
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "내부 드문 채우기를 출력할 필라멘트."
+
+#~ msgid "Filament to print walls."
+#~ msgstr "벽을 출력하는 필라멘트"
+
+#~ msgid "Solid infill"
+#~ msgstr "솔리드 채우기"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "솔리드 인필을 출력하는 필라멘트"
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "기본 서포트 및 라프트를 출력하기 위한 필라멘트. \"기본값\"은 지원을 위한 "
+#~ "특정 필라멘트가 없으며 현재 필라멘트가 사용됨을 의미합니다"
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "서포트 및 라프트 접점을 출력하기 위한 필라멘트. \"기본값\"은 지원을 위한 "
+#~ "특정 필라멘트가 없으며 현재 필라멘트가 사용됨을 의미합니다"
+
#~ msgid "Erase all painting"
#~ msgstr "모든 페인팅 삭제"
@@ -23137,8 +23785,8 @@ msgstr ""
#~ msgstr "mm/mm"
#~ msgid ""
-#~ "We would rename the presets as \"Vendor Type Serial @printer you "
-#~ "selected\".\n"
+#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
+#~ "\".\n"
#~ "To add preset for more printers, Please go to printer selection"
#~ msgstr ""
#~ "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n"
@@ -24165,8 +24813,8 @@ msgstr ""
#~ "로 지정되지 않은 경우 필라멘트의 최소 출력 속도가 활성화됩니다."
#~ msgid ""
-#~ "We would rename the presets as \"Vendor Type Serial @printer you "
-#~ "selected\".\n"
+#~ "We would rename the presets as \"Vendor Type Serial @printer you selected"
+#~ "\".\n"
#~ "To add preset for more prinetrs, Please go to printer selection"
#~ msgstr ""
#~ "사전 설정의 이름을 \"선택한 공급업체 유형 직렬 @프린터\"로 변경합니다.\n"
diff --git a/localization/i18n/list.txt b/localization/i18n/list.txt
index 5bafe30a3e..99a47c198e 100644
--- a/localization/i18n/list.txt
+++ b/localization/i18n/list.txt
@@ -218,6 +218,7 @@ src/slic3r/GUI/CreatePresetsDialog.cpp
src/slic3r/GUI/DailyTips.cpp
src/slic3r/Utils/CalibUtils.cpp
src/slic3r/GUI/PhysicalPrinterDialog.cpp
+src/slic3r/Utils/3DPrinterOS.cpp
src/slic3r/Utils/AstroBox.cpp
src/slic3r/Utils/Duet.cpp
src/slic3r/Utils/FlashAir.cpp
diff --git a/localization/i18n/lt/OrcaSlicer_lt.po b/localization/i18n/lt/OrcaSlicer_lt.po
index 46fd16cb2f..981cca477f 100644
--- a/localization/i18n/lt/OrcaSlicer_lt.po
+++ b/localization/i18n/lt/OrcaSlicer_lt.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: 2025-10-25 23:01+0300\n"
"Last-Translator: Gintaras Kučinskas \n"
"Language-Team: \n"
@@ -16,8 +16,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && (n%100<11 || n%100>19) ? 0 : "
-"n%10>=2 && n%10<=9 && (n%100<11 || n%100>19) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && (n%100<11 || n%100>19) ? 0 : n"
+"%10>=2 && n%10<=9 && (n%100<11 || n%100>19) ? 1 : 2);\n"
"X-Generator: Poedit 3.6\n"
msgid "right"
@@ -1848,6 +1848,17 @@ msgstr ""
msgid "User logged out"
msgstr "Naudotojas atsijungė"
+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!"
msgstr ""
"negalima kurti ar atidaryti naujo projekto failo, kai vyksta sluoksniavimo "
@@ -1863,21 +1874,24 @@ msgstr ""
"OrcaSlicer versija yra pasenusi. Norint naudotis, reikia ją atnaujinti į "
"naujausią versiją."
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
@@ -1935,7 +1949,7 @@ msgid "Privacy Policy Update"
msgstr "Privatumo politikos atnaujinimas"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
msgstr ""
msgid "your default profile"
@@ -2185,6 +2199,9 @@ msgstr "Toras"
msgid "Orca Cube"
msgstr "Orca kubas"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Orca tolerancijos testas"
@@ -5545,6 +5562,9 @@ msgstr "Iškyšos"
msgid "Outline"
msgstr "Outline"
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr "Perspective"
@@ -5587,7 +5607,7 @@ msgstr "Tūris:"
msgid "Size:"
msgstr "Dydis:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5846,15 +5866,18 @@ msgstr "Nustatymų vedlys"
msgid "Show Configuration Folder"
msgstr "Rodyti konfigūravimo katalogą"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "Atidaryti tinklo testą"
+
msgid "Show Tip of the Day"
msgstr "Rodyti dienos patarimą"
msgid "Check for Updates"
msgstr "Tikrinti atnaujinimus"
-msgid "Open Network Test"
-msgstr "Atidaryti tinklo testą"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "&Apie %s"
@@ -7207,6 +7230,12 @@ msgstr "Sėkmingai eksportuota"
msgid "Model file downloaded."
msgstr "Modelio failas parsiųstas."
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr ""
@@ -8229,6 +8258,12 @@ msgstr ""
"Nepavyksta atlikti loginės operacijos su modelio figūromis. Eksportuojamos "
"tik teigiamos dalys."
+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?"
msgstr ""
"Ar spausdintuvas pasiruošęs? Ar spausdinimo plokštuma yra vietoje, tuščia ir "
@@ -8794,6 +8829,24 @@ msgstr ""
msgid "Graphics"
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"
msgstr ""
@@ -8851,9 +8904,16 @@ msgid "Stealth mode"
msgstr "Slaptas režimas"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
msgid "Network test"
@@ -9016,6 +9076,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr "Allow Abnormal Storage"
@@ -10132,8 +10200,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Įrašant pakadrinį vaizdo įrašą be spausdinimo galvutės judesių, "
"rekomenduojama naudoti „Pakadrinio valymo bokštą“.\n"
@@ -10630,13 +10698,11 @@ msgid "Retraction when switching material"
msgstr "Įtraukimas keičiant medžiagą"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"Parinktis \"Išvalyti\" negalima, kai naudojamas Firmware įtraukimo režimas.\n"
-"\n"
-"Ar turėčiau jį išjungti, kad įjungčiau Programinės įrangos įtraukimą?"
msgid "Firmware Retraction"
msgstr "Programinės aparatinės įrangos ištraukimas"
@@ -11815,8 +11881,8 @@ msgid ""
msgstr ""
"Įterptinės programinės įrangos versija yra nenormali. Prieš spausdinant "
"reikia pataisyti ir atnaujinti. Ar norite atnaujinti dabar? Taip pat galite "
-"atnaujinti vėliau spausdintuve arba atnaujinti kitą kartą paleisdami "
-"\"Orca\"."
+"atnaujinti vėliau spausdintuve arba atnaujinti kitą kartą paleisdami \"Orca"
+"\"."
msgid "Extension Board"
msgstr "Išplėtimo plokštė"
@@ -12186,8 +12252,8 @@ msgid ""
"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, "
"RepRapFirmware and Repetier G-code flavors."
msgstr ""
-"Pagrindinis bokštas šiuo metu palaikomas tik \"Marlin\", \"RepRap/"
-"Sprinter\", \"RepRapFirmware\" ir \"Repetier\" G-kodo tipuose."
+"Pagrindinis bokštas šiuo metu palaikomas tik \"Marlin\", \"RepRap/Sprinter"
+"\", \"RepRapFirmware\" ir \"Repetier\" G-kodo tipuose."
msgid "The prime tower is not supported in \"By object\" print."
msgstr "Pirminis bokštas nepalaikomas spausdinant \"Pagal objektą\"."
@@ -12317,6 +12383,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
msgstr "Sluoksnio aukštis negali viršyti purkštuko skersmens."
+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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -12327,18 +12406,14 @@ msgstr ""
"padėtį. Pridėkite „G92 E0“ prie layer_gcode."
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"„G92 E0“ buvo rastas before_layer_gcode, kuris nesuderinamas su absoliučiu "
-"ekstruderio adresavimu."
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"layer_gcode buvo rastas „G92 E0“, - tai nesuderinama su absoliučiu "
-"ekstruderio adresavimu."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -12445,6 +12520,31 @@ msgstr "Spausdinama sritis"
msgid "Extruder printable area"
msgstr "Extruder printable area"
+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"
msgstr "Nespausdinama pagrindo sritis"
@@ -12578,6 +12678,12 @@ msgstr ""
"\"Orca Slicer\" gali įkelti G-kodo failus į spausdintuvą. Šiame lauke turėtų "
"būti nurodytas API raktas arba autentifikavimui reikalingas slaptažodis."
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "Spausdintuvo pavadinimas."
@@ -12928,117 +13034,134 @@ msgstr "Išorinio tilto užpildymo kryptis"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"Tilto kampo panaikinimas. Jei paliekama nulinė reikšmė, tilto kampas "
-"apskaičiuojamas automatiškai. Priešingu atveju išoriniams tilteliams bus "
-"naudojamas pateiktas kampas. Nuliniam kampui naudokite 180°."
msgid "Internal bridge infill direction"
msgstr "Vidinio tilto užpildymo kryptis"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"Vidinio pertvaros kampo panaikinimas. Jei paliekama nulinė reikšmė, tilto "
-"kampas apskaičiuojamas automatiškai. Priešingu atveju vidiniams tiltams bus "
-"naudojamas nurodytas kampas. Naudokite 180°, kad kampas būtų lygus nuliui.\n"
-"\n"
-"Rekomenduojama palikti 0, nebent yra konkretus modelio poreikis to nedaryti."
msgid "External bridge density"
msgstr "Išorinio tilto tankis"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
-"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
-"\n"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
-"\n"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
msgid "Internal bridge density"
msgstr "Vidinių tiltų tankis"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"Valdo vidinių tiltelių linijų tankį (atstumus). 100 % reiškia vientisą "
-"tiltą. Numatytoji reikšmė yra 100 %.\n"
-"\n"
-" Mažesnio tankio vidiniai tilteliai gali padėti sumažinti viršutinio "
-"paviršiaus iškilimą ir padidinti vidinio tiltelio patikimumą, nes aplink "
-"išspaustą tiltelį cirkuliuoja daugiau erdvės orui, todėl pagerėja jo "
-"aušinimo greitis.\n"
-"\n"
-"Ši parinktis ypač gerai veikia kartu su antrojo vidinio tiltelio virš "
-"užpildo parinktimi, dar labiau pagerinančia vidinio tiltelio struktūrą prieš "
-"išspaudžiant kietąjį užpildą."
msgid "Bridge flow ratio"
msgstr "Tilto srauto santykis"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Šiek tiek sumažinkite šią reikšmę (pvz., 0,9), kad sumažintumėte tilto "
-"medžiagos kiekį ir pagerintumėte įlinkį.\n"
+
+#, 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"
-"Faktinis tiltelio srautas apskaičiuojamas padauginus šią reikšmę iš gijos "
-"srauto santykio ir, jei nustatyta, objekto srauto santykio."
+"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"
msgstr "Vidinio tilto srauto koeficientas"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Ši vertė lemia vidinio tilto sluoksnio storį. Tai yra pirmasis sluoksnis "
-"virš reto užpildo. Šiek tiek sumažinkite šią reikšmę (pavyzdžiui, 0,9), kad "
-"pagerintumėte paviršiaus kokybę virš reto užpildo.\n"
-"\n"
-"Faktinis naudojamas vidinio tiltelio srautas apskaičiuojamas padauginus šią "
-"vertę iš tiltelio srauto santykio, gijų srauto santykio ir, jei nustatyta, "
-"objekto srauto santykio."
msgid "Top surface flow ratio"
msgstr "Viršutinio paviršiaus srauto koeficientas"
@@ -13379,40 +13502,35 @@ msgstr "Sulėtinti greitį, jei perimetras yra vingiuotas"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"Įjunkite šią parinktį, kad sulėtintumėte spausdinimą tose srityse, kuriose "
-"perimetras gali būti išlinkęs į viršų. Pavyzdžiui, papildomas sulėtinimas "
-"bus taikomas spausdinant iškyšas ant aštrių kampų, pavyzdžiui, „Benchy“ "
-"korpuso priekyje, sumažinant susisukimą, kuris susidaro per kelis "
-"sluoksnius.\n"
-"\n"
-" Paprastai rekomenduojama įjungti šią parinktį, nebent jūsų spausdintuvo "
-"aušinimas yra pakankamai galingas arba spausdinimo greitis pakankamai lėtas, "
-"kad perimetro susisukimas neįvyktų. Jei spausdinama dideliu išoriniu "
-"perimetro greičiu, šis parametras gali sukelti nedidelius artefaktus, kai "
-"sulėtėja dėl didelio spausdinimo greičio skirtumo. Jei pastebėsite "
-"artefaktus, įsitikinkite, kad išankstinis slėgis sureguliuotas teisingai.\n"
-"\n"
-"Pastaba: Kai ši parinktis įjungta, iškyšos perimetras traktuojamas kaip "
-"iškyša, t. y. iškyšos greitis taikomas net jei iškyšos perimetras yra tilto "
-"dalis. Pavyzdžiui, kai perimetrai yra 100 % išsikišę, o iš apačios jų "
-"nepalaiko jokia siena, bus taikomas 100 % išsikišimo greitis."
msgid "mm/s or %"
msgstr "mm/s arba %"
@@ -13681,25 +13799,25 @@ msgid "Thick external bridges"
msgstr "Stori vidiniai tiltai"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Jei įjungta, tiltai yra patikimesni, gali įveikti didesnius atstumus, tačiau "
-"gali atrodyti blogiau. Jei išjungta, tiltai atrodo geriau, bet yra patikimi "
-"tik trumpesniems atstumams."
msgid "Thick internal bridges"
msgstr "Stori vidiniai tiltai"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Jei įjungta, bus naudojami stori vidiniai tiltai. Paprastai rekomenduojama "
-"šią funkciją įjungti. Tačiau jei naudojate didelius antgalius, apsvarstykite "
-"galimybę ją išjungti."
msgid "Extra bridge layers (beta)"
msgstr "Papildomi tilto sluoksniai (beta)"
@@ -14942,14 +15060,11 @@ msgid "Align infill direction to model"
msgstr "Suderinti užpildymo kryptį su modeliu"
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
-"Suderina užpildymo ir paviršiaus užpildymo kryptis, kad jos atitiktų modelio "
-"orientaciją ant spausdinimo plokštės. Kai ši funkcija įjungta, užpildymo "
-"kryptys pasisuka kartu su modeliu, kad būtų išlaikytos optimalios stiprumo "
-"charakteristikos."
msgid "Insert solid layers"
msgstr "Įterpti vientisus sluoksnius"
@@ -14978,6 +15093,7 @@ msgstr ""
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -15076,6 +15192,27 @@ msgid ""
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
msgstr "Užpildymo kampuoto linijų kampas. 60° kampas sukurs gryną korį."
+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"
msgstr "Reto užpildo tvirtinimo ilgis"
@@ -15164,8 +15301,8 @@ msgid "mm/s² or %"
msgstr "mm/s² arba %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Retų užpildų pagreitis. Jei reikšmė išreikšta procentais (pvz., 100 %), ji "
"bus apskaičiuota pagal numatytąjį pagreitį."
@@ -15300,10 +15437,10 @@ msgstr "Visas ventiliatoriaus greitis sluoksnyje"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"Ventiliatoriaus greitis bus didinamas tiesiškai nuo nulio sluoksnyje "
"\"close_fan_the_first_x_layers\" iki maksimalaus sluoksnyje "
@@ -16098,8 +16235,10 @@ msgstr "Probing exclude area of clumping"
msgid "Probing exclude area of clumping."
msgstr "Probing exclude area of clumping."
-msgid "Filament to print internal sparse infill."
-msgstr "Gija, skirta spausdinti vidinį retą užpildą."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -16940,8 +17079,21 @@ msgstr ""
"naudokite skirtingą spausdinimo greitį. Jei iškyša 100%%, naudojamas tilto "
"greitis."
-msgid "Filament to print walls."
-msgstr "Gijos sienoms spausdinti."
+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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -17449,8 +17601,8 @@ msgid "Role base wipe speed"
msgstr "Vaidmens pagrindo nuvalymo greitis"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -17634,11 +17786,20 @@ msgstr ""
"Reto užpildymo sritys, kurios yra mažesnės už šią ribinę vertę, pakeičiamos "
"vidiniu vientisu užpildymu."
-msgid "Solid infill"
-msgstr "Vientisas užpildas"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "Filamentas vientisam užpildui spausdinti."
+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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -18023,11 +18184,10 @@ msgid "Support/raft base"
msgstr "Atraminis ir (arba) platformos pagrindas"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"Gija, skirta spausdinti atraminį pagrindą ir platformą. \"Numatytoji\" "
-"reiškia, kad nėra konkrečios gijos atramai ir naudojama dabartinė gija."
msgid "Avoid interface filament for base"
msgstr "Venkite pagrindo sąsajos gijų"
@@ -18058,11 +18218,10 @@ msgid "Support/raft interface"
msgstr "Atramų ir (arba) platformos sąsaja"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"Gija skirta spausdinti atramos sąsają. \"Numatytoji\" reiškia, kad atramos "
-"sąsajai nėra konkrečios gijos ir naudojama dabartinė gija."
msgid "Top interface layers"
msgstr "Viršutiniai sąsajos sluoksniai"
@@ -18383,8 +18542,8 @@ msgstr "Suaktyvinti temperatūros reguliavimą"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -19136,6 +19295,9 @@ msgstr "netinkama reikšmė "
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "Netinkama reikšmė, kai įjungtas spiralinės vazos režimas: "
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "per didelis linijos plotis "
@@ -19389,12 +19551,18 @@ msgid "Debug level"
msgstr "Derinimo lygis"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
msgstr ""
"Nustato derinimo žurnalizavimo lygį. 0: mirtinas, 1: klaida, 2: įspėjimas, "
"3: informacija, 4: derinimas, 5: sekimas\n"
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
+msgstr ""
+
msgid "Enable timelapse for print"
msgstr "Laiko intervalų spausdinimui įjungimas"
@@ -19936,13 +20104,13 @@ msgstr "Pateikto failo nepavyko perskaityti, nes jis tuščias"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
-"Nežinomas failo formatas. Įvesties failo plėtinys turi "
-"būti .stl, .obj, .amf(.xml)."
+"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .stl, .obj, ."
+"amf(.xml)."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
-"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .3mf "
-"arba .zip.amf."
+"Nežinomas failo formatas. Įvesties failo plėtinys turi būti .3mf arba .zip."
+"amf."
msgid "load_obj: failed to parse"
msgstr "load_obj: nepavyko apdoroti"
@@ -20917,6 +21085,15 @@ msgstr ""
msgid "Top Surface Pattern"
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"
msgstr "Siųsti G-kodą tinkliniam spausdintuvui"
@@ -20940,6 +21117,48 @@ msgstr "Įkėlimo failo pavadinimas nesibaigia „%s“. Ar norite tęsti?"
msgid "Upload"
msgstr "Įkelti"
+msgid "Leveling before print"
+msgstr ""
+
+msgid "Time-lapse"
+msgstr "Laiko intervalai"
+
+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"
msgstr "Įkėlimo spausdinimui tinkle eilė"
@@ -20984,9 +21203,6 @@ msgstr ""
"Pasirinktas pagrindo tipas neatitinka failo. Prieš pradėdami spausdinti, "
"patvirtinkite."
-msgid "Time-lapse"
-msgstr "Laiko intervalai"
-
msgid "Heated Bed Leveling"
msgstr "Šildomo pagrindo išlyginimas"
@@ -20996,6 +21212,16 @@ msgstr "Tekstūruota pagrindo plokštė (A pusė)"
msgid "Smooth Build Plate (Side B)"
msgstr "Lygi pagrindo plokštė (B pusė)"
+#, 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"
msgstr "Nepavyksta atlikti loginės operacijos su pasirinktomis dalimis"
@@ -21180,8 +21406,8 @@ msgstr ""
"Ar norite jį perrašyti?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
"Būtų galima pervadinti iš anksto nustatytus nustatymus į \"Pardavėjo tipo "
@@ -21707,9 +21933,18 @@ msgstr ""
"Select the network agent implementation for printer communication. Available "
"agents are registered at startup."
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "Nepavyko gauti galiojančios tinklinio spausdintuvo nuorodos"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "Pavyko!"
@@ -21756,6 +21991,30 @@ msgstr "Prisijungimas / bandymas"
msgid "Connection to printers connected via the print host failed."
msgstr "Nepavyko prisijungti prie spausdintuvų, prijungtų per tinklą."
+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
msgid "Mismatched type of print host: %s"
msgstr "Neatitinka tinklinio spausdintuvo tipas: %s"
@@ -22013,9 +22272,9 @@ msgid ""
"quality but much longer print time."
msgstr ""
"Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis "
-"mažesnis, greitis ir pagreitis mažesni, o retas užpildymo raštas yra "
-"\"Gyroid\". Taigi, dėl jo mažiau matomų sluoksnio linijų ir daug geresnė "
-"spausdinimo kokybė, tačiau daug ilgesnis spausdinimo laikas."
+"mažesnis, greitis ir pagreitis mažesni, o retas užpildymo raštas yra \"Gyroid"
+"\". Taigi, dėl jo mažiau matomų sluoksnio linijų ir daug geresnė spausdinimo "
+"kokybė, tačiau daug ilgesnis spausdinimo laikas."
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
@@ -22536,12 +22795,27 @@ msgstr ""
"\"SimplyPrint\" paskyra nesusieta. Eikite į Prisijungimo parinktis ir ją "
"nustatykite."
+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."
msgstr "Nuoseklusis ryšys su „Flashforge“ veikia tinkamai."
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr "Nepavyko prisijungti prie „Flashforge“ per nuoseklųjį prievadą"
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "Pateikta būsena neteisinga."
@@ -23165,6 +23439,227 @@ msgstr ""
"pavyzdžiui, ABS, tinkamai padidinus kaitinimo pagrindo temperatūrą galima "
"sumažinti deformavimosi tikimybę."
+#~ 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 ""
+#~ "Parinktis \"Išvalyti\" negalima, kai naudojamas Firmware įtraukimo "
+#~ "režimas.\n"
+#~ "\n"
+#~ "Ar turėčiau jį išjungti, kad įjungčiau Programinės įrangos įtraukimą?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "„G92 E0“ buvo rastas before_layer_gcode, kuris nesuderinamas su "
+#~ "absoliučiu ekstruderio adresavimu."
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "layer_gcode buvo rastas „G92 E0“, - tai nesuderinama su absoliučiu "
+#~ "ekstruderio adresavimu."
+
+#, 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 ""
+#~ "Tilto kampo panaikinimas. Jei paliekama nulinė reikšmė, tilto kampas "
+#~ "apskaičiuojamas automatiškai. Priešingu atveju išoriniams tilteliams bus "
+#~ "naudojamas pateiktas kampas. Nuliniam kampui naudokite 180°."
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "Vidinio pertvaros kampo panaikinimas. Jei paliekama nulinė reikšmė, tilto "
+#~ "kampas apskaičiuojamas automatiškai. Priešingu atveju vidiniams tiltams "
+#~ "bus naudojamas nurodytas kampas. Naudokite 180°, kad kampas būtų lygus "
+#~ "nuliui.\n"
+#~ "\n"
+#~ "Rekomenduojama palikti 0, nebent yra konkretus modelio poreikis to "
+#~ "nedaryti."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+#~ msgstr ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "Valdo vidinių tiltelių linijų tankį (atstumus). 100 % reiškia vientisą "
+#~ "tiltą. Numatytoji reikšmė yra 100 %.\n"
+#~ "\n"
+#~ " Mažesnio tankio vidiniai tilteliai gali padėti sumažinti viršutinio "
+#~ "paviršiaus iškilimą ir padidinti vidinio tiltelio patikimumą, nes aplink "
+#~ "išspaustą tiltelį cirkuliuoja daugiau erdvės orui, todėl pagerėja jo "
+#~ "aušinimo greitis.\n"
+#~ "\n"
+#~ "Ši parinktis ypač gerai veikia kartu su antrojo vidinio tiltelio virš "
+#~ "užpildo parinktimi, dar labiau pagerinančia vidinio tiltelio struktūrą "
+#~ "prieš išspaudžiant kietąjį užpildą."
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "Šiek tiek sumažinkite šią reikšmę (pvz., 0,9), kad sumažintumėte tilto "
+#~ "medžiagos kiekį ir pagerintumėte įlinkį.\n"
+#~ "\n"
+#~ "Faktinis tiltelio srautas apskaičiuojamas padauginus šią reikšmę iš gijos "
+#~ "srauto santykio ir, jei nustatyta, objekto srauto santykio."
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "Ši vertė lemia vidinio tilto sluoksnio storį. Tai yra pirmasis sluoksnis "
+#~ "virš reto užpildo. Šiek tiek sumažinkite šią reikšmę (pavyzdžiui, 0,9), "
+#~ "kad pagerintumėte paviršiaus kokybę virš reto užpildo.\n"
+#~ "\n"
+#~ "Faktinis naudojamas vidinio tiltelio srautas apskaičiuojamas padauginus "
+#~ "šią vertę iš tiltelio srauto santykio, gijų srauto santykio ir, jei "
+#~ "nustatyta, objekto srauto santykio."
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "Įjunkite šią parinktį, kad sulėtintumėte spausdinimą tose srityse, "
+#~ "kuriose perimetras gali būti išlinkęs į viršų. Pavyzdžiui, papildomas "
+#~ "sulėtinimas bus taikomas spausdinant iškyšas ant aštrių kampų, "
+#~ "pavyzdžiui, „Benchy“ korpuso priekyje, sumažinant susisukimą, kuris "
+#~ "susidaro per kelis sluoksnius.\n"
+#~ "\n"
+#~ " Paprastai rekomenduojama įjungti šią parinktį, nebent jūsų spausdintuvo "
+#~ "aušinimas yra pakankamai galingas arba spausdinimo greitis pakankamai "
+#~ "lėtas, kad perimetro susisukimas neįvyktų. Jei spausdinama dideliu "
+#~ "išoriniu perimetro greičiu, šis parametras gali sukelti nedidelius "
+#~ "artefaktus, kai sulėtėja dėl didelio spausdinimo greičio skirtumo. Jei "
+#~ "pastebėsite artefaktus, įsitikinkite, kad išankstinis slėgis "
+#~ "sureguliuotas teisingai.\n"
+#~ "\n"
+#~ "Pastaba: Kai ši parinktis įjungta, iškyšos perimetras traktuojamas kaip "
+#~ "iškyša, t. y. iškyšos greitis taikomas net jei iškyšos perimetras yra "
+#~ "tilto dalis. Pavyzdžiui, kai perimetrai yra 100 % išsikišę, o iš apačios "
+#~ "jų nepalaiko jokia siena, bus taikomas 100 % išsikišimo greitis."
+
+#~ 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 ""
+#~ "Jei įjungta, tiltai yra patikimesni, gali įveikti didesnius atstumus, "
+#~ "tačiau gali atrodyti blogiau. Jei išjungta, tiltai atrodo geriau, bet yra "
+#~ "patikimi tik trumpesniems atstumams."
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "Jei įjungta, bus naudojami stori vidiniai tiltai. Paprastai "
+#~ "rekomenduojama šią funkciją įjungti. Tačiau jei naudojate didelius "
+#~ "antgalius, apsvarstykite galimybę ją išjungti."
+
+#~ msgid ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+#~ msgstr ""
+#~ "Suderina užpildymo ir paviršiaus užpildymo kryptis, kad jos atitiktų "
+#~ "modelio orientaciją ant spausdinimo plokštės. Kai ši funkcija įjungta, "
+#~ "užpildymo kryptys pasisuka kartu su modeliu, kad būtų išlaikytos "
+#~ "optimalios stiprumo charakteristikos."
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "Gija, skirta spausdinti vidinį retą užpildą."
+
+#~ msgid "Filament to print walls."
+#~ msgstr "Gijos sienoms spausdinti."
+
+#~ msgid "Solid infill"
+#~ msgstr "Vientisas užpildas"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "Filamentas vientisam užpildui spausdinti."
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "Gija, skirta spausdinti atraminį pagrindą ir platformą. \"Numatytoji\" "
+#~ "reiškia, kad nėra konkrečios gijos atramai ir naudojama dabartinė gija."
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "Gija skirta spausdinti atramos sąsają. \"Numatytoji\" reiškia, kad "
+#~ "atramos sąsajai nėra konkrečios gijos ir naudojama dabartinė gija."
+
#~ msgid "Erase all painting"
#~ msgstr "Ištrinti visą piešinį"
diff --git a/localization/i18n/nl/OrcaSlicer_nl.po b/localization/i18n/nl/OrcaSlicer_nl.po
index 3784a0cb36..977c8a1f28 100644
--- a/localization/i18n/nl/OrcaSlicer_nl.po
+++ b/localization/i18n/nl/OrcaSlicer_nl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -502,7 +502,7 @@ msgid "Count"
msgstr ""
msgid "Gap"
-msgstr ""
+msgstr "Kloof"
msgid "Spacing"
msgstr "Uitlijning"
@@ -1838,6 +1838,17 @@ msgstr ""
msgid "User logged out"
msgstr "Gebruiker is uitgelogd"
+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!"
msgstr "nieuw of geopend projectbestand is niet toegestaan tijdens het slicen!"
@@ -1851,21 +1862,24 @@ msgstr ""
"De versie van Orca Slicer is te oud en dient te worden bijgewerkt naar de "
"nieuwste versie voordat deze normaal kan worden gebruikt"
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
@@ -1923,7 +1937,7 @@ msgid "Privacy Policy Update"
msgstr "Privacy Policy Update"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
msgstr ""
msgid "your default profile"
@@ -2174,6 +2188,9 @@ msgstr "Torus"
msgid "Orca Cube"
msgstr "Orca-kubus"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Orca Tolerance Test"
@@ -2233,7 +2250,7 @@ msgid "Support Enforcer"
msgstr "Ondersteuning handhaven"
msgid "Change part type"
-msgstr ""
+msgstr "Kies het onderdeel type"
msgid "Set as an individual object"
msgstr "Instellen als individueel object"
@@ -5267,7 +5284,7 @@ msgid "Filament change times"
msgstr "Filamentwisseltijden"
msgid "Tool changes"
-msgstr ""
+msgstr "Toolwisselingen"
msgid "Color change"
msgstr "Kleur veranderen"
@@ -5532,6 +5549,9 @@ msgstr "Overhangen"
msgid "Outline"
msgstr "Omtrek"
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr "Perspectief"
@@ -5548,7 +5568,7 @@ msgid "Paint Toolbar"
msgstr "Kleur instellingen"
msgid "part selection"
-msgstr ""
+msgstr "onderdeel selectie"
msgid "Explosion Ratio"
msgstr "Vergrotings ratio"
@@ -5574,7 +5594,7 @@ msgstr "Volume:"
msgid "Size:"
msgstr "Maat:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5833,15 +5853,18 @@ msgstr "Installatiewizard"
msgid "Show Configuration Folder"
msgstr "Toon de configuratie map"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "Open Netwerk Test"
+
msgid "Show Tip of the Day"
msgstr "Toon Tip van de dag"
msgid "Check for Updates"
msgstr "Controleren op updates"
-msgid "Open Network Test"
-msgstr "Open Netwerk Test"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "&Over %s"
@@ -7194,6 +7217,12 @@ msgstr "Succesvol geëxporteerd"
msgid "Model file downloaded."
msgstr "Modelbestand gedownload."
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr ""
@@ -8236,6 +8265,12 @@ msgstr ""
"Unable to perform boolean operation on model meshes. Only positive parts "
"will be exported."
+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?"
msgstr "Is the printer ready? Is the print sheet in place, empty and clean?"
@@ -8801,6 +8836,24 @@ msgstr ""
msgid "Graphics"
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"
msgstr ""
@@ -8858,9 +8911,16 @@ msgid "Stealth mode"
msgstr "Stealth modus"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
msgid "Network test"
@@ -9022,6 +9082,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr "Allow Abnormal Storage"
@@ -10138,8 +10206,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Bij het opnemen van timelapse zonder toolhead is het aan te raden om een "
"„Timelapse Wipe Tower” toe te voegen \n"
@@ -10627,13 +10695,11 @@ msgid "Retraction when switching material"
msgstr "Terugtrekken (retraction) bij het wisselen van filament"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% 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?"
msgid "Firmware Retraction"
msgstr "Firmware intrekken"
@@ -11427,16 +11493,16 @@ msgid "Global shortcuts"
msgstr "Globale snelkoppelingen"
msgid "Pan View"
-msgstr ""
+msgstr "Panweergave"
msgid "Rotate View"
-msgstr ""
+msgstr "Weergave roteren"
msgid "Middle mouse button"
msgstr ""
msgid "Zoom View"
-msgstr ""
+msgstr "Zoom weergave"
msgid ""
"Auto orients selected objects or all objects. If there are selected objects, "
@@ -12324,6 +12390,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
msgstr "De laaghoogte kan niet groter zijn dan de diameter van het mondstuk"
+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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -12334,18 +12413,14 @@ msgstr ""
"layer_gcode."
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"\"G92 E0\" gevonden in before_layer_gcode, wat niet compatibel is met "
-"absolute positionering."
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"\"G92 E0\" gevonden in layer_gcode, wat niet compatibel is met absolute "
-"positionering."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -12451,6 +12526,31 @@ msgstr "Gebeid waarbinnen geprint kan worden"
msgid "Extruder printable area"
msgstr "Extruder printable area"
+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"
msgstr "Uitgesloten printbed gebied"
@@ -12586,6 +12686,12 @@ msgstr ""
"Orca Slicer kan G-codebestanden uploaden naar een printerhost. Dit veld moet "
"de API-sleutel of het wachtwoord bevatten dat nodig is voor authenticatie."
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "Naam van de printer"
@@ -12932,117 +13038,134 @@ msgstr "External bridge infill direction"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"Overbrugingshoek overschrijven. 0 betekent dat de overbruggingshoek "
-"automatisch wordt berekend. Anders wordt de opgegeven hoek gebruikt voor "
-"externe bruggen. Gebruik 180° voor een hoek van nul."
msgid "Internal bridge infill direction"
msgstr "Internal bridge infill direction"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
-"\n"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
msgid "External bridge density"
msgstr "External bridge density"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
-"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
-"\n"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
-"\n"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
msgid "Internal bridge density"
msgstr "Internal bridge density"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
-"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
-"\n"
-"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
msgid "Bridge flow ratio"
msgstr "Brugflow"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+
+#, 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 actual bridge flow used is calculated by multiplying this value with the "
-"filament flow ratio, and if set, the object's flow ratio."
+"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"
msgstr "Internal bridge flow ratio"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
-"\n"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
msgid "Top surface flow ratio"
msgstr "Flowratio bovenoppervlak"
@@ -13380,40 +13503,35 @@ msgstr "Slow down for curled perimeters"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
-"\n"
-"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
-"\n"
-"Note: When this option is enabled, overhang perimeters are treated like "
-"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
msgid "mm/s or %"
msgstr "mm/s of %"
@@ -13680,26 +13798,25 @@ msgid "Thick external bridges"
msgstr "Thick external bridges"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Indien ingeschakeld, zijn bruggen betrouwbaarder en kunnen ze langere "
-"afstanden overbruggen, maar ze kunnen er slechter uitzien. Indien "
-"uitgeschakeld, zien bruggen er beter uit, maar zijn ze alleen betrouwbaar "
-"voor kortere afstanden."
msgid "Thick internal bridges"
msgstr "Thick internal bridges"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
msgid "Extra bridge layers (beta)"
msgstr "Extra bridge layers (beta)"
@@ -14732,10 +14849,10 @@ msgstr ""
"tower to produce successive infill or sacrificial object extrusions reliably."
msgid "Wipe tower cooling"
-msgstr ""
+msgstr "Afkoeling veegtoren"
msgid "Temperature drop before entering filament tower"
-msgstr ""
+msgstr "Temperatuurdaling voor het binnengaan van de filamenttoren"
msgid "Interface layer pre-extrusion distance"
msgstr "Interface layer pre-extrusion distance"
@@ -14943,13 +15060,11 @@ msgid "Align infill direction to model"
msgstr "Align infill direction to model"
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
msgid "Insert solid layers"
msgstr "Insert solid layers"
@@ -14976,6 +15091,7 @@ msgstr ""
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -15075,6 +15191,27 @@ msgid ""
msgstr ""
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
+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"
msgstr "Sparse infill anchor length"
@@ -15164,8 +15301,8 @@ msgid "mm/s² or %"
msgstr "mm/s² of %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Versnelling van de schaarse invulling. Als de waarde wordt uitgedrukt als "
"een percentage (bijvoorbeeld 100%), wordt deze berekend op basis van de "
@@ -15305,16 +15442,16 @@ msgstr "Volledige snelheid op laag"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgid "layer"
msgstr "laag"
@@ -16094,9 +16231,10 @@ msgstr "Probing exclude area of clumping"
msgid "Probing exclude area of clumping."
msgstr "Probing exclude area of clumping."
-msgid "Filament to print internal sparse infill."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
msgstr ""
-"Dit is het filament voor het printen van interne dunne vulling (infill)"
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -16743,10 +16881,10 @@ msgstr ""
"command: M106 P2 S(0-255)"
msgid "For the first"
-msgstr ""
+msgstr "Voor de eerste"
msgid "Set special auxiliary cooling fan for the first certain layers."
-msgstr ""
+msgstr "Stel speciale extra koelventilator in voor de eerste bepaalde lagen."
msgid ""
"Auxiliary fan speed will be ramped up linearly from layer \"For the first\" "
@@ -16938,8 +17076,21 @@ msgstr ""
"lijnbreedte te detecteren en gebruikt verschillende snelheden om af te "
"drukken. Voor 100%% overhang wordt de brugsnelheid gebruikt."
-msgid "Filament to print walls."
-msgstr "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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -17452,13 +17603,13 @@ msgid "Role base wipe speed"
msgstr "Role base wipe speed"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
@@ -17638,11 +17789,20 @@ msgstr ""
"Dunne opvullingen (infill) die kleiner zijn dan deze drempelwaarde worden "
"vervangen door solide interne vulling (infill)."
-msgid "Solid infill"
-msgstr "Dichte vulling"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -18026,12 +18186,10 @@ msgid "Support/raft base"
msgstr "Support/raft base"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"Filament voor het printen van ondersteuning (support) en raft. \"Standaard\" "
-"betekent geen specifiek filament voor ondersteuning (support) en het "
-"huidige filament wordt gebruikt."
msgid "Avoid interface filament for base"
msgstr "Vermijd interfacedraad voor basis"
@@ -18062,12 +18220,10 @@ msgid "Support/raft interface"
msgstr "Support/raft interface"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"Filament om ondersteuning (support) te printen. \"Standaard\" betekent geen "
-"specifiek filament voor ondersteuning (support), en het huidige filament "
-"wordt gebruikt."
msgid "Top interface layers"
msgstr "Bovenste interface lagen"
@@ -18397,8 +18553,8 @@ msgstr "Temperatuurregeling activeren"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -18408,8 +18564,8 @@ msgid ""
"heater is installed."
msgstr ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -18972,11 +19128,10 @@ msgid ""
"Wipe tower is only compatible with relative mode. It is recommended on most "
"printers. Default is checked."
msgstr ""
-"Relatieve extrusie wordt aanbevolen bij gebruik van de optie "
-"\"label_objects\". Sommige extruders werken beter als deze optie niet is "
-"aangevinkt (absolute extrusiemodus). Wipe tower is alleen compatibel met "
-"relatieve modus. Het wordt aanbevolen op de meeste printers. Standaard is "
-"aangevinkt"
+"Relatieve extrusie wordt aanbevolen bij gebruik van de optie \"label_objects"
+"\". Sommige extruders werken beter als deze optie niet is aangevinkt "
+"(absolute extrusiemodus). Wipe tower is alleen compatibel met relatieve "
+"modus. Het wordt aanbevolen op de meeste printers. Standaard is aangevinkt"
msgid ""
"Classic wall generator produces walls with constant extrusion width and for "
@@ -19151,6 +19306,9 @@ msgstr "invalid value "
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "Invalid value when spiral vase mode is enabled: "
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "too large line width "
@@ -19401,11 +19559,17 @@ msgid "Debug level"
msgstr "Debuggen level"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
+msgstr ""
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
+
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
msgstr ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
msgid "Enable timelapse for print"
msgstr "Enable timelapse for print"
@@ -20918,6 +21082,15 @@ msgstr ""
msgid "Top Surface Pattern"
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"
msgstr "Stuur G-code naar printerhost"
@@ -20941,6 +21114,48 @@ msgstr "De bestandsnaam van de upload eindigt niet op \"%s\". Wilt u doorgaan?"
msgid "Upload"
msgstr "Uploaden"
+msgid "Leveling before print"
+msgstr ""
+
+msgid "Time-lapse"
+msgstr "Time-lapse"
+
+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"
msgstr "Uploadwachtrij van de host afdrukken"
@@ -20985,9 +21200,6 @@ msgstr ""
"The selected bed type does not match the file. Please confirm before "
"starting the print."
-msgid "Time-lapse"
-msgstr "Time-lapse"
-
msgid "Heated Bed Leveling"
msgstr "Heated Bed Leveling"
@@ -20997,6 +21209,16 @@ msgstr "Textured Build Plate (Side A)"
msgid "Smooth Build Plate (Side B)"
msgstr "Smooth Build Plate (Side B)"
+#, 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"
msgstr "Kan geen booleaanse bewerking uitvoeren op geselecteerde onderdelen"
@@ -21181,12 +21403,12 @@ msgstr ""
"Wil je het herschrijven?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgid "Create Printer/Nozzle"
@@ -21698,9 +21920,18 @@ msgstr ""
"Select the network agent implementation for printer communication. Available "
"agents are registered at startup."
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "Kon geen geldige printerhostreferentie krijgen"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "Succes!"
@@ -21747,6 +21978,30 @@ msgstr "Inloggen/Test"
msgid "Connection to printers connected via the print host failed."
msgstr "Verbinding met printers aangesloten via de printhost mislukt."
+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
msgid "Mismatched type of print host: %s"
msgstr "Verkeerd type afdrukhost: %s"
@@ -22477,7 +22732,7 @@ msgid "Global settings"
msgstr "Globale instellingen"
msgid "Video tutorial"
-msgstr ""
+msgstr "Instructie video"
msgid "(Sync with printer)"
msgstr "(Sync with printer)"
@@ -22516,12 +22771,27 @@ msgstr "Onbekende fout"
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
msgstr "SimplyPrint account not linked. Go to Connect options to set it up."
+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."
msgstr "Serial connection to Flashforge is working correctly."
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr "Could not connect to Flashforge via serial"
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "The provided state is not correct."
@@ -23144,6 +23414,227 @@ msgstr ""
"kromtrekken, zoals ABS, een juiste verhoging van de temperatuur van het "
"warmtebed de kans op kromtrekken kan verkleinen?"
+#~ 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?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\" gevonden in before_layer_gcode, wat niet compatibel is met "
+#~ "absolute positionering."
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\" gevonden in layer_gcode, wat niet compatibel is met absolute "
+#~ "positionering."
+
+#, 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 ""
+#~ "Overbrugingshoek overschrijven. 0 betekent dat de overbruggingshoek "
+#~ "automatisch wordt berekend. Anders wordt de opgegeven hoek gebruikt voor "
+#~ "externe bruggen. Gebruik 180° voor een hoek van nul."
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+#~ msgstr ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+
+#~ 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 ""
+#~ "Indien ingeschakeld, zijn bruggen betrouwbaarder en kunnen ze langere "
+#~ "afstanden overbruggen, maar ze kunnen er slechter uitzien. Indien "
+#~ "uitgeschakeld, zien bruggen er beter uit, maar zijn ze alleen betrouwbaar "
+#~ "voor kortere afstanden."
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+
+#~ msgid ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+#~ msgstr ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr ""
+#~ "Dit is het filament voor het printen van interne dunne vulling (infill)"
+
+#~ msgid "Filament to print walls."
+#~ msgstr "Filament to print walls."
+
+#~ msgid "Solid infill"
+#~ msgstr "Dichte vulling"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "Filament to print solid infill."
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "Filament voor het printen van ondersteuning (support) en raft. \"Standaard"
+#~ "\" betekent geen specifiek filament voor ondersteuning (support) en het "
+#~ "huidige filament wordt gebruikt."
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "Filament om ondersteuning (support) te printen. \"Standaard\" betekent "
+#~ "geen specifiek filament voor ondersteuning (support), en het huidige "
+#~ "filament wordt gebruikt."
+
#~ msgid "Erase all painting"
#~ msgstr "Alle getekende delen wissen"
diff --git a/localization/i18n/pl/OrcaSlicer_pl.po b/localization/i18n/pl/OrcaSlicer_pl.po
index 8039fea2ec..74ae5b916d 100644
--- a/localization/i18n/pl/OrcaSlicer_pl.po
+++ b/localization/i18n/pl/OrcaSlicer_pl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: OrcaSlicer 2.3.0-rc\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: \n"
"Last-Translator: Krzysztof Morga <>\n"
"Language-Team: \n"
@@ -17,30 +17,32 @@ msgstr ""
"X-Generator: Poedit 3.6\n"
msgid "right"
-msgstr ""
+msgstr "prawo"
msgid "left"
-msgstr ""
+msgstr "lewo"
msgid "right extruder"
-msgstr ""
+msgstr "prawy ekstruder"
msgid "left extruder"
-msgstr ""
+msgstr "lewy ekstruder"
msgid "extruder"
-msgstr ""
+msgstr "ekstruder"
msgid "TPU is not supported by AMS."
msgstr "TPU nie jest obsługiwane przez AMS."
msgid "AMS does not support 'Bambu Lab PET-CF'."
-msgstr ""
+msgstr "AMS nie obsługuje \"Bambu Lab PET-CF\"."
msgid ""
"Please cold pull before printing TPU to avoid clogging. You may use cold "
"pull maintenance on the printer."
msgstr ""
+"Przed drukiem z TPU należy wykonać cold pull, aby uniknąć zatkania. Można "
+"użyć opcji cold pull na drukarce."
msgid ""
"Damp PVA will become flexible and get stuck inside AMS, please take care to "
@@ -51,11 +53,15 @@ msgstr ""
msgid "Damp PVA is flexible and may get stuck in extruder. Dry it before use."
msgstr ""
+"Wilgotny PVA jest elastyczny i może utknąć w ekstruderze. Przed użyciem "
+"należy go wysuszyć."
msgid ""
"The rough surface of PLA Glow can accelerate wear on the AMS system, "
"particularly on the internal components of the AMS Lite."
msgstr ""
+"Chropowata powierzchnia PLA Glow może przyspieszyć zużycie systemu AMS, w "
+"szczególności wewnętrznych elementów AMS Lite."
msgid ""
"CF/GF filaments are hard and brittle, it's easy to break or get stuck in "
@@ -66,28 +72,32 @@ msgstr ""
msgid "PPS-CF is brittle and could break in bended PTFE tube above Toolhead."
msgstr ""
+"PPS-CF jest kruchy i może pęknąć w wygiętym fragmencie rurki PTFE nad "
+"głowicą."
msgid "PPA-CF is brittle and could break in bended PTFE tube above Toolhead."
msgstr ""
+"PPA-CF jest kruchy i może pęknąć w wygiętym fragmencie rurki PTFE nad "
+"głowicą."
#, c-format, boost-format
msgid "%s is not supported by %s extruder."
-msgstr ""
+msgstr "%s nie jest obsługiwane przez ekstruder %s."
msgid "Current AMS humidity"
msgstr "Aktualna wilgotność AMS"
msgid "Humidity"
-msgstr ""
+msgstr "Wilgotność"
msgid "Temperature"
msgstr "Temperatura"
msgid "Left Time"
-msgstr ""
+msgstr "Pozostały czas"
msgid "Drying"
-msgstr ""
+msgstr "Suszenie"
msgid "Idle"
msgstr "Bezczynny"
@@ -249,7 +259,7 @@ msgid "Reset"
msgstr "Resetuj"
msgid "Enter"
-msgstr ""
+msgstr "Drukarka"
msgid "Shortcut Key "
msgstr "Skrót klawiszowy "
@@ -275,19 +285,19 @@ msgid "Painted using: Filament %1%"
msgstr "Pomalowane za pomocą: Filament %1%"
msgid "To:"
-msgstr ""
+msgstr "Do:"
msgid "Paint-on fuzzy skin"
-msgstr ""
+msgstr "Malowanie Fuzzy Skin"
msgid "Add fuzzy skin"
-msgstr ""
+msgstr "Dodaj skórę fuzzy"
msgid "Remove fuzzy skin"
-msgstr ""
+msgstr "Usuń skórę fuzzy"
msgid "Reset selection"
-msgstr ""
+msgstr "Reset zaznaczenia"
msgid ""
"Warning: Fuzzy skin is disabled, painted fuzzy skin will not take effect!"
@@ -333,10 +343,10 @@ msgid "mm"
msgstr "mm"
msgid "Part selection"
-msgstr ""
+msgstr "Wybór części"
msgid "Fixed step drag"
-msgstr ""
+msgstr "Skok przesunięcia"
msgid "Context Menu"
msgstr ""
@@ -345,13 +355,13 @@ msgid "Toggle Auto-Drop"
msgstr ""
msgid "Single sided scaling"
-msgstr ""
+msgstr "Skalowanie jednostronne"
msgid "Position"
msgstr "Pozycja"
msgid "Rotate (relative)"
-msgstr ""
+msgstr "Obróć (względnie)"
msgid "Scale ratios"
msgstr "Współczynniki skali"
@@ -387,19 +397,20 @@ msgid "World coordinates"
msgstr "Współrzędne"
msgid "Translate(Relative)"
-msgstr ""
+msgstr "Przesunięcie równoległe (Względne)"
msgid "Reset current rotation to the value when open the rotation tool."
msgstr ""
+"Zresetuj bieżący obrót do wartości ustawionej przy otwarciu narzędzia obrotu."
msgid "Rotate (absolute)"
-msgstr ""
+msgstr "Obrót (bezwzględny)"
msgid "Reset current rotation to real zeros."
-msgstr ""
+msgstr "Zresetuj bieżący obrót do wartości zerowej."
msgid "Part coordinates"
-msgstr ""
+msgstr "Koordynaty części"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -499,7 +510,7 @@ msgid "Count"
msgstr ""
msgid "Gap"
-msgstr ""
+msgstr "Szczelina"
msgid "Spacing"
msgstr "Rozstaw"
@@ -1565,15 +1576,17 @@ msgstr "Złożenie"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
+"Proszę potwierdzić współczynnik eksplozji = 1 i wybrać co najmniej dwie "
+"objętości."
msgid "Please select at least two volumes."
-msgstr ""
+msgstr "Proszę wybrać przynajmniej dwa obiekty."
msgid "(Moving)"
-msgstr ""
+msgstr "(Przesuwanie)"
msgid "Point and point assembly"
-msgstr ""
+msgstr "Montaż - punkt do punktu"
msgid "Warning: please select two different meshes."
msgstr "Uwaga: proszę wybrać dwie różne siatki."
@@ -1589,15 +1602,18 @@ msgid ""
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
+"Należy najpierw zmontować obiekty, \n"
+"ponieważ obiekt jest związany z powierzchnią stołu, \n"
+"a tylko części mogą być unoszone."
msgid "Face and face assembly"
-msgstr ""
+msgstr "Montaż - powierzchnia do powierzchni"
msgid "Ctrl+"
msgstr "Ctrl+"
msgid "Alt+"
-msgstr ""
+msgstr "Alt+"
msgid "Notice"
msgstr "Uwaga"
@@ -1839,6 +1855,17 @@ msgstr ""
msgid "User logged out"
msgstr "Użytkownik wylogowany"
+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!"
msgstr ""
"nowy lub otwarty plik projektu nie jest dozwolony podczas procesu cięcia!"
@@ -1853,25 +1880,28 @@ msgstr ""
"Wersja Orca Slicer jest przestarzała i musi zostać uaktualniona do "
"najnowszej wersji, aby działać normalnie"
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
-msgstr ""
+msgstr "Pobieranie informacji o drukarce, spróbuj ponownie później."
msgid "Please try updating OrcaSlicer and then try again."
msgstr ""
@@ -1910,7 +1940,7 @@ msgid "Privacy Policy Update"
msgstr "Aktualizacja polityki prywatności"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
msgstr ""
msgid "your default profile"
@@ -2137,7 +2167,7 @@ msgid "Delete the selected object"
msgstr "Usuń wybrany obiekt"
msgid "Backspace"
-msgstr ""
+msgstr "Wstecz"
msgid "Load..."
msgstr "Wczytaj..."
@@ -2160,6 +2190,9 @@ msgstr "Torus"
msgid "Orca Cube"
msgstr "Sześcian Orca"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Test tolerancji Orca"
@@ -2220,7 +2253,7 @@ msgid "Support Enforcer"
msgstr "Wzmocnienie podpory"
msgid "Change part type"
-msgstr ""
+msgstr "Zmień rodzaj części"
msgid "Set as an individual object"
msgstr "Ustaw jako osobny obiekt"
@@ -2413,10 +2446,10 @@ msgid "Edit"
msgstr "Edytuj"
msgid "Merge with"
-msgstr ""
+msgstr "Scal z"
msgid "Delete this filament"
-msgstr ""
+msgstr "Usuń ten filament"
msgid "Select All"
msgstr "Zaznacz wszystko"
@@ -2461,28 +2494,28 @@ msgid "Remove the selected plate"
msgstr "Usuń wybraną płytę"
msgid "Add instance"
-msgstr ""
+msgstr "Dodaj instancję"
msgid "Add one more instance of the selected object"
-msgstr ""
+msgstr "Dodaj kolejną instancję wybranego modelu"
msgid "Remove instance"
-msgstr ""
+msgstr "Usuń instancję"
msgid "Remove one instance of the selected object"
-msgstr ""
+msgstr "Usuń jedną instancję zaznaczonego modelu"
msgid "Set number of instances"
-msgstr ""
+msgstr "Ustaw liczbę instancji"
msgid "Change the number of instances of the selected object"
-msgstr ""
+msgstr "Zmień liczbę instancji wybranego modelu"
msgid "Fill bed with instances"
-msgstr ""
+msgstr "Wypełnij stół instancjami"
msgid "Fill the remaining area of bed with instances of the selected object"
-msgstr ""
+msgstr "Wypełnij pozostałą przestrzeń stołu instancjami wybranego modelu"
msgid "Clone"
msgstr "Powiel"
@@ -2491,10 +2524,10 @@ msgid "Simplify Model"
msgstr "Uprość model"
msgid "Subdivision mesh"
-msgstr ""
+msgstr "Siatka podziału"
msgid "(Lost color)"
-msgstr ""
+msgstr "(Utracony kolor)"
msgid "Center"
msgstr "Wyśrodkuj"
@@ -2506,10 +2539,10 @@ msgid "Edit Process Settings"
msgstr "Edytuj ustawienia procesu"
msgid "Copy Process Settings"
-msgstr ""
+msgstr "Kopiuj ustawienia obróbki"
msgid "Paste Process Settings"
-msgstr ""
+msgstr "Wklej ustawienia obróbki"
msgid "Edit print parameters for a single object"
msgstr "Edytuj parametry druku dla pojedynczego obiektu"
@@ -2616,7 +2649,7 @@ msgstr ""
"ustawienia procesu dla wybranych obiektów."
msgid "Remove paint-on fuzzy skin"
-msgstr ""
+msgstr "Usuń malowanie Fuzzy Skin"
msgid "Delete connector from object which is a part of cut"
msgstr "Usuń łącznik z obiektu będącego częścią przecięcia"
@@ -2654,7 +2687,7 @@ msgid "Deleting the last solid part is not allowed."
msgstr "Usunięcie ostatniej części bryły jest niedozwolone."
msgid "The target object contains only one part and can not be split."
-msgstr ""
+msgstr "Obiekt docelowy zawiera tylko jedną i nie może zostać podzielony."
msgid "Assembly"
msgstr "Złożenie"
@@ -2743,10 +2776,12 @@ msgid ""
"\"%s\" will exceed 1 million faces after this subdivision, which may "
"increase slicing time. Do you want to continue?"
msgstr ""
+"\"%s\" przekroczy 1 milion ścian po tym podziale, co może wydłużyć czas "
+"dzielenia na warstwy. Czy chcesz kontynuować?"
#, c-format, boost-format
msgid "\"%s\" part's mesh contains errors. Please repair it first."
-msgstr ""
+msgstr "Siatka części \"%s\" zawiera błędy. Proszę najpierw ją naprawić."
msgid "Additional process preset"
msgstr "Dodatkowa predefinicja procesu"
@@ -2971,17 +3006,21 @@ msgid ""
"Filament type is unknown which is required to perform this action. Please "
"set target filament's informations."
msgstr ""
+"Nie rozpoznano typu filamentu, a jest on wymagany do przeprowadzenia tej "
+"akcji. Proszę wprowadzić informacje o filamencie."
msgid ""
"Changing fan speed during printing may affect print quality, please choose "
"carefully."
msgstr ""
+"Zmiana prędkości wentylatora podczas drukowania może mieć wpływ na jakość "
+"wydruku. Wybierz z rozwagą."
msgid "Change Anyway"
-msgstr ""
+msgstr "Zmień mimo to"
msgid "Off"
-msgstr ""
+msgstr "Wył."
msgid "Filter"
msgstr "Filtr"
@@ -2990,6 +3029,8 @@ msgid ""
"Enabling filtration redirects the right fan to filter gas, which may reduce "
"cooling performance."
msgstr ""
+"Włączenie filtracji przekieruje prawy wentylator do filtracji powietrza, co "
+"może zmniejszyć wydajność chłodzenia."
msgid ""
"Enabling filtration during printing may reduce cooling and affect print "
@@ -3000,27 +3041,29 @@ msgid ""
"The selected material only supports the current fan mode, and it can't be "
"changed during printing."
msgstr ""
+"Wybrany materiał obsługuje tylko bieżący tryb wentylatora i nie można go "
+"zmienić podczas drukowania."
msgid "Cooling"
msgstr "Chłodzenie"
msgid "Heating"
-msgstr ""
+msgstr "Podgrzewanie"
msgid "Exhaust"
-msgstr ""
+msgstr "Wyciąg"
msgid "Full Cooling"
-msgstr ""
+msgstr "Pełne chłodzenie"
msgid "Init"
-msgstr ""
+msgstr "Inicjalizacja"
msgid "Chamber"
-msgstr ""
+msgstr "Komora"
msgid "Innerloop"
-msgstr ""
+msgstr "Pętla wewnętrzna"
#. TRN To be shown in the main menu View->Top
msgid "Top"
@@ -3036,52 +3079,59 @@ msgid ""
"Cooling mode is suitable for printing PLA/PETG/TPU materials and filters the "
"chamber air."
msgstr ""
+"Tryb chłodzenia jest odpowiedni do druku takimi materiałami jak PLA/PETG/TPU "
+"i filtruje powietrze w komorze."
msgid ""
"Heating mode is suitable for printing ABS/ASA/PC/PA materials and circulates "
"filters the chamber air."
msgstr ""
+"Tryb ogrzewania jest odpowiedni do druku takimi materiałami jak ABS/ASA/PC/"
+"PA i zapewnia cyrkulację oraz filtrację powietrza w komorze."
msgid ""
"Strong cooling mode is suitable for printing PLA/TPU materials. In this "
"mode, the printouts will be fully cooled."
msgstr ""
+"Tryb intensywnego chłodzenia jest odpowiedni do drukowania materiałów PLA/"
+"TPU. W tym trybie wydruki będą w pełni chłodzone."
msgid "Cooling mode is suitable for printing PLA/PETG/TPU materials."
msgstr ""
+"Tryb chłodzenia jest odpowiedni do druku takimi materiałami jak PLA/PETG/TPU."
msgctxt "air_duct"
msgid "Right(Aux)"
-msgstr ""
+msgstr "Prawy(Aux)"
msgctxt "air_duct"
msgid "Right(Filter)"
-msgstr ""
+msgstr "Prawy (Filtr)"
msgctxt "air_duct"
msgid "Left(Aux)"
-msgstr ""
+msgstr "Lewy (Aux)"
msgid "Hotend"
msgstr ""
msgid "Parts"
-msgstr ""
+msgstr "Wydruk"
msgid "Aux"
msgstr "Pomocn."
msgid "Nozzle1"
-msgstr ""
+msgstr "Dysza1"
msgid "MC Board"
-msgstr ""
+msgstr "Płytka MC"
msgid "Heat"
-msgstr ""
+msgstr "Grzanie"
msgid "Fan"
-msgstr ""
+msgstr "Wentylator"
msgid "Idling..."
msgstr "Bezczynność..."
@@ -3113,7 +3163,7 @@ msgid "Check filament location"
msgstr "Sprawdź lokalizację filamentu"
msgid "The maximum temperature cannot exceed "
-msgstr ""
+msgstr "Maksymalna temperatura nie może przekroczyć "
msgid "The minmum temperature should not be less than "
msgstr "Minimalna temperatura nie powinna być mniejsza niż "
@@ -3334,7 +3384,7 @@ msgid "Successfully sent. Close current page in %s s"
msgstr "Pomyślnie wysłano. Zamknięcie bieżącej strony za %ss"
msgid "Storage needs to be inserted before sending to printer."
-msgstr ""
+msgstr "Włóż pamięć przed wysłaniem do drukarki."
msgid ""
"Sending G-code file over LAN, but the Storage in the printer is abnormal and "
@@ -3381,22 +3431,25 @@ msgid "Font doesn't have any shape for given text."
msgstr "Czcionka nie ma żadnego kształtu dla danego tekstu."
msgid "There is no valid surface for text projection."
-msgstr ""
+msgstr "Nie ma prawidłowej powierzchni do rzutowania tekstu."
msgid "Thermal Preconditioning for first layer optimization"
-msgstr ""
+msgstr "Wyrównywanie termiczne w celu optymalizacji pierwszej warstwy"
msgid "Remaining time: Calculating..."
-msgstr ""
+msgstr "Pozostały czas: Obliczanie..."
msgid ""
"The heated bed's thermal preconditioning helps optimize the first layer "
"print quality. Printing will start once preconditioning is complete."
msgstr ""
+"Wstępne przygotowanie termiczne podgrzewanego stołu pomaga zoptymalizować "
+"jakość wydruku pierwszej warstwy. Drukowanie rozpocznie się po zakończeniu "
+"przygotowania."
#, c-format, boost-format
msgid "Remaining time: %dmin%ds"
-msgstr ""
+msgstr "Pozostały czas: %dmin%ds"
msgid "Importing SLA archive"
msgstr "Importowanie archiwum SLA"
@@ -3574,6 +3627,9 @@ msgid ""
"the filament.\n"
"'Device -> Print parts'"
msgstr ""
+"Przepływ dyszy nie jest ustawiony. Proszę ustawić przepływ dyszy przed "
+"edytowaniem filamentu. \n"
+"'Urządzenie -> Drukuj części'"
msgid "AMS"
msgstr "AMS"
@@ -3662,7 +3718,7 @@ msgid "Step"
msgstr "Krok"
msgid "Unmapped"
-msgstr ""
+msgstr "Niezmapowany"
msgid ""
"Upper half area: Original\n"
@@ -3670,48 +3726,58 @@ msgid ""
"unmapped.\n"
"And you can click it to modify"
msgstr ""
+"Górna połowa obszaru: Oryginał\n"
+"Dolna połowa obszaru: Filament z oryginalnego projektu zostanie wykorzystany "
+"jeśli nie jest zmapowany.\n"
+"Możesz kliknąć, aby modyfikować"
msgid ""
"Upper half area: Original\n"
"Lower half area: Filament in AMS\n"
"And you can click it to modify"
msgstr ""
+"Górna połowa obszaru: Oryginał\n"
+"Dolna połowa obszaru: Filament z AMS\n"
+"Możesz kliknąć, aby modyfikować"
msgid ""
"Upper half area: Original\n"
"Lower half area: Filament in AMS\n"
"And you cannot click it to modify"
msgstr ""
+"Górna połowa obszaru: Oryginał\n"
+"Dolna połowa obszaru: Filament z AMS\n"
+"Nie można modyfikować"
msgid "AMS Slots"
msgstr "Gniazda AMS"
msgid "Please select from the following filaments"
-msgstr ""
+msgstr "Wybierz spośród następujących filamentów"
msgid "Select filament that installed to the left nozzle"
-msgstr ""
+msgstr "Wybierz filament załadowany do lewej dyszy."
msgid "Select filament that installed to the right nozzle"
-msgstr ""
+msgstr "Wybierz filament załadowany do prawej dyszy."
msgid "Left AMS"
-msgstr ""
+msgstr "Lewy AMS"
msgid "External"
msgstr "Zewnętrzny"
msgid "Reset current filament mapping"
-msgstr ""
+msgstr "Zresetuj aktualne mapowanie filamentu"
msgid "Right AMS"
-msgstr ""
+msgstr "Prawy AMS"
msgid "Left Nozzle"
-msgstr ""
+msgstr "Lewa dysza"
msgid "Right Nozzle"
-msgstr ""
+msgstr "Prawa dysza"
msgid "Nozzle"
msgstr "Dysza"
@@ -3722,15 +3788,21 @@ msgid ""
"slicing file. If you want to use this slot, you can install %s instead of %s "
"and change slot information on the 'Device' page."
msgstr ""
+"Uwaga: typ filamentu(%s) nie jest zgodny z typem filamentu(%s) w pociętym "
+"pliku. Jeśli chcesz używać tego gniazda, możesz zainstalować %s zamiast %s i "
+"zmienić informacje o gnieździe na stronie \"Urządzenie\"."
#, c-format, boost-format
msgid ""
"Note: the slot is empty or undefined. If you want to use this slot, you can "
"install %s and change slot information on the 'Device' page."
msgstr ""
+"Uwaga: gniazdo jest puste lub nie zostało zdefiniowane. Jeśli chcesz "
+"korzystać z tego gniazda, możesz zainstalować %s i zmienić informacje o "
+"gnieździe na stronie \"Urządzenie\"."
msgid "Note: Only filament-loaded slots can be selected."
-msgstr ""
+msgstr "Uwaga: Wybierane mogą być wyłącznie gniazda z filamentem."
msgid "Enable AMS"
msgstr "Włącz AMS"
@@ -3808,6 +3880,8 @@ msgid ""
"When the current material runs out, the printer would use identical filament "
"to continue printing."
msgstr ""
+"Gdy bieżący materiał się skończy, drukarka użyje identycznego filamentu, aby "
+"kontynuować drukowanie."
msgid "The printer does not currently support auto refill."
msgstr "Obecnie drukarka nie obsługuje automatycznego uzupełniania."
@@ -3823,6 +3897,9 @@ msgid ""
"to continue printing.\n"
"*Identical filament: same brand, type and color."
msgstr ""
+"Gdy bieżący materiał się skończy, drukarka użyje identycznego filamentu, aby "
+"kontynuować drukowanie.\n"
+"* Identyczny filamet: filament tej samej marki, rodzaju i koloru."
msgid "DRY"
msgstr "SUCHY"
@@ -3885,7 +3962,7 @@ msgstr "Aktualizuj pozostałą ilość"
msgid ""
"AMS will attempt to estimate the remaining capacity of the Bambu Lab "
"filaments."
-msgstr ""
+msgstr "AMS spróbuje oszacować pozostałą ilość filamentów Bambu Lab."
msgid "AMS filament backup"
msgstr "Automatyczne przełączenie filamentu AMS"
@@ -3908,27 +3985,30 @@ msgstr ""
"drukowanie w celu oszczędzenia czasu i filamentu."
msgid "AMS Type"
-msgstr ""
+msgstr "Typ AMS"
msgid "Switching"
-msgstr ""
+msgstr "Przełączanie"
msgid "The printer is busy and cannot switch AMS type."
-msgstr ""
+msgstr "Drukarka jest aktualnie zajęta i nie można przełączyć typu AMS."
msgid "Please unload all filament before switching."
-msgstr ""
+msgstr "Przed przełączeniem proszę usunąć cały filament."
msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
msgstr ""
msgid "Arrange AMS Order"
-msgstr ""
+msgstr "Określ kolejność AMS"
msgid ""
"AMS ID will be reset. If you want a specific ID sequence, disconnect all AMS "
"before resetting and connect them in the desired order after resetting."
msgstr ""
+"Identyfikator AMS zostanie zresetowany. Jeśli chcesz mieć określoną "
+"kolejność ID, odłącz wszystkie moduły AMS przed zresetowaniem, a następnie "
+"podłącz je po resecie w żądanej kolejności."
msgid "File"
msgstr "Plik"
@@ -4232,6 +4312,9 @@ msgid ""
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
+"Wysokość pierwszej warstwy równa zeru jest nieprawidłowa.\n"
+"\n"
+"Wysokość pierwszej warstwy zostanie przywrócona do 0,2."
msgid ""
"This setting is only used for model size tunning with small value in some "
@@ -4380,13 +4463,13 @@ msgid "M400 pause"
msgstr "Pauza M400"
msgid "Paused (filament ran out)"
-msgstr ""
+msgstr "Wstrzymano (skończył się filament)"
msgid "Heating nozzle"
-msgstr ""
+msgstr "Nagrzewanie dyszy"
msgid "Calibrating dynamic flow"
-msgstr ""
+msgstr "Kalibracja dynamiki przepływu"
msgid "Scanning bed surface"
msgstr "Skanowanie powierzchni stołu"
@@ -4410,28 +4493,28 @@ msgid "Checking extruder temperature"
msgstr "Sprawdzanie temperatury extrudera"
msgid "Paused by the user"
-msgstr ""
+msgstr "Wstrzymane przez użytkownika"
msgid "Pause (front cover fall off)"
-msgstr ""
+msgstr "Wstrzymano (osłona głowicy odpadła)"
msgid "Calibrating the micro lidar"
msgstr "Kalibracja mikro Lidaru"
msgid "Calibrating flow ratio"
-msgstr ""
+msgstr "Kalibracja współczynnika przepływu"
msgid "Pause (nozzle temperature malfunction)"
-msgstr ""
+msgstr "Wstrzymano (problem z temperaturą dyszy)"
msgid "Pause (heatbed temperature malfunction)"
-msgstr ""
+msgstr "Wstrzymano (problem z temperaturą podgrzewanego stołu)"
msgid "Filament unloading"
msgstr "Wyładowywanie filamentu"
msgid "Pause (step loss)"
-msgstr ""
+msgstr "Wstrzymano (utrata kroku)"
msgid "Filament loading"
msgstr "Wczytywanie filamentu"
@@ -4440,13 +4523,13 @@ msgid "Motor noise cancellation"
msgstr "Redukcja hałasu silników"
msgid "Pause (AMS offline)"
-msgstr ""
+msgstr "Wstrzymano (AMS offline)"
msgid "Pause (low speed of the heatbreak fan)"
-msgstr ""
+msgstr "Wstrzymano (niska prędkość wentylatora bloku grzejnego)"
msgid "Pause (chamber temperature control problem)"
-msgstr ""
+msgstr "Wstrzymano (problem z kontrolą temperatury w komorze)"
msgid "Cooling chamber"
msgstr "Chłodzenie komory"
@@ -4458,16 +4541,16 @@ msgid "Motor noise showoff"
msgstr "Prezentacja hałasu silnika"
msgid "Pause (nozzle clumping)"
-msgstr ""
+msgstr "Wstrzymano (zlepienie dyszy)"
msgid "Pause (cutter error)"
-msgstr ""
+msgstr "Wstrzymano (błąd obcinarki)"
msgid "Pause (first layer error)"
-msgstr ""
+msgstr "Wstrzymano (błąd pierwszej warstwy)"
msgid "Pause (nozzle clog)"
-msgstr ""
+msgstr "Wstrzymano (zatkanie dyszy)"
msgid "Measuring motion precision"
msgstr ""
@@ -4476,67 +4559,68 @@ msgid "Enhancing motion precision"
msgstr ""
msgid "Measure motion accuracy"
-msgstr ""
+msgstr "Zmierz dokładność ruchu"
msgid "Nozzle offset calibration"
-msgstr ""
+msgstr "Kalibracja offsetu dyszy"
msgid "High temperature auto bed leveling"
msgstr ""
msgid "Auto Check: Quick Release Lever"
-msgstr ""
+msgstr "Automatyczna kontrola: Dźwignia szybkiego zwalniania"
msgid "Auto Check: Door and Upper Cover"
-msgstr ""
+msgstr "Automatyczna kontrola: Drzwi i górna pokrywa"
msgid "Laser Calibration"
-msgstr ""
+msgstr "Kalibracja lasera"
msgid "Auto Check: Platform"
-msgstr ""
+msgstr "Automatyczna kontrola: Platforma"
msgid "Confirming BirdsEye Camera location"
-msgstr ""
+msgstr "Potwierdzenie pozycji kamery Birdseye"
msgid "Calibrating BirdsEye Camera"
-msgstr ""
+msgstr "Kalibracja kamery BirdsEye"
msgid "Auto bed leveling -phase 1"
-msgstr ""
+msgstr "Automatyczne poziomowanie stołu - faza 1"
msgid "Auto bed leveling -phase 2"
-msgstr ""
+msgstr "Automatyczne poziomowanie stołu - faza 2"
msgid "Heating chamber"
-msgstr ""
+msgstr "Podgrzewanie komory"
msgid "Cooling heatbed"
-msgstr ""
+msgstr "Chłodzenie podgrzewanego stołu"
msgid "Printing calibration lines"
-msgstr ""
+msgstr "Drukowanie linii kalibracyjnych"
msgid "Auto Check: Material"
-msgstr ""
+msgstr "Automatyczna kontrola: Materiał"
msgid "Live View Camera Calibration"
-msgstr ""
+msgstr "Kalibracja kamery Live View"
msgid "Waiting for heatbed to reach target temperature"
msgstr ""
+"Oczekiwanie na osiągnięcie przez podgrzewany stół docelowej temperatury"
msgid "Auto Check: Material Position"
-msgstr ""
+msgstr "Automatyczna kontrola: Pozycja materiału"
msgid "Cutting Module Offset Calibration"
-msgstr ""
+msgstr "Kalibracja offsetu modułu tnącego"
msgid "Measuring Surface"
-msgstr ""
+msgstr "Pomiar powierzchni"
msgid "Calibrating the detection position of nozzle clumping"
-msgstr ""
+msgstr "Kalibracja pozycji wykrywania zalepiania dyszy"
msgid "Unknown"
msgstr "Nieznany"
@@ -4554,21 +4638,27 @@ msgid "Update failed."
msgstr "Nie udało się uaktualnić."
msgid "Timelapse is not supported on this printer."
-msgstr ""
+msgstr "Funkcja timelapse nie jest obsługiwana przez tę drukarkę."
msgid "Timelapse is not supported while the storage does not exist."
msgstr ""
+"Funkcja timelapse nie jest obsługiwana, jeśli pamięć masowa nie istnieje."
msgid "Timelapse is not supported while the storage is unavailable."
msgstr ""
+"Funkcja timelapse nie jest obsługiwana, gdy pamięć masowa jest niedostępna."
msgid "Timelapse is not supported while the storage is readonly."
msgstr ""
+"Funkcja timelapse nie jest obsługiwana, gdy pamięć jest przeznaczona tylko "
+"do odczytu."
msgid ""
"To ensure your safety, certain processing tasks (such as laser) can only be "
"resumed on printer."
msgstr ""
+"Ze względów bezpieczeństwa, niektóre operacje (tj. obróbka laserem) mogą być "
+"wznowione tylko z poziomu drukarki."
#, c-format, boost-format
msgid ""
@@ -4576,12 +4666,18 @@ msgid ""
"Please wait until the chamber temperature drops below %d℃. You may open the "
"front door or enable fans to cool down."
msgstr ""
+"Temperatura w komorze jest zbyt wysoka, co może spowodować zmiękczenie "
+"filamentu. Poczekaj, aż temperatura w komorze spadnie poniżej %d℃. Możesz "
+"otworzyć przednie drzwi drukarki lub włączyć wentylatory w celu jej "
+"szybszego schłodzenia."
#, c-format, boost-format
msgid ""
"AMS temperature is too high, which may cause the filament to soften. Please "
"wait until the AMS temperature drops below %d℃."
msgstr ""
+"Temperatura w AMS jest zbyt wysoka, co może spowodować zmiękczenie "
+"filamentu. Poczekaj, aż temperatura w AMS spadnie poniżej %d℃."
msgid ""
"The current chamber temperature or the target chamber temperature exceeds "
@@ -4626,10 +4722,10 @@ msgid "Resume Printing"
msgstr "Wznów zadanie drukowania"
msgid "Resume (defects acceptable)"
-msgstr ""
+msgstr "Wznów (wady są do zaakceptowania)"
msgid "Resume (problem solved)"
-msgstr ""
+msgstr "Wznów (problem rozwiązany)"
msgid "Stop Printing"
msgstr "Zatrzymaj Drukowanie"
@@ -4656,28 +4752,28 @@ msgid "View Liveview"
msgstr "Podgląd na żywo"
msgid "No Reminder Next Time"
-msgstr ""
+msgstr "Nie przypominaj ponownie"
msgid "Ignore. Don't Remind Next Time"
-msgstr ""
+msgstr "Ignoruj. Nie przypominaj ponownie"
msgid "Ignore this and Resume"
-msgstr ""
+msgstr "Ignoruj i Wznów"
msgid "Problem Solved and Resume"
-msgstr ""
+msgstr "Problem rozwiązany. Wznów"
msgid "Got it, Turn off the Fire Alarm."
-msgstr ""
+msgstr "Rozumiem, wyłącz alarm przeciwpożarowy."
msgid "Retry (problem solved)"
-msgstr ""
+msgstr "Ponów próbę (problem rozwiązany)"
msgid "Stop Drying"
-msgstr ""
+msgstr "Zatrzymaj suszenie"
msgid "Proceed"
-msgstr ""
+msgstr "Kontynuuj"
msgid "Retry"
msgstr "Ponów"
@@ -4686,7 +4782,7 @@ msgid "Resume"
msgstr "Wznów"
msgid "Unknown error."
-msgstr ""
+msgstr "Nieznany błąd."
msgid "default"
msgstr "domyślny"
@@ -4826,7 +4922,7 @@ msgid "Pick"
msgstr ""
msgid "Summary"
-msgstr ""
+msgstr "Podsumowanie"
msgid "Layer Height"
msgstr "Wysokość warstwy"
@@ -4880,10 +4976,10 @@ msgid "Tool Change"
msgstr "Zmiana narzędzia"
msgid "Color Change"
-msgstr ""
+msgstr "Zmiana koloru"
msgid "Pause Print"
-msgstr ""
+msgstr "Wstrzymaj drukowanie"
msgid "Travel"
msgstr "Przemieszczenie"
@@ -4892,7 +4988,7 @@ msgid "Wipe"
msgstr "Wytarcie dyszy"
msgid "Extrude"
-msgstr ""
+msgstr "Ekstruzja"
msgid "Inner wall"
msgstr "Wewnętrzna ściana"
@@ -4979,7 +5075,7 @@ msgid "mm/s²"
msgstr "mm/s²"
msgid "mm³/s"
-msgstr ""
+msgstr "mm³/s"
msgid "Flow rate"
msgstr "Natężenie przepływu"
@@ -4997,7 +5093,7 @@ msgid "Speed: "
msgstr "Prędkość: "
msgid "Actual speed profile"
-msgstr ""
+msgstr "Profil prędkości rzeczywistej"
msgid "Statistics of All Plates"
msgstr "Statystyki wszystkich płyt roboczych"
@@ -5027,64 +5123,78 @@ msgid ""
"Automatically re-slice according to the optimal filament grouping, and the "
"grouping results will be displayed after slicing."
msgstr ""
+"Automatyczne ponowne cięcie zgodnie z optymalnym grupowaniem filamentu, "
+"wyniki grupowania będą wyświetlane po cięciu."
msgid "Filament Grouping"
-msgstr ""
+msgstr "Grupowanie filamentów"
msgid "Why this grouping"
-msgstr ""
+msgstr "Dlaczego tak jest zgrupowane"
msgid "Left nozzle"
-msgstr ""
+msgstr "Lewa dysza"
msgid "Right nozzle"
-msgstr ""
+msgstr "Prawa dysza"
msgid "Please place filaments on the printer based on grouping result."
-msgstr ""
+msgstr "Umieść filamenty w drukarce zgodnie z wynikiem grupowania."
msgid "Tips:"
msgstr "Wskazówki:"
msgid "Current grouping of slice result is not optimal."
-msgstr ""
+msgstr "Aktualne grupowanie wyników cięcia nie jest optymalne."
#, boost-format
msgid "Increase %1%g filament and %2% changes compared to optimal grouping."
msgstr ""
+"W porównaniu do optymalnego grupowania, zużycie filamentu wzrośnie o %1%g, a "
+"liczba jego zmian o %2%."
#, boost-format
msgid ""
"Increase %1%g filament and save %2% changes compared to optimal grouping."
msgstr ""
+"W porównaniu do optymalnego grupowania, zużycie filamentu wzrośnie o %1%g, a "
+"liczba jego zmian spadnie o %2%."
#, boost-format
msgid ""
"Save %1%g filament and increase %2% changes compared to optimal grouping."
msgstr ""
+"W porównaniu do optymalnego grupowania, zużycie filamentu spadnie o %1%g, a "
+"liczba jego zmian wzrośnie o %2%."
#, boost-format
msgid ""
"Save %1%g filament and %2% changes compared to a printer with one nozzle."
msgstr ""
+"W porównaniu do drukarki z jedną dyszą, zużycie filamentu spadnie o %1%g, a "
+"liczba jego zmian o %2%."
#, boost-format
msgid ""
"Save %1%g filament and increase %2% changes compared to a printer with one "
"nozzle."
msgstr ""
+"W porównaniu do drukarki z jedną dyszą, zużycie filamentu spadnie o %1%g, a "
+"liczba jego zmian wzrośnie o %2%."
#, boost-format
msgid ""
"Increase %1%g filament and save %2% changes compared to a printer with one "
"nozzle."
msgstr ""
+"W porównaniu do drukarki z jedną dyszą, zużycie filamentu wzrośnie o %1%g, a "
+"liczba jego zmian spadnie o %2%."
msgid "Set to Optimal"
-msgstr ""
+msgstr "Ustaw na optymalne"
msgid "Regroup filament"
-msgstr ""
+msgstr "Zmień grupowanie filamentu"
msgid "Wiki Guide"
msgstr ""
@@ -5129,7 +5239,7 @@ msgid "Volumetric flow rate (mm³/s)"
msgstr "Natężenie przepływu (mm³/s)"
msgid "Actual volumetric flow rate (mm³/s)"
-msgstr ""
+msgstr "Rzeczywiste natężenie przepływu (mm³/s)"
msgid "Seams"
msgstr "Szew"
@@ -5150,7 +5260,7 @@ msgid "Filament change times"
msgstr "Liczba zmian filamentu"
msgid "Tool changes"
-msgstr ""
+msgstr "Zmiany narzędzi"
msgid "Color change"
msgstr "Zmiana koloru"
@@ -5180,10 +5290,10 @@ msgid "Model printing time"
msgstr "Czas drukowania modelu"
msgid "Show stealth mode"
-msgstr ""
+msgstr "Pokaż dla trybu stealth"
msgid "Show normal mode"
-msgstr ""
+msgstr "Pokaż dla trybu normalnego"
msgid ""
"An object is placed in the left/right nozzle-only area or exceeds the "
@@ -5191,12 +5301,19 @@ msgid ""
"Please ensure the filaments used by this object are not arranged to other "
"nozzles."
msgstr ""
+"W obszarze lewego/prawego ekstrudera jest umieszczony obiekt lub "
+"przekroczono dozwoloną wysokość druku dla lewej dyszy.\n"
+"Upewnij się że że filamenty używane przez obiekt w tym obszarze nie są "
+"przyporządkowane do innych ekstruderów."
msgid ""
"An object is laid over the boundary of plate or exceeds the height limit.\n"
"Please solve the problem by moving it totally on or off the plate, and "
"confirming that the height is within the build volume."
msgstr ""
+"Obiekt jest położony na granicy płyty lub przekracza limit wysokości.\n"
+"Rozwiąż problem, przesuwając go całkowicie na lub poza płytę i "
+"potwierdzając, że wysokość mieści się w przestrzeni roboczej."
msgid "Variable layer height"
msgstr "Zmienna wysokość warstwy"
@@ -5241,7 +5358,7 @@ msgid "Part Selection"
msgstr ""
msgid "number keys"
-msgstr ""
+msgstr "klawisze numeryczne"
msgid "Number keys can quickly change the color of objects"
msgstr ""
@@ -5250,38 +5367,45 @@ msgid ""
"Following objects are laid over the boundary of plate or exceeds the height "
"limit:\n"
msgstr ""
+"Następujące obiekty znajdują się poza granicą płyty lub przekraczają limit "
+"wysokości:\n"
msgid ""
"Please solve the problem by moving it totally on or off the plate, and "
"confirming that the height is within the build volume.\n"
msgstr ""
+"Proszę rozwiązać problem, przesuwając obiekt całkowicie na lub całkowicie "
+"poza płytę i sprawdzić, czy wysokość mieści się w obrębie objętości "
+"roboczej.\n"
msgid "left nozzle"
-msgstr ""
+msgstr "lewej dyszy"
msgid "right nozzle"
-msgstr ""
+msgstr "prawej dyszy"
#, c-format, boost-format
msgid "The position or size of some models exceeds the %s's printable range."
-msgstr ""
+msgstr "Pozycja lub rozmiar niektórych modeli przekracza obszar druku %s."
#, c-format, boost-format
msgid "The position or size of the model %s exceeds the %s's printable range."
-msgstr ""
+msgstr "Pozycja lub rozmiar modelu %s przekracza obszar druku %s."
msgid ""
" Please check and adjust the part's position or size to fit the printable "
"range:\n"
msgstr ""
+" Sprawdź i dostosuj położenie lub rozmiar części, aby dopasować ją do "
+"obszaru druku:\n"
#, boost-format
msgid "Left nozzle: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%\n"
-msgstr ""
+msgstr "Lewa dysza: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%\n"
#, boost-format
msgid "Right nozzle: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%"
-msgstr ""
+msgstr "Prawa dysza: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%"
msgid "Mirror Object"
msgstr "Lustro obiektu"
@@ -5327,11 +5451,11 @@ msgstr "Wyrównaj do osi Y"
msgctxt "Camera"
msgid "Left"
-msgstr ""
+msgstr "Lewy"
msgctxt "Camera"
msgid "Right"
-msgstr ""
+msgstr "Prawy"
msgid "Add"
msgstr "Dodaj"
@@ -5388,7 +5512,7 @@ msgid "Canvas Toolbar"
msgstr ""
msgid "Fit camera to scene or selected object."
-msgstr ""
+msgstr "Dopasuj kamerę do sceny lub wybranego obiektu."
msgid "3D Navigator"
msgstr ""
@@ -5400,6 +5524,9 @@ msgid "Overhangs"
msgstr "Nawisy"
msgid "Outline"
+msgstr "kontur"
+
+msgid "Realistic View"
msgstr ""
msgid "Perspective"
@@ -5418,7 +5545,7 @@ msgid "Paint Toolbar"
msgstr "Pasek narzędzi do malowania"
msgid "part selection"
-msgstr ""
+msgstr "wybór części"
msgid "Explosion Ratio"
msgstr "Współczynnik wybuchu"
@@ -5430,7 +5557,7 @@ msgid "Assemble Control"
msgstr "Kontrola montażu"
msgid "Selection Mode"
-msgstr ""
+msgstr "Tryb wyboru"
msgid "Total Volume:"
msgstr "Całkowita objętość:"
@@ -5444,7 +5571,7 @@ msgstr "Objętość:"
msgid "Size:"
msgstr "Rozmiar:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5462,7 +5589,7 @@ msgid "A G-code path goes beyond the plate boundaries."
msgstr "Trasa G-code wychodzi poza granicę płyty."
msgid "Not support printing 2 or more TPU filaments."
-msgstr ""
+msgstr "Nie obsługuje druku 2 lub więcej filamentów TPU."
#, c-format, boost-format
msgid "Tool %d"
@@ -5473,6 +5600,8 @@ msgid ""
"Filament %s is placed in the %s, but the generated G-code path exceeds the "
"printable range of the %s."
msgstr ""
+"Filament %s jest umieszczony w %s, ale wygenerowana w G-code ścieżka "
+"przekracza zakres drukowania %s."
#, c-format, boost-format
msgid ""
@@ -5485,6 +5614,8 @@ msgid ""
"Filament %s is placed in the %s, but the generated G-code path exceeds the "
"printable height of the %s."
msgstr ""
+"Filament %s jest umieszczony w %s, ale wygenerowana w G-code ścieżka "
+"przekracza wysokość drukowania %s."
#, c-format, boost-format
msgid ""
@@ -5493,7 +5624,7 @@ msgid ""
msgstr ""
msgid "Open wiki for more information."
-msgstr ""
+msgstr "Otwórz wiki, aby uzyskać więcej informacji."
msgid "Only the object being edited is visible."
msgstr "Widoczny jest tylko edytowany obiekt."
@@ -5506,9 +5637,11 @@ msgid ""
"PLA and PETG filaments detected in the mixture. Adjust parameters according "
"to the Wiki to ensure print quality."
msgstr ""
+"Wykryto filamenty PLA i PETG. Dostosuj parametry zgodnie z Wiki, aby "
+"zapewnić dobrą jakość druku."
msgid "The prime tower extends beyond the plate boundary."
-msgstr ""
+msgstr "Wieża czyszcząca wystaje poza granicę płyty."
msgid ""
"Partial flushing volume set to 0. Multi-color printing may cause color "
@@ -5516,13 +5649,13 @@ msgid ""
msgstr ""
msgid "Click Wiki for help."
-msgstr ""
+msgstr "Kliknij na Wiki, aby uzyskać pomoc."
msgid "Click here to regroup"
-msgstr ""
+msgstr "Kliknij tutaj, aby zmienić grupowanie"
msgid "Flushing Volume"
-msgstr ""
+msgstr "Objętość płukania"
msgid "Calibration step selection"
msgstr "Wybór kroku kalibracji"
@@ -5534,10 +5667,10 @@ msgid "Bed leveling"
msgstr "Poziomowanie stołu"
msgid "High-temperature Heatbed Calibration"
-msgstr ""
+msgstr "Kalibracja podgrzewanego stołu w wysokiej temperaturze"
msgid "Nozzle clumping detection Calibration"
-msgstr ""
+msgstr "Kalibracja wykrywania zalepienia dyszy"
msgid "Calibration program"
msgstr "Program kalibracji"
@@ -5600,11 +5733,15 @@ msgid ""
"You can find it in \"Settings > Network > Access code\"\n"
"on the printer, as shown in the figure:"
msgstr ""
+"Możesz znaleźć to w „Ustawienia > Sieć > Kod dostępu”\n"
+"na urządzeniu, jak pokazano na rysunku:"
msgid ""
"You can find it in \"Setting > Setting > LAN only > Access Code\"\n"
"on the printer, as shown in the figure:"
msgstr ""
+"Możesz znaleźć to w „Ustawienia > Ustawienia > Tylko LAN > Kod dostępu”\n"
+"na urządzeniu, jak pokazano na rysunku:"
msgid "Invalid input."
msgstr "Nieprawidłowe dane wejściowe."
@@ -5687,15 +5824,18 @@ msgstr "Kreator konfiguracji"
msgid "Show Configuration Folder"
msgstr "Otwórz katalog konfiguracji"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "Otwórz test sieci"
+
msgid "Show Tip of the Day"
msgstr "Wyświetl poradę dnia"
msgid "Check for Updates"
msgstr ""
-msgid "Open Network Test"
-msgstr "Otwórz test sieci"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "O &%s"
@@ -6302,12 +6442,16 @@ msgid ""
"Browsing file in storage is not supported in current firmware. Please update "
"the printer firmware."
msgstr ""
+"Przeglądanie plików w pamięci nie jest obsługiwane w bieżącym "
+"oprogramowaniu. Zaktualizuj firmware drukarki."
msgid "LAN Connection Failed (Failed to view sdcard)"
msgstr "Połączenie LAN nieudane (Nie udało się wyświetlić zawartości karty SD)"
msgid "Browsing file in storage is not supported in LAN Only Mode."
msgstr ""
+"Przeglądanie plików na nośniku pamięci nie jest obsługiwane w trybie Tylko "
+"LAN."
#, c-format, boost-format
msgid "You are going to delete %u file from printer. Are you sure to continue?"
@@ -6373,6 +6517,8 @@ msgstr "Pobieranie %d%%..."
msgid "Air Condition"
msgstr ""
+"System\n"
+"wentylacji"
msgid ""
"Reconnecting the printer, the operation cannot be completed immediately, "
@@ -6382,7 +6528,7 @@ msgstr ""
"ponownie później."
msgid "Timeout, please try again."
-msgstr ""
+msgstr "Przekroczono limit czasu: Spróbuj ponownie."
msgid "File does not exist."
msgstr "Plik nie istnieje."
@@ -6397,42 +6543,46 @@ msgid ""
"Please check if the storage is inserted into the printer.\n"
"If it still cannot be read, you can try formatting the storage."
msgstr ""
+"Sprawdź, czy włożono nośnik pamięci do drukarki.\n"
+"Jeśli nadal nie można go odczytać, można spróbować sformatować pamięć."
msgid ""
"The firmware version of the printer is too low. Please update the firmware "
"and try again."
msgstr ""
+"Wersja oprogramowania drukarki jest przestarzała. Proszę zaktualizować "
+"firmware i spróbować ponownie."
msgid "The file already exists, do you want to replace it?"
-msgstr ""
+msgstr "Plik już istnieje. Czy chcesz go zastąpić?"
msgid "Insufficient storage space, please clear the space and try again."
-msgstr ""
+msgstr "Niewystarczająca ilość miejsca. Zwolnij miejsce i spróbuj ponownie."
msgid "File creation failed, please try again."
-msgstr ""
+msgstr "Tworzenie pliku nie powiodło się. Spróbuj ponownie."
msgid "File write failed, please try again."
-msgstr ""
+msgstr "Zapis pliku nie powiódł się. Spróbuj ponownie."
msgid "MD5 verification failed, please try again."
-msgstr ""
+msgstr "Weryfikacja MD5 nie powiodła się. Spróbuj ponownie."
msgid "File renaming failed, please try again."
-msgstr ""
+msgstr "Zmiana nazwy pliku nie powiodła się. Spróbuj ponownie."
msgid "File upload failed, please try again."
-msgstr ""
+msgstr "Przesyłanie pliku nie powiodło się. Spróbuj ponownie."
#, c-format, boost-format
msgid "Error code: %d"
msgstr "Kod błędu: %d"
msgid "User cancels task."
-msgstr ""
+msgstr "Użytkownik anulował zadanie."
msgid "Failed to read file, please try again."
-msgstr ""
+msgstr "Nie udało się odczytać pliku. Spróbuj ponownie."
msgid "Speed:"
msgstr "Prędkość:"
@@ -6535,19 +6685,19 @@ msgstr "Powiąż za pomocą kodu dostępu"
msgctxt "Quit_Switching"
msgid "Quit"
-msgstr ""
+msgstr "Zakończ"
msgid "Switching..."
-msgstr ""
+msgstr "Przełączam…"
msgid "Switching failed"
-msgstr ""
+msgstr "Przełączenie nie powiodło się."
msgid "Printing Progress"
msgstr "Postęp druku"
msgid "Parts Skip"
-msgstr ""
+msgstr "Pomiń części"
msgid "Stop"
msgstr "Zatrzymaj"
@@ -6557,6 +6707,7 @@ msgstr "Warstwa: N/D"
msgid "Click to view thermal preconditioning explanation"
msgstr ""
+"Kliknij, aby wyświetlić informacje o wstępnym przygotowaniu termicznym."
msgid "Clear"
msgstr "Wyczyść"
@@ -6583,7 +6734,7 @@ msgid "Camera"
msgstr "Kamera"
msgid "Storage"
-msgstr ""
+msgstr "Pamięć"
msgid "Camera Setting"
msgstr "Ustawienia kamery"
@@ -6601,7 +6752,7 @@ msgid "Print Options"
msgstr "Opcje drukowania"
msgid "Safety Options"
-msgstr ""
+msgstr "Opcje bezpieczeństwa"
msgid "Lamp"
msgstr "LED"
@@ -6613,19 +6764,19 @@ msgid "Debug Info"
msgstr "Informacje debugowania"
msgid "Filament loading..."
-msgstr ""
+msgstr "Ładowanie filamentu..."
msgid "No Storage"
-msgstr ""
+msgstr "Brak pamięci"
msgid "Storage Abnormal"
-msgstr ""
+msgstr "Anomalia pamięci"
msgid "Cancel print"
msgstr "Anuluj drukowanie"
msgid "Are you sure you want to stop this print?"
-msgstr ""
+msgstr "Czy na pewno chcesz zatrzymać to drukowanie?"
msgid "The printer is busy with another print job."
msgstr "Drukarka jest zajęta innym zadaniem drukowania."
@@ -6634,6 +6785,8 @@ msgid ""
"When printing is paused, filament loading and unloading are only supported "
"for external slots."
msgstr ""
+"Gdy drukowanie jest wstrzymane, ładowanie i rozładowywanie filamentu jest "
+"możliwe wyłącznie w przypadku gniazd zewnętrznych."
msgid "Current extruder is busy changing filament."
msgstr ""
@@ -6642,10 +6795,10 @@ msgid "Current slot has already been loaded."
msgstr ""
msgid "The selected slot is empty."
-msgstr ""
+msgstr "Wybrane gniazdo jest puste."
msgid "Printer 2D mode does not support 3D calibration"
-msgstr ""
+msgstr "Tryb 2D drukarki nie obsługuje kalibracji 3D"
msgid "Downloading..."
msgstr "Pobieranie..."
@@ -6673,11 +6826,14 @@ msgstr ""
msgid "Chamber temperature cannot be changed in cooling mode while printing."
msgstr ""
+"W trybie chłodzenia nie można zmienić temperatury komory podczas druku."
msgid ""
"If the chamber temperature exceeds 40℃, the system will automatically switch "
"to heating mode. Please confirm whether to switch."
msgstr ""
+"Jeżeli temperatura komory spadnie poniżej 40℃, system automatycznie włączy "
+"tryb ogrzewania. Proszę potwierdzić, czy przełączyć."
msgid "Please select an AMS slot before calibration"
msgstr "Przed kalibracją wybierz gniazdo AMS"
@@ -6708,15 +6864,18 @@ msgid ""
"Turning off the lights during the task will cause the failure of AI "
"monitoring, like spaghetti detection. Please choose carefully."
msgstr ""
+"Wyłączenie oświetlenia podczas realizacji zadania może prowadzić do "
+"obniżenia wydajności monitorowania AI, jak np. wykrywanie spaghetti. Wybierz "
+"ostrożnie."
msgid "Keep it On"
-msgstr ""
+msgstr "Pozostaw włączone"
msgid "Turn it Off"
-msgstr ""
+msgstr "Wyłącz"
msgid "Can't start this without storage."
-msgstr ""
+msgstr "Nie można tego uruchomić bez nośnika pamięci."
msgid "Rate the Print Profile"
msgstr "Oceń profil druku"
@@ -6830,10 +6989,10 @@ msgstr "Status"
msgctxt "Firmware"
msgid "Update"
-msgstr ""
+msgstr "Aktualizuj teraz"
msgid "Assistant(HMS)"
-msgstr ""
+msgstr "Asystent (HMS)"
#, c-format, boost-format
msgid "Network plug-in v%s"
@@ -6847,10 +7006,10 @@ msgid "Don't show again"
msgstr "Nie pokazuj ponownie"
msgid "Go to"
-msgstr ""
+msgstr "Przejdź do"
msgid "Later"
-msgstr ""
+msgstr "Później"
#, c-format, boost-format
msgid "%s error"
@@ -6913,7 +7072,7 @@ msgstr "Najnowsza wersja: "
msgctxt "Software"
msgid "Update"
-msgstr ""
+msgstr "Aktualizuj teraz"
msgid "Not for now"
msgstr "Nie teraz"
@@ -7040,6 +7199,12 @@ msgstr "Eksport zakończony sukcesem."
msgid "Model file downloaded."
msgstr "Pobrano plik modelu."
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr ""
@@ -7117,47 +7282,54 @@ msgstr ""
"w niewłaściwym miejscu, drukowanie zostanie wstrzymane."
msgid "Build Plate Detection"
-msgstr ""
+msgstr "Wykrywanie płyty roboczej"
msgid ""
"Identifies the type and position of the build plate on the heatbed. Pausing "
"printing if a mismatch is detected."
msgstr ""
+"Wykrywa typ i pozycję płyty roboczej na podgrzewanym stole. W przypadku "
+"wykrycia braku dopasowania, druk zostaje wstrzymany."
msgid "AI Detections"
-msgstr ""
+msgstr "Wykrywanie AI"
msgid ""
"Printer will send assistant message or pause printing if any of the "
"following problem is detected."
msgstr ""
+"Drukarka wyświetli komunikat asystenta lub wstrzyma drukowanie, jeśli "
+"zostanie wykryty którykolwiek z poniższych problemów."
msgid "Enable AI monitoring of printing"
msgstr "Włącz monitorowanie drukowania przez sztuczną inteligencję"
msgid "Pausing Sensitivity:"
-msgstr ""
+msgstr "Czułość pauzy:"
msgid "Spaghetti Detection"
-msgstr ""
+msgstr "Wykrywanie \"spaghetti\""
msgid "Detect spaghetti failures (scattered lose filament)."
msgstr ""
msgid "Purge Chute Pile-Up Detection"
-msgstr ""
+msgstr "Wykryj nagromadzenie w zsypie na odpady"
msgid "Monitor if the waste is piled up in the purge chute."
-msgstr ""
+msgstr "Monitoruj, przepełnienie zsypu na odpady."
msgid "Nozzle Clumping Detection"
msgstr "Wykrywanie „zalepienia” się dyszy"
msgid "Check if the nozzle is clumping by filaments or other foreign objects."
msgstr ""
+"Sprawdź czy dysza nie jest zalepiona przez filament lub inne ciała obce."
msgid "Detects air printing caused by nozzle clogging or filament grinding."
msgstr ""
+"Wykrywa drukowanie w powietrzu spowodowane zatkaniem dyszy lub ścieraniem "
+"filamentu."
msgid "First Layer Inspection"
msgstr "Inspekcja pierwszej warstwy"
@@ -7166,12 +7338,14 @@ msgid "Auto-recovery from step loss"
msgstr "Automatyczne odzyskiwanie po utracie kroków"
msgid "Store Sent Files on External Storage"
-msgstr ""
+msgstr "Zapisz przesłane pliki w pamięci zewnętrznej"
msgid ""
"Save the printing files initiated from Bambu Studio, Bambu Handy and "
"MakerWorld on External Storage"
msgstr ""
+"Zapisz pliki do druku zainicjowane na Bambu Studio, Bambu Handy lub "
+"MakerWorld w pamięci zewnętrznej"
msgid "Allow Prompt Sound"
msgstr "Zezwól na dźwiękowe powiadomienia"
@@ -7185,28 +7359,28 @@ msgstr ""
"przedmiotem."
msgid "Open Door Detection"
-msgstr ""
+msgstr "Wykrywanie otwartych drzwi komory"
msgid "Notification"
-msgstr ""
+msgstr "Powiadomienie"
msgid "Pause printing"
-msgstr ""
+msgstr "Wstrzymaj drukowanie"
msgctxt "Nozzle Type"
msgid "Type"
-msgstr ""
+msgstr "Typ"
msgctxt "Nozzle Diameter"
msgid "Diameter"
-msgstr ""
+msgstr "Średnica"
msgctxt "Nozzle Flow"
msgid "Flow"
-msgstr ""
+msgstr "Przepływ"
msgid "Please change the nozzle settings on the printer."
-msgstr ""
+msgstr "Proszę zmienić ustawienia dyszy na drukarce."
msgid "Hardened Steel"
msgstr "Stal hartowana"
@@ -7215,28 +7389,30 @@ msgid "Stainless Steel"
msgstr "Stal nierdzewna"
msgid "Tungsten Carbide"
-msgstr ""
+msgstr "Węglik wolframu"
msgid "Brass"
msgstr "Mosiądz"
msgid "High flow"
-msgstr ""
+msgstr "Wysoki przepływ"
msgid "No wiki link available for this printer."
-msgstr ""
+msgstr "Brak odnośnika do wiki dla tej drukarki."
msgid "Refreshing"
-msgstr ""
+msgstr "Odświeżanie"
msgid "Unavailable while heating maintenance function is on."
-msgstr ""
+msgstr "Niedostępne, gdy włączona jest funkcja podtrzymywania ogrzewania."
msgid "Idle Heating Protection"
-msgstr ""
+msgstr "Ochrona przed przegrzaniem w stanie bezczynności"
msgid "Stops heating automatically after 5 mins of idle to ensure safety."
msgstr ""
+"Automatyczne wyłączanie ogrzewania po 5 minutach bezczynności w celu "
+"zapewnienia bezpieczeństwa."
msgid "Global"
msgstr "Globalne"
@@ -7272,7 +7448,7 @@ msgid "Lock current plate"
msgstr "Zablokuj bieżący stół"
msgid "Filament grouping"
-msgstr ""
+msgstr "Grupowanie filamentów"
msgid "Edit current plate name"
msgstr "Edytuj aktualną nazwę płyty"
@@ -7285,28 +7461,31 @@ msgstr "Dostosuj bieżący stół"
#, c-format, boost-format
msgid "The %s nozzle can not print %s."
-msgstr ""
+msgstr "Dysza %s nie może drukować %s."
#, boost-format
msgid "Mixing %1% with %2% in printing is not recommended.\n"
-msgstr ""
+msgstr "Mieszanie %1% z %2% podczas druku nie jest zalecane.\n"
msgid " nozzle"
-msgstr ""
+msgstr " dysza"
#, boost-format
msgid ""
"It is not recommended to print the following filament(s) with %1%: %2%\n"
msgstr ""
+"Nie jest rekomendowane drukowanie poniższych filamentów przu użyciu %1%: "
+"%2%.\n"
msgid ""
"It is not recommended to use the following nozzle and filament "
"combinations:\n"
msgstr ""
+"Nie jest zalecane stosowanie następujących kombinacji dysz i filamentów:\n"
#, boost-format
msgid "%1% with %2%\n"
-msgstr ""
+msgstr "%1% z %2%\n"
#, boost-format
msgid " plate %1%:"
@@ -7337,16 +7516,16 @@ msgid "Filament changes"
msgstr "Zmiany filamentu"
msgid "Set the number of AMS installed on the nozzle."
-msgstr ""
+msgstr "Ustaw liczbę AMS podłączonych do dyszy."
msgid "AMS(4 slots)"
-msgstr ""
+msgstr "AMS(4 gniazda)"
msgid "AMS(1 slot)"
-msgstr ""
+msgstr "AMS(1 gniazdo)"
msgid "Not installed"
-msgstr ""
+msgstr "Nie zainstalowano"
msgid ""
"The software does not support using different diameter of nozzles for one "
@@ -7356,39 +7535,44 @@ msgid ""
msgstr ""
msgid "Switch diameter"
-msgstr ""
+msgstr "Zmiana średnicy"
msgid "Configuration incompatible"
msgstr "Niekompatybilna konfiguracja"
msgid "Sync printer information"
-msgstr ""
+msgstr "Synchronizacja informacji o drukarce"
msgid ""
"The currently selected machine preset is inconsistent with the connected "
"printer type.\n"
"Are you sure to continue syncing?"
msgstr ""
+"Aktualnie wybrany profil urządzenia jest niezgodne z typem podłączonej "
+"drukarki.\n"
+"Czy na pewno chcesz kontynuować synchronizację?"
msgid ""
"There are unset nozzle types. Please set the nozzle types of all extruders "
"before synchronizing."
msgstr ""
+"Istnieją niezdefiniowane typy dysz. Przed synchronizacją należy ustawić typ "
+"dyszy wszystkich wytłaczarek."
msgid "Sync extruder infomation"
-msgstr ""
+msgstr "Synchronizacja informacji o ekstruderze"
msgid "Connection"
msgstr "Połączenie"
msgid "Synchronize nozzle information and the number of AMS"
-msgstr ""
+msgstr "Synchronizacja informacji o dyszach i liczbie AMS"
msgid "Click to edit preset"
msgstr "Kliknij, aby edytować profil"
msgid "Project Filaments"
-msgstr ""
+msgstr "Filamenty projektu"
msgid "Flushing volumes"
msgstr "Objętość płukania"
@@ -7416,6 +7600,8 @@ msgid ""
"After completing your operation, %s project will be closed and create a new "
"project."
msgstr ""
+"Po zakończeniu operacji projekt %s zostanie zamknięty i zostanie utworzony "
+"nowy projekt."
msgid "There are no compatible filaments, and sync is not performed."
msgstr "Brak kompatybilnych filamentów, synchronizacja nie została wykonana."
@@ -7436,6 +7622,8 @@ msgid ""
"Filament type and color information have been synchronized, but slot "
"information is not included."
msgstr ""
+"Informacje o typie i kolorze filamentu zostały zsynchronizowane, ale brak "
+"informacji o gnieździe."
#, boost-format
msgid "Do you want to save changes to \"%1%\"?"
@@ -7488,6 +7676,9 @@ msgid ""
"Smooth mode for timelapse is enabled, but the prime tower is off, which may "
"cause print defects. Please enable the prime tower, re-slice and print again."
msgstr ""
+"Włączono tryb płynny dla timelapse, ale wieża główna jest wyłączona, co może "
+"powodować wady wydruku. Włącz wieżę czyszczącą, ponownie wykonaj cięcie i "
+"wydrukuj."
msgid "Expand sidebar"
msgstr "Rozwiń pasek boczny"
@@ -7496,7 +7687,7 @@ msgid "Collapse sidebar"
msgstr "Zwiń pasek boczny"
msgid "Tab"
-msgstr ""
+msgstr "Karty"
#, c-format, boost-format
msgid "Loading file: %s"
@@ -7841,7 +8032,7 @@ msgid ""
msgstr ""
msgid "Sync now"
-msgstr ""
+msgstr "Synchronizuj teraz"
msgid "You can keep the modified presets to the new project or discard them"
msgstr ""
@@ -7992,10 +8183,10 @@ msgstr ""
"Plik %s został wysłany do pamięci drukarki i można go obejrzeć na urządzeniu."
msgid "The nozzle type is not set. Please set the nozzle and try again."
-msgstr ""
+msgstr "Nie ustawiono typu dyszy Wprowadź ustawienia dyszy i spróbuj ponownie."
msgid "The nozzle type is not set. Please check."
-msgstr ""
+msgstr "Nie ustawiono typu dyszy. Proszę sprawdzić."
msgid ""
"Unable to perform boolean operation on model meshes. Only positive parts "
@@ -8027,6 +8218,12 @@ msgstr ""
"Nie można wykonywać operacji boolowskich na siatkach modeli. Eksportowane "
"będą tylko części dodatnie."
+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?"
msgstr ""
"Czy drukarka jest gotowa? Czy arkusz drukujący jest na miejscu, pusty i "
@@ -8063,6 +8260,8 @@ msgid ""
"Printer not connected. Please go to the device page to connect %s before "
"syncing."
msgstr ""
+"Brak połączenia z drukarką. Proszę połączyć %s na stronie urządzenia przed "
+"synchronizacją."
#, c-format, boost-format
msgid ""
@@ -8075,22 +8274,27 @@ msgid ""
"The currently connected printer on the device page is not %s. Please switch "
"to %s before syncing."
msgstr ""
+"Aktualnie podłączona drukarka na stronie urządzenia nie jest %s. Przełącz na "
+"%s przed synchronizacją."
msgid ""
"There are no filaments on the printer. Please load the filaments on the "
"printer first."
-msgstr ""
+msgstr "Brak filamentu w drukarce. Najpierw załaduj filament do drukarki."
msgid ""
"The filaments on the printer are all unknown types. Please go to the printer "
"screen or software device page to set the filament type."
msgstr ""
+"Wszystkie filamenty załadowane do drukarki są nieznanego typu. Przejdź do "
+"ekranu drukarki lub strony urządzenia w oprogramowania, aby ustawić typ "
+"filamentu."
msgid "Device Page"
-msgstr ""
+msgstr "Strona Urządzenia"
msgid "Synchronize AMS Filament Information"
-msgstr ""
+msgstr "Synchronizuj informacje o filamentach w AMS"
msgid "Plate Settings"
msgstr "Ustawienia stołu"
@@ -8148,27 +8352,29 @@ msgid ""
"Currently, the object configuration form cannot be used with a multiple-"
"extruder printer."
msgstr ""
+"Obecnie formularz konfiguracji obiektu nie może być używany z drukarką, z "
+"wieloma ekstruderami."
msgid "Not available"
-msgstr ""
+msgstr "Niedostępne"
msgid "isometric"
-msgstr ""
+msgstr "izometryczny"
msgid "top_front"
-msgstr ""
+msgstr "góra_przód"
msgid "top"
-msgstr ""
+msgstr "góra"
msgid "bottom"
-msgstr ""
+msgstr "dół"
msgid "front"
-msgstr ""
+msgstr "przód"
msgid "rear"
-msgstr ""
+msgstr "tył"
msgid "Switching the language requires application restart.\n"
msgstr "Zmiana języka wymaga ponownego uruchomienia programu.\n"
@@ -8212,7 +8418,7 @@ msgid "The period of backup in seconds."
msgstr "Określa okres kopii zapasowej w sekundach."
msgid "Bed Temperature Difference Warning"
-msgstr ""
+msgstr "Alert nierównomiernej temperatury stołu"
msgid ""
"Using filaments with significantly different temperatures may cause:\n"
@@ -8222,6 +8428,13 @@ msgid ""
"\n"
"Continue with enabling this feature?"
msgstr ""
+"Stosowanie filamentów o znacznych różnicach temperatury pracy może "
+"doprowadzić do:\n"
+"• Zatkania ekstrudera\n"
+"• Uszkodzenia dyszy\n"
+"• Problemów z przyczepnością warstw\n"
+"\n"
+"Czy nadal chcesz włączyć tę funkcję?"
msgid "Browse"
msgstr "Przeglądaj"
@@ -8399,7 +8612,7 @@ msgid "Optimize filaments area height for..."
msgstr ""
msgid "filaments"
-msgstr ""
+msgstr "filamenty"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
@@ -8418,7 +8631,7 @@ msgstr ""
"nimi."
msgid "Pop up to select filament grouping mode"
-msgstr ""
+msgstr "Okno dialogowe do wyboru trybu grupowania filamentów"
msgid "Quality level for Draco export"
msgstr ""
@@ -8467,6 +8680,8 @@ msgid ""
"With this option enabled, you can print materials with a large temperature "
"difference together."
msgstr ""
+"Włączając tę opcję, możesz jednocześnie drukować materiały o dużych "
+"różnicach temperatury pracy."
msgid "Touchpad"
msgstr "Panel dotykowy"
@@ -8551,11 +8766,29 @@ msgstr ""
msgid ""
"Clear my choice for synchronizing printer preset after loading the file."
-msgstr ""
+msgstr "Wyłącz synchronizację profilu drukarki po załadowaniu pliku."
msgid "Graphics"
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"
msgstr ""
@@ -8613,9 +8846,16 @@ msgid "Stealth mode"
msgstr "Tryb niewidoczny"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
msgid "Network test"
@@ -8758,6 +8998,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr ""
@@ -8800,7 +9048,7 @@ msgid "Reload Failed"
msgstr ""
msgid "Debug"
-msgstr ""
+msgstr "Debugowanie"
msgid "Sync settings"
msgstr "Ustawienia synchronizacji"
@@ -8878,16 +9126,16 @@ msgid "Incompatible presets"
msgstr "Profile niekompatybilne"
msgid "My Printer"
-msgstr ""
+msgstr "Moja drukarka"
msgid "Left filaments"
-msgstr ""
+msgstr "Filamenty z lewej"
msgid "AMS filaments"
msgstr "Filamenty AMS"
msgid "Right filaments"
-msgstr ""
+msgstr "Filamenty z prawej"
msgid "Click to select filament color"
msgstr "Kliknij, aby wybrać kolor filamentu"
@@ -8899,7 +9147,7 @@ msgid "Edit preset"
msgstr "Edytuj profil"
msgid "Unspecified"
-msgstr ""
+msgstr "Nieokreślony"
msgid "Project-inside presets"
msgstr "Profile wewnątrz projektu"
@@ -8911,10 +9159,10 @@ msgid "System"
msgstr ""
msgid "Unsupported presets"
-msgstr ""
+msgstr "Profile nieobsługiwane"
msgid "Unsupported"
-msgstr ""
+msgstr "Nieobsługiwane"
msgid "Add/Remove filaments"
msgstr "Dodaj/Usuń filament"
@@ -9110,25 +9358,29 @@ msgid "Bambu Cool Plate SuperTack"
msgstr ""
msgid "Send print job"
-msgstr ""
+msgstr "Zainicjuj zadanie druku"
msgid "On"
-msgstr ""
+msgstr "Wł."
msgid "Not satisfied with the grouping of filaments? Regroup and slice ->"
msgstr ""
+"Nie jesteś zadowolony z grupowania filamentów? Zmień grupowanie i "
+"przeprowadź cięcie ->"
msgid "Manually change external spool during printing for multi-color printing"
msgstr ""
+"Ręcznie zmieniaj zewnętrzną szpulę podczas drukowania w przypadku druku "
+"wielokolorowego"
msgid "Multi-color with external"
-msgstr ""
+msgstr "Druk wielokolorowy za pomocą zewnętrznej szpuli"
msgid "Your filament grouping method in the sliced file is not optimal."
-msgstr ""
+msgstr "Twoja metoda grupowania filamentów w pliku cięcia nie jest optymalna."
msgid "Auto Bed Leveling"
-msgstr ""
+msgstr "Automatyczne poziomowanie stołu"
msgid ""
"This checks the flatness of heatbed. Leveling makes extruded height "
@@ -9136,6 +9388,10 @@ msgid ""
"*Automatic mode: Run a leveling check(about 10 seconds). Skip if surface is "
"fine."
msgstr ""
+"Ta funkcja sprawdza płaskość podgrzewanego stołu. Poziomowanie sprawia, że "
+"wysokość wytłaczanego materiału jest jednolita.\n"
+"*Tryb automatyczny: Przeprowadź kontrolę wypoziomowania (około 10 sekund). "
+"Pomiń, jeśli powierzchnia jest w porządku."
msgid "Flow Dynamics Calibration"
msgstr "Kalibracja dynamiki przepływu"
@@ -9145,14 +9401,20 @@ msgid ""
"quality.\n"
"*Automatic mode: Skip if the filament was calibrated recently."
msgstr ""
+"Proces ten określa dynamiczne wartości przepływu w celu poprawy ogólnej "
+"jakości druku.\n"
+"*Tryb automatyczny: Pomiń, jeśli filament został niedawno skalibrowany."
msgid "Nozzle Offset Calibration"
-msgstr ""
+msgstr "Kalibracja offsetu dyszy"
msgid ""
"Calibrate nozzle offsets to enhance print quality.\n"
"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
msgstr ""
+"Kalibracja offsetu dysz w celu poprawy jakości wydruku.\n"
+"*Tryb automatyczny: Sprawdź kalibrację przed drukowaniem. Pomiń, jeśli nie "
+"jest to konieczne."
msgid "Send complete"
msgstr "wysłanie zakończone"
@@ -9161,7 +9423,7 @@ msgid "Error code"
msgstr "Kod błędu"
msgid "High Flow"
-msgstr ""
+msgstr "Wysoki przepływ"
#, c-format, boost-format
msgid ""
@@ -9169,6 +9431,9 @@ msgid ""
"Please make sure the nozzle installed matches with settings in printer, then "
"set the corresponding printer preset while slicing."
msgstr ""
+"Ustawienie przepływu %s (%s) nie pasuje do dyszy w pliku cięcia (%s). "
+"Upewnij się, że zainstalowana dysza jest zgodna z ustawieniami drukarki, a "
+"następnie ustaw odpowiednią konfigurację drukarki podczas cięcia."
#, c-format, boost-format
msgid ""
@@ -9191,6 +9456,9 @@ msgid ""
"(%s). Please adjust the printer preset in the prepare page or choose a "
"compatible printer on this page."
msgstr ""
+"Wybrana drukarka (%s) jest niezgodna z konfiguracją pliku druku (%s). "
+"Dostosuj profil drukarki na stronie przygotowania lub wybierz kompatybilną "
+"drukarkę na tej stronie."
msgid ""
"When enable spiral vase mode, machines with I3 structure will not generate "
@@ -9203,6 +9471,8 @@ msgid ""
"The current printer does not support timelapse in Traditional Mode when "
"printing By-Object."
msgstr ""
+"Bieżąca drukarka nie wspiera funkcji timelapse w trybie tradycyjnym, podczas "
+"drukowania według obiektu."
msgid "Errors"
msgstr "Błędy"
@@ -9211,11 +9481,17 @@ msgid ""
"More than one filament types have been mapped to the same external spool, "
"which may cause printing issues. The printer won't pause during printing."
msgstr ""
+"Więcej niż jeden typ filamentu został zmapowany na tej samej zewnętrznej "
+"szpuli, co może powodować problemy z drukowaniem. Drukarka nie będzie mogła "
+"zatrzymać się podczas drukowania."
msgid ""
"The filament type setting of external spool is different from the filament "
"in the slicing file."
msgstr ""
+"Ustawienie typu filamentu dla zewnętrznej szpuli różni się od filamentu w "
+"pliku cięcia, \n"
+" co może powodować problemy z drukowaniem. "
msgid ""
"The printer type selected when generating G-code is not consistent with the "
@@ -9251,11 +9527,15 @@ msgstr ""
msgid ""
"This checks the flatness of heatbed. Leveling makes extruded height uniform."
msgstr ""
+"Sprawdza to płaskość stołu grzewczego. Poziomowanie sprawia, że wysokość "
+"extrudera jest jednolita."
msgid ""
"This process determines the dynamic flow values to improve overall print "
"quality."
msgstr ""
+"Ten proces określa dynamiczne wartości przepływu w celu poprawy ogólnej "
+"jakości druku."
msgid "Preparing print job"
msgstr "Przygotowywanie zadania do druku"
@@ -9266,17 +9546,21 @@ msgstr "Długość nazwy przekracza limit."
#, c-format, boost-format
msgid "Cost %dg filament and %d changes more than optimal grouping."
msgstr ""
+"Zużycie filamentu wzrośnie o %dg, a liczba zmian o %d w porównaniu do "
+"optymalnego grupowania."
msgid "nozzle"
msgstr "Dysza"
msgid "both extruders"
-msgstr ""
+msgstr "oba ekstrudery"
msgid ""
"Tips: If you changed your nozzle of your printer lately, Please go to "
"'Device -> Printer parts' to change your nozzle setting."
msgstr ""
+"Wskazówka: Jeśli ostatnio zmieniłeś dyszę , przejdź do opcji \"Urządzenie -"
+">; Części drukarki\", aby zmienić ustawienia dyszy."
#, c-format, boost-format
msgid ""
@@ -9284,6 +9568,9 @@ msgid ""
"file (%.1fmm). Please make sure the nozzle installed matches with settings "
"in printer, then set the corresponding printer preset when slicing."
msgstr ""
+"Średnica %s (%.1fmm) bieżącej drukarki nie jest zgodna z plikiem cięcia "
+"(%.1fmm). Upewnij się, że zainstalowana dysza jest zgodna z ustawieniami "
+"drukarki, a podczas cięcia ustaw odpowiedni profil drukarki."
#, c-format, boost-format
msgid ""
@@ -9291,12 +9578,17 @@ msgid ""
"(%.1fmm). Please make sure the nozzle installed matches with settings in "
"printer, then set the corresponding printer preset when slicing."
msgstr ""
+"Bieżąca średnica dyszy (%.1fmm) nie jest zgodna z plikiem cięcia (%.1fmm). "
+"Upewnij się, że zainstalowana dysza jest zgodna z ustawieniami drukarki, a "
+"następnie ustaw odpowiednie ustawienia drukarki podczas krojenia."
#, c-format, boost-format
msgid ""
"The hardness of current material (%s) exceeds the hardness of %s(%s). Please "
"verify the nozzle or material settings and try again."
msgstr ""
+"Twardość obecnego materiału (%s) przekracza twardość %s(%s). Sprawdź "
+"ustawienia dyszy lub materiału i spróbuj ponownie."
#, c-format, boost-format
msgid ""
@@ -9306,23 +9598,27 @@ msgstr ""
#, c-format, boost-format
msgid "[ %s ] requires printing in a high-temperature environment."
-msgstr ""
+msgstr "[ %s ] wymaga druku w środowisku wysokotemperaturowym."
#, c-format, boost-format
msgid "The filament on %s may soften. Please unload."
-msgstr ""
+msgstr "Filament w %s może zmięknąć. Proszę rozładować."
#, c-format, boost-format
msgid "The filament on %s is unknown and may soften. Please set filament."
-msgstr ""
+msgstr "Filament w %s jest nieznany i może zmięknąć. Proszę ustawić filament."
msgid ""
"Unable to automatically match to suitable filament. Please click to manually "
"match."
msgstr ""
+"Nie można automatycznie dopasować odpowiedniego filamentu. Kliknij, aby "
+"dopasować go ręcznie."
msgid "Install toolhead enhanced cooling fan to prevent filament softening."
msgstr ""
+"Zainstaluj wentylator chłodzący głowicę o zwiększonej wydajności, aby "
+"zapobiec mięknięciu filamentu."
msgid "Smooth Cool Plate"
msgstr "Smooth Cool Plate"
@@ -9367,12 +9663,14 @@ msgstr ""
"Drukarka wykonuje instrukcje. Proszę wznowić drukowanie po ich zakończeniu."
msgid "AMS is setting up. Please try again later."
-msgstr ""
+msgstr "AMS jest w trakcie konfiguracji. Spróbuj ponownie później."
msgid ""
"Not all filaments used in slicing are mapped to the printer. Please check "
"the mapping of filaments."
msgstr ""
+"Nie wszystkie filamenty użyte przy cieciu są przypisane do drukarki. Proszę "
+"sprawdzić mapowanie filamentów."
msgid "Please do not mix-use the Ext with AMS."
msgstr ""
@@ -9381,15 +9679,17 @@ msgid ""
"Invalid nozzle information, please refresh or manually set nozzle "
"information."
msgstr ""
+"Nieprawidłowe informacje o dyszy, odśwież lub ręcznie ustaw informacje o "
+"dyszy."
msgid "Storage needs to be inserted before printing via LAN."
-msgstr ""
+msgstr "Włóż pamięć przed drukowaniem przez sieć lokalną."
msgid "Storage is in abnormal state or is in read-only mode."
msgstr ""
msgid "Storage needs to be inserted before printing."
-msgstr ""
+msgstr "Należy włożyć nośnik pamięci przed rozpoczęciem drukowania."
msgid ""
"Cannot send the print job to a printer whose firmware is required to get "
@@ -9402,21 +9702,27 @@ msgid "Cannot send a print job for an empty plate."
msgstr "Nie można wysłać zadania druku dla pustej płyty"
msgid "Storage needs to be inserted to record timelapse."
-msgstr ""
+msgstr "Aby nagrywać timelapse, należy włożyć nośnik pamięci."
msgid ""
"You have selected both external and AMS filaments for an extruder. You will "
"need to manually switch the external filament during printing."
msgstr ""
+"Dla ekstrudera wybrano zarówno filament zewnętrzny, jak i AMS. Podczas "
+"drukowania konieczne będzie ręczne przełączenie zewnętrznego filamentu."
msgid ""
"TPU 90A/TPU 85A is too soft and does not support automatic Flow Dynamics "
"calibration."
msgstr ""
+"TPU 90A/TPU 85A są zbyt miękkie i nie jest dla nich obsługiwana automatyczna "
+"kalibracja przepływu"
msgid ""
"Set dynamic flow calibration to 'OFF' to enable custom dynamic flow value."
msgstr ""
+"Ustaw dynamiczną kalibrację flow na 'wyłączony' aby włączyć własną wartość "
+"dynamicznego flow."
msgid "This printer does not support printing all plates."
msgstr "Ta drukarka nie obsługuje drukowania na wszystkich płytach"
@@ -9427,6 +9733,11 @@ msgid ""
"try updating the firmware. If you are still restricted after the update, "
"please wait for subsequent firmware support."
msgstr ""
+"Aktualne firmware obsługuje maksymalnie 16 materiałów. Możesz zmniejszyć ich "
+"liczbę do 16 (lub mniej) na stronie przygotowania albo spróbować "
+"zaktualizować firmware. Jeśli po aktualizacji ograniczenie nadal występuje, "
+"prosimy o cierpliwość i oczekiwanie na kolejne wersje firmware z "
+"rozszerzonym wsparciem."
msgid ""
"The type of external filament is unknown or does not match with the filament "
@@ -9435,31 +9746,35 @@ msgid ""
msgstr ""
msgid "Please refer to Wiki before use->"
-msgstr ""
+msgstr "Przed użyciem zapoznaj się z Wiki->"
msgid "Current firmware does not support file transfer to internal storage."
msgstr ""
+"Aktualne firmware nie obsługuje przesyłania plików do pamięci wewnętrznej."
msgid "Send to Printer storage"
-msgstr ""
+msgstr "Wyślij do pamięci drukarki"
msgid "Try to connect"
-msgstr ""
+msgstr "Spróbuj się połączyć"
msgid "Internal Storage"
-msgstr ""
+msgstr "Pamięć wewnętrzna"
msgid "External Storage"
-msgstr ""
+msgstr "Pamięć zewnętrzna"
msgid "Upload file timeout, please check if the firmware version supports it."
msgstr ""
+"Przekroczono limit czasu przesyłania pliku: Sprawdź, czy wersja firmware to "
+"obsługuje."
msgid "Connection timed out, please check your network."
msgstr ""
+"Przekroczono limit czasu połączenia, sprawdź swoje połączenie sieciowe."
msgid "Connection failed. Click the icon to retry"
-msgstr ""
+msgstr "Połączenie nieudane. Kliknij ikonę, aby spróbować ponownie"
msgid "Cannot send the print task when the upgrade is in progress"
msgstr "Nie można wysłać zadania druku podczas aktualizacji"
@@ -9469,21 +9784,23 @@ msgstr ""
"Wybrana drukarka jest niekompatybilna z wybranymi ustawieniami drukarki."
msgid "Storage needs to be inserted before send to printer."
-msgstr ""
+msgstr "Przed wysłaniem do drukarki należy włożyć nośnik pamięci."
msgid "The printer is required to be in the same LAN as Orca Slicer."
msgstr "Drukarka musi znajdować się w tej samej sieci LAN co Orca Slicer."
msgid "The printer does not support sending to printer storage."
-msgstr ""
+msgstr "Drukarka nie obsługuje wysyłania do pamięci drukarki."
msgid "Sending..."
-msgstr ""
+msgstr "Wysyłam..."
msgid ""
"File upload timed out. Please check if the firmware version supports this "
"operation or verify if the printer is functioning properly."
msgstr ""
+"Przekroczono limit czasu wgrywania pliku. Sprawdź czy Twoja wersja "
+"oprogramowania obsługuje tą operację oraz czy drukarka działa poprawnie."
msgid "Slice ok."
msgstr "Zakończono cięcie modelu."
@@ -9786,8 +10103,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Podczas nagrywania timelapse bez głowicy drukującej zaleca się dodanie "
"„Timelapse - Wieża czyszcząca” \n"
@@ -9926,7 +10243,7 @@ msgid "Support filament"
msgstr "Filament podpory"
msgid "Support ironing"
-msgstr ""
+msgstr "Prasowanie podpory"
msgid "Tree supports"
msgstr "Drzewo"
@@ -10115,7 +10432,7 @@ msgid "Wipe tower parameters"
msgstr "Parametry wieży czyszczącej"
msgid "Multi Filament"
-msgstr ""
+msgstr "Wiele filamentów"
msgid "Tool change parameters with single extruder MM printers"
msgstr "Parametry zmiany narzędzia dla drukarek MM z jednym ekstruderem"
@@ -10130,7 +10447,7 @@ msgid "Dependencies"
msgstr "Zależności"
msgid "Compatible printers"
-msgstr ""
+msgstr "Kompatybilne drukarki"
msgid "Compatible process profiles"
msgstr "Kompatybilne profile procesów"
@@ -10186,7 +10503,7 @@ msgid "Timelapse G-code"
msgstr "G-code timelapse"
msgid "Clumping Detection G-code"
-msgstr ""
+msgstr "G-code wykrywania zalepienia dyszy"
msgid "Change filament G-code"
msgstr "G-code zmiany filamentu"
@@ -10275,14 +10592,11 @@ msgid "Retraction when switching material"
msgstr "Retrakcja podczas zmiany filamentu"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"Opcja wycierania dyszy nie jest dostępna podczas korzystania z trybu "
-"retrakcji zaszytego w firmware.\n"
-"\n"
-"Czy wyłączyć ją, aby umożliwić włączenie retrakcji za pomocą firmware?"
msgid "Firmware Retraction"
msgstr "Retrakcja realizowana przez firmware"
@@ -10291,9 +10605,12 @@ msgid ""
"Switching to a printer with different extruder types or numbers will discard "
"or reset changes to extruder or multi-nozzle-related parameters."
msgstr ""
+"Zmiana na drukarkę z różnymi typami lub liczbą ekstruderów spowoduje "
+"usunięcie lub zresetowanie zmian w parametrach związanych z ekstruderem lub "
+"wieloma dyszami."
msgid "Use Modified Value"
-msgstr ""
+msgstr "Użyj zmodyfikowanej wartości"
msgid "Detached"
msgstr "Odłączony"
@@ -10380,11 +10697,11 @@ msgstr ""
#, c-format, boost-format
msgid "Left: %s"
-msgstr ""
+msgstr "Lewy: %s"
#, c-format, boost-format
msgid "Right: %s"
-msgstr ""
+msgstr "Prawy: %s"
msgid "Click to reset current value and attach to the global value."
msgstr "Kliknij, aby przywrócić bieżącą wartość do wartości globalnej."
@@ -10544,10 +10861,10 @@ msgid "Select presets to compare"
msgstr "Wybierz profile do porównania"
msgid "Left Preset Value"
-msgstr ""
+msgstr "Wartość z zestawu ustawień po lewej"
msgid "Right Preset Value"
-msgstr ""
+msgstr "Wartość z zestawu ustawień po prawej"
msgid ""
"You can only transfer to current active profile because it has been modified."
@@ -10651,7 +10968,7 @@ msgid "OBJ file import color"
msgstr "Importuj kolory z pliku .OBJ"
msgid "Some faces don't have color defined."
-msgstr ""
+msgstr "Niektóre płaszczyzny nie mają zdefiniowanego koloru."
msgid "MTL file exist error, could not find the material:"
msgstr ""
@@ -10664,21 +10981,23 @@ msgstr "Podaj liczbę kolorów:"
msgid "Enter or click the adjustment button to modify number again"
msgstr ""
+"Wprowadź wartość lub kliknij przycisk regulacji, aby ponownie zmodyfikować "
+"liczbę."
msgid "Recommended "
msgstr "Zalecane "
msgid "view"
-msgstr ""
+msgstr "widok"
msgid "Current filament colors"
-msgstr ""
+msgstr "Aktualne kolory filamentów"
msgid "Matching"
-msgstr ""
+msgstr "Dopasowanie"
msgid "Quick set"
-msgstr ""
+msgstr "Szybkie ustawienie"
msgid "Color match"
msgstr "Dopasowanie koloru"
@@ -10690,18 +11009,20 @@ msgid "Append"
msgstr "Dołącz"
msgid "Append to existing filaments"
-msgstr ""
+msgstr "Dołącz do istniejących filamentów"
msgid "Reset mapped extruders."
msgstr "Zresetuj przypisane ekstrudery."
msgid "Note"
-msgstr ""
+msgstr "Uwaga"
msgid ""
"The color has been selected, you can choose OK \n"
" to continue or manually adjust it."
msgstr ""
+"Kolor został wybrany. Aby kontynuować, wybierz OK \n"
+"lub dostosuj go ręcznie."
msgid "—> "
msgstr ""
@@ -10711,117 +11032,140 @@ msgid ""
"presets.\n"
"Are you sure you want to continue?"
msgstr ""
+"Synchronizacja filamentów AMS spowoduje usunięcie niezapisanych zmian w "
+"profilach filamentów. \n"
+"Czy na pewno chcesz kontynuować?"
msgctxt "Sync_AMS"
msgid "Original"
-msgstr ""
+msgstr "Oryginalny"
msgid "After mapping"
-msgstr ""
+msgstr "Po mapowaniu"
msgid "After overwriting"
-msgstr ""
+msgstr "Po nadpisaniu"
msgctxt "Sync_AMS"
msgid "Plate"
-msgstr ""
+msgstr "Płyta robocza"
msgid ""
"The connected printer does not match the currently selected printer. Please "
"change the selected printer."
msgstr ""
+"Model podłączonej drukarki nie pasuje do wybranego modelu. Zmień wybrany "
+"model drukarki."
msgid "Mapping"
-msgstr ""
+msgstr "Mapowanie"
msgid "Overwriting"
-msgstr ""
+msgstr "Nadpisywanie"
msgid "Reset all filament mapping"
-msgstr ""
+msgstr "Zresetuj wszystkie mapowania filamentu"
msgid "Left Extruder"
-msgstr ""
+msgstr "Lewy ekstruder"
msgid "(Recommended filament)"
-msgstr ""
+msgstr "(Zalecany filament)"
msgid "Right Extruder"
-msgstr ""
+msgstr "Prawy ekstruder"
msgid "Advanced Options"
-msgstr ""
+msgstr "Opcje zaawansowane"
msgid ""
"Check heatbed flatness. Leveling makes extruded height uniform.\n"
"*Automatic mode: Level first (about 10 seconds). Skip if surface is fine."
msgstr ""
+"Sprawdź płaskość podgrzewanego stołu. Poziomowanie sprawia, że wysokość "
+"wytłaczanego materiału jest jednolita.\n"
+"*Tryb automatyczny: Najpierw wypoziomuj (około 10 sekund). Pomiń, jeśli "
+"powierzchnia jest w porządku."
msgid ""
"Calibrate nozzle offsets to enhance print quality.\n"
"*Automatic mode: Check for calibration before printing; skip if unnecessary."
msgstr ""
+"Kalibracja offsetu dysz w celu poprawy jakości wydruku.\n"
+"*Tryb automatyczny: Sprawdź kalibrację przed drukowaniem. Pomiń, jeśli nie "
+"jest to konieczne."
msgid "Use AMS"
msgstr "Użyj AMS"
msgid "Tip"
-msgstr ""
+msgstr "Wskazówka"
msgid ""
"Only synchronize filament type and color, not including AMS slot information."
msgstr ""
+"Synchronizuj tylko typ i kolor filamentu, nie uwzględniając informacji o "
+"gnieździe AMS."
msgid ""
"Replace the project filaments list sequentially based on printer filaments. "
"And unused printer filaments will be automatically added to the end of the "
"list."
msgstr ""
+"Filamenty z listy projektu będą stopniowo wymieniane na filamenty z "
+"drukarki. Nieużywane filamenty drukarki zostaną automatycznie dodane na "
+"koniec listy."
msgid "Advanced settings"
-msgstr ""
+msgstr "Ustawienia zaawansowane"
msgid "Add unused AMS filaments to filaments list."
-msgstr ""
+msgstr "Dodaj nieużywane filamenty AMS do listy filamentów."
msgid "Automatically merge the same colors in the model after mapping."
-msgstr ""
+msgstr "Automatycznie scal te same kolory w modelu, po mapowaniu."
msgid "After being synced, this action cannot be undone."
-msgstr ""
+msgstr "Po synchronizacji tej operacji nie można cofnąć."
msgid ""
"After being synced, the project's filament presets and colors will be "
"replaced with the mapped filament types and colors. This action cannot be "
"undone."
msgstr ""
+"Po zsynchronizowaniu, ustawienia filamentów i kolory zostaną zastąpione "
+"przypisanymi typami filamentów i kolorami. Ta akcja jest nieodwracalna."
msgid "Are you sure to synchronize the filaments?"
-msgstr ""
+msgstr "Czy na pewno chcesz synchronizować filamenty?"
msgid "Synchronize now"
-msgstr ""
+msgstr "Zsynchronizuj teraz"
msgid "Synchronize Filament Information"
-msgstr ""
+msgstr "Synchronizuj Informacje o filamencie"
msgid "Add unused filaments to filaments list."
-msgstr ""
+msgstr "Dodaj nieużywane filamenty do listy filamentów."
msgid ""
"Only synchronize filament type and color, not including slot information."
msgstr ""
+"Synchronizuj tylko typ i kolor filamentu, nie uwzględniając informacji o "
+"gnieździe."
msgid "Ext spool"
-msgstr ""
+msgstr "Szpula zewnętrzna"
msgid ""
"Please check whether the nozzle type of the device is the same as the preset "
"nozzle type."
msgstr ""
+"Proszę sprawdzić, że typ dyszy w urządzeniu pasuje do typu dyszy wybranego w "
+"ustawieniach."
msgid "Storage is not available or is in read-only mode."
-msgstr ""
+msgstr "Pamięci jest niedostępna lub jest tylko do odczytu."
#, c-format, boost-format
msgid ""
@@ -10841,29 +11185,31 @@ msgid ""
"You selected external and AMS filament at the same time in an extruder, you "
"will need manually change external filament."
msgstr ""
+"W ekstruderze wybrano jednocześnie filament zewnętrzny i w AMS. Konieczna "
+"będzie ręczna zmiana filamentu zewnętrznego."
msgid "Successfully synchronized nozzle information."
-msgstr ""
+msgstr "Pomyślnie zsynchronizowano informacje o dyszy."
msgid "Successfully synchronized nozzle and AMS number information."
-msgstr ""
+msgstr "Pomyślnie zsynchronizowano dyszę z informacjami numeru AMS."
msgid "Continue to sync filaments"
-msgstr ""
+msgstr "Kontynuuj aby zsynchronizować filamenty"
msgctxt "Sync_Nozzle_AMS"
msgid "Cancel"
-msgstr ""
+msgstr "Anuluj"
msgid "Successfully synchronized filament color from printer."
msgstr ""
msgid "Successfully synchronized color and type of filament from printer."
-msgstr ""
+msgstr "Pomyślnie zsynchronizowano kolor i typ filamnentu z drukarką."
msgctxt "FinishSyncAms"
msgid "OK"
-msgstr ""
+msgstr "OK"
msgid "Ramming customization"
msgstr "Dostosowanie wyciskania"
@@ -10901,7 +11247,7 @@ msgid "Total ramming"
msgstr ""
msgid "Volume"
-msgstr ""
+msgstr "Objętość"
msgid "Ramming line"
msgstr ""
@@ -10927,10 +11273,10 @@ msgid "Re-calculate"
msgstr "Przelicz ponownie"
msgid "Left extruder"
-msgstr ""
+msgstr "Lewy ekstruder"
msgid "Right extruder"
-msgstr ""
+msgstr "Prawy ekstruder"
msgid "Multiplier"
msgstr "Mnożnik"
@@ -10939,7 +11285,7 @@ msgid "Flushing volumes for filament change"
msgstr "Objętości płukania przy zmianie filamentu"
msgid "Please choose the filament colour"
-msgstr ""
+msgstr "Proszę wybrać kolor filamentu"
msgid ""
"Native Wayland liveview requires the GStreamer GTK video sink. Please "
@@ -11039,16 +11385,16 @@ msgid "Global shortcuts"
msgstr "Globalne skróty"
msgid "Pan View"
-msgstr ""
+msgstr "Przesuń widok"
msgid "Rotate View"
-msgstr ""
+msgstr "Obróć widok"
msgid "Middle mouse button"
msgstr ""
msgid "Zoom View"
-msgstr ""
+msgstr "Powiększ widok"
msgid ""
"Auto orients selected objects or all objects. If there are selected objects, "
@@ -11155,7 +11501,7 @@ msgid "Gizmo mesh boolean"
msgstr "Gizmo operacje boolowskie na siatce"
msgid "Gizmo FDM paint-on fuzzy skin"
-msgstr ""
+msgstr "Uchwyt malowania Fuzzy Skin FDM"
msgid "Gizmo SLA support points"
msgstr "Punkty podpór SLA za pomocą „uchwytów”"
@@ -11286,6 +11632,8 @@ msgid ""
"Try the following methods to update the connection parameters and reconnect "
"to the printer."
msgstr ""
+"Zaktualizuj parametry połączenia w następujący sposób, a następnie spróbuj "
+"ponownie połączyć się z drukarką."
msgid "1. Please confirm Orca Slicer and your printer are in the same LAN."
msgstr ""
@@ -11294,11 +11642,15 @@ msgid ""
"2. If the IP and Access Code below are different from the actual values on "
"your printer, please correct them."
msgstr ""
+"2. Jeśli poniższy adres IP i kod dostępu różnią się od tych dla Twojej "
+"drukarki, popraw je."
msgid ""
"3. Please obtain the device SN from the printer side; it is usually found in "
"the device information on the printer screen."
msgstr ""
+"3. Odczytaj numer seryjny (SN) z boku drukarki; zwykle znajduje się on w "
+"sekcji informacji o urządzeniu, na ekranie drukarki."
msgid "IP"
msgstr "IP"
@@ -11353,21 +11705,23 @@ msgstr ""
"przejdź do kroku 3, aby rozwiązać problemy z siecią"
msgid "Connection failed! Please refer to the wiki page."
-msgstr ""
+msgstr "Nie udało się nawiązać połączenia! Dowiedz się więcej na stronie Wiki."
msgid "sending failed"
-msgstr ""
+msgstr "wysyłanie nie powiodło się"
msgid ""
"Failed to send. Click Retry to attempt sending again. If retrying does not "
"work, please check the reason."
msgstr ""
+"Wysyłanie nie powiodło się. Kliknij ponów aby ponowić próbę. Jeśli ponowne "
+"próby nie przyniosą efektu, sprawdź przyczynę."
msgid "reconnect"
-msgstr ""
+msgstr "Połącz ponownie"
msgid "Air Pump"
-msgstr ""
+msgstr "Pompa powietrza"
msgid "Laser 10W"
msgstr ""
@@ -11376,10 +11730,10 @@ msgid "Laser 40W"
msgstr ""
msgid "Cutting Module"
-msgstr ""
+msgstr "Moduł tnący"
msgid "Auto Fire Extinguishing System"
-msgstr ""
+msgstr "Automatyczny system gaśniczy"
msgid "Update firmware"
msgstr "Aktualizuj oprogramowanie"
@@ -11524,10 +11878,10 @@ msgid "Input shaping is only supported by Klipper, RepRapFirmware and Marlin 2"
msgstr ""
msgid "Grouping error: "
-msgstr ""
+msgstr "Błąd grupowania: "
msgid " can not be placed in the "
-msgstr ""
+msgstr " nie może być umieszczony w "
msgid "Internal Bridge"
msgstr "Wewnętrzny most"
@@ -11662,6 +12016,8 @@ msgid ""
" is too close to clumping detection area, there may be collisions when "
"printing."
msgstr ""
+" jest zbyt blisko obszaru wykrywania zalepienia dyszy, mogą wystąpić kolizje "
+"podczas drukowania."
msgid "Prime Tower"
msgstr "Wieża Czyszcząca"
@@ -11675,6 +12031,8 @@ msgstr " jest zbyt blisko obszaru wykluczenia, mogą wystąpić kolizje.\n"
msgid ""
" is too close to clumping detection area, and collisions will be caused.\n"
msgstr ""
+" jest zbyt blisko obszaru wykrywania zalepienia dyszy, co doprowadzi do "
+"kolizji.\n"
msgid ""
"Selected nozzle temperatures are incompatible. Each filament's nozzle "
@@ -11705,6 +12063,8 @@ msgstr ""
msgid ""
"Clumping detection is not supported when \"by object\" sequence is enabled."
msgstr ""
+"W trybie drukowania \"według obiektu\" funkcja wykrywania zalepienia dyszy "
+"nie działa."
msgid ""
"Enabling both precise Z height and the prime tower may cause slicing errors."
@@ -11910,6 +12270,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
msgstr "Wysokość warstwy nie może przekraczać średnicy dyszy"
+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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -11920,18 +12293,14 @@ msgstr ""
"„G92 E0” do layer_gcode."
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"Znaleziono „G92 E0” w before_layer_gcode, co jest niezgodne z absolutnym "
-"adresowaniem extrudera."
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"Znaleziono „G92 E0” w layer_gcode, co jest niezgodne z absolutnym "
-"adresowaniem extrudera."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -12028,6 +12397,31 @@ msgid "Printable area"
msgstr "Obszar druku"
msgid "Extruder printable area"
+msgstr "Obszar druku ekstrudera"
+
+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"
@@ -12099,7 +12493,7 @@ msgstr ""
"drukarki"
msgid "Extruder printable height"
-msgstr ""
+msgstr "Wysokość druku ekstrudera"
msgid ""
"Maximum printable height of this extruder which is limited by mechanism of "
@@ -12142,8 +12536,8 @@ msgstr ""
"Orca Slicer może przesyłać pliki G-code na hosta drukarki. To pole powinno "
"zawierać nazwę hosta, adres IP lub URL hosta drukarki. Host drukowania za "
"HAProxy z włączoną autoryzacją podstawową można uzyskać, wpisując nazwę "
-"użytkownika i hasło w URL w następującym formacie: https://"
-"username:password@your-octopi-address/"
+"użytkownika i hasło w URL w następującym formacie: https://username:"
+"password@your-octopi-address/"
msgid "Device UI"
msgstr "UI urządzenia"
@@ -12164,6 +12558,12 @@ msgstr ""
"Orca Slicer może przesyłać pliki G-code na hosta drukarki. To pole powinno "
"zawierać klucz API lub hasło wymagane do uwierzytelnienia."
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "Nazwa drukarki"
@@ -12514,110 +12914,134 @@ msgstr "Kierunek wypełnienia zewnętrznych mostów"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"Zmiana ustawienia kąta linii mostów. Gdy ustawienie będzie równe 0, kąt "
-"zostanie wyliczony automatycznie. W przeciwnym wypadku, wybrany kąt będzie "
-"zastosowany do wszystkich mostów. Aby ustawić kąt na zero, wybierz 180°."
msgid "Internal bridge infill direction"
msgstr "Kierunek wypełnienia wewnętrznych mostów"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"Nadpisanie kąta druku wewnętrznych mostów. Jeśli ustawiono 0, kąt druku "
-"mostów jest obliczany automatycznie. W przeciwnym razie będzie używany kąt "
-"dla wewnętrznych mostów. Dla kąta zerowego ustaw 180°.\n"
-"\n"
-"Zaleca się użycie wartości 0, jeśli dla konkretnego modelu nie jest wymagane "
-"inne ustawienie."
msgid "External bridge density"
msgstr "Gęstość zewnętrznych mostów"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
msgid "Internal bridge density"
msgstr "Gęstość wewnętrznych mostów"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"Ten parametr kontroluje gęstość (odległość między liniami) wewnętrznych "
-"mostów. 100% oznacza pełny most. Domyślnie wynosi 100%.\n"
-"\n"
-"Zmniejszenie gęstości wewnętrznych mostów może pomóc zmniejszyć wady wydruku "
-"górnej powierzchni oraz poprawić niezawodność wewnętrznych mostów. Osiąga "
-"się to poprzez zwiększenie przestrzeni do cyrkulacji powietrza wokół "
-"wydrukowanych linii, co przyspiesza ich chłodzenie.\n"
-"\n"
-"Ustawienie to jest szczególnie skuteczne w połączeniu z drugą warstwą "
-"wewnętrznego mostu nad wypełnieniem, co dodatkowo poprawia strukturę "
-"wewnętrznych mostów przed nałożeniem pełnej warstwy."
msgid "Bridge flow ratio"
msgstr "Współczynnik przepływu przy mostach"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Zmniejsz tę wartość (na przykład do 0.9), aby zredukować ilość materiału "
-"używanego do wydruku mostu i poprawić jego stabilność.\n"
+
+#, 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"
-"Rzeczywisty przepływ materiału dla mostu oblicza się, mnożąc tę wartość "
-"przez stosunek przepływu filamentu oraz (jeśli ustawiono) przez stosunek "
-"przepływu obiektu."
+"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"
msgstr "Współczynnik przepływu dla wewnętrznych mostów"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Ta wartość reguluje grubość wewnętrznej warstwy mostu. Jest to pierwsza "
-"warstwa nad rzadkim wypełnieniem. Nieznacznie zmniejsz tę wartość (na "
-"przykład 0.9), aby poprawić jakość powierzchni nad rzadkim wypełnieniem.\n"
-"\n"
-"Rzeczywisty przepływ wewnętrz mostu oblicza się, mnożąc tę wartość przez "
-"współczynnik przepływu mostu, współczynnik przepływu filamentu oraz (jeśli "
-"jest ustawiony) współczynnik przepływu obiektu."
msgid "Top surface flow ratio"
msgstr "Współczynnik przepływu górnej powierzchni"
@@ -12922,40 +13346,35 @@ msgstr "Zwalnienie na łukach"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"Włącz tę opcję, aby spowolnić drukowanie w obszarach, gdzie obwody mogą się "
-"unosić do góry. Na przykład dodatkowe spowolnienie będzie stosowane podczas "
-"drukowania nawisów na ostrych krawędziach, takich jak przód Benchy, co "
-"zmniejszy podwijanie (Curling), które kumuluje się w kolejnych warstwach.\n"
-"\n"
-"Ogólnie zaleca się, aby ta opcja była włączona, chyba że chłodzenie Twojej "
-"drukarki jest wystarczająco mocne lub prędkość druku jest wystarczająco "
-"wolna, aby to zjawisko nie występowało. Jeśli drukujesz zewnętrzny obwód z "
-"wysoką prędkością, ten parametr może wprowadzać niewielkie artefakty podczas "
-"spowolnień z powodu dużej zmienności prędkości druku. Jeśli zauważysz "
-"artefakty, upewnij się, że Twoje dostosowanie ciśnienia (PA) jest prawidłowo "
-"skalibrowane.\n"
-"\n"
-"Uwaga: Gdy ta opcja jest włączona, obwody nawisów traktowane są jak nawis, "
-"co oznacza, że prędkość dla nawisów jest stosowana nawet jeśli unoszący się "
-"obwód jest częścią mostu. Na przykład, gdy obwody są w 100% nawisające, bez "
-"żadnej podpory pod nimi, zastosowana zostanie prędkość dla nawisu 100%."
msgid "mm/s or %"
msgstr "mm/s lub %"
@@ -13224,24 +13643,25 @@ msgid "Thick external bridges"
msgstr "Grube zewnętrzne mosty"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Jeśli włączone, mosty są bardziej niezawodne, mogą obejmować dłuższe "
-"odległości, ale mogą wyglądać gorzej. Jeśli wyłączone, mosty wyglądają "
-"lepiej, ale są niezawodne tylko na krótszych dystansach."
msgid "Thick internal bridges"
msgstr "Grube wewnętrzne mosty"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Jeśli włączone, będą używane grube wewnętrzne mosty. Zazwyczaj zaleca się "
-"użycie tej funkcji. Jednak rozważ jej wyłączenie, jeśli używasz dużych dysz."
msgid "Extra bridge layers (beta)"
msgstr "Dodatkowe warstwy mostów (beta)"
@@ -13725,7 +14145,7 @@ msgstr ""
"obszar siatki stołu w kierunkach XY."
msgid "Grab length"
-msgstr ""
+msgstr "Długość uchwytu"
msgid "Extruder Color"
msgstr "Kolor extrudera"
@@ -13994,16 +14414,16 @@ msgstr ""
"sprawdzania twardości HRC dyszy."
msgid "Filament map to extruder"
-msgstr ""
+msgstr "Przypisanie filamentu do ekstrudera"
msgid "Filament map to extruder."
msgstr ""
msgid "Auto For Flush"
-msgstr ""
+msgstr "Automatyczne płukanie"
msgid "Auto For Match"
-msgstr ""
+msgstr "Automatyczne dopasowanie"
msgid "Enable filament dynamic map"
msgstr ""
@@ -14018,7 +14438,7 @@ msgid "Printer has a filament switcher hardware (e.g., AMS)."
msgstr ""
msgid "Flush temperature"
-msgstr ""
+msgstr "Temperatura spłukiwania"
msgid ""
"Temperature when flushing filament. 0 indicates the upper bound of the "
@@ -14026,7 +14446,7 @@ msgid ""
msgstr ""
msgid "Flush volumetric speed"
-msgstr ""
+msgstr "Prędkość przepływu spłukiwania"
msgid ""
"Volumetric speed when flushing filament. 0 indicates the max volumetric "
@@ -14082,19 +14502,22 @@ msgstr ""
"jednym ekstruderem zazwyczaj wynosi 0. Tylko do statystyk."
msgid "Bed temperature type"
-msgstr ""
+msgstr "Typ temperatury stołu"
msgid ""
"This option determines how the bed temperature is set during slicing: based "
"on the temperature of the first filament or the highest temperature of the "
"printed filaments."
msgstr ""
+"Ta opcja decyduje o metodzie ustawiania temperatury stołu podczas cięcia. "
+"Uwzględnia temperaturę pracy pierwszego filamentu lub najwyższą temperaturę "
+"pracy filamentu używanego do druku."
msgid "By First filament"
-msgstr ""
+msgstr "Według pierwszego filamentu"
msgid "By Highest Temp"
-msgstr ""
+msgstr "Według najwyższej temperatury"
msgid ""
"Filament diameter is used to calculate extrusion in G-code, so it is "
@@ -14124,7 +14547,7 @@ msgstr ""
"średnica_filamentu = sqrt( (4 * współczynnik_przepływu_granulatu) / PI )"
msgid "Adaptive volumetric speed"
-msgstr ""
+msgstr "Adaptacyjna prędkość przepływu"
msgid ""
"When enabled, the extrusion flow is limited by the smaller of the fitted "
@@ -14136,7 +14559,7 @@ msgid ""
msgstr ""
msgid "Max volumetric speed multinomial coefficients"
-msgstr ""
+msgstr "Współczynniki wielomianu dla maksymalnej prędkości przepływu"
msgid "Shrinkage (XY)"
msgstr "Skurcz (XY)"
@@ -14170,7 +14593,7 @@ msgstr ""
"zrekompensować."
msgid "Adhesiveness Category"
-msgstr ""
+msgstr "Kategoria przyczepności"
msgid "Filament category."
msgstr ""
@@ -14272,53 +14695,64 @@ msgstr ""
"dalszą ekstruzję."
msgid "Wipe tower cooling"
-msgstr ""
+msgstr "Chłodzenie wieży czyszczącej"
msgid "Temperature drop before entering filament tower"
-msgstr ""
+msgstr "Obniżenie temperatury przed wejściem do wieży filamentu"
msgid "Interface layer pre-extrusion distance"
-msgstr ""
+msgstr "Odległość wstępnej ekstruzji dla warstwy łączącej"
msgid ""
"Pre-extrusion distance for prime tower interface layer (where different "
"materials meet)."
msgstr ""
+"Odległość wstępnej ekstruzji dla warstwy łączącej wieży czyszczącej (w "
+"miejscu styku różnych materiałów)."
msgid "Interface layer pre-extrusion length"
-msgstr ""
+msgstr "Długość wstępnej ekstruzji dla warstwy łączącej"
msgid ""
"Pre-extrusion length for prime tower interface layer (where different "
"materials meet)."
msgstr ""
+"Długość wstępnej ekstruzji dla warstwy łączącej wieży czyszczącej (w miejscu "
+"styku różnych materiałów)."
msgid "Tower ironing area"
-msgstr ""
+msgstr "Obszar prasowania wieży"
msgid ""
"Ironing area for prime tower interface layer (where different materials "
"meet)."
msgstr ""
+"Obszar prasowania dla warstwy łączącej wieży czyszczącej (w miejscu styku "
+"różnych materiałów)."
msgid "mm²"
msgstr "mm²"
msgid "Interface layer purge length"
-msgstr ""
+msgstr "Długość czyszczenia dla warstwy łączącej"
msgid ""
"Purge length for prime tower interface layer (where different materials "
"meet)."
msgstr ""
+"Długość przepłukania dla warstwy łączącej wieży czyszczącej (w miejscu styku "
+"różnych materiałów)."
msgid "Interface layer print temperature"
-msgstr ""
+msgstr "Temperatura druku warstwy łączącej"
msgid ""
"Print temperature for prime tower interface layer (where different materials "
"meet). If set to -1, use max recommended nozzle temperature."
msgstr ""
+"Temperatura druku dla warstwy łączącej wieży czyszczącej (w miejscu styku "
+"różnych materiałów). Jeśli ustawiona na -1, użyj maksymalnej rekomendowanej "
+"temperatury dyszy."
msgid "Speed of the last cooling move"
msgstr "Prędkość ostatniego ruchu chłodzącego"
@@ -14370,7 +14804,7 @@ msgid "Filament density. For statistics only."
msgstr "Gęstość filamentu. Tylko do celów statystycznych"
msgid "g/cm³"
-msgstr ""
+msgstr "g/cm³"
msgid "The material type of filament."
msgstr "Typ filamentu"
@@ -14385,12 +14819,14 @@ msgstr ""
"warstw łączących podpory z modelem"
msgid "Filament ramming length"
-msgstr ""
+msgstr "Długość wyciskania filamentu"
msgid ""
"When changing the extruder, it is recommended to extrude a certain length of "
"filament from the original extruder. This helps minimize nozzle oozing."
msgstr ""
+"Podczas zmiany ekstrudera, zalecana jest ekstruzja pewnej ilości filamentu z "
+"oryginalnego ekstrudera. Minimalizuje to wyciek z dyszy."
msgid "Support material"
msgstr "Materiał podporowy"
@@ -14402,7 +14838,7 @@ msgstr ""
"łączących podpory z modelem"
msgid "Filament printable"
-msgstr ""
+msgstr "Filament do druku"
msgid "The filament is printable in extruder."
msgstr ""
@@ -14471,9 +14907,10 @@ msgid "Align infill direction to model"
msgstr ""
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
msgid "Insert solid layers"
@@ -14492,10 +14929,13 @@ msgstr ""
msgid ""
"Using multiple lines for the infill pattern, if supported by infill pattern."
msgstr ""
+"Wypełnienie przy użyciu wielu linii, jeśli jest to obsługiwane przez wybrany "
+"wzór wypełnienia."
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -14511,13 +14951,13 @@ msgid "Line pattern for internal sparse infill."
msgstr "Wzór dla wewnętrznego wypełnienia"
msgid "Zig Zag"
-msgstr ""
+msgstr "Zig Zag"
msgid "Cross Zag"
-msgstr ""
+msgstr "Wypełnienie krzyżowe"
msgid "Locked Zag"
-msgstr ""
+msgstr "Blokada Zag"
msgid "Line"
msgstr "Linie"
@@ -14594,6 +15034,27 @@ msgid ""
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
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"
msgstr "Długość kotwiczenia wypełnienia"
@@ -14685,8 +15146,8 @@ msgid "mm/s² or %"
msgstr "mm/s² lub %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Przyspieszenie na rzadkim wypełnieniu. Jeśli wartość jest wyrażona w "
"procentach (np. 100%), będzie obliczana na podstawie domyślnego "
@@ -14824,10 +15285,10 @@ msgstr "Pełna prędkość wentylatora na warstwie"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na warstwie "
"„close_fan_the_first_x_layers” do maksymalnej na warstwie "
@@ -14875,7 +15336,7 @@ msgstr ""
"dłuższy czas."
msgid "Ironing fan speed"
-msgstr ""
+msgstr "Prędkość wentylatora przy prasowaniu"
msgid ""
"This part cooling fan speed is applied when ironing. Setting this parameter "
@@ -14966,7 +15427,7 @@ msgid "Whether to apply fuzzy skin on the first layer."
msgstr "Określa czy zastosować skórę fuzzy od pierwszej warstwy"
msgid "Fuzzy skin generator mode"
-msgstr ""
+msgstr "Tryb generatora skóry fuzzy"
#, c-format, boost-format
msgid ""
@@ -14993,10 +15454,10 @@ msgid ""
msgstr ""
msgid "Displacement"
-msgstr ""
+msgstr "Przesunięcie"
msgid "Extrusion"
-msgstr ""
+msgstr "Ekstruzja"
msgid "Combined"
msgstr "Połączony"
@@ -15209,7 +15670,7 @@ msgid "Stainless steel"
msgstr "Stal nierdzewna"
msgid "Tungsten carbide"
-msgstr ""
+msgstr "Węglik wolframu"
msgid "Nozzle HRC"
msgstr "Twardość dyszy (HRC)"
@@ -15424,12 +15885,14 @@ msgstr ""
"warstwy."
msgid "Infill shift step"
-msgstr ""
+msgstr "Krok przesunięcia wypełnienia"
msgid ""
"This parameter adds a slight displacement to each layer of infill to create "
"a cross texture."
msgstr ""
+"Ten parametr dodaje niewielkie przesunięcie dla każdej warstwy wypełnienia, "
+"tworząc teksturę krzyżową."
msgid "Sparse infill rotation template"
msgstr ""
@@ -15457,7 +15920,7 @@ msgid ""
msgstr ""
msgid "Skeleton infill density"
-msgstr ""
+msgstr "Gęstość wypełnienia szkieletu"
msgid ""
"The remaining part of the model contour after removing a certain depth from "
@@ -15468,7 +15931,7 @@ msgid ""
msgstr ""
msgid "Skin infill density"
-msgstr ""
+msgstr "Gęstość wypełnienia skóry"
msgid ""
"The portion of the model's outer surface within a certain depth range is "
@@ -15479,28 +15942,28 @@ msgid ""
msgstr ""
msgid "Skin infill depth"
-msgstr ""
+msgstr "Głębokość wypełnienia skóry"
msgid "The parameter sets the depth of skin."
-msgstr ""
+msgstr "Parametr ustawia głębokość skóry."
msgid "Infill lock depth"
-msgstr ""
+msgstr "Głębokość blokady wypełnienia"
msgid "The parameter sets the overlapping depth between the interior and skin."
-msgstr ""
+msgstr "Parametr określa głębokość nakładania się wnętrza i skóry."
msgid "Skin line width"
-msgstr ""
+msgstr "Szerokość linii skóry"
msgid "Adjust the line width of the selected skin paths."
-msgstr ""
+msgstr "Dostosuj szerokość linii wybranych ścieżek skóry."
msgid "Skeleton line width"
-msgstr ""
+msgstr "Szerokość linii szkieletu"
msgid "Adjust the line width of the selected skeleton paths."
-msgstr ""
+msgstr "Dostosuj szerokość linii wybranych ścieżek szkieletu."
msgid "Symmetric infill Y axis"
msgstr ""
@@ -15540,23 +16003,24 @@ msgstr ""
"procentowych (np. 80%). Ta wartość nie może być większa niż średnica dyszy."
msgid "Enable clumping detection"
-msgstr ""
+msgstr "Włącz wykrywanie zalepienia dyszy"
msgid "Clumping detection layers"
-msgstr ""
+msgstr "Warstwy wykrywanie zalepienia dyszy"
msgid "Clumping detection layers."
-msgstr ""
+msgstr "Warstwy wykrywanie zalepienia dyszy."
msgid "Probing exclude area of clumping"
-msgstr ""
+msgstr "Obszar wykluczony z sondowania pod kątem zalepienia dyszy"
msgid "Probing exclude area of clumping."
-msgstr ""
+msgstr "Obszar wykluczony z sondowania pod kątem zalepienia dyszy."
-msgid "Filament to print internal sparse infill."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
msgstr ""
-"Ten filament będzie używany do druku rzadkiego wewnętrznego wypełnienia."
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -15799,7 +16263,7 @@ msgstr ""
"podniesieniu osi Z."
msgid "Clumping detection G-code"
-msgstr ""
+msgstr "G-code wykrywania zalepienia dyszy"
msgid "Supports silent mode"
msgstr "Obsługuje tryb cichy"
@@ -16202,10 +16666,12 @@ msgstr ""
"tej funkcji. Polecenie G-code: M106 P2 S(0-255)"
msgid "For the first"
-msgstr ""
+msgstr "Dla pierwszych"
msgid "Set special auxiliary cooling fan for the first certain layers."
msgstr ""
+"Ustaw specjalny dodatkowy wentylator chłodzący dla określonych pierwszych "
+"warstw."
msgid ""
"Auxiliary fan speed will be ramped up linearly from layer \"For the first\" "
@@ -16392,8 +16858,21 @@ msgstr ""
"Określ procentowy udział nawisów w stosunku do szerokości ekstruzji i użyj "
"różnych prędkości do druku. Dla 100%% nawisów, zostanie użyta prędkość mostu."
-msgid "Filament to print walls."
-msgstr "Ten filament będzie używany do drukowania ścian"
+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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -16576,10 +17055,10 @@ msgstr ""
"filamentu"
msgid "Long retraction when extruder change"
-msgstr ""
+msgstr "Długa retrakcja podczas zmian ekstruderów"
msgid "Retraction distance when extruder change"
-msgstr ""
+msgstr "Długość retrakcji podczas zmian ekstruderów"
msgid "Z-hop height"
msgstr "Wysokość Z-hop"
@@ -16681,7 +17160,7 @@ msgid "Top and Bottom"
msgstr "Na górnych i dolnych"
msgid "Direct Drive"
-msgstr ""
+msgstr "Napęd bezpośredni"
msgid "Bowden"
msgstr "Bowden"
@@ -16905,8 +17384,8 @@ msgid "Role base wipe speed"
msgstr "Prędkość wycierania dyszy w oparciu o rolę ekstruzji"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -17094,11 +17573,20 @@ msgstr ""
"Obszar wypełnienia, który jest mniejszy od wartości progowej zostaje "
"zastąpiony wewnętrznym, pełnym wypełnieniem"
-msgid "Solid infill"
-msgstr "Pełne wypełnienie"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "Ten filament będzie używany do drukowania pełnego wypełnienia"
+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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -17473,11 +17961,10 @@ msgid "Support/raft base"
msgstr "Podstawa podpory/tratwy"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"Filament do drukowania podstawy podpory i raftu. „Domyślnie” oznacza brak "
-"wyboru konkretnego filamentu dla ich podstawy. Zostanie użyty obecny filament"
msgid "Avoid interface filament for base"
msgstr "Zredukuj ilość materiału warstwy łączącej dla podstawy"
@@ -17506,11 +17993,10 @@ msgid "Support/raft interface"
msgstr "Warstwy łączące podpory/tratwy"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"Filament do drukowania warstw łączących podpory z modelem. „Domyślnie” "
-"oznacza brak konkretnego filamentu dla podpory i używanie obecnego filamentu"
msgid "Top interface layers"
msgstr "Górne warstwy łączące"
@@ -17818,8 +18304,8 @@ msgstr "Aktywuj kontrolę temperatury"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -17954,7 +18440,7 @@ msgstr ""
"absolutnie określona przez górne warstwy powłoki"
msgid "Top surface density"
-msgstr ""
+msgstr "Gęstość górnej powierzchni"
msgid ""
"Density of top surface layer. A value of 100% creates a fully solid, smooth "
@@ -17965,7 +18451,7 @@ msgid ""
msgstr ""
msgid "Bottom surface density"
-msgstr ""
+msgstr "Gęstość dolnej powierzchni"
msgid ""
"Density of the bottom surface layer. Intended for aesthetic or functional "
@@ -18022,10 +18508,11 @@ msgstr ""
"wyglądu podczas drukowania obiektów."
msgid "Internal ribs"
-msgstr ""
+msgstr "Wewnętrzne użebrowanie"
msgid "Enable internal ribs to increase the stability of the prime tower."
msgstr ""
+"Aktywuj wewnętrzne użebrowanie aby poprawić stabilność wieży czyszczącej."
msgid "Purging volumes"
msgstr "Objętości czyszczenia"
@@ -18060,6 +18547,8 @@ msgid ""
"Brim width of prime tower, negative number means auto calculated width based "
"on the height of prime tower."
msgstr ""
+"Ustaw szerokość brim wieży czyszczącej. Wartość ujemna oznacza, że szerokość "
+"będzie obliczana automatycznie na podstawie wysokości wieży czyszczącej."
msgid "Stabilization cone apex angle"
msgstr "Kąt wierzchołka stożka stabilizacji"
@@ -18132,7 +18621,7 @@ msgid "Rib"
msgstr ""
msgid "Extra rib length"
-msgstr ""
+msgstr "Dodatkowa długość użebrowania"
msgid ""
"Positive values can increase the size of the rib wall, while negative values "
@@ -18141,13 +18630,15 @@ msgid ""
msgstr ""
msgid "Rib width"
-msgstr ""
+msgstr "Szerokość użebrowania"
msgid "Rib width is always less than half the prime tower side length."
msgstr ""
+"Szerokość żebra jest zawsze mniejsza niż połowa długości głównego boku wieży "
+"czyszczącej."
msgid "Fillet wall"
-msgstr ""
+msgstr "Zaokrąglij ścianę"
msgid "The wall of prime tower will fillet."
msgstr ""
@@ -18173,13 +18664,13 @@ msgstr ""
"wartości czyszczenia poniżej"
msgid "Skip points"
-msgstr ""
+msgstr "Pomiń punkty"
msgid "The wall of prime tower will skip the start points of wipe path."
msgstr ""
msgid "Enable tower interface features"
-msgstr ""
+msgstr "Włącz funkcje warstwy łączącej wierzy"
msgid ""
"Enable optimized prime tower interface behavior when different materials "
@@ -18196,7 +18687,7 @@ msgid ""
msgstr ""
msgid "Infill gap"
-msgstr ""
+msgstr "Przerwa wypełnienia"
msgid "Infill gap."
msgstr ""
@@ -18541,6 +19032,9 @@ msgstr "nieprawidłowa wartość "
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "Nieprawidłowa wartość, gdy włączony jest tryb wazy spiralnej: "
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "zbyt duża szerokość linii "
@@ -18796,11 +19290,17 @@ msgid "Debug level"
msgstr "Poziom debugowania"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
+msgstr ""
+"Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, 3:info, 4:"
+"debug, 5:trace\n"
+
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
msgstr ""
-"Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, 3:info, "
-"4:debug, 5:trace\n"
msgid "Enable timelapse for print"
msgstr "Włącz timelapse dla druku"
@@ -19040,23 +19540,27 @@ msgid "Number of layers in the entire print."
msgstr "Liczba warstw w całym procesie drukowania"
msgid "Print time (normal mode)"
-msgstr ""
+msgstr "Czas drukowania (tryb normalny)"
msgid ""
"Estimated print time when printed in normal mode (i.e. not in silent mode). "
"Same as print_time."
msgstr ""
+"Szacowany czas drukowania w trybie normalnym (tj. nie w trybie cichym). To "
+"samo, co normal_print_time."
msgid ""
"Estimated print time when printed in normal mode (i.e. not in silent mode). "
"Same as normal_print_time."
msgstr ""
+"Szacowany czas drukowania w trybie normalnym (tj. nie w trybie cichym). To "
+"samo, co normal_print_time."
msgid "Print time (silent mode)"
-msgstr ""
+msgstr "Czas drukowania (tryb cichy)"
msgid "Estimated print time when printed in silent mode."
-msgstr ""
+msgstr "Szacowany czas drukowania w trybie cichym."
msgid ""
"Total cost of all material used in the print. Calculated from filament_cost "
@@ -19064,7 +19568,7 @@ msgid ""
msgstr ""
msgid "Total wipe tower cost"
-msgstr ""
+msgstr "Całkowity koszt wieży czyszczącej"
msgid ""
"Total cost of the material wasted on the wipe tower. Calculated from "
@@ -19072,16 +19576,16 @@ msgid ""
msgstr ""
msgid "Wipe tower volume"
-msgstr ""
+msgstr "Objętość wieży czyszczącej"
msgid "Total filament volume extruded on the wipe tower."
-msgstr ""
+msgstr "Całkowita objętość filamentu wytłaczana na wieży czyszczącej."
msgid "Used filament"
msgstr "Użyty filament"
msgid "Total length of filament used in the print."
-msgstr ""
+msgstr "Całkowita długość filamentu użytego w wydruku."
msgid "Print time (seconds)"
msgstr ""
@@ -19317,9 +19821,12 @@ msgid ""
"is also fuzzy skin painted.\n"
"XY Size compensation cannot be combined with fuzzy skin painting."
msgstr ""
+"Obiekt ma włączoną kompensację rozmiaru XY, która nie będzie używana, "
+"ponieważ jest również włączona skóra fuzzy.\n"
+"Kompensacji rozmiaru XY nie można łączyć ze skórą fuzzy."
msgid "Object name"
-msgstr ""
+msgstr "Nazwa obiektu"
msgid "Support: generate contact points"
msgstr "Podpory: tworzenie miejsc kontaktowych"
@@ -19329,6 +19836,7 @@ msgstr "Nie udało się wczytać pliku modelu."
msgid "Meshing of a model file failed or no valid shape."
msgstr ""
+"Siatkowanie pliku modelu nie powiodło się lub nie ma prawidłowego kształtu."
msgid "The supplied file couldn't be read because it's empty"
msgstr "Dostarczony plik nie mógł być odczytany, ponieważ jest pusty"
@@ -19336,13 +19844,13 @@ msgstr "Dostarczony plik nie mógł być odczytany, ponieważ jest pusty"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
-"Nieznany format pliku. Plik wejściowy musi mieć "
-"rozszerzenie .stl, .obj, .amf(.xml)."
+"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .stl, .obj, ."
+"amf(.xml)."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
-"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf "
-"lub .zip.amf."
+"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf lub .zip."
+"amf."
msgid "load_obj: failed to parse"
msgstr "load_obj: nie udało się przetworzyć"
@@ -19455,7 +19963,7 @@ msgstr "utworzenie nowego profilu nie powiodło się."
#, c-format, boost-format
msgid "Could not find parameter: %s."
-msgstr ""
+msgstr "Nie można znaleźć parametru: %s."
msgid ""
"Are you sure to cancel the current calibration and return to the home page?"
@@ -19490,6 +19998,8 @@ msgid ""
"Only one of the results with the same name: %s will be saved. Are you sure "
"you want to override the other results?"
msgstr ""
+"Zostanie zapisany tylko jeden z wyników o nazwie: %s. Czy na pewno chcesz "
+"zastąpić pozostałe wyniki?"
#, c-format, boost-format
msgid ""
@@ -19506,6 +20016,9 @@ msgid ""
"type, nozzle diameter, and nozzle flow are the same.\n"
"Are you sure you want to override the historical result?"
msgstr ""
+"W obrębie tego samego ekstrudera nazwa (%s) musi być unikalna, kiedy typ "
+"filamentu, średnica oraz przepływ dyszy są takie same. \n"
+"Czy chcesz nadpisać poprzedni wynik?"
#, c-format, boost-format
msgid ""
@@ -19799,25 +20312,27 @@ msgid "- ℃"
msgstr ""
msgid "Synchronize nozzle and AMS information"
-msgstr ""
+msgstr "Synchronizuj informacje o dyszy i AMS"
msgid "Please connect the printer first before synchronizing."
-msgstr ""
+msgstr "Przed synchronizacją należy najpierw podłączyć drukarkę."
#, c-format, boost-format
msgid ""
"Printer %s nozzle information has not been set. Please configure it before "
"proceeding with the calibration."
msgstr ""
+"Nie skonfigurowano informacji o dyszy drukarki %s. Proszę je skonfigurować "
+"przed kontynuowaniem kalibracji."
msgid "AMS and nozzle information are synced"
-msgstr ""
+msgstr "Zsynchronizowano informacje AMS i dyszy."
msgid "Nozzle Flow"
-msgstr ""
+msgstr "Przepływ dyszy"
msgid "Nozzle Info"
-msgstr ""
+msgstr "Informacje o dyszy"
msgid "Plate Type"
msgstr "Typ Płyty"
@@ -19859,12 +20374,14 @@ msgid ""
msgstr ""
msgid "Sync AMS and nozzle information"
-msgstr ""
+msgstr "Synchronizuj informacje AMS i dyszy."
msgid ""
"Calibration only supports cases where the left and right nozzle diameters "
"are identical."
msgstr ""
+"Kalibracja obsługuje wyłącznie przypadki gdy średnice lewej i prawej dyszy "
+"są identyczne."
msgid "From k Value"
msgstr "Od wartości K"
@@ -19919,6 +20436,8 @@ msgid ""
"type, nozzle diameter, and nozzle flow are identical. Please choose a "
"different name."
msgstr ""
+"W ramach tego samego ekstrudera nazwa '%s' musi być unikalna, jeżeli typ "
+"filamentu, średnica dyszy i flow są identyczne. Proszę wybrać inną nazwę."
msgid "New Flow Dynamic Calibration"
msgstr "Nowa Kalibracji Dynamiki Przepływu"
@@ -19927,10 +20446,10 @@ msgid "The filament must be selected."
msgstr "Należy wybrać filament."
msgid "The extruder must be selected."
-msgstr ""
+msgstr "Należy wybrać ekstruder."
msgid "The nozzle must be selected."
-msgstr ""
+msgstr "Należy wybrać dyszę."
msgid "Network lookup"
msgstr "Wyszukiwanie w sieci"
@@ -20264,6 +20783,15 @@ msgstr ""
msgid "Top Surface Pattern"
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"
msgstr "Wyślij G-Code do hosta drukarki"
@@ -20288,6 +20816,48 @@ msgstr "Nazwa przesyłanego pliku nie kończy się na „%s”. Czy kontyn
msgid "Upload"
msgstr "Załaduj"
+msgid "Leveling before print"
+msgstr ""
+
+msgid "Time-lapse"
+msgstr "Timelapse"
+
+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"
msgstr "Kolejka wysyłania do serwera druku"
@@ -20332,9 +20902,6 @@ msgstr ""
"Wybrany typ stołu roboczego nie pasuje do pliku. Proszę potwierdzić przed "
"rozpoczęciem druku."
-msgid "Time-lapse"
-msgstr "Timelapse"
-
msgid "Heated Bed Leveling"
msgstr "Poziomowanie podgrzewanego stołu"
@@ -20344,6 +20911,16 @@ msgstr "Textured Build Plate (Strona A)"
msgid "Smooth Build Plate (Side B)"
msgstr "Smooth Build Plate (Strona B)"
+#, 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"
msgstr "Nie można przeprowadzić operacji boolowskich na siatkach modelu"
@@ -20529,8 +21106,8 @@ msgstr ""
"Czy zastąpić go?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
"Nazwa profilu zostanie zmieniona na „Dostawca Typ Seria @nazwa drukarki, "
@@ -20574,10 +21151,10 @@ msgid "Can't find my printer model"
msgstr "Nie możesz znaleźć swoich urządzeń"
msgid "Input Custom Nozzle Diameter"
-msgstr ""
+msgstr "Wprowadź niestandardową średnicę dyszy"
msgid "Can't find my nozzle diameter"
-msgstr ""
+msgstr "Nie mogę znaleźć średnicy dyszy"
msgid "Printable Space"
msgstr "Przestrzeń do druku"
@@ -20703,12 +21280,14 @@ msgstr ""
"dokonaj wyboru."
msgid "The entered nozzle diameter is invalid, please re-enter:\n"
-msgstr ""
+msgstr "Wprowadzona średnica dyszy jest nieprawidłowa, wprowadź ją ponownie:\n"
msgid ""
"The system preset does not allow creation. \n"
"Please re-enter the printer model or nozzle diameter."
msgstr ""
+"Profil systemu nie pozwala na utworzenie. \n"
+"Proszę ponownie wprowadzić model drukarki lub średnicę dyszy."
msgid ""
"\n"
@@ -20965,15 +21544,20 @@ msgid ""
"The printer nozzle information has not been set.\n"
"Please configure it before proceeding with the calibration."
msgstr ""
+"Nie skonfigurowano informacji o dyszy drukarki. \n"
+"Proszę je skonfigurować przed kontynuowaniem kalibracji."
msgid ""
"The nozzle type does not match the actual printer nozzle type.\n"
"Please click the Sync button above and restart the calibration."
msgstr ""
+"Typ dyszy nie jest zgodny z aktualnym typem dyszy drukarki.\n"
+"Kliknij przycisk \"Synchronizuj\" powyżej i ponownie uruchom kalibrację."
#, c-format, boost-format
msgid "Printing %1s material with %2s nozzle may cause nozzle damage."
msgstr ""
+"Drukowanie materiału %1s za pomocą dyszy %2s może spowodować jej uszkodzenie."
msgid "Need select printer"
msgstr "Konieczny jest wybór drukarki"
@@ -20984,13 +21568,15 @@ msgstr "Wartość początkowa, końcowa lub krokowa jest nieprawidłowa."
msgid ""
"The number of printer extruders and the printer selected for calibration "
"does not match."
-msgstr ""
+msgstr "Liczba ekstruderów i wybrana drukarka do kalibracji nie są zgodne."
#, c-format, boost-format
msgid ""
"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
"Flow Dynamics calibration."
msgstr ""
+"Średnica dyszy ekstrudera %s wynosi 0.2 mm i nie obsługuje automatycznej "
+"kalibracji dynamiki przepływu."
#, c-format, boost-format
msgid ""
@@ -20998,11 +21584,16 @@ msgid ""
"actual nozzle diameter.\n"
"Please click the Sync button above and restart the calibration."
msgstr ""
+"Aktualnie wybrana średnica dyszy ekstrudera %s nie jest zgodna z aktualną "
+"średnicą dyszy.\n"
+"Kliknij \"Synchronizuj\" i zrestartuj kalibrację."
msgid ""
"The nozzle diameter does not match the actual printer nozzle diameter.\n"
"Please click the Sync button above and restart the calibration."
msgstr ""
+"Średnica dyszy nie jest zgodna z aktualną średnicą dyszy drukarki.\n"
+"Kliknij \"Synchronizuj\" i zrestartuj kalibrację."
#, c-format, boost-format
msgid ""
@@ -21010,6 +21601,9 @@ msgid ""
"printer nozzle type.\n"
"Please click the Sync button above and restart the calibration."
msgstr ""
+"Aktualnie wybrany typ dyszy ekstrudera %s nie jest zgodny z aktualnym typem "
+"dyszy drukarki.\n"
+"Kliknij \"Synchronizuj\" i zrestartuj kalibrację."
msgid ""
"Unable to calibrate: maybe because the set calibration value range is too "
@@ -21029,9 +21623,18 @@ msgid ""
"agents are registered at startup."
msgstr ""
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "Nie można uzyskać ważnego odniesienia do hosta drukarki"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "Powodzenie!"
@@ -21080,6 +21683,30 @@ msgid "Connection to printers connected via the print host failed."
msgstr ""
"Połączenie z drukarkami podłączonymi przez hosta drukowania nie powiodło się."
+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
msgid "Mismatched type of print host: %s"
msgstr "Niepasujący typ hosta drukowania: %s"
@@ -21462,28 +22089,46 @@ msgid ""
"vendor for suitable profile before printing and adjust some parameters "
"according to its performances."
msgstr ""
+"Nie jest to ani powszechnie używany filament, ani filament Bambu i różni się "
+"znacznie w zależności od marki, dlatego zdecydowanie zaleca się, aby "
+"poprosić sprzedawcę o odpowiedni profil przed drukowaniem i dostosować "
+"niektóre parametry zgodnie z jego specyfikacją."
msgid ""
"When printing this filament, there's a risk of warping and low layer "
"adhesion strength. To get better results, please refer to this wiki: "
"Printing Tips for High Temp / Engineering materials."
msgstr ""
+"Podczas druku z tego filamentu istnieje ryzyko wypaczania i słabej "
+"przyczepności warstw. Aby uzyskać lepsze rezultaty, zapoznaj się z poradami "
+"na wiki: Wskazówki dotyczące druku materiałów wysokotemperaturowych / "
+"technicznych."
msgid ""
"When printing this filament, there's a risk of nozzle clogging, oozing, "
"warping and low layer adhesion strength. To get better results, please refer "
"to this wiki: Printing Tips for High Temp / Engineering materials."
msgstr ""
+"Podczas drukowania z tego filamentu istnieje ryzyko wypaczania i słabej "
+"przyczepności warstw. Aby uzyskać lepsze rezultaty, zapoznaj się z poradami "
+"na wiki: Wskazówki dotyczące druku materiałów wysokotemperaturowych / "
+"technicznych."
msgid ""
"To get better transparent or translucent results with the corresponding "
"filament, please refer to this wiki: Printing tips for transparent PETG."
msgstr ""
+"Aby uzyskać lepsze, przezroczyste lub półprzezroczyste wydruki z "
+"odpowiedniego filamentu, zapoznaj się z wiki: Wskazówki dotyczące druku "
+"przezroczystego PETG."
msgid ""
"To make the prints get higher gloss, please dry the filament before use, and "
"set the outer wall speed to be 40 to 60 mm/s when slicing."
msgstr ""
+"Aby uzyskać większy połysk wydruków, proszę przed użyciem wysuszyć filament "
+"i ustawić prędkość zewnętrznej warstwy na 40 do 60 mm/s w ustawieniach "
+"krojenia."
msgid ""
"This filament is only used to print models with a low density usually, and "
@@ -21491,24 +22136,38 @@ msgid ""
"refer to this wiki: Instructions for printing RC model with foaming PLA (PLA "
"Aero)."
msgstr ""
+"Ten filament zazwyczaj stosuje się tylko do drukowania modeli o niskiej "
+"gęstości i wymaga specjalnych parametrów. Aby uzyskać lepszą jakość druku, "
+"proszę zapoznać się z tym wiki: Instrukcja drukowania modeli RC ze "
+"spienionego PLA (PLA Aero)."
msgid ""
"This filament is only used to print models with a low density usually, and "
"some special parameters are required. To get better printing quality, please "
"refer to this wiki: ASA Aero Printing Guide."
msgstr ""
+"Ten filament zwykle używany jest tylko do drukowania modeli o niskiej "
+"gęstości, wymagających specjalnych parametrów. Aby uzyskać lepszą jakość "
+"druku, zapoznaj się z tym wiki: Przewodnik po druku ASA Aero."
msgid ""
"This filament is too soft and not compatible with the AMS. Printing it is of "
"many requirements, and to get better printing quality, please refer to this "
"wiki: TPU printing guide."
msgstr ""
+"Ten filament jest zbyt miękki i nie jest kompatybilny z AMS. Istnieje kilka "
+"wymagań, aby drukować za jego pomocą, a aby uzyskać lepszą jakość druku, "
+"zapoznaj się z tą stroną wiki: Przewodnik po drukowaniu TPU."
msgid ""
"This filament has high enough hardness (about 67D) and is compatible with "
"the AMS. Printing it is of many requirements, and to get better printing "
"quality, please refer to this wiki: TPU printing guide."
msgstr ""
+"Ten filament ma wystarczająco wysoką twardość (około 67D) i jest "
+"kompatybilny z AMS. Istnieje kilka wymagań, aby drukować za jego pomocą, a "
+"aby uzyskać lepszą jakość druku, zapoznaj się z tą stroną wiki: Przewodnik "
+"po drukowaniu TPU."
msgid ""
"If you are to print a kind of soft TPU, please don't slice with this "
@@ -21516,6 +22175,10 @@ msgid ""
"55D) and is compatible with the AMS. To get better printing quality, please "
"refer to this wiki: TPU printing guide."
msgstr ""
+"W przypadku drukowania z miękkiego TPU, nie zaleca się używania tego profilu "
+"do cięcia. Nadaje się on tylko do TPU o odpowiedniej twardości (minimum 55D) "
+"i kompatybilnym z AMS. Aby uzyskać lepsze wyniki druku, zapoznaj się z tą "
+"stroną wiki: Przewodnik po druku TPU."
msgid ""
"This is a water-soluble support filament, and usually it is only for the "
@@ -21523,6 +22186,10 @@ msgid ""
"many requirements, and to get better printing quality, please refer to this "
"wiki: PVA Printing Guide."
msgstr ""
+"Jest to filament podporowy rozpuszczalny w wodzie, który zazwyczaj używa się "
+"tylko do struktury podpory, a nie do samego modelu. Istnieje kilka wymagań "
+"dotyczących druku z tym materiałem, a aby uzyskać lepszą jakość druku, "
+"zapoznaj się z tym wiki: Przewodnik po druku PVA."
msgid ""
"This is a non-water-soluble support filament, and usually it is only for the "
@@ -21530,51 +22197,65 @@ msgid ""
"quality, please refer to this wiki: Printing Tips for Support Filament and "
"Support Function."
msgstr ""
+"Jest to filament podporowy nierozpuszczalny w wodzie, który zazwyczaj używa "
+"się tylko do struktury podpory, a nie do samego modelu. Aby uzyskać lepszą "
+"jakość druku, zapoznaj się z tym wiki: Wskazówki dotyczące drukowania z "
+"filamentu podporowego i funkcji podpory."
msgid ""
"The generic presets are conservatively tuned for compatibility with a wider "
"range of filaments. For higher printing quality and speeds, please use Bambu "
"filaments with Bambu presets."
msgstr ""
+"Profile ogólne zostały zoptymalizowane pod kątem kompatybilności z "
+"różnorodnymi filamentami. Aby uzyskać lepszą jakość druku i wyższe "
+"prędkości, prosimy używać filamentów Bambu z odpowiednimi profilami Bambu."
msgid "High quality profile for 0.2mm nozzle, prioritizing print quality."
-msgstr ""
+msgstr "Profil wysokiej jakości dla dyszy 0.2mm. Priorytetem jest jakość."
msgid ""
"High quality profile for 0.16mm layer height, prioritizing print quality and "
"strength."
msgstr ""
+"Profil wysokiej jakości dla wysokości warstwy 0.16mm. Priorytetem jest "
+"jakość i wytrzymałość."
msgid "Standard profile for 0.16mm layer height, prioritizing speed."
msgstr ""
+"Profil standardowy dla wysokości warstwy 0.16mm. Priorytetem jest szybkość."
msgid ""
"High quality profile for 0.2mm layer height, prioritizing strength and print "
"quality."
msgstr ""
+"Profil wysokiej jakości dla wysokości warstwy 0.2mm. Priorytetem jest jakość "
+"i wytrzymałość."
msgid "Standard profile for 0.4mm nozzle, prioritizing speed."
-msgstr ""
+msgstr "Profil standardowy dla dyszy 0.4mm. Priorytetem jest szybkość."
msgid ""
"High quality profile for 0.6mm nozzle, prioritizing print quality and "
"strength."
msgstr ""
+"Profil wysokiej jakości dla dyszy 0.6mm. Priorytetem jest jakość i "
+"wytrzymałość."
msgid "Strength profile for 0.6mm nozzle, prioritizing strength."
-msgstr ""
+msgstr "Profil wytrzymałości dla dyszy 0.6mm. Priorytetem jest wytrzymałość."
msgid "Standard profile for 0.6mm nozzle, prioritizing speed."
-msgstr ""
+msgstr "Profil standardowy dla dyszy 0.6mm. Priorytetem jest szybkość."
msgid "High quality profile for 0.8mm nozzle, prioritizing print quality."
-msgstr ""
+msgstr "Profil wysokiej jakości dla dyszy 0.8mm. Priorytetem jest jakość."
msgid "Strength profile for 0.8mm nozzle, prioritizing strength."
-msgstr ""
+msgstr "Profil wytrzymałości dla dyszy 0.8mm. Priorytetem jest wytrzymałość."
msgid "Standard profile for 0.8mm nozzle, prioritizing speed."
-msgstr ""
+msgstr "Profil standardowy dla dyszy 0.8mm. Priorytetem jest szybkość."
msgid "No AMS"
msgstr "Brak AMS"
@@ -21719,19 +22400,21 @@ msgid "Removed"
msgstr "Usunięto"
msgid "Don't remind me again"
-msgstr ""
+msgstr "Nie przypominaj mi ponownie"
msgid "No further pop-up will appear. You can reopen it in 'Preferences'"
msgstr ""
+"Nie pojawi się już żadne wyskakujące okienko. Możesz to zmienić w "
+"\"Preferencjach\""
msgid "Filament-Saving Mode"
-msgstr ""
+msgstr "Tryb oszczędzania filamentu"
msgid "Convenience Mode"
-msgstr ""
+msgstr "Tryb ergonomiczny"
msgid "Custom Mode"
-msgstr ""
+msgstr "Tryb niestandardowy"
msgid ""
"Generates filament grouping for the left and right nozzles based on the most "
@@ -21745,19 +22428,19 @@ msgid ""
msgstr ""
msgid "Manually assign filament to the left or right nozzle"
-msgstr ""
+msgstr "Ręcznie przypisz filament do lewej lub prawej dyszy"
msgid "Global settings"
-msgstr ""
+msgstr "Ustawienia globalne"
msgid "Video tutorial"
-msgstr ""
+msgstr "Samouczek wideo"
msgid "(Sync with printer)"
-msgstr ""
+msgstr "(Synchronizuj z drukarką)"
msgid "We will slice according to this grouping method:"
-msgstr ""
+msgstr "Potniemy zgodnie z tą metodą grupowania:"
msgid "Tip: You can drag the filaments to reassign them to different nozzles."
msgstr ""
@@ -21766,6 +22449,8 @@ msgid ""
"The filament grouping method for current plate is determined by the dropdown "
"option at the slicing plate button."
msgstr ""
+"Metoda grupowania materiału dla obecnej płyty jest zależna od opcji w menu, "
+"wyświetlanym po najechaniu na przycisk Potnij aktualną płytę."
msgid "Connected to Obico successfully!"
msgstr "Pomyślnie połączono z SimplyPrint!"
@@ -21790,12 +22475,27 @@ msgstr ""
"Nie połączono z kontem SimplyPrint. Przejdź do opcji Połącz, aby go "
"skonfigurować."
+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."
msgstr ""
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr ""
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "Podany stan nie jest właściwy"
@@ -21838,7 +22538,7 @@ msgstr ""
"będą działać!"
msgid "Set the brim type of this object to \"painted\""
-msgstr ""
+msgstr "Ustaw typ brimu tego obiektu na \"malowane\"."
msgid "invalid brim ears"
msgstr ""
@@ -21850,17 +22550,19 @@ msgid "Please select single object."
msgstr "Proszę wybrać pojedynczy obiekt."
msgid "Zoom Out"
-msgstr ""
+msgstr "Pomniejsz"
msgid "Zoom In"
-msgstr ""
+msgstr "Powiększ"
msgid "Load skipping objects information failed. Please try again."
msgstr ""
+"Nie udało się pobrać informacji o pomijanych obiektach. Proszę spróbować "
+"ponownie."
#, c-format, boost-format
msgid "/%d Selected"
-msgstr ""
+msgstr "/%d wybrano"
msgid "Nothing selected"
msgstr ""
@@ -21872,35 +22574,35 @@ msgid "The current print job cannot be skipped"
msgstr ""
msgid "Skipping all objects."
-msgstr ""
+msgstr "Pomiń wszystkie obiekty."
msgid "The printing job will be stopped. Continue?"
-msgstr ""
+msgstr "Zadanie druku zostanie zatrzymane. Kontynuować?"
#, c-format, boost-format
msgid "Skipping %d objects."
-msgstr ""
+msgstr "%d obiekty będą pomijane."
msgid "This action cannot be undone. Continue?"
-msgstr ""
+msgstr "Tego działania nie będzie można cofnąć. Kontynuować?"
msgid "Skipping objects."
-msgstr ""
+msgstr "Pomijanie obiektów."
msgid "Select Filament"
-msgstr ""
+msgstr "Wybierz filament"
msgid "Null Color"
-msgstr ""
+msgstr "Bez koloru"
msgid "Multiple Color"
-msgstr ""
+msgstr "Wiele kolorów"
msgid "Official Filament"
-msgstr ""
+msgstr "Oficjalne filamenty"
msgid "More Colors"
-msgstr ""
+msgstr "Więcej kolorów"
msgid "Network Plug-in Update Available"
msgstr ""
@@ -21919,7 +22621,7 @@ msgstr ""
#, c-format, boost-format
msgid "Error: %s"
-msgstr ""
+msgstr "Błąd: %s"
msgid "Show details"
msgstr ""
@@ -21975,53 +22677,61 @@ msgid "Volumetric speed"
msgstr "Prędkości Przepływu"
msgid "Step file import parameters"
-msgstr ""
+msgstr "Parametry importu pliku Step"
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
+"Mniejsze ugięcia liniowe i kątowe przyczyniają się do lepszej jakości "
+"transformacji, ale zwiększają czas przetwarzania."
msgid "Linear Deflection"
-msgstr ""
+msgstr "Ugięcie liniowe"
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
-msgstr ""
+msgstr "Proszę wprowadzić prawidłową wartość (0.001 < ugięcie liniowe < 0.1)"
msgid "Angle Deflection"
-msgstr ""
+msgstr "Ugięcie kątowe"
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
-msgstr ""
+msgstr "Proszę wprowadzić prawidłową wartość (0.01 < kąt odchylenia < 1.0)"
msgid "Split compound and compsolid into multiple objects"
-msgstr ""
+msgstr "Podziel złożenie i bryłę zespoloną na wiele obiektów"
msgid "Number of triangular facets"
-msgstr ""
+msgstr "Liczba trójkątnych faset"
msgid "Calculating, please wait..."
-msgstr ""
+msgstr "Obliczanie, proszę czekać..."
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
+"Filament może być niekompatybilny z obecnymi ustawieniami maszyny. Domyślny "
+"profil filamentu zostanie użyty."
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
+"Model filamentu jest nieznany. Nadal używany jest poprzedni profil filamentu."
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
+"Model filamentu jest nieznany. Użyty zostanie domyślny profil filamentu."
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
+"Filament może być niezgodny z bieżącymi ustawieniami urządzenia. Użyty "
+"zostanie losowy profil filamentu."
msgid "The filament model is unknown. A random filament preset will be used."
-msgstr ""
+msgstr "Model filamentu jest nieznany. Losowy profil filamentu zostanie użyty"
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
@@ -22408,6 +23118,199 @@ msgstr ""
"takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może "
"zmniejszyć prawdopodobieństwo odkształceń?"
+#~ 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 ""
+#~ "Opcja wycierania dyszy nie jest dostępna podczas korzystania z trybu "
+#~ "retrakcji zaszytego w firmware.\n"
+#~ "\n"
+#~ "Czy wyłączyć ją, aby umożliwić włączenie retrakcji za pomocą firmware?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "Znaleziono „G92 E0” w before_layer_gcode, co jest niezgodne z absolutnym "
+#~ "adresowaniem extrudera."
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "Znaleziono „G92 E0” w layer_gcode, co jest niezgodne z absolutnym "
+#~ "adresowaniem extrudera."
+
+#, 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 ""
+#~ "Zmiana ustawienia kąta linii mostów. Gdy ustawienie będzie równe 0, kąt "
+#~ "zostanie wyliczony automatycznie. W przeciwnym wypadku, wybrany kąt "
+#~ "będzie zastosowany do wszystkich mostów. Aby ustawić kąt na zero, wybierz "
+#~ "180°."
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "Nadpisanie kąta druku wewnętrznych mostów. Jeśli ustawiono 0, kąt druku "
+#~ "mostów jest obliczany automatycznie. W przeciwnym razie będzie używany "
+#~ "kąt dla wewnętrznych mostów. Dla kąta zerowego ustaw 180°.\n"
+#~ "\n"
+#~ "Zaleca się użycie wartości 0, jeśli dla konkretnego modelu nie jest "
+#~ "wymagane inne ustawienie."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "Ten parametr kontroluje gęstość (odległość między liniami) wewnętrznych "
+#~ "mostów. 100% oznacza pełny most. Domyślnie wynosi 100%.\n"
+#~ "\n"
+#~ "Zmniejszenie gęstości wewnętrznych mostów może pomóc zmniejszyć wady "
+#~ "wydruku górnej powierzchni oraz poprawić niezawodność wewnętrznych "
+#~ "mostów. Osiąga się to poprzez zwiększenie przestrzeni do cyrkulacji "
+#~ "powietrza wokół wydrukowanych linii, co przyspiesza ich chłodzenie.\n"
+#~ "\n"
+#~ "Ustawienie to jest szczególnie skuteczne w połączeniu z drugą warstwą "
+#~ "wewnętrznego mostu nad wypełnieniem, co dodatkowo poprawia strukturę "
+#~ "wewnętrznych mostów przed nałożeniem pełnej warstwy."
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "Zmniejsz tę wartość (na przykład do 0.9), aby zredukować ilość materiału "
+#~ "używanego do wydruku mostu i poprawić jego stabilność.\n"
+#~ "\n"
+#~ "Rzeczywisty przepływ materiału dla mostu oblicza się, mnożąc tę wartość "
+#~ "przez stosunek przepływu filamentu oraz (jeśli ustawiono) przez stosunek "
+#~ "przepływu obiektu."
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "Ta wartość reguluje grubość wewnętrznej warstwy mostu. Jest to pierwsza "
+#~ "warstwa nad rzadkim wypełnieniem. Nieznacznie zmniejsz tę wartość (na "
+#~ "przykład 0.9), aby poprawić jakość powierzchni nad rzadkim wypełnieniem.\n"
+#~ "\n"
+#~ "Rzeczywisty przepływ wewnętrz mostu oblicza się, mnożąc tę wartość przez "
+#~ "współczynnik przepływu mostu, współczynnik przepływu filamentu oraz "
+#~ "(jeśli jest ustawiony) współczynnik przepływu obiektu."
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "Włącz tę opcję, aby spowolnić drukowanie w obszarach, gdzie obwody mogą "
+#~ "się unosić do góry. Na przykład dodatkowe spowolnienie będzie stosowane "
+#~ "podczas drukowania nawisów na ostrych krawędziach, takich jak przód "
+#~ "Benchy, co zmniejszy podwijanie (Curling), które kumuluje się w kolejnych "
+#~ "warstwach.\n"
+#~ "\n"
+#~ "Ogólnie zaleca się, aby ta opcja była włączona, chyba że chłodzenie "
+#~ "Twojej drukarki jest wystarczająco mocne lub prędkość druku jest "
+#~ "wystarczająco wolna, aby to zjawisko nie występowało. Jeśli drukujesz "
+#~ "zewnętrzny obwód z wysoką prędkością, ten parametr może wprowadzać "
+#~ "niewielkie artefakty podczas spowolnień z powodu dużej zmienności "
+#~ "prędkości druku. Jeśli zauważysz artefakty, upewnij się, że Twoje "
+#~ "dostosowanie ciśnienia (PA) jest prawidłowo skalibrowane.\n"
+#~ "\n"
+#~ "Uwaga: Gdy ta opcja jest włączona, obwody nawisów traktowane są jak "
+#~ "nawis, co oznacza, że prędkość dla nawisów jest stosowana nawet jeśli "
+#~ "unoszący się obwód jest częścią mostu. Na przykład, gdy obwody są w 100% "
+#~ "nawisające, bez żadnej podpory pod nimi, zastosowana zostanie prędkość "
+#~ "dla nawisu 100%."
+
+#~ 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 ""
+#~ "Jeśli włączone, mosty są bardziej niezawodne, mogą obejmować dłuższe "
+#~ "odległości, ale mogą wyglądać gorzej. Jeśli wyłączone, mosty wyglądają "
+#~ "lepiej, ale są niezawodne tylko na krótszych dystansach."
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "Jeśli włączone, będą używane grube wewnętrzne mosty. Zazwyczaj zaleca się "
+#~ "użycie tej funkcji. Jednak rozważ jej wyłączenie, jeśli używasz dużych "
+#~ "dysz."
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr ""
+#~ "Ten filament będzie używany do druku rzadkiego wewnętrznego wypełnienia."
+
+#~ msgid "Filament to print walls."
+#~ msgstr "Ten filament będzie używany do drukowania ścian"
+
+#~ msgid "Solid infill"
+#~ msgstr "Pełne wypełnienie"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "Ten filament będzie używany do drukowania pełnego wypełnienia"
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "Filament do drukowania podstawy podpory i raftu. „Domyślnie” oznacza brak "
+#~ "wyboru konkretnego filamentu dla ich podstawy. Zostanie użyty obecny "
+#~ "filament"
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "Filament do drukowania warstw łączących podpory z modelem. „Domyślnie” "
+#~ "oznacza brak konkretnego filamentu dla podpory i używanie obecnego "
+#~ "filamentu"
+
#~ msgid "Erase all painting"
#~ msgstr "Wymaż wszystko"
@@ -24235,8 +25138,8 @@ msgstr ""
#~ "\n"
#~ "Jednakże w mocno pochylonych lub zakrzywionych modelach, zwłaszcza przy "
#~ "niskiej gęstości struktury wypełnienia, może to prowadzić do wywijania "
-#~ "się niewspieranej struktury wypełnienia, co powoduje efekt "
-#~ "\"pillowing\".\n"
+#~ "się niewspieranej struktury wypełnienia, co powoduje efekt \"pillowing"
+#~ "\".\n"
#~ "\n"
#~ "Włączenie tej opcji spowoduje drukowanie wewnętrznej warstwy mostka nad "
#~ "nieco niewspieraną wewnętrzną strukturą wypełnienia. Poniższe opcje "
@@ -25526,8 +26429,8 @@ msgstr ""
#~ "Elevation is too low for object. Use the \"Pad around object\" feature to "
#~ "print the object without elevation."
#~ msgstr ""
-#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół "
-#~ "modelu\", aby wydrukować model bez podniesienia."
+#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół modelu"
+#~ "\", aby wydrukować model bez podniesienia."
#~ msgid ""
#~ "The endings of the support pillars will be deployed on the gap between "
diff --git a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po
index 67bda6a277..e563301f53 100644
--- a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po
+++ b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: 2026-03-22 17:15-0300\n"
"Last-Translator: Alexandre Folle de Menezes\n"
"Language-Team: Portuguese, Brazilian\n"
@@ -628,10 +628,10 @@ msgid "Add connectors"
msgstr "Adicionar conectores"
msgid "Upper part"
-msgstr "Parte superior"
+msgstr "Peça superior"
msgid "Lower part"
-msgstr "Parte inferior"
+msgstr "Peça inferior"
msgid "Keep"
msgstr "Manter"
@@ -1860,6 +1860,17 @@ msgstr ""
msgid "User logged out"
msgstr "Usuário desconectado"
+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!"
msgstr ""
"criar ou abrir um arquivo de projeto novo não é permitido durante o processo "
@@ -1875,28 +1886,25 @@ msgstr ""
"Esta versão do OrcaSlicer é muito antiga e precisa ser atualizada para a "
"versão mais recente antes de poder ser usada normalmente."
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-"Falha ao conectar ao OrcaCloud.\n"
-"Verifique sua conexão de rede\n"
-"(HTTP %u): %s"
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-"Falha ao conectar ao OrcaCloud.\n"
-"Verifique sua conexão de rede\n"
-"(HTTP %u)"
-msgid "Cloud Error"
-msgstr "Erro de nuvem"
+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 ""
msgid "Retrieving printer information, please try again later."
msgstr "Obtendo informações da impressora, tente novamente mais tarde."
@@ -1953,8 +1961,8 @@ msgid "Privacy Policy Update"
msgstr "Atualização da Política de Privacidade"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
-msgstr "seu perfil Bambu Cloud (ID de usuário: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
+msgstr "seu perfil Orca Cloud (ID de usuário: \"%s\")"
msgid "your default profile"
msgstr "seu perfil padrão"
@@ -2213,6 +2221,9 @@ msgstr "Toro"
msgid "Orca Cube"
msgstr "Cubo Orca"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Teste de Tolerância Orca"
@@ -5605,6 +5616,9 @@ msgstr "Saliências"
msgid "Outline"
msgstr "Contorno"
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr "Perspectiva"
@@ -5647,7 +5661,7 @@ msgstr "Volume:"
msgid "Size:"
msgstr "Tamanho:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5909,15 +5923,18 @@ msgstr "Assistente de Configuração"
msgid "Show Configuration Folder"
msgstr "Mostrar Pasta de Configuração"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "Abrir Teste de Rede"
+
msgid "Show Tip of the Day"
msgstr "Mostrar Dica do Dia"
msgid "Check for Updates"
msgstr "Verificar atualizações"
-msgid "Open Network Test"
-msgstr "Abrir Teste de Rede"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "&Sobre %s"
@@ -7277,6 +7294,12 @@ msgstr "Exportação realizada com sucesso"
msgid "Model file downloaded."
msgstr "Arquivo do modelo baixado."
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr "Perfis compartilhadas podem estar disponíveis para essa impressora."
@@ -8027,7 +8050,7 @@ msgid "Disable Auto-Drop to preserve z positioning?\n"
msgstr ""
msgid "Object with floating parts was detected"
-msgstr ""
+msgstr "Foi detectado um objeto com partes flutuantes"
msgid "Another export job is running."
msgstr "Outro trabalho de exportação está em execução."
@@ -8330,6 +8353,12 @@ msgstr ""
"Não é possível executar operação booleana em malhas de modelo. Apenas partes "
"positivas serão exportadas."
+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?"
msgstr ""
"A impressora está pronta? O folha de impressão está no lugar, vazia e limpa?"
@@ -8446,7 +8475,7 @@ msgid "Triangles: %1%\n"
msgstr "Triângulos: %1%\n"
msgid "Use \"Fix Model\" to repair the mesh."
-msgstr ""
+msgstr "Use \"Corrigir Modelo\" para reparar a malha."
#, c-format, boost-format
msgid ""
@@ -8619,18 +8648,20 @@ msgid "Show splash screen"
msgstr "Mostrar tela de abertura"
msgid "Show the splash screen during startup."
-msgstr "Mostra a tela de abertura durante a inicialização."
+msgstr "Mostrar a tela de abertura durante a inicialização."
msgid "Show shared profiles notification"
-msgstr ""
+msgstr "Mostrar notificação de perfis compartilhados"
msgid ""
"Show a notification with a link to browse shared profiles when the selected "
"printer is changed."
msgstr ""
+"Mostrar uma notificação com um link para navegar pelos perfis compartilhados "
+"quando a impressora selecionada for alterada."
msgid "Use window buttons on left side"
-msgstr ""
+msgstr "Usar os botões de janela no lado esquerdo"
msgid "(Requires restart)"
msgstr "(Requer reinício)"
@@ -8869,15 +8900,13 @@ msgid "Middle Mouse Drag"
msgstr "Arrastar com Mouse do Meio"
msgid "Set the action that dragging the middle mouse button should perform."
-msgstr ""
-"Defina a ação que arrastar com o botão do meio do mouse deve executar."
+msgstr "Defina a ação que arrastar com o botão do meio do mouse deve executar."
msgid "Right Mouse Drag"
msgstr "Arrastar com Mouse Direito"
msgid "Set the action that dragging the right mouse button should perform."
-msgstr ""
-"Defina a ação que arrastar com o botão direito do mouse deve executar."
+msgstr "Defina a ação que arrastar com o botão direito do mouse deve executar."
msgid "Clear my choice on..."
msgstr "Limpar minha escolha em..."
@@ -8906,6 +8935,24 @@ msgstr ""
msgid "Graphics"
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"
msgstr "Antisserrilhamento"
@@ -8926,8 +8973,8 @@ msgstr ""
"Valores mais altos resultam em bordas mais suaves, mas o impacto no "
"desempenho é exponencial.\n"
"Valores mais baixos melhoram o desempenho, ao custo de bordas serrilhadas.\n"
-"Se desativado, recomenda-se ativar o FXAA para reduzir as bordas "
-"serrilhadas com impacto mínimo no desempenho.\n"
+"Se desativado, recomenda-se ativar o FXAA para reduzir as bordas serrilhadas "
+"com impacto mínimo no desempenho.\n"
"\n"
"Requer reinicialização do aplicativo."
@@ -8963,12 +9010,15 @@ msgid ""
"Limits viewport frame rate to reduce GPU load and power usage.\n"
"Set to 0 for unlimited frame rate."
msgstr ""
+"Limita a taxa de quadros da janela de visualização para reduzir a carga da "
+"GPU e o consumo de energia.\n"
+"Defina como 0 para taxa de quadros ilimitada."
msgid "Show FPS overlay"
-msgstr ""
+msgstr "Mostrar painel de FPS"
msgid "Displays current viewport FPS in the top-right corner."
-msgstr ""
+msgstr "Exibe o FPS atual da janela de visualização no canto superior direito."
msgid "Login region"
msgstr "Região de login"
@@ -8977,9 +9027,16 @@ msgid "Stealth mode"
msgstr "Modo oculto"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
msgid "Network test"
@@ -9137,6 +9194,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr "Permitir Armazenamento Anormal"
@@ -9286,7 +9351,7 @@ msgid "Project-inside presets"
msgstr "Predefinições dentro do projeto"
msgid "Bundle presets"
-msgstr ""
+msgstr "Empacotar predefinições"
msgid "System"
msgstr "Sistema"
@@ -9889,6 +9954,9 @@ msgid ""
"type in the slicing file. Please make sure you have installed the correct "
"filament in the external spool."
msgstr ""
+"O tipo de filamento externo é desconhecido ou não corresponde ao tipo de "
+"filamento no arquivo de fatiamento. Certifique-se de ter instalado o "
+"filamento correto no carretel externo."
msgid "Please refer to Wiki before use->"
msgstr "Consulte o Wiki antes de usar->"
@@ -10282,8 +10350,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Ao gravar um timelapse sem o cabeçote aparecer, é recomendável adicionar uma "
"\"Torre de Limpeza para Timelapse\" \n"
@@ -10776,14 +10844,11 @@ msgid "Retraction when switching material"
msgstr "Retração ao trocar material"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"A opção de Limpeza não está disponível ao usar o modo de Retração de "
-"Firmware.\n"
-"\n"
-"Deseja desativá-lo para habilitar a Retração de Firmware?"
msgid "Firmware Retraction"
msgstr "Retração de Firmware"
@@ -10871,8 +10936,7 @@ msgid ""
"You can go back to edit values, or continue if this is intentional."
msgstr ""
"\n"
-"Você pode voltar para editar os valores ou continuar se isso for "
-"intencional."
+"Você pode voltar para editar os valores ou continuar se isso for intencional."
msgid ""
"\n"
@@ -11506,11 +11570,15 @@ msgid ""
"Native Wayland liveview requires the GStreamer GTK video sink. Please "
"install the gtksink plugin for GStreamer, then restart OrcaSlicer."
msgstr ""
+"A visualização ao vivo nativa do Wayland requer o receptor de vídeo GTK do "
+"GStreamer. Instale o plugin gtksink para GStreamer e reinicie o OrcaSlicer."
msgid ""
"Failed to initialize the native Wayland GStreamer video sink. Please check "
"your GStreamer GTK plugin installation."
msgstr ""
+"Falha ao inicializar o receptor de vídeo nativo do Wayland GStreamer. "
+"Verifique a instalação do plugin GStreamer GTK."
msgid ""
"Windows Media Player is required for this task! Do you want to enable "
@@ -11551,6 +11619,8 @@ msgstr ""
msgid "Cloud agent is not available. Please restart OrcaSlicer and try again."
msgstr ""
+"O agente na nuvem não está disponível. Reinicie o OrcaSlicer e tente "
+"novamente."
msgid "Bambu Network plug-in not detected."
msgstr "Plug-in de Rede Bambu não detectado."
@@ -11742,7 +11812,7 @@ msgid "Zoom out"
msgstr "Afastar zoom"
msgid "Toggle printable for object/part"
-msgstr ""
+msgstr "Alternar modo de impressão para objeto/peça"
msgid "Switch between Prepare/Preview"
msgstr "Alternar entre Preparar/Pré-visualizar"
@@ -11997,13 +12067,13 @@ msgstr "Mesa de Extensão"
#, boost-format
msgid "Split into %1% parts"
-msgstr ""
+msgstr "Dividir em %1% peças"
msgid "Repair finished"
msgstr "Reparo concluído"
msgid "Repair failed"
-msgstr ""
+msgstr "Reparo falhou"
msgid "Repair canceled"
msgstr "Reparo cancelado"
@@ -12083,15 +12153,19 @@ msgid "Flush volumes matrix do not match to the correct size!"
msgstr "A matriz de volumes de descarga não corresponde ao tamanho correto!"
msgid "set_accel_and_jerk() is only supported by Klipper"
-msgstr ""
+msgstr "set_accel_and_jerk() só é suportado pelo Klipper"
msgid ""
"Input shaping is not supported by Marlin < 2.1.2.\n"
"Check your firmware version and update your G-code flavor to ´Marlin 2´"
msgstr ""
+"O controle de entrada não é suportado pelo Marlin < 2.1.2.\n"
+"Verifique a versão do seu firmware e atualize o seu G-code para 'Marlin 2'"
msgid "Input shaping is only supported by Klipper, RepRapFirmware and Marlin 2"
msgstr ""
+"O controle de entrada é suportado apenas pelo Klipper, RepRapFirmware e "
+"Marlin 2"
msgid "Grouping error: "
msgstr "Erro de agrupamento: "
@@ -12504,6 +12578,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
msgstr "A altura da camada não pode exceder o diâmetro do bico."
+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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -12514,18 +12601,14 @@ msgstr ""
"Adicione \"G92 E0\" ao layer_gcode."
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"\"G92 E0\" foi encontrado em before_layer_gcode, o que é incompatível com o "
-"endereçamento absoluto da extrusora."
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"\"G92 E0\" foi encontrado em layer_gcode, o que é incompatível com o "
-"endereçamento absoluto da extrusora."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -12632,6 +12715,31 @@ msgstr "Área de impressão"
msgid "Extruder printable area"
msgstr "Área de impressão da extrusora"
+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"
msgstr "Área de exclusão da mesa"
@@ -12676,7 +12784,7 @@ msgstr ""
"por este valor."
msgid "Elephant foot layers density"
-msgstr ""
+msgstr "Densidade das camadas do pé de elefante"
msgid ""
"Density of internal solid infill for Elephant foot layers compensation.\n"
@@ -12684,6 +12792,11 @@ msgid ""
"Subsequent layers become linearly denser by the height specified in "
"elefant_foot_compensation_layers."
msgstr ""
+"Densidade do preenchimento sólido interno para compensação das camadas de pé "
+"de elefante.\n"
+"O valor inicial para a segunda camada está definido.\n"
+"As camadas subsequentes tornam-se linearmente mais densas pela altura "
+"especificada em elefant_foot_compensation_layers."
msgid ""
"Slicing height for each layer. Smaller layer height means more accurate and "
@@ -12770,6 +12883,12 @@ msgstr ""
"O OrcaSlicer pode enviar arquivos G-code para um host de impressora. Este "
"campo deve conter a Chave da API ou a senha necessária para autenticação."
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "Nome da impressora."
@@ -13120,122 +13239,134 @@ msgstr "Direção de preenchimento de ponte externa"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"Substituição de ângulo de ponte. Se deixado em zero, o ângulo de ponte será "
-"calculado automaticamente. Caso contrário, o ângulo fornecido será usado "
-"para pontes externas. Use 180° para ângulo zero."
msgid "Internal bridge infill direction"
msgstr "Direção de preenchimento de ponte interna"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"Substituição do ângulo de ponte interna. Se deixado em zero, o ângulo de "
-"ponte será calculado automaticamente. Caso contrário, o ângulo fornecido "
-"será usado para pontes internas. Use 180° para ângulo zero.\n"
-"\n"
-"É recomendável deixá-lo em 0, a menos que haja um modelo específico que não "
-"precise."
msgid "External bridge density"
msgstr "Densidade de ponte externa"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
-"Controla a densidade (espaçamento) das linhas de pontes externas. O padrão é "
-"100%.\n"
-"\n"
-"Pontes externas de menor densidade podem ajudar a melhorar a confiabilidade, "
-"pois há mais espaço para o ar circular ao redor da ponte extrudada, "
-"melhorando sua velocidade de resfriamento. O mínimo é 10%.\n"
-"\n"
-"Densidades mais altas podem produzir superfícies de ponte mais lisas, pois "
-"as linhas sobrepostas fornecem suporte adicional durante a impressão. O "
-"máximo é 120%.\n"
-"Observação: Densidade de ponte muito alta pode causar deformação ou "
-"sobrextrusão."
msgid "Internal bridge density"
msgstr "Densidade de ponte interna"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"Controla a densidade (espaçamento) das linhas de ponte interna. 100% "
-"significa ponte sólida. O padrão é 100%.\n"
-"\n"
-"Pontes internas de menor densidade podem ajudar a reduzir as almofadas da "
-"superfície superior e melhorar a confiabilidade da ponte interna, pois há "
-"mais espaço para o ar circular ao redor da ponte extrudada, melhorando sua "
-"velocidade de resfriamento.\n"
-"\n"
-"Esta opção funciona particularmente bem quando combinada com a segunda opção "
-"de ponte interna sobre preenchimento, melhorando ainda mais a estrutura de "
-"ponte interna antes que o preenchimento sólido seja extrudado."
msgid "Bridge flow ratio"
msgstr "Taxa de fluxo em ponte"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Diminua esse valor ligeiramente (por exemplo, 0,9) para reduzir a quantidade "
-"de material para a ponte, para melhorar a flacidez.\n"
+
+#, 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"
-"O fluxo real da ponte usado é calculado multiplicando esse valor pela taxa "
-"de fluxo do filamento e, se definido, pela taxa de fluxo do objeto."
+"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"
msgstr "Taxa de fluxo em ponte interna"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Este valor governa a espessura da camada de ponte interna. Esta é a primeira "
-"camada sobre o preenchimento esparso. Diminua este valor ligeiramente (por "
-"exemplo, 0,9) para melhorar a qualidade da superfície sobre o preenchimento "
-"esparso.\n"
-"\n"
-"O fluxo de ponte interna real usado é calculado multiplicando este valor "
-"pela taxa de fluxo de ponte, a taxa de fluxo de filamento e, se definido, a "
-"taxa de fluxo do objeto."
msgid "Top surface flow ratio"
msgstr "Taxa de fluxo em superfície superior"
@@ -13584,41 +13715,35 @@ msgstr "Reduzir vel. para perímetros encurvados"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"Habilite esta opção para desacelerar a impressão em áreas onde os perímetros "
-"podem ter se curvado para cima. Por exemplo, uma desaceleração adicional "
-"será aplicada ao imprimir saliências em cantos afiados, como a parte frontal "
-"do casco Benchy, reduzindo a curvatura que se acumula por várias camadas.\n"
-"\n"
-"Geralmente, é recomendável ter esta opção ativada, a menos que o "
-"resfriamento da impressora seja potente o suficiente ou a velocidade de "
-"impressão lenta o suficiente para que a curvatura do perímetro não aconteça. "
-"Se estiver imprimindo com uma alta velocidade de perímetro externo, este "
-"parâmetro pode introduzir pequenos artefatos ao desacelerar devido à grande "
-"variação nas velocidades de impressão. Se você notar artefatos, certifique-"
-"se de que seu avanço de pressão esteja ajustado corretamente.\n"
-"\n"
-"Observação: quando esta opção estiver habilitada, os perímetros de saliência "
-"são tratados como saliências, o que significa que a velocidade de saliência "
-"é aplicada mesmo se o perímetro de saliência for parte de uma ponte. Por "
-"exemplo, quando os perímetros estiverem 100% salientes, sem nenhuma parede "
-"apoiando-os por baixo, a velocidade de saliência de 100% será aplicada."
msgid "mm/s or %"
msgstr "mm/s ou %"
@@ -13688,8 +13813,8 @@ msgid ""
msgstr ""
"Este fator afeta a quantidade de material para as bordas.\n"
"\n"
-"O fluxo real da borda é calculado multiplicando-se este valor pela "
-"taxa de fluxo do filamento e, se definida, pela taxa de fluxo do objeto.\n"
+"O fluxo real da borda é calculado multiplicando-se este valor pela taxa de "
+"fluxo do filamento e, se definida, pela taxa de fluxo do objeto.\n"
"\n"
"Nota: o valor resultante não será afetado pela taxa de fluxo da primeira "
"camada."
@@ -13849,14 +13974,18 @@ msgstr ""
msgid ""
"Enable this to override the fan speed set in custom G-code during print."
msgstr ""
+"Habilite para substituir a velocidade da ventoinha definida no G-code "
+"personalizado durante a impressão."
msgid "On completion"
-msgstr ""
+msgstr "Na cinclusão"
msgid ""
"Enable this to override the fan speed set in custom G-code after print "
"completion."
msgstr ""
+"Habilite para substituir a velocidade da ventoinha definida no G-code "
+"personalizado após a conclusão da impressão."
msgid ""
"Speed of exhaust fan during printing. This speed will override the speed in "
@@ -13893,25 +14022,25 @@ msgid "Thick external bridges"
msgstr "Pontes externas grossas"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Se ativado, as pontes são mais confiáveis, podem cobrir distâncias maiores, "
-"mas podem parecer piores. Se desativado, as pontes ficam melhores, mas são "
-"confiáveis apenas para distâncias de ponte mais curtas."
msgid "Thick internal bridges"
msgstr "Pontes internas grossas"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Se ativado, serão usadas pontes internas grossas. Geralmente é recomendado "
-"ter este recurso ativado. No entanto, considere desativá-lo se estiver "
-"usando bicos grandes."
msgid "Extra bridge layers (beta)"
msgstr "Camadas extras de ponte (beta)"
@@ -14284,6 +14413,13 @@ msgid ""
"\n"
"This option will be disabled if spiral vase mode is enabled."
msgstr ""
+"A direção em que as voltas da parede de contorno são extrudados quando "
+"vistos de cima.\n"
+"Os furos são impressos na direção oposta ao contorno para manter o "
+"alinhamento com as camadas cujos polígonos de contorno estão incompletos e "
+"mudam de direção, formando também parcialmente o contorno de um furo.\n"
+"\n"
+"Esta opção será desativada se o modo vaso espiral estiver ativado."
msgid "Counter clockwise"
msgstr "Anti-horário"
@@ -14684,16 +14820,16 @@ msgid "Auto For Match"
msgstr "Automático para correspondência"
msgid "Enable filament dynamic map"
-msgstr ""
+msgstr "Habilitar mapa dinâmico de filamento"
msgid "Enable dynamic filament mapping during print."
-msgstr ""
+msgstr "Habilitar mapeamento dinâmico de filamentos durante a impressão."
msgid "Has filament switcher"
-msgstr ""
+msgstr "Tem trocador de filamentos"
msgid "Printer has a filament switcher hardware (e.g., AMS)."
-msgstr ""
+msgstr "A impressora tem um sistema de troca de filamentos (Ex.: AMS)."
msgid "Flush temperature"
msgstr "Temperatura de purga"
@@ -14968,10 +15104,10 @@ msgstr ""
"confiável."
msgid "Wipe tower cooling"
-msgstr ""
+msgstr "Resriamento da torre de limpeza"
msgid "Temperature drop before entering filament tower"
-msgstr ""
+msgstr "Redução de temperatura antes de entrar na torre de filamentos"
msgid "Interface layer pre-extrusion distance"
msgstr "Distância de pré-extrusão da camada de interface"
@@ -15185,14 +15321,11 @@ msgid "Align infill direction to model"
msgstr "Alinhar direção do preenchimento ao modelo"
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
-"Alinha as direções de preenchimento e de preenchimento da superfície para "
-"seguir a orientação do modelo na placa de impressão. Quando ativado, as "
-"direções de preenchimento giram com o modelo para manter as características "
-"de resistência ideais."
msgid "Insert solid layers"
msgstr "Inserir camadas sólidas"
@@ -15221,6 +15354,7 @@ msgstr ""
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -15320,6 +15454,27 @@ msgid ""
msgstr ""
"O ângulo das linhas de preenchimento. 60° resultará em um favo de mel puro."
+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"
msgstr "Comprimento da âncora de preenchimento esparso"
@@ -15409,8 +15564,8 @@ msgid "mm/s² or %"
msgstr "mm/s² ou %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Aceleração do preenchimento esparso. Se o valor for expresso como uma "
"porcentagem (por exemplo, 100%), será calculado com base na aceleração "
@@ -15433,12 +15588,14 @@ msgstr ""
"placa de impressão."
msgid "First layer travel"
-msgstr ""
+msgstr "Deslocamento para primeira camada"
msgid ""
"Travel acceleration of first layer.\n"
"The percentage value is relative to Travel Acceleration."
msgstr ""
+"Aceleração de deslocamento para a primeira camada.\n"
+"O valor percentual é relativo à Aceleração de Deslocamento."
msgid "Enable accel_to_decel"
msgstr "Habilitar accel_to_decel"
@@ -15547,10 +15704,10 @@ msgstr "Velocidade total do ventilador na camada"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"A velocidade do ventilador aumentará linearmente de zero na camada "
"\"close_fan_the_first_x_layers\" para o máximo na camada "
@@ -15750,10 +15907,10 @@ msgstr ""
"tempo, a largura da extrusão para uma camada específica também não deve ser "
"inferior a um determinado nível. Geralmente, é igual a 15-25%% da altura da "
"camada. Portanto, a espessura máxima da camada fuzzy com uma largura de "
-"perímetro de 0,4 mm e uma altura de camada de 0,2 mm será 0,4-"
-"(0,2*0,25)=±0,35 mm! Se você inserir um parâmetro maior que esse, o erro "
-"Flow::spacing() será exibido e o modelo não será fatiado. Você pode escolher "
-"este número até que o erro se repita."
+"perímetro de 0,4 mm e uma altura de camada de 0,2 mm será 0,4-(0,2*0,25)="
+"±0,35 mm! Se você inserir um parâmetro maior que esse, o erro Flow::"
+"spacing() será exibido e o modelo não será fatiado. Você pode escolher este "
+"número até que o erro se repita."
msgid "Displacement"
msgstr "Deslocamento"
@@ -15779,6 +15936,17 @@ msgid ""
"Ripple: Uniform ripple pattern that ripples left and right of the original "
"path. Repeating pattern, woven appearance."
msgstr ""
+"Tipo de ruído a ser usado para geração de textura difusa:\n"
+"Clássico: Ruído aleatório uniforme clássico;\n"
+"Perlin: Ruído Perlin, que dá uma textura mais consistente;\n"
+"Billow: Semelhante ao ruído Perlin, mas mais aglomerado;\n"
+"Multifractal estriado: Ruído estriado com características pontiagudas e "
+"irregulares. Cria texturas semelhantes a mármore;\n"
+"Voronoi: Divide a superfície em células Voronoi e desloca cada uma delas por "
+"uma quantidade aleatória. Cria uma textura de retalhos;\n"
+"Ondulação: Padrão de ondulação uniforme que se propaga para a esquerda e "
+"para a direita do caminho original. Padrão repetitivo, com aparência de "
+"tecido."
msgid "Classic"
msgstr "Clássico"
@@ -15796,7 +15964,7 @@ msgid "Voronoi"
msgstr "Voronoi"
msgid "Ripple"
-msgstr ""
+msgstr "Ondulação"
msgid "Fuzzy skin feature size"
msgstr "Tamanho dos elementos da textura difusa"
@@ -15829,13 +15997,14 @@ msgstr ""
"baixos resultarão em ruído mais suave."
msgid "Number of ripples per layer"
-msgstr ""
+msgstr "Número de ondulações por camada"
msgid "Controls how many full cycles of ripples will be added per layer."
msgstr ""
+"Controla quantos ciclos completos de ondulações serão adicionados por camada."
msgid "Ripple offset"
-msgstr ""
+msgstr "Deslocamento das ondulações"
msgid ""
"Shifts the ripple phase forward along the print path by the specified "
@@ -15849,9 +16018,21 @@ msgid ""
"The shift is applied once every number of layers set by Layers between "
"ripple offset, so layers within the same group are printed identically."
msgstr ""
+"Desloca a fase da ondulação para a frente ao longo do percurso de impressão "
+"pela porcentagem especificada de um comprimento de onda a cada período de "
+"camada.\n"
+"- 0% mantém todas as camadas idênticas.\n"
+"- 50% desloca o padrão em meio comprimento de onda, invertendo efetivamente "
+"a fase.\n"
+"- 100% desloca o padrão em um comprimento de onda completo, retornando à "
+"fase original.\n"
+"\n"
+"O deslocamento é aplicado uma vez a cada número de camadas definido em "
+"Camadas entre deslocamento de ondulação, de modo que as camadas dentro do "
+"mesmo grupo sejam impressas de forma idêntica."
msgid "Layers between ripple offset"
-msgstr ""
+msgstr "Camadas entre o deslocamento de onda"
msgid ""
"Specifies how many consecutive layers share the same ripple phase before the "
@@ -15864,6 +16045,15 @@ msgid ""
"to 6 are shifted by the configured offset, then layers 7 to 9 return to the "
"base pattern, etc."
msgstr ""
+"Especifica quantas camadas consecutivas compartilham a mesma fase de "
+"ondulação antes da aplicação do deslocamento.\n"
+"Por exemplo:\n"
+"- 1 = A camada 1 é impressa com o padrão de ondulação base, em seguida a "
+"camada 2 é deslocada pelo valor configurado, depois a camada 3 retorna ao "
+"padrão base e assim por diante.\n"
+"- 3 = As camadas 1 a 3 são impressas com o padrão de ondulação base, em "
+"seguida as camadas 4 a 6 são deslocadas pelo valor configurado, depois as "
+"camadas 7 a 9 retornam ao padrão base, etc."
msgid "Filter out tiny gaps"
msgstr "Filtrar vazios pequenos"
@@ -16379,8 +16569,10 @@ msgstr "Sondagem exclui área de aglomeração"
msgid "Probing exclude area of clumping."
msgstr "Sondagem exclui área de aglomeração."
-msgid "Filament to print internal sparse infill."
-msgstr "Filamento para imprimir preenchimento esparso interno."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -16592,17 +16784,20 @@ msgid "Z contouring enabled"
msgstr "Contorno em Z habilitado"
msgid "Enable Z-layer contouring (aka Z-layer anti-aliasing)."
-msgstr ""
-"Habilitar o contorno da camada Z (antisserrilhamento da camada Z)."
+msgstr "Habilitar o contorno da camada Z (antisserrilhamento da camada Z)."
msgid "Minimize wall height angle"
-msgstr ""
+msgstr "Minimizar o ângulo de altura das paredes"
msgid ""
"Reduce the height of top-surface perimeters to match the model edge height.\n"
"Affects perimeters with a slope less than this angle (degrees).\n"
"A reasonable value is 35. Set to 0 to disable."
msgstr ""
+"Reduz a altura dos perímetros da superfície superior para corresponder à "
+"altura da aresta do modelo.\n"
+"Afeta os perímetros com uma inclinação menor que este ângulo (em graus).\n"
+"Um valor razoável é 35. Defina como 0 para desativar."
msgid "°"
msgstr "°"
@@ -16615,12 +16810,14 @@ msgstr ""
"Desative a alternância da direção de preenchimento ao usar o contorno em Z."
msgid "Minimum z height"
-msgstr ""
+msgstr "Altura Z mínima"
msgid ""
"Minimum Z-layer height.\n"
"Also controls the slicing plane."
msgstr ""
+"Altura mínima da camada Z.\n"
+"Também controla o plano de corte."
msgid "This G-code is inserted at every layer change after the Z lift."
msgstr "Este G-code é inserido a cada mudança de camada após a elevação Z."
@@ -16823,12 +17020,14 @@ msgid "Maximum speed of resonance avoidance."
msgstr "Velocidade máxima de prevenção de ressonância."
msgid "Emit input shaping"
-msgstr ""
+msgstr "Emitir modelagem de entrada"
msgid ""
"Override firmware input shaping settings.\n"
"If disabled, firmware settings are used."
msgstr ""
+"Substituir as configurações de modelagem de entrada do firmware.\n"
+"Se desativado, as configurações do firmware serão usadas."
msgid "Input shaper type"
msgstr "Tipo de modelador de entrada"
@@ -16838,6 +17037,9 @@ msgid ""
"Default uses the firmware default settings.\n"
"Disable turns off input shaping in the firmware."
msgstr ""
+"Escolha o algoritmo de modelagem de entrada.\n"
+"Padrão usa as configurações padrão do firmware.\n"
+"Desativar desativa a modelagem de entrada no firmware."
msgid "MZV"
msgstr ""
@@ -17254,8 +17456,21 @@ msgstr ""
"perímetro e usa uma velocidade diferente de impressão. Para saliências "
"100%%, a velocidade de ponte é usada."
-msgid "Filament to print walls."
-msgstr "Filamento para imprimir paredes."
+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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -17772,8 +17987,8 @@ msgid "Role base wipe speed"
msgstr "Velocidade de limpeza baseada na função"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -17960,11 +18175,20 @@ msgstr ""
"Áreas de preenchimento esparso menores que este valor limiar são "
"substituídas por preenchimento sólido interno."
-msgid "Solid infill"
-msgstr "Preenchimento sólido"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "Filamento para imprimir o preenchimento sólido."
+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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -18355,11 +18579,10 @@ msgid "Support/raft base"
msgstr "Base de suporte/jangada"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"Filamento para imprimir base de suporte e jangada. \"Padrão\" significa "
-"nenhum filamento específico para suporte e o filamento atual será usado."
msgid "Avoid interface filament for base"
msgstr "Evitar o filamento da interface para a base"
@@ -18390,11 +18613,10 @@ msgid "Support/raft interface"
msgstr "Interface de suporte/jangada"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"Filamento para imprimir a interface de suporte. \"Padrão\" significa nenhum "
-"filamento específico para a interface de suporte e o filamento atual é usado."
msgid "Top interface layers"
msgstr "Camadas de interface superior"
@@ -18724,8 +18946,8 @@ msgstr "Ativar controle de temperatura"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -18735,8 +18957,8 @@ msgid ""
"heater is installed."
msgstr ""
"Habilite esta opção para controle automatizado da temperatura da câmara. "
-"Esta opção ativa a emissão de um comando M191 antes do "
-"\"machine_start_gcode\"\n"
+"Esta opção ativa a emissão de um comando M191 antes do \"machine_start_gcode"
+"\"\n"
"que define a temperatura da câmara e aguarda até que ela seja atingida. Além "
"disso, emite um comando M141 no final da impressão para desligar o aquecedor "
"da câmara, se presente.\n"
@@ -18818,7 +19040,8 @@ msgid ""
"This G-code is inserted when the extrusion role is changed for the active "
"filament."
msgstr ""
-"Este G-code é inserido quando o tipo de extrusão do filamento ativo é alterada."
+"Este G-code é inserido quando o tipo de extrusão do filamento ativo é "
+"alterada."
msgid ""
"Line width for top surfaces. If expressed as a %, it will be computed over "
@@ -19440,10 +19663,10 @@ msgid ""
"takes precedence."
msgstr ""
"O desvio máximo permitido ao reduzir a resolução para a configuração "
-"'Resolução máxima de parede'. Se você aumentar esse valor, a impressão ficará "
-"menos precisa, mas o G-code será menor. 'Desvio máximo de parede' limita a "
-"'Resolução máxima de parede', portanto, se houver conflito entre os dois, "
-"'Desvio máximo de parede' terá prioridade."
+"'Resolução máxima de parede'. Se você aumentar esse valor, a impressão "
+"ficará menos precisa, mas o G-code será menor. 'Desvio máximo de parede' "
+"limita a 'Resolução máxima de parede', portanto, se houver conflito entre os "
+"dois, 'Desvio máximo de parede' terá prioridade."
msgid "First layer minimum wall width"
msgstr "Largura mínima de parede da primeira camada"
@@ -19490,6 +19713,9 @@ msgstr "valor inválido "
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "Valor inválido quando o modo de vaso espiral está ativado: "
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "largura de linha muito grande "
@@ -19746,11 +19972,17 @@ msgid "Debug level"
msgstr "Nível de depuração"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
+msgstr ""
+"Define o nível do log de depuração. 0:fatal, 1:error, 2:warning, 3:info, 4:"
+"debug, 5:trace\n"
+
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
msgstr ""
-"Define o nível do log de depuração. 0:fatal, 1:error, 2:warning, 3:info, "
-"4:debug, 5:trace\n"
msgid "Enable timelapse for print"
msgstr "Habilitar timelapse para impressão"
@@ -20295,8 +20527,8 @@ msgstr "O arquivo fornecido não pôde ser lido porque está vazio"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
-"Formato de arquivo desconhecido. O arquivo de entrada deve ter "
-"extensão .stl, .obj, .amf(.xml)."
+"Formato de arquivo desconhecido. O arquivo de entrada deve ter extensão ."
+"stl, .obj, .amf(.xml)."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
@@ -21285,6 +21517,15 @@ msgstr "YOLO (Perfeccionista)"
msgid "Top Surface Pattern"
msgstr "Padrão de Superfície Superior"
+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"
msgstr "Enviar G-code para o host da impressora"
@@ -21308,6 +21549,48 @@ msgstr "O nome do arquivo enviado não termina com \"%s\". Deseja continuar?"
msgid "Upload"
msgstr "Enviar"
+msgid "Leveling before print"
+msgstr ""
+
+msgid "Time-lapse"
+msgstr "Timelapse"
+
+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"
msgstr "Fila de envio do host de impressão"
@@ -21352,9 +21635,6 @@ msgstr ""
"O tipo de placa selecionado não corresponde ao arquivo. Por favor, confirme "
"antes de iniciar a impressão."
-msgid "Time-lapse"
-msgstr "Timelapse"
-
msgid "Heated Bed Leveling"
msgstr "Nivelamento de Mesa Aquecida"
@@ -21364,6 +21644,16 @@ msgstr "Placa de Impressão Texturizada (Lado A)"
msgid "Smooth Build Plate (Side B)"
msgstr "Placa de Impressão Lisa (Lado B)"
+#, 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"
msgstr "Não é possível realizar operação booleana nas peças selecionadas"
@@ -21551,8 +21841,8 @@ msgstr ""
"Você deseja reescrevê-lo?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
"Renomearíamos as predefinições como \"Fornecedor Tipo Serial @ impressora "
@@ -22089,9 +22379,18 @@ msgstr ""
"Selecione a implementação do agente de rede para comunicação com a "
"impressora. Os agentes disponíveis são registrados na inicialização."
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "Não foi possível obter uma referência válida do Host de Impressão"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "Sucesso!"
@@ -22141,6 +22440,30 @@ msgid "Connection to printers connected via the print host failed."
msgstr ""
"A conexão às impressoras conectadas através do host de impressão falhou."
+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
msgid "Mismatched type of print host: %s"
msgstr "Tipo de Host de Impressão incompatível: %s"
@@ -22937,12 +23260,27 @@ msgstr ""
"Conta SimplyPrint não vinculada. Vá para as opções de conexão para configurá-"
"la."
+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."
msgstr "A conexão serial com a Flashforge está funcionando corretamente."
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr "Não foi possível conectar via serial com a Flashforge"
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "O estado fornecido não está correto."
@@ -23280,6 +23618,10 @@ msgid ""
"the surface quality of your overhangs? However, it can cause wall "
"inconsistencies so use carefully!"
msgstr ""
+"Reversão em par\n"
+"Você sabia que o recurso Reversão em par pode melhorar "
+"significativamente a qualidade da superfície de suas saliências? No entanto, "
+"ele pode causar inconsistências na parede, portanto, use com cuidado!"
#: resources/data/hints.ini: [hint:Cut Tool]
msgid ""
@@ -23573,6 +23915,268 @@ msgstr ""
"aumentar adequadamente a temperatura da mesa aquecida pode reduzir a "
"probabilidade de empenamento?"
+#, c-format, boost-format
+#~ msgid ""
+#~ "Failed to connect to OrcaCloud.\n"
+#~ "Please check your network connectivity\n"
+#~ "(HTTP %u): %s"
+#~ msgstr ""
+#~ "Falha ao conectar ao OrcaCloud.\n"
+#~ "Verifique sua conexão de rede\n"
+#~ "(HTTP %u): %s"
+
+#, c-format, boost-format
+#~ msgid ""
+#~ "Failed to connect to OrcaCloud.\n"
+#~ "Please check your network connectivity\n"
+#~ "(HTTP %u)"
+#~ msgstr ""
+#~ "Falha ao conectar ao OrcaCloud.\n"
+#~ "Verifique sua conexão de rede\n"
+#~ "(HTTP %u)"
+
+#~ msgid "Cloud Error"
+#~ msgstr "Erro de nuvem"
+
+#~ msgid ""
+#~ "This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This "
+#~ "stops the transmission of data to Bambu's cloud services too. Users who "
+#~ "don't use BBL machines or use LAN mode only can safely turn on this "
+#~ "function."
+#~ msgstr ""
+#~ "Esta opção desativa todos os serviços em nuvem, como o Orca Cloud e o "
+#~ "Bambu Cloud. Isso também interrompe a transmissão de dados para os "
+#~ "serviços em nuvem da Bambu. Usuários que não utilizam máquinas Bambu Labs "
+#~ "ou que usam apenas o modo LAN podem ativar esta função com segurança."
+
+#~ 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 ""
+#~ "A opção de Limpeza não está disponível ao usar o modo de Retração de "
+#~ "Firmware.\n"
+#~ "\n"
+#~ "Deseja desativá-lo para habilitar a Retração de Firmware?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\" foi encontrado em before_layer_gcode, o que é incompatível com "
+#~ "o endereçamento absoluto da extrusora."
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\" foi encontrado em layer_gcode, o que é incompatível com o "
+#~ "endereçamento absoluto da extrusora."
+
+#, 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 ""
+#~ "Substituição de ângulo de ponte. Se deixado em zero, o ângulo de ponte "
+#~ "será calculado automaticamente. Caso contrário, o ângulo fornecido será "
+#~ "usado para pontes externas. Use 180° para ângulo zero."
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "Substituição do ângulo de ponte interna. Se deixado em zero, o ângulo de "
+#~ "ponte será calculado automaticamente. Caso contrário, o ângulo fornecido "
+#~ "será usado para pontes internas. Use 180° para ângulo zero.\n"
+#~ "\n"
+#~ "É recomendável deixá-lo em 0, a menos que haja um modelo específico que "
+#~ "não precise."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+#~ msgstr ""
+#~ "Controla a densidade (espaçamento) das linhas de pontes externas. O "
+#~ "padrão é 100%.\n"
+#~ "\n"
+#~ "Pontes externas de menor densidade podem ajudar a melhorar a "
+#~ "confiabilidade, pois há mais espaço para o ar circular ao redor da ponte "
+#~ "extrudada, melhorando sua velocidade de resfriamento. O mínimo é 10%.\n"
+#~ "\n"
+#~ "Densidades mais altas podem produzir superfícies de ponte mais lisas, "
+#~ "pois as linhas sobrepostas fornecem suporte adicional durante a "
+#~ "impressão. O máximo é 120%.\n"
+#~ "Observação: Densidade de ponte muito alta pode causar deformação ou "
+#~ "sobrextrusão."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "Controla a densidade (espaçamento) das linhas de ponte interna. 100% "
+#~ "significa ponte sólida. O padrão é 100%.\n"
+#~ "\n"
+#~ "Pontes internas de menor densidade podem ajudar a reduzir as almofadas da "
+#~ "superfície superior e melhorar a confiabilidade da ponte interna, pois há "
+#~ "mais espaço para o ar circular ao redor da ponte extrudada, melhorando "
+#~ "sua velocidade de resfriamento.\n"
+#~ "\n"
+#~ "Esta opção funciona particularmente bem quando combinada com a segunda "
+#~ "opção de ponte interna sobre preenchimento, melhorando ainda mais a "
+#~ "estrutura de ponte interna antes que o preenchimento sólido seja "
+#~ "extrudado."
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "Diminua esse valor ligeiramente (por exemplo, 0,9) para reduzir a "
+#~ "quantidade de material para a ponte, para melhorar a flacidez.\n"
+#~ "\n"
+#~ "O fluxo real da ponte usado é calculado multiplicando esse valor pela "
+#~ "taxa de fluxo do filamento e, se definido, pela taxa de fluxo do objeto."
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "Este valor governa a espessura da camada de ponte interna. Esta é a "
+#~ "primeira camada sobre o preenchimento esparso. Diminua este valor "
+#~ "ligeiramente (por exemplo, 0,9) para melhorar a qualidade da superfície "
+#~ "sobre o preenchimento esparso.\n"
+#~ "\n"
+#~ "O fluxo de ponte interna real usado é calculado multiplicando este valor "
+#~ "pela taxa de fluxo de ponte, a taxa de fluxo de filamento e, se definido, "
+#~ "a taxa de fluxo do objeto."
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "Habilite esta opção para desacelerar a impressão em áreas onde os "
+#~ "perímetros podem ter se curvado para cima. Por exemplo, uma desaceleração "
+#~ "adicional será aplicada ao imprimir saliências em cantos afiados, como a "
+#~ "parte frontal do casco Benchy, reduzindo a curvatura que se acumula por "
+#~ "várias camadas.\n"
+#~ "\n"
+#~ "Geralmente, é recomendável ter esta opção ativada, a menos que o "
+#~ "resfriamento da impressora seja potente o suficiente ou a velocidade de "
+#~ "impressão lenta o suficiente para que a curvatura do perímetro não "
+#~ "aconteça. Se estiver imprimindo com uma alta velocidade de perímetro "
+#~ "externo, este parâmetro pode introduzir pequenos artefatos ao desacelerar "
+#~ "devido à grande variação nas velocidades de impressão. Se você notar "
+#~ "artefatos, certifique-se de que seu avanço de pressão esteja ajustado "
+#~ "corretamente.\n"
+#~ "\n"
+#~ "Observação: quando esta opção estiver habilitada, os perímetros de "
+#~ "saliência são tratados como saliências, o que significa que a velocidade "
+#~ "de saliência é aplicada mesmo se o perímetro de saliência for parte de "
+#~ "uma ponte. Por exemplo, quando os perímetros estiverem 100% salientes, "
+#~ "sem nenhuma parede apoiando-os por baixo, a velocidade de saliência de "
+#~ "100% será aplicada."
+
+#~ 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 ""
+#~ "Se ativado, as pontes são mais confiáveis, podem cobrir distâncias "
+#~ "maiores, mas podem parecer piores. Se desativado, as pontes ficam "
+#~ "melhores, mas são confiáveis apenas para distâncias de ponte mais curtas."
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "Se ativado, serão usadas pontes internas grossas. Geralmente é "
+#~ "recomendado ter este recurso ativado. No entanto, considere desativá-lo "
+#~ "se estiver usando bicos grandes."
+
+#~ msgid ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+#~ msgstr ""
+#~ "Alinha as direções de preenchimento e de preenchimento da superfície para "
+#~ "seguir a orientação do modelo na placa de impressão. Quando ativado, as "
+#~ "direções de preenchimento giram com o modelo para manter as "
+#~ "características de resistência ideais."
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "Filamento para imprimir preenchimento esparso interno."
+
+#~ msgid "Filament to print walls."
+#~ msgstr "Filamento para imprimir paredes."
+
+#~ msgid "Solid infill"
+#~ msgstr "Preenchimento sólido"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "Filamento para imprimir o preenchimento sólido."
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "Filamento para imprimir base de suporte e jangada. \"Padrão\" significa "
+#~ "nenhum filamento específico para suporte e o filamento atual será usado."
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "Filamento para imprimir a interface de suporte. \"Padrão\" significa "
+#~ "nenhum filamento específico para a interface de suporte e o filamento "
+#~ "atual é usado."
+
#~ msgid "Erase all painting"
#~ msgstr "Apagar toda a pintura"
diff --git a/localization/i18n/ru/OrcaSlicer_ru.po b/localization/i18n/ru/OrcaSlicer_ru.po
index 44afae3c57..63ddcf0410 100644
--- a/localization/i18n/ru/OrcaSlicer_ru.po
+++ b/localization/i18n/ru/OrcaSlicer_ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: OrcaSlicer V2.3.2 beta2\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: 2026-02-25 13:38+0300\n"
"Last-Translator: Felix14_v2\n"
"Language-Team: Felix14_v2 (ДС/ТГ: @felix14_v2, почта: aleks111001@list.ru), "
@@ -16,8 +16,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
-"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
"X-Generator: Poedit 3.8\n"
# В большинстве мест подставляется в "%s экструдер", но также тянется и в
@@ -525,7 +525,7 @@ msgid "Count"
msgstr ""
msgid "Gap"
-msgstr ""
+msgstr "Зазор"
# В английском тут в кучу намешаны и "отступ", и "интервал". Используется в
# настройках авторасстановки моделей (в значении отступа) и в окне настроек
@@ -1901,6 +1901,17 @@ msgstr ""
msgid "User logged out"
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 "Режим конфиденциальности (отключение телеметрии Bambulab)"
+
+msgid "Quit Stealth Mode"
+msgstr ""
+
msgid "new or open project file is not allowed during the slicing process!"
msgstr "Создание или открытие файла проекта невозможно во время нарезки."
@@ -1914,21 +1925,24 @@ msgstr ""
"Слишком старая версия Orca Slicer. Для корректной работы обновите программу "
"до последней версии."
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
@@ -1985,7 +1999,7 @@ msgid "Privacy Policy Update"
msgstr "Обновление политики конфиденциальности"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
msgstr ""
msgid "your default profile"
@@ -2236,6 +2250,9 @@ msgstr "Тороид"
msgid "Orca Cube"
msgstr "Куб Orca"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Тест точности Orca"
@@ -2265,9 +2282,9 @@ msgid ""
"No - Do not change these settings for me"
msgstr ""
"На верхней поверхности модели присутствует рельефный текст. Для достижения "
-"оптимального результата рекомендуется установить «Порог одного периметра» "
-"(min_width_top_surface) равным 0, чтобы избежать проблем в работе настройки "
-"«Только один периметр на верхней поверхности».\n"
+"оптимального результата рекомендуется установить «Порог одного "
+"периметра» (min_width_top_surface) равным 0, чтобы избежать проблем в работе "
+"настройки «Только один периметр на верхней поверхности».\n"
"\n"
"Да – применить рекомендуемые настройки\n"
"Нет – ничего не менять"
@@ -5427,7 +5444,7 @@ msgid "Filament change times"
msgstr "Смен прутка"
msgid "Tool changes"
-msgstr ""
+msgstr "Смена инструмента"
msgid "Color change"
msgstr "Смена цвета"
@@ -5699,6 +5716,9 @@ msgstr "Нависания"
msgid "Outline"
msgstr "Обводка выбранного"
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr "Перспектива"
@@ -5741,7 +5761,7 @@ msgstr "Объём:"
msgid "Size:"
msgstr "Размер:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -6023,15 +6043,18 @@ msgstr "Мастер настройки"
msgid "Show Configuration Folder"
msgstr "Показать конфигурационную папку"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "Проверка сети"
+
msgid "Show Tip of the Day"
msgstr "Показать полезный совет"
msgid "Check for Updates"
msgstr "Проверить обновления"
-msgid "Open Network Test"
-msgstr "Проверка сети"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "&O программе %s"
@@ -7402,6 +7425,12 @@ msgstr "Успешно экспортировано"
msgid "Model file downloaded."
msgstr "Файл модели скачан."
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr ""
@@ -8454,6 +8483,12 @@ 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?"
msgstr "Готов ли Принтер? Печатная пластина на месте, пустая и чистая?"
@@ -9041,6 +9076,24 @@ msgstr "Отменить выбор для синхронизации профи
msgid "Graphics"
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"
msgstr ""
@@ -9098,9 +9151,16 @@ msgid "Stealth mode"
msgstr "Режим конфиденциальности (отключение телеметрии Bambu Lab)"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
msgid "Network test"
@@ -9247,6 +9307,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr "Игнорировать неисправность хранилища"
@@ -10384,8 +10452,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"При записи таймлапса со скрытием головы рекомендуется добавить черновую "
"башню таймлапса.\n"
@@ -10890,13 +10958,11 @@ msgid "Retraction when switching material"
msgstr "Откат при смене материала"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"Очистка при откате недоступна при использовании отката из прошивки.\n"
-"\n"
-"Отключить её?"
msgid "Firmware Retraction"
msgstr "Откат из прошивки"
@@ -11696,16 +11762,16 @@ msgid "Global shortcuts"
msgstr "Глобальные горячие клавиши"
msgid "Pan View"
-msgstr ""
+msgstr "Перемещение камеры"
msgid "Rotate View"
-msgstr ""
+msgstr "Вращение камеры"
msgid "Middle mouse button"
msgstr ""
msgid "Zoom View"
-msgstr ""
+msgstr "Масштабирование вида"
msgid ""
"Auto orients selected objects or all objects. If there are selected objects, "
@@ -12607,6 +12673,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -12618,18 +12697,14 @@ msgstr ""
"(layer_gcode)."
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"В G-коде, выполняемом перед сменой слоя (before_layer_gcode), была найдена "
-"команда \"G92 E0\", которая несовместима с абсолютной адресацией экструдера."
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"В G-коде, выполняемом при смене слоя (layer_gcode), была найдена команда "
-"\"G92 E0\", которая несовместима с абсолютной адресацией экструдера."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -12737,6 +12812,31 @@ msgstr "Область печати"
msgid "Extruder printable area"
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"
msgstr "Область исключения"
@@ -12867,6 +12967,12 @@ msgstr ""
"Orca Slicer может загружать файл G-кода на хост принтера. Это поле должно "
"содержать API-ключ или пароль, необходимые для проверки подлинности."
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "Название принтера."
@@ -13209,123 +13315,134 @@ msgstr "Угол внешних мостов"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"Переопределение угла печати внешних мостов. Если задано 0, угол печати "
-"мостов рассчитывается автоматически. В противном случае будет использоваться "
-"использован указанный вами угол. Для нулевого угла установите 180°."
msgid "Internal bridge infill direction"
msgstr "Угол внутренних мостов"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"Переопределение угла печати внутренних мостов. Если задано 0, угол печати "
-"мостов рассчитывается автоматически. В противном случае будет использоваться "
-"использован указанный вами угол. Для нулевого угла установите 180°.\n"
-"\n"
-"Рекомендуется использовать значение 0, если для конкретной модели не "
-"требуется какое-то иное значение."
msgid "External bridge density"
msgstr "Плотность внешних мостов"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
-"Расстояние между линиями внешних мостов. Значение по умолчанию – 100%.\n"
-"\n"
-"Снижение плотности улучшает эффективность охлаждения за счёт увеличения "
-"отступа между линиями, а также предотвращает усадочную деформацию моста. "
-"Минимальное значение – 10%.\n"
-"\n"
-"Повышенная плотность позволяет создать монолитную поверхность за счёт "
-"формирования дополнительной опоры со стороны соседних линий.\n"
-"Внимание: слишком высокая плотность привести к переэкструзии, деформации при "
-"охлаждении и ухудшить отделяемость поддержек."
msgid "Internal bridge density"
msgstr "Плотность внутренних мостов"
-# ??? top surface pillowing
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"Этот параметр управляет плотностью (расстоянием между линиями) внутренних "
-"мостов. 100% означает сплошной мост. По умолчанию - 100%.\n"
-"\n"
-"Снижение плотности внутренних мостов может помочь уменьшить дефекты печати "
-"верхней поверхности (например, эффекта «дырявой подушки») и повысить "
-"надёжность внутренних мостов. Это достигается за счёт увеличения "
-"пространства для циркуляции воздуха вокруг напечатанных линий, что ускоряет "
-"их охлаждение.\n"
-"\n"
-"Эта настройка особенно эффективна в сочетании со вторым слоем внутреннего "
-"моста над заполнением, что дополнительно улучшает структуру внутренних "
-"мостов перед нанесением сплошного слоя."
msgid "Bridge flow ratio"
msgstr "Поток внешних мостов"
-# ???1
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Небольшое снижение потока печати (например, 0,9) в паре с естественной "
-"усадкой может снизить провисание моста и улучшить отделяемость поддержек.\n"
+
+#, 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"
msgstr "Поток внутренних мостов"
-# ???1
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Влияет на толщину линий внутреннего моста, связывающего заполнение и "
-"сплошные слои. Небольшое снижение потока печати (например, 0.9) в паре с "
-"естественной усадкой может снизить провисание моста и обеспечить плотное "
-"прилегание последующих сплошных слоёв.\n"
-"\n"
-"Фактический поток для моста рассчитывается путём умножения этого значения на "
-"поток материала и общий поток модели (если он задан)."
msgid "Top surface flow ratio"
msgstr "Поток верхней поверхности"
@@ -13675,40 +13792,35 @@ msgstr "Замедляться на изогнутых периметрах"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"Включите эту опцию для замедления печати в тех областях, где периметры могут "
-"закручиваться вверх. Например, при печати нависаний на острых углах, таких "
-"как передняя часть корпуса кораблика Benchy. Будет применено дополнительное "
-"замедление, что уменьшит закручивание, которое накапливается за несколько "
-"слоёв.\n"
-"\n"
-"Рекомендуется включать эту опцию, если система охлаждения вашего принтера "
-"слабая или скорость печати слишком высокая. При печати внешнего периметра с "
-"высокой скоростью эта опция может вызвать небольшие артефакты при замедлении "
-"из-за большой вариативности в скоростях печати. Если вы заметите артефакты, "
-"проверьте, правильно ли задан коэффициент коррекции давления.\n"
-"\n"
-"Примечание: когда включено, нависающие периметры обрабатываются как "
-"нависания, что означает что к ним будет применяться скорость печати "
-"нависаний, даже если они является частью моста. Например, когда периметры "
-"полностью нависают, не имея стенки, поддерживающей их снизу, будет "
-"применяться 100%-ая скорость нависания."
msgid "mm/s or %"
msgstr "мм/с или %"
@@ -13987,31 +14099,26 @@ msgstr ""
msgid "Thick external bridges"
msgstr "Толстые внешние мосты"
-# Более точно было бы "Переключение модели расчёта потока линии моста с
-# обычной приплюснутой на линию с круглым сечением", но лучше упростить
-# технические кодерские аспекты.
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Рассматривать мосты как линии с круглым сечением, равным диаметру сопла. "
-"Поскольку мосты не имеют опоры, такой подход позволяет более точно "
-"расчитывать необходимый поток и надёжнее печатать их на бóльшие расстояния, "
-"однако без донастройки их внешний вид может ухудшиться. Если отключено, "
-"используется классический вариант мостов с заниженным потоком (приплюснутое "
-"сечение линии), что улучшает их внешний вид и точность размеров, но делает "
-"их эффективными лишь на коротких расстояниях."
msgid "Thick internal bridges"
msgstr "Толстые внутренние мосты"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Рассматривать мосты как линии с круглым сечением, равным диаметру сопла."
msgid "Extra bridge layers (beta)"
msgstr "Двухслойные мосты (beta)"
@@ -15327,12 +15434,11 @@ msgid "Align infill direction to model"
msgstr "Вращать заполнение с моделью"
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
-"Задаёт поворот внутреннего и внешнего заполнения с учётом поворота модели на "
-"столе. При включении настройки шаблон заполнения вращается вместе с моделью."
msgid "Insert solid layers"
msgstr "Правило сплошных слоёв"
@@ -15363,6 +15469,7 @@ msgstr ""
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -15504,6 +15611,27 @@ msgid ""
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
msgstr "Угол нависания линий заполнения. При 60° получаются правильные соты."
+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"
msgstr "Длина привязок шаблона заполнения"
@@ -15583,8 +15711,8 @@ msgid "mm/s² or %"
msgstr "мм/с² или %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Ускорение на разреженном заполнении. Можно указать процент от ускорения по "
"умолчанию."
@@ -15731,10 +15859,10 @@ msgstr "Полная скорость вентилятора на слое"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"Интенсивность охлаждения будет линейно увеличиваться от нуля со слоя "
"заданным параметром «Не включать вентилятор на первых» до заданной "
@@ -15889,9 +16017,8 @@ msgstr ""
"Максимальная величина отклонения сегментов оболочки. \n"
"\n"
"Внимание! Режимы «Экструзия» и «Совместный» не будут работать, если значение "
-"превышает ширину периметра. Если при нарезке возникает ошибка "
-"Flow::spacing(), проверьте, что значение меньше выражения: [∅ сопла - h слоя/"
-"4]."
+"превышает ширину периметра. Если при нарезке возникает ошибка Flow::"
+"spacing(), проверьте, что значение меньше выражения: [∅ сопла - h слоя/4]."
msgid "Fuzzy skin point distance"
msgstr "Длина сегментов"
@@ -16560,8 +16687,10 @@ msgstr "Исключаемая область зондирования комк
msgid "Probing exclude area of clumping."
msgstr "Исключаемая область зондирования комкования."
-msgid "Filament to print internal sparse infill."
-msgstr "Материал для печати заполнения."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -17447,8 +17576,21 @@ msgstr ""
"Определяет процент нависания относительно ширины линии и использует разную "
"скорость печати. Для 100%%-го нависания используется скорость печати мостов."
-msgid "Filament to print walls."
-msgstr "Материал для печати периметров."
+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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -18016,8 +18158,8 @@ msgid "Role base wipe speed"
msgstr "Местная скорость очистки"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -18235,11 +18377,20 @@ msgid ""
msgstr ""
"Заполнять целиком области внутри слоя с площадью меньше указанного значения."
-msgid "Solid infill"
-msgstr "Сплошное заполнение"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "Материал для печати сплошного заполнения."
+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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -18654,11 +18805,10 @@ msgid "Support/raft base"
msgstr "Поддержка/подложка"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"Материал для печати основной части поддержки и подложки. «По умолчанию» – "
-"использовать материал модели."
msgid "Avoid interface filament for base"
msgstr "Избегать исп. материала связующего слоя для поддержки"
@@ -18689,11 +18839,10 @@ msgid "Support/raft interface"
msgstr "Связующий слой поддержки/подложки"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"Материал для печати связующего слоя поддержки. «По умолчанию» – использовать "
-"материал модели."
msgid "Top interface layers"
msgstr "Связующие слои сверху"
@@ -19063,8 +19212,8 @@ msgstr "Вкл. контроль температуры"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -19888,6 +20037,9 @@ msgstr "недопустимое значение "
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "Недопустимое значение при включенном режиме спиральной вазы: "
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "слишком большая ширина линии "
@@ -20166,8 +20318,8 @@ msgid "Debug level"
msgstr "Уровень отладки журнала"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
msgstr ""
"Задаёт параметр чувствительности записи событий в журнал:\n"
" 0 – Критическая ошибка\n"
@@ -20177,6 +20329,12 @@ msgstr ""
" 4 – Отладка\n"
" 5 – Трассировка\n"
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
+msgstr ""
+
msgid "Enable timelapse for print"
msgstr "Вкл. таймлапс для печати"
@@ -20754,8 +20912,8 @@ msgstr ""
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
-"Неизвестный формат файла. Входной файл должен иметь расширение *.3mf или "
-"*.zip.amf."
+"Неизвестный формат файла. Входной файл должен иметь расширение *.3mf или *."
+"zip.amf."
msgid "load_obj: failed to parse"
msgstr "load_obj: ошибка обработки"
@@ -21739,6 +21897,15 @@ msgstr ""
msgid "Top Surface Pattern"
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"
msgstr "Отправить G-код на хост принтера"
@@ -21761,6 +21928,48 @@ msgstr "Имя загружаемого файла не заканчиваетс
msgid "Upload"
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"
msgstr "Очередь загрузки на хост печати"
@@ -21806,9 +22015,6 @@ msgstr ""
"Выбранный тип стола не соответствует тому что в файле. Пожалуйста, проверьте "
"и подтвердите действие перед началом печати."
-msgid "Time-lapse"
-msgstr "Таймлапсы"
-
# ???
msgid "Heated Bed Leveling"
msgstr "Выравнивание с подогревом"
@@ -21819,6 +22025,16 @@ msgstr "Текстурный лист (сторона А)"
msgid "Smooth Build Plate (Side B)"
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"
msgstr "Невозможно выполнить булеву операцию над выбранными элементами."
@@ -22009,8 +22225,8 @@ msgstr ""
"Хотите перезаписать его?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
"Мы переименуем профиль в \"Производитель Тип Серия @выбранный принтер\".\n"
@@ -22524,9 +22740,18 @@ msgstr ""
"Реализация сетевого агента для обмена информацией с принтером. Доступные "
"реализации определяются при запуске."
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "Не удалось получить действительную ссылку на хост принтера"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "Успешно!"
@@ -22578,6 +22803,30 @@ msgstr "Вход/Тест"
msgid "Connection to printers connected via the print host failed."
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
msgid "Mismatched type of print host: %s"
msgstr "Несоответствующий тип хоста печати: %s"
@@ -23313,7 +23562,7 @@ msgid "Global settings"
msgstr "Глобальные настройки"
msgid "Video tutorial"
-msgstr ""
+msgstr "Видеоурок"
msgid "(Sync with printer)"
msgstr " (состояние принтера)"
@@ -23354,13 +23603,28 @@ msgstr ""
"Учётная запись SimplyPrint не привязана. Перейдите в раздел подключения для "
"настройки."
+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."
msgstr ""
"Подключение к Flashforge через послеовательный порт успешно установлено."
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr "Не удалось подключиться к Flashforge через последовательный порт"
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "Указано неверное состояние."
@@ -23637,9 +23901,9 @@ msgid ""
"overhangs?"
msgstr ""
"Порядок печати периметров «Навстречу»\n"
-"Знаете ли вы, что можно использовать порядок печати периметров «Навстречу» "
-"(Inner/Outer/Inner)? Это улучшает точность, прочность и внешний вид, если у "
-"модели не очень крутые нависания."
+"Знаете ли вы, что можно использовать порядок печати периметров "
+"«Навстречу» (Inner/Outer/Inner)? Это улучшает точность, прочность и внешний "
+"вид, если у модели не очень крутые нависания."
#: resources/data/hints.ini: [hint:Chamber temperature]
msgid ""
@@ -24005,6 +24269,237 @@ msgstr ""
"ABS, повышение температуры подогреваемого стола может снизить эту "
"вероятность?"
+#~ 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 ""
+#~ "Очистка при откате недоступна при использовании отката из прошивки.\n"
+#~ "\n"
+#~ "Отключить её?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "В G-коде, выполняемом перед сменой слоя (before_layer_gcode), была "
+#~ "найдена команда \"G92 E0\", которая несовместима с абсолютной адресацией "
+#~ "экструдера."
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "В G-коде, выполняемом при смене слоя (layer_gcode), была найдена команда "
+#~ "\"G92 E0\", которая несовместима с абсолютной адресацией экструдера."
+
+#, 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 ""
+#~ "Переопределение угла печати внешних мостов. Если задано 0, угол печати "
+#~ "мостов рассчитывается автоматически. В противном случае будет "
+#~ "использоваться использован указанный вами угол. Для нулевого угла "
+#~ "установите 180°."
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "Переопределение угла печати внутренних мостов. Если задано 0, угол печати "
+#~ "мостов рассчитывается автоматически. В противном случае будет "
+#~ "использоваться использован указанный вами угол. Для нулевого угла "
+#~ "установите 180°.\n"
+#~ "\n"
+#~ "Рекомендуется использовать значение 0, если для конкретной модели не "
+#~ "требуется какое-то иное значение."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+#~ msgstr ""
+#~ "Расстояние между линиями внешних мостов. Значение по умолчанию – 100%.\n"
+#~ "\n"
+#~ "Снижение плотности улучшает эффективность охлаждения за счёт увеличения "
+#~ "отступа между линиями, а также предотвращает усадочную деформацию моста. "
+#~ "Минимальное значение – 10%.\n"
+#~ "\n"
+#~ "Повышенная плотность позволяет создать монолитную поверхность за счёт "
+#~ "формирования дополнительной опоры со стороны соседних линий.\n"
+#~ "Внимание: слишком высокая плотность привести к переэкструзии, деформации "
+#~ "при охлаждении и ухудшить отделяемость поддержек."
+
+# ??? top surface pillowing
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "Этот параметр управляет плотностью (расстоянием между линиями) внутренних "
+#~ "мостов. 100% означает сплошной мост. По умолчанию - 100%.\n"
+#~ "\n"
+#~ "Снижение плотности внутренних мостов может помочь уменьшить дефекты "
+#~ "печати верхней поверхности (например, эффекта «дырявой подушки») и "
+#~ "повысить надёжность внутренних мостов. Это достигается за счёт увеличения "
+#~ "пространства для циркуляции воздуха вокруг напечатанных линий, что "
+#~ "ускоряет их охлаждение.\n"
+#~ "\n"
+#~ "Эта настройка особенно эффективна в сочетании со вторым слоем внутреннего "
+#~ "моста над заполнением, что дополнительно улучшает структуру внутренних "
+#~ "мостов перед нанесением сплошного слоя."
+
+# ???1
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "Небольшое снижение потока печати (например, 0,9) в паре с естественной "
+#~ "усадкой может снизить провисание моста и улучшить отделяемость "
+#~ "поддержек.\n"
+#~ "\n"
+#~ "Фактический поток для моста рассчитывается путём умножения этого значения "
+#~ "на поток материала и общий поток модели (если он задан)."
+
+# ???1
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "Влияет на толщину линий внутреннего моста, связывающего заполнение и "
+#~ "сплошные слои. Небольшое снижение потока печати (например, 0.9) в паре с "
+#~ "естественной усадкой может снизить провисание моста и обеспечить плотное "
+#~ "прилегание последующих сплошных слоёв.\n"
+#~ "\n"
+#~ "Фактический поток для моста рассчитывается путём умножения этого значения "
+#~ "на поток материала и общий поток модели (если он задан)."
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "Включите эту опцию для замедления печати в тех областях, где периметры "
+#~ "могут закручиваться вверх. Например, при печати нависаний на острых "
+#~ "углах, таких как передняя часть корпуса кораблика Benchy. Будет применено "
+#~ "дополнительное замедление, что уменьшит закручивание, которое "
+#~ "накапливается за несколько слоёв.\n"
+#~ "\n"
+#~ "Рекомендуется включать эту опцию, если система охлаждения вашего принтера "
+#~ "слабая или скорость печати слишком высокая. При печати внешнего периметра "
+#~ "с высокой скоростью эта опция может вызвать небольшие артефакты при "
+#~ "замедлении из-за большой вариативности в скоростях печати. Если вы "
+#~ "заметите артефакты, проверьте, правильно ли задан коэффициент коррекции "
+#~ "давления.\n"
+#~ "\n"
+#~ "Примечание: когда включено, нависающие периметры обрабатываются как "
+#~ "нависания, что означает что к ним будет применяться скорость печати "
+#~ "нависаний, даже если они является частью моста. Например, когда периметры "
+#~ "полностью нависают, не имея стенки, поддерживающей их снизу, будет "
+#~ "применяться 100%-ая скорость нависания."
+
+# Более точно было бы "Переключение модели расчёта потока линии моста с
+# обычной приплюснутой на линию с круглым сечением", но лучше упростить
+# технические кодерские аспекты.
+#~ 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 ""
+#~ "Рассматривать мосты как линии с круглым сечением, равным диаметру сопла. "
+#~ "Поскольку мосты не имеют опоры, такой подход позволяет более точно "
+#~ "расчитывать необходимый поток и надёжнее печатать их на бóльшие "
+#~ "расстояния, однако без донастройки их внешний вид может ухудшиться. Если "
+#~ "отключено, используется классический вариант мостов с заниженным потоком "
+#~ "(приплюснутое сечение линии), что улучшает их внешний вид и точность "
+#~ "размеров, но делает их эффективными лишь на коротких расстояниях."
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "Рассматривать мосты как линии с круглым сечением, равным диаметру сопла."
+
+#~ msgid ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+#~ msgstr ""
+#~ "Задаёт поворот внутреннего и внешнего заполнения с учётом поворота модели "
+#~ "на столе. При включении настройки шаблон заполнения вращается вместе с "
+#~ "моделью."
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "Материал для печати заполнения."
+
+#~ msgid "Filament to print walls."
+#~ msgstr "Материал для печати периметров."
+
+#~ msgid "Solid infill"
+#~ msgstr "Сплошное заполнение"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "Материал для печати сплошного заполнения."
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "Материал для печати основной части поддержки и подложки. «По умолчанию» – "
+#~ "использовать материал модели."
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "Материал для печати связующего слоя поддержки. «По умолчанию» – "
+#~ "использовать материал модели."
+
#~ msgid "Erase all painting"
#~ msgstr "Очистить всё"
@@ -24916,9 +25411,6 @@ msgstr ""
#~ msgid "Login Region"
#~ msgstr "Регион входа"
-#~ msgid "Stealth Mode"
-#~ msgstr "Режим конфиденциальности (отключение телеметрии Bambulab)"
-
#~ msgid "Use legacy network plugin (Takes effect after restarting Orca)"
#~ msgstr ""
#~ "Использовать устаревший сетевой плагин (изменение вступит в силу после "
diff --git a/localization/i18n/sv/OrcaSlicer_sv.po b/localization/i18n/sv/OrcaSlicer_sv.po
index 10c620f390..4a8c0afa9a 100644
--- a/localization/i18n/sv/OrcaSlicer_sv.po
+++ b/localization/i18n/sv/OrcaSlicer_sv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -499,7 +499,7 @@ msgid "Count"
msgstr ""
msgid "Gap"
-msgstr ""
+msgstr "Glipa"
msgid "Spacing"
msgstr "Mellanrum"
@@ -1825,6 +1825,17 @@ msgstr ""
msgid "User logged out"
msgstr "Användaren utloggad"
+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!"
msgstr ""
"ny eller öppen projekt fil är inte tillåten under berednings processen!"
@@ -1839,21 +1850,24 @@ msgstr ""
"Versionen av Orca Slicer är för låg och behöver uppdateras till den senaste "
"versionen innan den kan användas normalt"
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
@@ -1911,7 +1925,7 @@ msgid "Privacy Policy Update"
msgstr "Uppdatering av integritetspolicy"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
msgstr ""
msgid "your default profile"
@@ -2161,6 +2175,9 @@ msgstr "Torus"
msgid "Orca Cube"
msgstr "Orca Cube"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Orca Tolerance Test"
@@ -2220,7 +2237,7 @@ msgid "Support Enforcer"
msgstr "Support Förstärkare"
msgid "Change part type"
-msgstr ""
+msgstr "Ändra typ av del"
msgid "Set as an individual object"
msgstr "Ställ in som ett enskilt objekt"
@@ -5501,6 +5518,9 @@ msgstr "Overhangs"
msgid "Outline"
msgstr "Kontur"
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr "Perspektiv"
@@ -5517,7 +5537,7 @@ msgid "Paint Toolbar"
msgstr "Färgläggningsverktyg"
msgid "part selection"
-msgstr ""
+msgstr "val av delar"
msgid "Explosion Ratio"
msgstr "Explosions Förhållande"
@@ -5543,7 +5563,7 @@ msgstr "Volym:"
msgid "Size:"
msgstr "Storlek:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5802,15 +5822,18 @@ msgstr "Installationsguide"
msgid "Show Configuration Folder"
msgstr "Visa Konfigurations Mapp"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "Öppna nätverks test"
+
msgid "Show Tip of the Day"
msgstr "Visa dagens tips"
msgid "Check for Updates"
msgstr "Sök efter uppdateringar"
-msgid "Open Network Test"
-msgstr "Öppna nätverks test"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "&Om %s"
@@ -7147,6 +7170,12 @@ msgstr "Exportering lyckades"
msgid "Model file downloaded."
msgstr "Modellfil nedladdad."
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr ""
@@ -8168,6 +8197,12 @@ msgstr ""
"Det går inte att utföra booleska operationer på modell mesh. Endast positiva "
"delar kommer att exporteras."
+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?"
msgstr "Is the printer ready? Is the print sheet in place, empty and clean?"
@@ -8725,6 +8760,24 @@ msgstr ""
msgid "Graphics"
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"
msgstr ""
@@ -8782,9 +8835,16 @@ msgid "Stealth mode"
msgstr "Stealth mode"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
msgid "Network test"
@@ -8937,6 +8997,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr "Allow Abnormal Storage"
@@ -10043,8 +10111,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"När du spelar in timelapse utan verktygshuvud rekommenderas att du lägger "
"till ett \"Timelapse Wipe Tower\".\n"
@@ -10528,13 +10596,11 @@ msgid "Retraction when switching material"
msgstr "Reduktion vid material byte"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% 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?"
msgid "Firmware Retraction"
msgstr "Firmware Retraktion"
@@ -11111,8 +11177,8 @@ msgstr ""
msgid ""
"Timelapse is not supported because Print sequence is set to \"By object\"."
msgstr ""
-"Timelapse stöds inte eftersom utskrifts sekvensen är inställd på \"Per "
-"objekt\"."
+"Timelapse stöds inte eftersom utskrifts sekvensen är inställd på \"Per objekt"
+"\"."
msgid ""
"You selected external and AMS filament at the same time in an extruder, you "
@@ -11321,16 +11387,16 @@ msgid "Global shortcuts"
msgstr "Övergripande genvägar"
msgid "Pan View"
-msgstr ""
+msgstr "Panoreringsvy"
msgid "Rotate View"
-msgstr ""
+msgstr "Rotera vy"
msgid "Middle mouse button"
msgstr ""
msgid "Zoom View"
-msgstr ""
+msgstr "Zoomvy"
msgid ""
"Auto orients selected objects or all objects. If there are selected objects, "
@@ -12194,6 +12260,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
msgstr "Lagerhöjden kan inte överstiga nozzel diametern"
+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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -12204,18 +12283,14 @@ msgstr ""
"layer_gcode."
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -12321,6 +12396,31 @@ msgstr "Utskriftsbar yta"
msgid "Extruder printable area"
msgstr "Extruder printable area"
+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"
msgstr "Utesluten yta av byggplattan"
@@ -12452,6 +12552,12 @@ msgstr ""
"Orca Slicer kan ladda upp G-kod filer till en printer värd. Det här fältet "
"ska innehålla API nyckeln eller lösenordet som krävs för autentisering."
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "Skrivarens namn"
@@ -12792,117 +12898,134 @@ msgstr "External bridge infill direction"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"Bridging vinkel åsidosättning. 0 betyder att bridging vinkeln beräknas "
-"automatiskt. Annars kommer den medföljande vinkeln att användas för extern "
-"bridging. Använd 180° för noll vinkel."
msgid "Internal bridge infill direction"
msgstr "Internal bridge infill direction"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
-"\n"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
msgid "External bridge density"
msgstr "External bridge density"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
-"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
-"\n"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
-"\n"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
msgid "Internal bridge density"
msgstr "Internal bridge density"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
-"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
-"\n"
-"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
msgid "Bridge flow ratio"
msgstr "Bridge/Brygg flöde"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+
+#, 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 actual bridge flow used is calculated by multiplying this value with the "
-"filament flow ratio, and if set, the object's flow ratio."
+"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"
msgstr "Internal bridge flow ratio"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
-"\n"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
msgid "Top surface flow ratio"
msgstr "Flödesförhållande för övre ytan"
@@ -13239,40 +13362,35 @@ msgstr "Slow down for curled perimeters"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
-"\n"
-"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
-"\n"
-"Note: When this option is enabled, overhang perimeters are treated like "
-"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
msgid "mm/s or %"
msgstr "mm/s eller %."
@@ -13456,9 +13574,9 @@ msgid ""
"quality for needle and small details."
msgstr ""
"Aktivera detta val för att sänka utskifts hastigheten för att göra den sista "
-"lager tiden inte kortare än lager tidströskeln \"Max fläkthastighets "
-"tröskel\", detta så att lager kan kylas under en längre tid. Detta kan "
-"förbättra kylnings kvaliteten för små detaljer"
+"lager tiden inte kortare än lager tidströskeln \"Max fläkthastighets tröskel"
+"\", detta så att lager kan kylas under en längre tid. Detta kan förbättra "
+"kylnings kvaliteten för små detaljer"
msgid "Normal printing"
msgstr "Normal utskrift"
@@ -13535,25 +13653,25 @@ msgid "Thick external bridges"
msgstr "Thick external bridges"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Om aktiverad, bridges är mer tillförlitliga och kan överbrygga längre "
-"sträckor men kan se sämre ut. Om de är inaktiverade ser bridges bättre ut "
-"men är tillförlitliga endast för kortare avstånd."
msgid "Thick internal bridges"
msgstr "Thick internal bridges"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
msgid "Extra bridge layers (beta)"
msgstr "Extra bridge layers (beta)"
@@ -14578,10 +14696,10 @@ msgstr ""
"tower to produce successive infill or sacrificial object extrusions reliably."
msgid "Wipe tower cooling"
-msgstr ""
+msgstr "Wipe Tower kylning"
msgid "Temperature drop before entering filament tower"
-msgstr ""
+msgstr "Temperaturen sjunker innan ankomst till filament tornet"
msgid "Interface layer pre-extrusion distance"
msgstr "Interface layer pre-extrusion distance"
@@ -14789,13 +14907,11 @@ msgid "Align infill direction to model"
msgstr "Align infill direction to model"
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
msgid "Insert solid layers"
msgstr "Insert solid layers"
@@ -14822,6 +14938,7 @@ msgstr ""
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -14921,6 +15038,27 @@ msgid ""
msgstr ""
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
+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"
msgstr "Sparse infill anchor length"
@@ -15009,8 +15147,8 @@ msgid "mm/s² or %"
msgstr "mm/s² eller %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Acceleration av gles utfyllnad. Om värdet uttrycks som en procentsats (t.ex. "
"100%) kommer det att beräknas baserat på standard accelerationen."
@@ -15146,16 +15284,16 @@ msgstr "Full fläkthastighet vid lager"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgid "layer"
msgstr "layer"
@@ -15935,8 +16073,10 @@ msgstr "Probing exclude area of clumping"
msgid "Probing exclude area of clumping."
msgstr "Probing exclude area of clumping."
-msgid "Filament to print internal sparse infill."
-msgstr "Filamentet är avsett för sparsam ifyllnad."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -16580,10 +16720,10 @@ msgstr ""
"command: M106 P2 S(0-255)"
msgid "For the first"
-msgstr ""
+msgstr "För det första"
msgid "Set special auxiliary cooling fan for the first certain layers."
-msgstr ""
+msgstr "Ställ in en speciell extra kylfläkt för de första utvalda lagren."
msgid ""
"Auxiliary fan speed will be ramped up linearly from layer \"For the first\" "
@@ -16768,8 +16908,21 @@ msgstr ""
"hastigheter för att skriva ut. Vid 100%% överhäng, bridge/brygg hastighet "
"användas."
-msgid "Filament to print walls."
-msgstr "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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -17276,13 +17429,13 @@ msgid "Role base wipe speed"
msgstr "Role base wipe speed"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
@@ -17460,11 +17613,20 @@ msgstr ""
"Sparsam ifyllnads ytor som är mindre än detta gränsvärde ersätts med inre "
"solid ifyllnad"
-msgid "Solid infill"
-msgstr "Solid infill"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -17840,11 +18002,10 @@ msgid "Support/raft base"
msgstr "Support/raft bas"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"Filament för att skriva ut support och rafts. ”Standard” betyder ingen "
-"specifik filament för support, och nuvarande filament används"
msgid "Avoid interface filament for base"
msgstr "Undvik gränssnitts filament för basen"
@@ -17875,12 +18036,10 @@ msgid "Support/raft interface"
msgstr "Gränssnitt för support/raft"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"Filament för att skriva ut supportens anläggningsyta. ” Standard” betyder "
-"ingen specifik filament för supportens anläggningsyta, och nuvarande "
-"filament används"
msgid "Top interface layers"
msgstr "Översta gränssnitts lager"
@@ -18205,8 +18364,8 @@ msgstr "Activate temperature control"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -18216,8 +18375,8 @@ msgid ""
"heater is installed."
msgstr ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -18949,6 +19108,9 @@ msgstr "ogiltigt värde "
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "Ogiltigt värde när spiralvas läget är aktiverat: "
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "för stor linjebredd "
@@ -19203,11 +19365,17 @@ msgid "Debug level"
msgstr "Felsökningsnivå"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
+msgstr ""
+"Välj felsöknings nivå. 0:allvarlig, 1:fel, 2:varning, 3:info, 4:felsök, 5:"
+"spåra\n"
+
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
msgstr ""
-"Välj felsöknings nivå. 0:allvarlig, 1:fel, 2:varning, 3:info, 4:felsök, "
-"5:spåra\n"
msgid "Enable timelapse for print"
msgstr "Enable timelapse for print"
@@ -20716,6 +20884,15 @@ msgstr ""
msgid "Top Surface Pattern"
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"
msgstr "Send G-code to printer host"
@@ -20738,6 +20915,48 @@ msgstr "Filnamnet slutar inte med \"%s\". Vill du fortsätta?"
msgid "Upload"
msgstr "Ladda upp"
+msgid "Leveling before print"
+msgstr ""
+
+msgid "Time-lapse"
+msgstr "Time-lapse"
+
+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"
msgstr "Utskriftsvärdens uppladdnings kö"
@@ -20782,9 +21001,6 @@ msgstr ""
"The selected bed type does not match the file. Please confirm before "
"starting the print."
-msgid "Time-lapse"
-msgstr "Time-lapse"
-
msgid "Heated Bed Leveling"
msgstr "Heated Bed Leveling"
@@ -20794,6 +21010,16 @@ msgstr "Textured Build Plate (Side A)"
msgid "Smooth Build Plate (Side B)"
msgstr "Smooth Build Plate (Side B)"
+#, 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"
msgstr "Kan inte utföra boolean operationer på valda delar"
@@ -20977,12 +21203,12 @@ msgstr ""
"Vill du skriva om det?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgid "Create Printer/Nozzle"
@@ -21491,9 +21717,18 @@ msgstr ""
"Select the network agent implementation for printer communication. Available "
"agents are registered at startup."
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "Det gick inte att hämta en giltig printer värdreferens"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "Lyckades!"
@@ -21541,6 +21776,30 @@ msgid "Connection to printers connected via the print host failed."
msgstr ""
"Anslutningen till printrar som är anslutna via printer värden misslyckades."
+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
msgid "Mismatched type of print host: %s"
msgstr "Felaktig typ av utskriftsvärd: %s"
@@ -22269,7 +22528,7 @@ msgid "Global settings"
msgstr "Global settings"
msgid "Video tutorial"
-msgstr ""
+msgstr "Videohandledning"
msgid "(Sync with printer)"
msgstr "(Sync with printer)"
@@ -22308,12 +22567,27 @@ msgstr "Unknown error"
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
msgstr "SimplyPrint account not linked. Go to Connect options to set it up."
+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."
msgstr "Serial connection to Flashforge is working correctly."
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr "Could not connect to Flashforge via serial"
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "The provided state is not correct."
@@ -22934,6 +23208,224 @@ msgstr ""
"ABS, kan en lämplig ökning av värmebäddens temperatur minska sannolikheten "
"för vridning?"
+#~ 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?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+
+#, 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 vinkel åsidosättning. 0 betyder att bridging vinkeln beräknas "
+#~ "automatiskt. Annars kommer den medföljande vinkeln att användas för "
+#~ "extern bridging. Använd 180° för noll vinkel."
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+#~ msgstr ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+
+#~ 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 ""
+#~ "Om aktiverad, bridges är mer tillförlitliga och kan överbrygga längre "
+#~ "sträckor men kan se sämre ut. Om de är inaktiverade ser bridges bättre ut "
+#~ "men är tillförlitliga endast för kortare avstånd."
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+
+#~ msgid ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+#~ msgstr ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "Filamentet är avsett för sparsam ifyllnad."
+
+#~ msgid "Filament to print walls."
+#~ msgstr "Filament to print walls."
+
+#~ msgid "Solid infill"
+#~ msgstr "Solid infill"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "Filament to print solid infill."
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "Filament för att skriva ut support och rafts. ”Standard” betyder ingen "
+#~ "specifik filament för support, och nuvarande filament används"
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "Filament för att skriva ut supportens anläggningsyta. ” Standard” betyder "
+#~ "ingen specifik filament för supportens anläggningsyta, och nuvarande "
+#~ "filament används"
+
#~ msgid "Erase all painting"
#~ msgstr "Radera all färgläggning"
diff --git a/localization/i18n/th/OrcaSlicer_th.po b/localization/i18n/th/OrcaSlicer_th.po
new file mode 100644
index 0000000000..efb29ccde1
--- /dev/null
+++ b/localization/i18n/th/OrcaSlicer_th.po
@@ -0,0 +1,22665 @@
+# Thai translation for OrcaSlicer.
+# Copyright (C) 2026 OrcaSlicer contributors
+# This file is distributed under the same license as the OrcaSlicer package.
+# Icezaza, 2026.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Orca Slicer\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
+"PO-Revision-Date: 2026-06-04 12:39+0700\n"
+"Last-Translator: Icezaza\n"
+"Language-Team: Thai\n"
+"Language: th\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: Codex Thai translation bootstrap\n"
+
+msgid "right"
+msgstr "ขวา"
+
+msgid "left"
+msgstr "ซ้าย"
+
+msgid "right extruder"
+msgstr "ชุดดันเส้นขวา"
+
+msgid "left extruder"
+msgstr "ชุดดันเส้นซ้าย"
+
+msgid "extruder"
+msgstr "ชุดดันเส้น"
+
+msgid "TPU is not supported by AMS."
+msgstr "AMS ไม่รองรับ TPU"
+
+msgid "AMS does not support 'Bambu Lab PET-CF'."
+msgstr "AMS ไม่รองรับ 'Bambu Lab PET-CF'"
+
+msgid ""
+"Please cold pull before printing TPU to avoid clogging. You may use cold "
+"pull maintenance on the printer."
+msgstr ""
+"โปรดทำ cold pull ก่อนพิมพ์ TPU เพื่อหลีกเลี่ยงการอุดตัน คุณสามารถใช้การบำรุงรักษาแบบ cold "
+"pull บนเครื่องพิมพ์ได้"
+
+msgid ""
+"Damp PVA will become flexible and get stuck inside AMS, please take care to "
+"dry it before use."
+msgstr "PVA ที่ชื้นจะมีความยืดหยุ่นและอาจติดค้างใน AMS โปรดระวังและอบให้แห้งก่อนใช้งาน"
+
+msgid "Damp PVA is flexible and may get stuck in extruder. Dry it before use."
+msgstr "PVA ที่ชื้นมีความยืดหยุ่นและอาจติดค้างในชุดดันเส้น โปรดอบให้แห้งก่อนใช้งาน"
+
+msgid ""
+"The rough surface of PLA Glow can accelerate wear on the AMS system, "
+"particularly on the internal components of the AMS Lite."
+msgstr ""
+"พื้นผิวที่ขรุขระของ PLA Glow สามารถเร่งการสึกหรอในระบบ AMS ได้ "
+"โดยเฉพาะอย่างยิ่งกับชิ้นส่วนภายในของ AMS Lite"
+
+msgid ""
+"CF/GF filaments are hard and brittle, it's easy to break or get stuck in "
+"AMS, please use with caution."
+msgstr ""
+"เส้นพลาสติก CF/GF มีความแข็งและเปราะบาง แตกหักหรือติดค้างใน AMS ได้ง่าย "
+"โปรดใช้งานด้วยความระมัดระวัง"
+
+msgid "PPS-CF is brittle and could break in bended PTFE tube above Toolhead."
+msgstr "PPS-CF มีความเปราะบางและอาจแตกหักในท่อ PTFE ที่โค้งงอเหนือหัวพิมพ์"
+
+msgid "PPA-CF is brittle and could break in bended PTFE tube above Toolhead."
+msgstr "PPA-CF มีความเปราะบางและอาจแตกหักในท่อ PTFE ที่โค้งงอเหนือหัวพิมพ์"
+
+#, c-format, boost-format
+msgid "%s is not supported by %s extruder."
+msgstr "%s ไม่รองรับกับชุดดันเส้น %s"
+
+msgid "Current AMS humidity"
+msgstr "ความชื้น AMS ปัจจุบัน"
+
+msgid "Humidity"
+msgstr "ความชื้น"
+
+msgid "Temperature"
+msgstr "อุณหภูมิ"
+
+msgid "Left Time"
+msgstr "เวลาที่เหลือ"
+
+msgid "Drying"
+msgstr "กำลังอบแห้ง"
+
+msgid "Idle"
+msgstr "ว่าง"
+
+msgid "Model:"
+msgstr "โมเดล:"
+
+msgid "Serial:"
+msgstr "ซีเรียล:"
+
+msgid "Version:"
+msgstr "เวอร์ชัน:"
+
+msgid "Latest version"
+msgstr "เวอร์ชันล่าสุด"
+
+msgid "Support Painting"
+msgstr "ระบายส่วนรองรับ"
+
+msgid "Perform"
+msgstr "ดำเนินการ"
+
+msgid "On highlighted overhangs only"
+msgstr "เฉพาะส่วนยื่นที่ไฮไลต์เท่านั้น"
+
+msgid "Erase all"
+msgstr "ลบทั้งหมด"
+
+msgid "Highlight overhang areas"
+msgstr "ไฮไลต์พื้นที่ส่วนยื่น"
+
+msgid "Tool type"
+msgstr "ประเภทเครื่องมือ"
+
+msgid "Gap fill"
+msgstr "เติมช่องว่าง"
+
+msgid "Reset direction"
+msgstr "รีเซ็ตทิศทาง"
+
+msgid "Section view"
+msgstr "มุมมองภาคตัดขวาง"
+
+msgid "Brush size"
+msgstr "ขนาดแปรง"
+
+msgid "Smart fill angle"
+msgstr "มุมการเติมแบบอัจฉริยะ"
+
+msgid "Gap area"
+msgstr "พื้นที่ช่องว่าง"
+
+msgid "Left mouse button"
+msgstr "ปุ่มเมาส์ซ้าย"
+
+msgid "Enforce supports"
+msgstr "บังคับสร้างส่วนรองรับ"
+
+msgid "Right mouse button"
+msgstr "ปุ่มเมาส์ขวา"
+
+msgid "Block supports"
+msgstr "บล็อกส่วนรองรับ"
+
+msgid "Erase"
+msgstr "ลบ"
+
+msgid "Mouse wheel"
+msgstr "ลูกกลิ้งเมาส์"
+
+msgid "Auto support threshold angle: "
+msgstr "มุมเกณฑ์ส่วนรองรับอัตโนมัติ: "
+
+msgid "Circle"
+msgstr "วงกลม"
+
+msgid "Sphere"
+msgstr "ทรงกลม"
+
+msgid "Fill"
+msgstr "เติม"
+
+msgid "Gap Fill"
+msgstr "เติมช่องว่าง"
+
+#, boost-format
+msgid "Allows painting only on facets selected by: \"%1%\""
+msgstr "อนุญาตให้วาดภาพเฉพาะด้านที่เลือกโดย: \"%1%\""
+
+msgid "Highlight faces according to overhang angle."
+msgstr "ไฮไลต์ผิวหน้าตามมุมยื่น"
+
+msgid "No auto support"
+msgstr "ไม่สร้างส่วนรองรับอัตโนมัติ"
+
+msgid "Done"
+msgstr "เสร็จแล้ว"
+
+msgid "Support Generated"
+msgstr "สร้างส่วนรองรับแล้ว"
+
+msgid "Gizmo-Place on Face"
+msgstr "Gizmo-Place บนหน้า"
+
+msgid "Lay on face"
+msgstr "วางบนหน้า"
+
+#, boost-format
+msgid ""
+"Filament count exceeds the maximum number that painting tool supports. Only "
+"the first %1% filaments will be available in painting tool."
+msgstr ""
+"จำนวนเส้นพลาสติกเกินจำนวนสูงสุดที่เครื่องมือพ่นสีรองรับ เฉพาะเส้นพลาสติก %1% "
+"แรกเท่านั้นที่จะสามารถใช้ได้ในเครื่องมือวาดภาพ"
+
+msgid "Color Painting"
+msgstr "จิตรกรรมสี"
+
+msgid "Brush shape"
+msgstr "รูปร่างแปรง"
+
+msgid "Paint"
+msgstr "สี"
+
+msgid "Choose filament"
+msgstr "เลือกเส้นพลาสติก"
+
+msgid "Edge detection"
+msgstr "การตรวจจับขอบ"
+
+msgid "Triangles"
+msgstr "สามเหลี่ยม"
+
+msgid "Filaments"
+msgstr "เส้นพลาสติก"
+
+msgid "Brush"
+msgstr "แปรง"
+
+msgid "Smart fill"
+msgstr "เติมสีอัจฉริยะ"
+
+msgid "Bucket fill"
+msgstr "ถังเติมสี"
+
+msgid "Height range"
+msgstr "ช่วงความสูง"
+
+msgid "Toggle Wireframe"
+msgstr "สลับโครงลวด"
+
+msgid "Remap filaments"
+msgstr "ทำการแมปเส้นพลาสติกใหม่"
+
+msgid "Remap"
+msgstr "รีแมป"
+
+msgid "Reset"
+msgstr "รีเซ็ต"
+
+msgid "Enter"
+msgstr "เข้า"
+
+msgid "Shortcut Key "
+msgstr "ปุ่มลัด"
+
+msgid "Triangle"
+msgstr "สามเหลี่ยม"
+
+msgid "Height Range"
+msgstr "ช่วงความสูง"
+
+msgid "Vertical"
+msgstr "แนวตั้ง"
+
+msgid "Horizontal"
+msgstr "แนวนอน"
+
+msgid "Remove painted color"
+msgstr "ลบสีที่ทาสี"
+
+#, boost-format
+msgid "Painted using: Filament %1%"
+msgstr "ทาสีโดยใช้: เส้นพลาสติก %1%"
+
+msgid "To:"
+msgstr "ถึง:"
+
+msgid "Paint-on fuzzy skin"
+msgstr "ระบายผิวฟัซซี"
+
+msgid "Add fuzzy skin"
+msgstr "เพิ่มผิวฟัซซี"
+
+msgid "Remove fuzzy skin"
+msgstr "ลบผิวฟัซซี"
+
+msgid "Reset selection"
+msgstr "รีเซ็ตการเลือก"
+
+msgid ""
+"Warning: Fuzzy skin is disabled, painted fuzzy skin will not take effect!"
+msgstr "คำเตือน: ผิวฟัซซีถูกปิดใช้งาน ผิวฟัซซีที่ทาสีจะไม่มีผล!"
+
+msgid "Enable painted fuzzy skin for this object"
+msgstr "เปิดใช้งานสกินฟัซซี่ที่ทาสีแล้วสำหรับวัตถุนี้"
+
+msgid "Move"
+msgstr "ย้าย"
+
+msgid "Please select at least one object."
+msgstr "โปรดเลือกวัตถุอย่างน้อยหนึ่งชิ้น"
+
+msgid "Gizmo-Move"
+msgstr "Gizmo-ย้าย"
+
+msgid "Rotate"
+msgstr "หมุน"
+
+msgid "Gizmo-Rotate"
+msgstr "Gizmo-หมุน"
+
+msgid "Optimize orientation"
+msgstr "ปรับการวางแนวให้เหมาะสม"
+
+msgid "Apply"
+msgstr "ใช้"
+
+msgid "Scale"
+msgstr "ปรับขนาด"
+
+msgid "Gizmo-Scale"
+msgstr "Gizmo-ขนาด"
+
+msgid "Error: Please close all toolbar menus first"
+msgstr "ข้อผิดพลาด: โปรดปิดเมนูแถบเครื่องมือทั้งหมดก่อน"
+
+msgid "in"
+msgstr "นิ้ว"
+
+msgid "mm"
+msgstr "มม."
+
+msgid "Part selection"
+msgstr "การเลือกชิ้นส่วน"
+
+msgid "Fixed step drag"
+msgstr "แก้ไขการลากขั้นตอน"
+
+msgid "Context Menu"
+msgstr "เมนูบริบท"
+
+msgid "Toggle Auto-Drop"
+msgstr "สลับการวางอัตโนมัติ"
+
+msgid "Single sided scaling"
+msgstr "การปรับขนาดด้านเดียว"
+
+msgid "Position"
+msgstr "ตำแหน่ง"
+
+msgid "Rotate (relative)"
+msgstr "หมุน (แบบสัมพันธ์)"
+
+msgid "Scale ratios"
+msgstr "อัตราส่วนการปรับขนาด"
+
+msgid "Object Operations"
+msgstr "การทำงานกับวัตถุ"
+
+msgid "Volume Operations"
+msgstr "การดำเนินการตามปริมาณ"
+
+msgid "Translate"
+msgstr "เลื่อนตำแหน่ง"
+
+msgid "Group Operations"
+msgstr "การดำเนินงานของกลุ่ม"
+
+msgid "Set Orientation"
+msgstr "ตั้งค่าการวางแนว"
+
+msgid "Set Scale"
+msgstr "ตั้งค่ามาตราส่วน"
+
+msgid "Reset Position"
+msgstr "รีเซ็ตตำแหน่ง"
+
+msgid "Reset Rotation"
+msgstr "รีเซ็ตการหมุน"
+
+msgid "Object coordinates"
+msgstr "พิกัดวัตถุ"
+
+msgid "World coordinates"
+msgstr "พิกัดโลก"
+
+msgid "Translate(Relative)"
+msgstr "เลื่อนตำแหน่ง (แบบสัมพันธ์)"
+
+msgid "Reset current rotation to the value when open the rotation tool."
+msgstr "รีเซ็ตการหมุนปัจจุบันเป็นค่าเมื่อเปิดเครื่องมือการหมุน"
+
+msgid "Rotate (absolute)"
+msgstr "หมุน (สัมบูรณ์)"
+
+msgid "Reset current rotation to real zeros."
+msgstr "รีเซ็ตการหมุนปัจจุบันให้เป็นศูนย์จริง"
+
+msgid "Part coordinates"
+msgstr "พิกัดส่วน"
+
+#. TRN - Input label. Be short as possible
+msgid "Size"
+msgstr "ขนาด"
+
+msgid "Uniform scale"
+msgstr "ปรับขนาดเท่ากันทุกแกน"
+
+msgid "Planar"
+msgstr "ระนาบ"
+
+msgid "Dovetail"
+msgstr "ประกบ"
+
+msgid "Auto"
+msgstr "อัตโนมัติ"
+
+msgid "Manual"
+msgstr "กำหนดเอง"
+
+msgid "Plug"
+msgstr "ปลั๊ก"
+
+msgid "Dowel"
+msgstr "เดือย"
+
+msgid "Snap"
+msgstr "สแน็ป"
+
+msgid "Prism"
+msgstr "ปริซึม"
+
+msgid "Frustum"
+msgstr "ฟรัสตัม"
+
+msgid "Square"
+msgstr "สี่เหลี่ยม"
+
+msgid "Hexagon"
+msgstr "หกเหลี่ยม"
+
+msgid "Keep orientation"
+msgstr "รักษาปฐมนิเทศ"
+
+msgid "Place on cut"
+msgstr "วางบนการตัด"
+
+msgid "Flip upside down"
+msgstr "พลิกกลับด้าน"
+
+msgid "Connectors"
+msgstr "ตัวเชื่อม"
+
+msgid "Type"
+msgstr "ชนิด"
+
+msgid "Style"
+msgstr "สไตล์"
+
+msgid "Shape"
+msgstr "รูปร่าง"
+
+#. TRN - Input label. Be short as possible
+#. Size in emboss direction
+#. TRN - Input label. Be short as possible
+msgid "Depth"
+msgstr "ความลึก"
+
+#. TRN - Input label. Be short as possible
+#. Angle between Y axis and text line direction.
+#. TRN - Input label. Be short as possible
+msgid "Rotation"
+msgstr "การหมุน"
+
+msgid "Groove"
+msgstr "ร่อง"
+
+msgid "Width"
+msgstr "ความกว้าง"
+
+msgid "Flap Angle"
+msgstr "มุมพนัง"
+
+msgid "Groove Angle"
+msgstr "มุมร่อง"
+
+msgid "Cut position"
+msgstr "ตำแหน่งตัด"
+
+msgid "Build Volume"
+msgstr "ปริมาตรพื้นที่พิมพ์"
+
+msgid "Multiple"
+msgstr "หลายรายการ"
+
+msgid "Count"
+msgstr "จำนวน"
+
+msgid "Gap"
+msgstr "ช่องว่าง"
+
+msgid "Spacing"
+msgstr "ระยะห่าง"
+
+msgid "Part"
+msgstr "ชิ้นส่วน"
+
+msgid "Object"
+msgstr "วัตถุ"
+
+msgid ""
+"Click to flip the cut plane\n"
+"Drag to move the cut plane"
+msgstr ""
+"คลิกเพื่อพลิกระนาบการตัด\n"
+"ลากเพื่อย้ายระนาบที่ตัด"
+
+msgid ""
+"Click to flip the cut plane\n"
+"Drag to move the cut plane\n"
+"Right-click a part to assign it to the other side"
+msgstr ""
+"คลิกเพื่อพลิกระนาบการตัด\n"
+"ลากเพื่อย้ายระนาบที่ตัด\n"
+"คลิกขวาที่ส่วนหนึ่งเพื่อกำหนดให้กับอีกด้านหนึ่ง"
+
+msgid "Move cut plane"
+msgstr "ย้ายระนาบตัด"
+
+msgid "Mode"
+msgstr "โหมด"
+
+msgid "Change cut mode"
+msgstr "เปลี่ยนโหมดการตัด"
+
+msgid "Tolerance"
+msgstr "ค่าความเผื่อ"
+
+msgid "Drag"
+msgstr "ลาก"
+
+msgid "Move cut line"
+msgstr "ย้ายเส้นตัด"
+
+msgid "Draw cut line"
+msgstr "วาดเส้นตัด"
+
+msgid "Add connector"
+msgstr "เพิ่มตัวเชื่อม"
+
+msgid "Remove connector"
+msgstr "ลบตัวเชื่อม"
+
+msgid "Move connector"
+msgstr "ย้ายตัวเชื่อมต่อ"
+
+msgid "Add connector to selection"
+msgstr "เพิ่มตัวเชื่อมต่อในการเลือก"
+
+msgid "Remove connector from selection"
+msgstr "ลบตัวเชื่อมต่อออกจากการเลือก"
+
+msgid "Select all connectors"
+msgstr "เลือกตัวเชื่อมต่อทั้งหมด"
+
+msgid "Cut"
+msgstr "ตัด"
+
+msgid "Rotate cut plane"
+msgstr "หมุนระนาบการตัด"
+
+msgid "Remove connectors"
+msgstr "ถอดขั้วต่อออก"
+
+msgid "Bulge"
+msgstr "นูน"
+
+msgid "Bulge proportion related to radius"
+msgstr "สัดส่วนนูนที่เกี่ยวข้องกับรัศมี"
+
+msgid "Space"
+msgstr "ช่องว่าง"
+
+msgid "Space proportion related to radius"
+msgstr "สัดส่วนพื้นที่สัมพันธ์กับรัศมี"
+
+msgid "Confirm connectors"
+msgstr "ยืนยันตัวเชื่อมต่อ"
+
+msgid "Cancel"
+msgstr "ยกเลิก"
+
+msgid "Flip cut plane"
+msgstr "พลิกระนาบตัด"
+
+msgid "Groove change"
+msgstr "การเปลี่ยนแปลงร่อง"
+
+#. TRN: This is an entry in the Undo/Redo stack. The whole line will be 'Edited: (name of whatever was edited)'.
+msgid "Edited"
+msgstr "แก้ไขแล้ว"
+
+msgid "Reset cutting plane"
+msgstr "รีเซ็ตระนาบการตัด"
+
+msgid "Edit connectors"
+msgstr "แก้ไขตัวเชื่อมต่อ"
+
+msgid "Add connectors"
+msgstr "เพิ่มตัวเชื่อมต่อ"
+
+msgid "Upper part"
+msgstr "ส่วนบน"
+
+msgid "Lower part"
+msgstr "ส่วนล่าง"
+
+msgid "Keep"
+msgstr "เก็บ"
+
+msgid "Flip"
+msgstr "พลิก"
+
+msgid "After cut"
+msgstr "หลังจากตัดแล้ว"
+
+msgid "Cut to parts"
+msgstr "ตัดเป็นชิ้นส่วน"
+
+msgid "Reset cutting plane and remove connectors"
+msgstr "รีเซ็ตระนาบการตัดและถอดตัวเชื่อมต่อออก"
+
+msgid "Perform cut"
+msgstr "ดำเนินการตัด"
+
+msgid "Warning"
+msgstr "คำเตือน"
+
+msgid "Invalid connectors detected"
+msgstr "พบตัวเชื่อมที่ไม่ถูกต้อง"
+
+#, c-format, boost-format
+msgid "%1$d connector is out of cut contour"
+msgid_plural "%1$d connectors are out of cut contour"
+msgstr[0] "ข้อต่อ %1$d ชิ้นอยู่นอกขอบเขตการตัด"
+
+#, c-format, boost-format
+msgid "%1$d connector is out of object"
+msgid_plural "%1$d connectors are out of object"
+msgstr[0] "ข้อต่อ %1$d ชิ้นอยู่นอกวัตถุ"
+
+msgid "Some connectors are overlapped"
+msgstr "ตัวเชื่อมบางรายการซ้อนทับกัน"
+
+msgid "Select at least one object to keep after cutting."
+msgstr "เลือกอย่างน้อยหนึ่งวัตถุที่จะเก็บไว้หลังจากการตัด"
+
+msgid "Cut plane is placed out of object"
+msgstr "ระนาบการตัดถูกวางออกจากวัตถุ"
+
+msgid "Cut plane with groove is invalid"
+msgstr "ระนาบการตัดที่มีร่องไม่ถูกต้อง"
+
+msgid "Connector"
+msgstr "ตัวเชื่อม"
+
+msgid "Cut by Plane"
+msgstr "ตัดด้วยระนาบ"
+
+msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?"
+msgstr "ขอบที่ไม่มีท่อร่วมนั้นเกิดจากเครื่องมือตัด คุณต้องการแก้ไขตอนนี้เลยหรือไม่?"
+
+msgid "Repairing model object"
+msgstr "กำลังซ่อมวัตถุโมเดล"
+
+msgid "Cut by line"
+msgstr "ตัดด้วยเส้น"
+
+msgid "Delete connector"
+msgstr "ลบตัวเชื่อมต่อ"
+
+msgid "Mesh name"
+msgstr "ชื่อเมช"
+
+msgid "Detail level"
+msgstr "ระดับรายละเอียด"
+
+msgid "Decimate ratio"
+msgstr "อัตราการลดรายละเอียด"
+
+#, boost-format
+msgid ""
+"Processing model '%1%' with more than 1M triangles could be slow. It is "
+"highly recommended to simplify the model."
+msgstr ""
+"การประมวลผลโมเดล '%1%' ที่มีรูปสามเหลี่ยมมากกว่า 1 ล้านรูปอาจช้า "
+"ขอแนะนำอย่างยิ่งให้ทำให้โมเดลง่ายขึ้น"
+
+msgid "Simplify model"
+msgstr "ลดรายละเอียดโมเดล"
+
+msgid "Simplify"
+msgstr "ลดรายละเอียด"
+
+msgid "Simplification is currently only allowed when a single part is selected"
+msgstr "ขณะนี้อนุญาตให้ลดความซับซ้อนได้เฉพาะเมื่อเลือกส่วนเดียวเท่านั้น"
+
+msgid "Error"
+msgstr "ข้อผิดพลาด"
+
+msgid "Extra high"
+msgstr "สูงมาก"
+
+msgid "High"
+msgstr "สูง"
+
+msgid "Medium"
+msgstr "กลาง"
+
+msgid "Low"
+msgstr "ต่ำ"
+
+msgid "Extra low"
+msgstr "ต่ำมาก"
+
+#, c-format, boost-format
+msgid "%d triangles"
+msgstr "%d รูปสามเหลี่ยม"
+
+msgid "Show wireframe"
+msgstr "แสดงโครงลวด"
+
+msgid "Can't apply when processing preview."
+msgstr "ใช้ไม่ได้เมื่อประมวลผลการแสดงตัวอย่าง"
+
+msgid "Operation already cancelling. Please wait a few seconds."
+msgstr "การดำเนินการยกเลิกแล้ว กรุณารอสักครู่."
+
+msgid "Face recognition"
+msgstr "การจดจำผิวหน้า"
+
+msgid "Perform Recognition"
+msgstr "ดำเนินการรับรู้"
+
+msgid "Enforce seam"
+msgstr "บังคับรอยตะเข็บ"
+
+msgid "Block seam"
+msgstr "บล็อกรอยตะเข็บ"
+
+msgid "Seam painting"
+msgstr "ระบายรอยตะเข็บ"
+
+msgid "Remove selection"
+msgstr "ลบการเลือก"
+
+msgid "Entering Seam painting"
+msgstr "เข้าสู่การทาสีรอยตะเข็บ"
+
+msgid "Leaving Seam painting"
+msgstr "ออกจากการวาดภาพรอยตะเข็บ"
+
+msgid "Paint-on seam editing"
+msgstr "การแก้ไขรอยตะเข็บด้วยการทาสี"
+
+#. TRN - Input label. Be short as possible
+#. Select look of letter shape
+msgid "Font"
+msgstr "แบบอักษร"
+
+msgid "Thickness"
+msgstr "ความหนา"
+
+msgid "Text Gap"
+msgstr "ช่องว่างข้อความ"
+
+msgid "Angle"
+msgstr "มุม"
+
+msgid ""
+"Embedded\n"
+"depth"
+msgstr ""
+"ฝังตัว\n"
+"ความลึก"
+
+msgid "Input text"
+msgstr "ป้อนข้อความ"
+
+msgid "Surface"
+msgstr "พื้นผิว"
+
+msgid "Horizontal text"
+msgstr "ข้อความแนวนอน"
+
+msgid "Shift+"
+msgstr "กะ+"
+
+msgid "Mouse move up or down"
+msgstr "เมาส์เลื่อนขึ้นหรือลง"
+
+msgid "Rotate text"
+msgstr "หมุนข้อความ"
+
+msgid "Text shape"
+msgstr "รูปร่างข้อความ"
+
+#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe
+msgid "Text rotate"
+msgstr "หมุนข้อความ"
+
+#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
+msgid "Text move"
+msgstr "ย้ายข้อความ"
+
+msgid "Set Mirror"
+msgstr "ตั้งกระจก"
+
+msgid "Embossed text"
+msgstr "ข้อความนูน"
+
+msgid "Enter emboss gizmo"
+msgstr "เข้าสู่ Gizmo ของนูน"
+
+msgid "Leave emboss gizmo"
+msgstr "ทิ้ง Gizmo ของนูนไว้"
+
+msgid "Embossing actions"
+msgstr "การกระทำลายนูน"
+
+msgid "Position on surface"
+msgstr "ตำแหน่งบนพื้นผิว"
+
+msgid "Emboss"
+msgstr "ลายนูน"
+
+msgid "NORMAL"
+msgstr "ปกติ"
+
+msgid "SMALL"
+msgstr "เล็ก"
+
+msgid "ITALIC"
+msgstr "ตัวเอียง"
+
+msgid "SWISS"
+msgstr "สวิส"
+
+msgid "MODERN"
+msgstr "ทันสมัย"
+
+msgid "First font"
+msgstr "แบบอักษรแรก"
+
+msgid "Default font"
+msgstr "แบบอักษรเริ่มต้น"
+
+msgid "Advanced"
+msgstr "ขั้นสูง"
+
+msgid "Reset all options except the text and operation"
+msgstr "รีเซ็ตตัวเลือกทั้งหมด ยกเว้นข้อความและการดำเนินการ"
+
+msgid ""
+"The text cannot be written using the selected font. Please try choosing a "
+"different font."
+msgstr "ไม่สามารถเขียนข้อความโดยใช้แบบอักษรที่เลือกได้ โปรดลองเลือกแบบอักษรอื่น"
+
+msgid "Embossed text cannot contain only white spaces."
+msgstr "ข้อความที่มีลายนูนไม่สามารถมีเฉพาะช่องว่างสีขาวเท่านั้น"
+
+msgid "Text contains character glyph (represented by '?') unknown by font."
+msgstr "ข้อความมีสัญลักษณ์อักขระ (แสดงด้วย '?') ไม่ทราบด้วยแบบอักษร"
+
+msgid "Text input doesn't show font skew."
+msgstr "การป้อนข้อความไม่แสดงการเอียงแบบอักษร"
+
+msgid "Text input doesn't show font boldness."
+msgstr "การป้อนข้อความไม่แสดงตัวหนาของแบบอักษร"
+
+msgid "Text input doesn't show gap between lines."
+msgstr "การป้อนข้อความไม่แสดงช่องว่างระหว่างบรรทัด"
+
+msgid "Too tall, diminished font height inside text input."
+msgstr "สูงเกินไป ความสูงของแบบอักษรในการป้อนข้อความลดลง"
+
+msgid "Too small, enlarged font height inside text input."
+msgstr "ความสูงของแบบอักษรเล็กเกินไปและขยายใหญ่เกินไปในการป้อนข้อความ"
+
+msgid "Text doesn't show current horizontal alignment."
+msgstr "ข้อความไม่แสดงการจัดแนวแนวนอนในปัจจุบัน"
+
+msgid "Revert font changes."
+msgstr "ย้อนกลับการเปลี่ยนแปลงแบบอักษร"
+
+#, boost-format
+msgid "Font \"%1%\" can't be selected."
+msgstr "ไม่สามารถเลือกแบบอักษร \"%1%\" ได้"
+
+msgid "Operation"
+msgstr "การทำงาน"
+
+#. TRN EmbossOperation
+#. ORCA
+msgid "Join"
+msgstr "เข้าร่วม"
+
+msgid "Click to change text into object part."
+msgstr "คลิกเพื่อเปลี่ยนข้อความเป็นส่วนวัตถุ"
+
+msgid "You can't change a type of the last solid part of the object."
+msgstr "คุณไม่สามารถเปลี่ยนประเภทของส่วนทึบสุดท้ายของวัตถุได้"
+
+msgctxt "EmbossOperation"
+msgid "Cut"
+msgstr "ตัด"
+
+msgid "Click to change part type into negative volume."
+msgstr "คลิกเพื่อเปลี่ยนประเภทชิ้นส่วนเป็นปริมาณลบ"
+
+msgid "Modifier"
+msgstr "ตัวแก้ไข"
+
+msgid "Click to change part type into modifier."
+msgstr "คลิกเพื่อเปลี่ยนประเภทชิ้นส่วนเป็นตัวดัดแปลง"
+
+msgid "Change Text Type"
+msgstr "เปลี่ยนประเภทข้อความ"
+
+#, boost-format
+msgid "Rename style (%1%) for embossing text"
+msgstr "เปลี่ยนชื่อสไตล์ (%1%) สำหรับข้อความลายนูน"
+
+msgid "Name can't be empty."
+msgstr "ชื่อต้องไม่ว่าง"
+
+msgid "Name has to be unique."
+msgstr "ชื่อต้องไม่ซ้ำ"
+
+msgid "OK"
+msgstr "ตกลง"
+
+msgid "Rename style"
+msgstr "เปลี่ยนชื่อสไตล์"
+
+msgid "Rename current style."
+msgstr "เปลี่ยนชื่อสไตล์ปัจจุบัน"
+
+msgid "Can't rename temporary style."
+msgstr "ไม่สามารถเปลี่ยนชื่อรูปแบบชั่วคราวได้"
+
+msgid "First Add style to list."
+msgstr "ขั้นแรกให้เพิ่มสไตล์ลงในรายการ"
+
+#, boost-format
+msgid "Save %1% style"
+msgstr "บันทึก %1% สไตล์"
+
+msgid "No changes to save."
+msgstr "ไม่มีการเปลี่ยนแปลงที่จะบันทึก"
+
+msgid "New name of style"
+msgstr "ชื่อใหม่ของสไตล์"
+
+msgid "Save as new style"
+msgstr "บันทึกเป็นรูปแบบใหม่"
+
+msgid "Only valid font can be added to style."
+msgstr "คุณสามารถเพิ่มแบบอักษรที่ถูกต้องให้กับสไตล์ได้เท่านั้น"
+
+msgid "Add style to my list."
+msgstr "เพิ่มสไตล์ให้กับรายการของฉัน"
+
+msgid "Save as new style."
+msgstr "บันทึกเป็นรูปแบบใหม่"
+
+msgid "Remove style"
+msgstr "ลบสไตล์"
+
+msgid "Can't remove the last existing style."
+msgstr "ไม่สามารถลบสไตล์ที่มีอยู่ล่าสุดได้"
+
+#, boost-format
+msgid "Are you sure you want to permanently remove the \"%1%\" style?"
+msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบรูปแบบ \"%1%\" อย่างถาวร"
+
+#, boost-format
+msgid "Delete \"%1%\" style."
+msgstr "ลบรูปแบบ \"%1%\""
+
+#, boost-format
+msgid "Can't delete \"%1%\". It is last style."
+msgstr "ไม่สามารถลบ \"%1%\" เป็นสไตล์สุดท้าย"
+
+#, boost-format
+msgid "Can't delete temporary style \"%1%\"."
+msgstr "ไม่สามารถลบรูปแบบชั่วคราว \"%1%\""
+
+#, boost-format
+msgid "Modified style \"%1%\""
+msgstr "ปรับเปลี่ยนรูปแบบ \"%1%\""
+
+#, boost-format
+msgid "Current style is \"%1%\""
+msgstr "รูปแบบปัจจุบันคือ \"%1%\""
+
+#, boost-format
+msgid ""
+"Changing style to \"%1%\" will discard current style modification.\n"
+"\n"
+"Would you like to continue anyway?"
+msgstr ""
+"การเปลี่ยนรูปแบบเป็น \"%1%\" จะละทิ้งการแก้ไขรูปแบบปัจจุบัน\n"
+"\n"
+"คุณต้องการดำเนินการต่อหรือไม่?"
+
+msgid "Not valid style."
+msgstr "สไตล์ไม่ถูกต้อง"
+
+#, boost-format
+msgid "Style \"%1%\" can't be used and will be removed from a list."
+msgstr "ไม่สามารถใช้รูปแบบ \"%1%\" ได้และจะถูกลบออกจากรายการ"
+
+msgid "Unset italic"
+msgstr "ยกเลิกการตั้งค่าตัวเอียง"
+
+msgid "Set italic"
+msgstr "ตั้งค่าตัวเอียง"
+
+msgid "Unset bold"
+msgstr "เลิกตั้งค่าตัวหนา"
+
+msgid "Set bold"
+msgstr "ตั้งค่าตัวหนา"
+
+msgid "Revert text size."
+msgstr "เปลี่ยนขนาดข้อความกลับ"
+
+msgid "Revert embossed depth."
+msgstr "กลับความลึกของลายนูน"
+
+msgid ""
+"Advanced options cannot be changed for the selected font.\n"
+"Select another font."
+msgstr ""
+"ไม่สามารถเปลี่ยนแปลงตัวเลือกขั้นสูงสำหรับแบบอักษรที่เลือกได้\n"
+"เลือกแบบอักษรอื่น"
+
+msgid "Revert using of model surface."
+msgstr "เปลี่ยนกลับการใช้พื้นผิวแบบจำลอง"
+
+msgid "Revert Transformation per glyph."
+msgstr "เปลี่ยนกลับการแปลงต่อสัญลักษณ์"
+
+msgid "Set global orientation for whole text."
+msgstr "ตั้งค่าการวางแนวส่วนกลางสำหรับข้อความทั้งหมด"
+
+msgid "Set position and orientation per glyph."
+msgstr "กำหนดตำแหน่งและการวางแนวต่อสัญลักษณ์"
+
+msgctxt "Alignment"
+msgid "Left"
+msgstr "ซ้าย"
+
+msgctxt "Alignment"
+msgid "Center"
+msgstr "กึ่งกลาง"
+
+msgctxt "Alignment"
+msgid "Right"
+msgstr "ขวา"
+
+msgctxt "Alignment"
+msgid "Top"
+msgstr "บน"
+
+msgctxt "Alignment"
+msgid "Middle"
+msgstr "กลาง"
+
+msgctxt "Alignment"
+msgid "Bottom"
+msgstr "ล่าง"
+
+msgid "Revert alignment."
+msgstr "กลับการจัดตำแหน่ง"
+
+#. TRN EmbossGizmo: font units
+msgid "points"
+msgstr "คะแนน"
+
+msgid "Revert gap between characters"
+msgstr "เปลี่ยนช่องว่างระหว่างอักขระ"
+
+msgid "Distance between characters"
+msgstr "ระยะห่างระหว่างอักขระ"
+
+msgid "Revert gap between lines"
+msgstr "ย้อนกลับช่องว่างระหว่างบรรทัด"
+
+msgid "Distance between lines"
+msgstr "ระยะห่างระหว่างบรรทัด"
+
+msgid "Undo boldness"
+msgstr "เลิกทำความหนาตัวอักษร"
+
+msgid "Tiny / Wide glyphs"
+msgstr "รูปอักขระเล็ก / กว้าง"
+
+msgid "Undo letter's skew"
+msgstr "เลิกทำการเอียงตัวอักษร"
+
+msgid "Italic strength ratio"
+msgstr "อัตราส่วนความแรงของตัวเอียง"
+
+msgid "Undo translation"
+msgstr "เลิกทำการแปล"
+
+msgid "Distance of the center of the text to the model surface."
+msgstr "ระยะห่างจากกึ่งกลางข้อความถึงพื้นผิวโมเดล"
+
+msgid "Undo rotation"
+msgstr "ยกเลิกการหมุน"
+
+msgid "Rotate text Clockwise."
+msgstr "หมุนข้อความตามเข็มนาฬิกา"
+
+msgid "Unlock the text's rotation when moving text along the object's surface."
+msgstr "ปลดล็อกการหมุนข้อความเมื่อย้ายข้อความไปตามพื้นผิวของวัตถุ"
+
+msgid "Lock the text's rotation when moving text along the object's surface."
+msgstr "ล็อคการหมุนของข้อความเมื่อย้ายข้อความไปตามพื้นผิวของวัตถุ"
+
+msgid "Select from True Type Collection."
+msgstr "เลือกจากคอลเลกชัน True Type"
+
+msgid "Set text to face camera"
+msgstr "ตั้งให้ข้อความหันเข้าหากล้อง"
+
+msgid "Orient the text towards the camera."
+msgstr "วางแนวข้อความไปทางกล้อง"
+
+#, boost-format
+msgid "Font \"%1%\" can't be used. Please select another."
+msgstr "ไม่สามารถใช้แบบอักษร \"%1%\" ได้ โปรดเลือกรายการอื่น"
+
+#, boost-format
+msgid ""
+"Can't load exactly same font (\"%1%\"). Application selected a similar one "
+"(\"%2%\"). You have to specify font for enable edit text."
+msgstr ""
+"ไม่สามารถโหลดแบบอักษรเดียวกันทุกประการ (\"%1%\") แอปพลิเคชันเลือกแอปพลิเคชันที่คล้ายกัน "
+"(\"%2%\") คุณต้องระบุแบบอักษรเพื่อให้สามารถแก้ไขข้อความได้"
+
+msgid "No symbol"
+msgstr "ไม่มีสัญลักษณ์"
+
+msgid "Loading"
+msgstr "กำลังโหลด"
+
+msgid "In queue"
+msgstr "ในคิว"
+
+#. TRN - Input label. Be short as possible
+#. Height of one text line - Font Ascent
+msgid "Height"
+msgstr "ความสูง"
+
+#. TRN - Input label. Be short as possible
+#. Copy surface of model on surface of the embossed text
+#. TRN - Input label. Be short as possible
+msgid "Use surface"
+msgstr "ใช้พื้นผิว"
+
+#. TRN - Input label. Be short as possible
+#. Option to change projection on curved surface
+#. for each character(glyph) in text separately
+msgid "Per glyph"
+msgstr "ต่อสัญลักษณ์"
+
+#. TRN - Input label. Be short as possible
+#. Align Top|Middle|Bottom and Left|Center|Right
+msgid "Alignment"
+msgstr "การจัดตำแหน่ง"
+
+#. TRN - Input label. Be short as possible
+msgid "Char gap"
+msgstr "ระยะห่างตัวอักษร"
+
+#. TRN - Input label. Be short as possible
+msgid "Line gap"
+msgstr "ช่องว่างบรรทัด"
+
+#. TRN - Input label. Be short as possible
+msgid "Boldness"
+msgstr "ความหนาตัวอักษร"
+
+#. TRN - Input label. Be short as possible
+#. Like Font italic
+msgid "Skew ratio"
+msgstr "อัตราส่วนเอียง"
+
+#. TRN - Input label. Be short as possible
+#. Distance from model surface to be able
+#. move text as part fully into not flat surface
+#. move text as modifier fully out of not flat surface
+#. TRN - Input label. Be short as possible
+msgid "From surface"
+msgstr "จากพื้นผิว"
+
+#. TRN - Input label. Be short as possible
+#. Keep vector from bottom to top of text aligned with printer Y axis
+msgid "Keep up"
+msgstr "ติดตาม"
+
+#. TRN - Input label. Be short as possible.
+#. Some Font file contain multiple fonts inside and
+#. this is numerical selector of font inside font collections
+msgid "Collection"
+msgstr "ของสะสม"
+
+#. TRN - Title in Undo/Redo stack after rotate with SVG around emboss axe
+msgid "SVG rotate"
+msgstr "SVG หมุน"
+
+#. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface
+msgid "SVG move"
+msgstr "การย้าย SVG"
+
+msgid "Enter SVG gizmo"
+msgstr "ป้อน Gizmo SVG"
+
+msgid "Leave SVG gizmo"
+msgstr "ออกจาก Gizmo SVG"
+
+msgid "SVG actions"
+msgstr "การกระทำ SVG"
+
+msgid "SVG"
+msgstr "SVG"
+
+#, boost-format
+msgid "Opacity (%1%)"
+msgstr "ความทึบแสง (%1%)"
+
+#, boost-format
+msgid "Color gradient (%1%)"
+msgstr "ไล่ระดับสี (%1%)"
+
+msgid "Undefined fill type"
+msgstr "ประเภทไส้ในที่ไม่ได้กำหนด"
+
+msgid "Linear gradient"
+msgstr "การไล่ระดับสีเชิงเส้น"
+
+msgid "Radial gradient"
+msgstr "การไล่ระดับสีแบบเรเดียล"
+
+msgid "Open filled path"
+msgstr "เปิดเส้นทางที่เต็มไปด้วย"
+
+msgid "Undefined stroke type"
+msgstr "ประเภทจังหวะที่ไม่ได้กำหนด"
+
+msgid "Path can't be healed from self-intersection and multiple points."
+msgstr "เส้นทางไม่สามารถรักษาได้จากทางแยกตัวเองและหลายจุด"
+
+msgid ""
+"Final shape contains self-intersection or multiple points with same "
+"coordinate."
+msgstr "รูปร่างสุดท้ายมีจุดตัดกันเองหรือหลายจุดที่มีพิกัดเดียวกัน"
+
+#, boost-format
+msgid "Shape is marked as invisible (%1%)."
+msgstr "รูปร่างถูกทำเครื่องหมายว่ามองไม่เห็น (%1%)"
+
+#. TRN: The first placeholder is shape identifier, the second is text describing the problem.
+#, boost-format
+msgid "Fill of shape (%1%) contains unsupported: %2%."
+msgstr "ไส้ในของรูปร่าง (%1%) มีส่วนที่ไม่รองรับ: %2%"
+
+#, boost-format
+msgid "Stroke of shape (%1%) is too thin (minimal width is %2% mm)."
+msgstr "ระยะโครงร่าง (%1%) บางเกินไป (ความกว้างขั้นต่ำคือ %2% มม.)"
+
+#, boost-format
+msgid "Stroke of shape (%1%) contains unsupported: %2%."
+msgstr "เส้นโครงร่างของรูปร่าง (%1%) ประกอบด้วยที่ไม่รองรับ: %2%"
+
+msgid "Face the camera"
+msgstr "หันหน้าเข้าหากล้อง"
+
+#. TRN - Preview of filename after clear local filepath.
+msgid "Unknown filename"
+msgstr "ชื่อไฟล์ที่ไม่รู้จัก"
+
+#, boost-format
+msgid "SVG file path is \"%1%\""
+msgstr "เส้นทางของไฟล์ SVG คือ \"%1%\""
+
+msgid "Reload SVG file from disk."
+msgstr "โหลดไฟล์ SVG จากดิสก์อีกครั้ง"
+
+msgid "Change file"
+msgstr "เปลี่ยนไฟล์"
+
+msgid "Change to another SVG file."
+msgstr "เปลี่ยนเป็นไฟล์ SVG อื่น"
+
+msgid "Forget the file path"
+msgstr "ลืมเส้นทางของไฟล์"
+
+msgid ""
+"Do NOT save local path to 3MF file.\n"
+"Also disables 'reload from disk' option."
+msgstr ""
+"อย่าบันทึกพาธในเครื่องเป็นไฟล์ 3MF\n"
+"ปิดใช้งานตัวเลือก 'โหลดซ้ำจากดิสก์' ด้วย"
+
+#. TRN: An menu option to convert the SVG into an unmodifiable model part.
+msgid "Bake"
+msgstr "อบ"
+
+#. TRN: Tooltip for the menu item.
+msgid "Bake into model as uneditable part"
+msgstr "อบให้เป็นโมเดลโดยเป็นส่วนที่ไม่สามารถแก้ไขได้"
+
+msgid "Save as"
+msgstr "บันทึกเป็น"
+
+msgid "Save SVG file"
+msgstr "บันทึกไฟล์ SVG"
+
+msgid "Save as SVG file."
+msgstr "บันทึกเป็นไฟล์ SVG"
+
+msgid "Size in emboss direction."
+msgstr "ขนาดในทิศทางนูน"
+
+#. TRN: The placeholder contains a number.
+#, boost-format
+msgid "Scale also changes amount of curve samples (%1%)"
+msgstr "มาตราส่วนยังเปลี่ยนจำนวนตัวอย่างเส้นโค้ง (%1%)"
+
+msgid "Width of SVG."
+msgstr "ความกว้างของ SVG"
+
+msgid "Height of SVG."
+msgstr "ความสูงของ SVG"
+
+msgid "Lock/unlock the aspect ratio of the SVG."
+msgstr "ล็อค/ปลดล็อคอัตราส่วนภาพของ SVG"
+
+msgid "Reset scale"
+msgstr "รีเซ็ตมาตราส่วน"
+
+msgid "Distance of the center of the SVG to the model surface."
+msgstr "ระยะห่างจากศูนย์กลางของ SVG ถึงพื้นผิวแบบจำลอง"
+
+msgid "Reset distance"
+msgstr "รีเซ็ตระยะทาง"
+
+msgid "Reset rotation"
+msgstr "รีเซ็ตการหมุน"
+
+msgid "Lock/unlock rotation angle when dragging above the surface."
+msgstr "ล็อค/ปลดล็อคมุมการหมุนเมื่อลากเหนือพื้นผิว"
+
+msgid "Mirror vertically"
+msgstr "กลับด้านแนวตั้ง"
+
+msgid "Mirror horizontally"
+msgstr "กลับด้านแนวนอน"
+
+#. TRN: This is the name of the action that shows in undo/redo stack (changing part type from SVG to something else).
+msgid "Change SVG Type"
+msgstr "เปลี่ยนประเภท SVG"
+
+#. TRN - Input label. Be short as possible
+msgid "Mirror"
+msgstr "กลับด้าน"
+
+msgid "Choose SVG file for emboss:"
+msgstr "เลือกไฟล์ SVG สำหรับลายนูน:"
+
+#, boost-format
+msgid "File does NOT exist (%1%)."
+msgstr "ไม่มีไฟล์ (%1%)"
+
+#, boost-format
+msgid "Filename has to end with \".svg\" but you selected %1%"
+msgstr "ชื่อไฟล์ต้องลงท้ายด้วย \".svg\" แต่คุณเลือก %1%"
+
+#, boost-format
+msgid "Nano SVG parser can't load from file (%1%)."
+msgstr "ตัวแยกวิเคราะห์ Nano SVG ไม่สามารถโหลดจากไฟล์ได้ (%1%)"
+
+#, boost-format
+msgid "SVG file does NOT contain a single path to be embossed (%1%)."
+msgstr "ไฟล์ SVG ไม่มีเส้นทางเดียวที่จะนูน (%1%)"
+
+msgid "No feature"
+msgstr "ไม่มีคุณสมบัติ"
+
+msgid "Vertex"
+msgstr "จุดยอด"
+
+msgid "Edge"
+msgstr "ขอบ"
+
+msgid "Plane"
+msgstr "ระนาบ"
+
+msgid "Point on edge"
+msgstr "ชี้ไปที่ขอบ"
+
+msgid "Point on circle"
+msgstr "ชี้ไปที่วงกลม"
+
+msgid "Point on plane"
+msgstr "ชี้บนระนาบ"
+
+msgid "Center of edge"
+msgstr "ศูนย์กลางของขอบ"
+
+msgid "Center of circle"
+msgstr "ศูนย์กลางของวงกลม"
+
+msgid "Select"
+msgstr "เลือก"
+
+msgid "Select point"
+msgstr "เลือกจุด"
+
+msgid "Delete"
+msgstr "ลบ"
+
+msgid "Restart selection"
+msgstr "เริ่มการเลือกใหม่"
+
+msgid "Esc"
+msgstr "Esc"
+
+msgid "Cancel a feature until exit"
+msgstr "ยกเลิกคุณลักษณะจนกว่าจะออก"
+
+msgid "Measure"
+msgstr "วัด"
+
+msgid ""
+"Please confirm explosion ratio = 1, and please select at least one object."
+msgstr "โปรดยืนยันอัตราส่วนการระเบิด = 1 และโปรดเลือกวัตถุอย่างน้อยหนึ่งชิ้น"
+
+msgid "Edit to scale"
+msgstr "แก้ไขให้มีขนาด"
+
+msgctxt "Verb"
+msgid "Scale all"
+msgstr "ปรับขนาดทั้งหมด"
+
+msgid "None"
+msgstr "ไม่มี"
+
+msgid "Diameter"
+msgstr "เส้นผ่านศูนย์กลาง"
+
+msgid "Length"
+msgstr "ความยาว"
+
+msgid "Selection"
+msgstr "การเลือก"
+
+msgid " (Moving)"
+msgstr "(ขนย้าย)"
+
+msgid ""
+"Select 2 faces on objects and \n"
+" make objects assemble together."
+msgstr ""
+"เลือก 2 ผิวหน้าบนวัตถุและ \n"
+" ทำให้วัตถุมาประกอบกัน"
+
+msgid ""
+"Select 2 points or circles on objects and \n"
+" specify distance between them."
+msgstr ""
+"เลือก 2 จุดหรือวงกลมบนวัตถุและ \n"
+" ระบุระยะห่างระหว่างพวกเขา"
+
+msgid "Face"
+msgstr "หน้า"
+
+msgid " (Fixed)"
+msgstr "(ที่ตายตัว)"
+
+msgid "Point"
+msgstr "จุด"
+
+msgid ""
+"Feature 1 has been reset, \n"
+"feature 2 has been feature 1"
+msgstr ""
+"ฟีเจอร์ที่ 1 ได้รับการรีเซ็ตแล้ว \n"
+"คุณลักษณะที่ 2 ได้กลายเป็นคุณลักษณะที่ 1"
+
+msgid "Copy to clipboard"
+msgstr "คัดลอกไปยังคลิปบอร์ด"
+
+msgid "Perpendicular distance"
+msgstr "ระยะทางตั้งฉาก"
+
+msgid "Distance"
+msgstr "ระยะ"
+
+msgid "Direct distance"
+msgstr "ระยะทางตรง"
+
+msgid "Distance XYZ"
+msgstr "ระยะทาง XYZ"
+
+msgid "Parallel"
+msgstr "ขนาน"
+
+msgid "Center coincidence"
+msgstr "ความบังเอิญเป็นศูนย์"
+
+msgid "Feature 1"
+msgstr "คุณสมบัติ 1"
+
+msgid "Reverse rotation"
+msgstr "การหมุนย้อนกลับ"
+
+msgid "Rotate around center:"
+msgstr "หมุนรอบศูนย์กลาง:"
+
+msgid "Parallel distance:"
+msgstr "ระยะทางขนาน:"
+
+msgid "Flip by Face 2"
+msgstr "พลิกตามผิวหน้า 2"
+
+msgid "Assemble"
+msgstr "ประกอบ"
+
+msgid "Please confirm explosion ratio = 1 and select at least two volumes."
+msgstr "โปรดยืนยันอัตราส่วนการระเบิด = 1 และเลือกอย่างน้อยสองวอลุ่ม"
+
+msgid "Please select at least two volumes."
+msgstr "โปรดเลือกวอลุ่มอย่างน้อยสองรายการ"
+
+msgid "(Moving)"
+msgstr "(ขนย้าย)"
+
+msgid "Point and point assembly"
+msgstr "การประกอบแบบจุดและจุด"
+
+msgid "Warning: please select two different meshes."
+msgstr "คำเตือน: โปรดเลือกตาข่ายสองอันที่แตกต่างกัน"
+
+msgid "Warning: please select Plane's feature."
+msgstr "คำเตือน: โปรดเลือกคุณสมบัติของระนาบ"
+
+msgid "Warning: please select Point's or Circle's feature."
+msgstr "คำเตือน: โปรดเลือกคุณลักษณะของจุดหรือวงกลม"
+
+msgid ""
+"It is recommended to assemble the objects first,\n"
+"because the objects is restriced to bed \n"
+"and only parts can be lifted."
+msgstr ""
+"ขอแนะนำให้ประกอบวัตถุก่อน\n"
+"เพราะสิ่งของนั้นถูกจำกัดไว้บนฐานพิมพ์ \n"
+"และยกได้เพียงบางส่วนเท่านั้น"
+
+msgid "Face and face assembly"
+msgstr "การประกอบผิวหน้าและผิวหน้า"
+
+msgid "Ctrl+"
+msgstr "Ctrl+"
+
+msgid "Alt+"
+msgstr "Alt+"
+
+msgid "Notice"
+msgstr "ประกาศ"
+
+msgid "Undefined"
+msgstr "ไม่ระบุ"
+
+#, boost-format
+msgid "%1% was replaced with %2%"
+msgstr "%1% ถูกแทนที่ด้วย %2%"
+
+msgid "The configuration may be generated by a newer version of OrcaSlicer."
+msgstr "การกำหนดค่าอาจถูกสร้างขึ้นโดย OrcaSlicer เวอร์ชันใหม่กว่า"
+
+msgid "Some values have been replaced. Please check them:"
+msgstr "ค่าบางค่าได้ถูกแทนที่แล้ว โปรดตรวจสอบ:"
+
+msgid "Process"
+msgstr "กระบวนการ"
+
+msgid "Filament"
+msgstr "เส้นพลาสติก"
+
+msgid "Machine"
+msgstr "เครื่อง"
+
+msgid "Configuration package was loaded, but some values were not recognized."
+msgstr "โหลดแพ็คเกจการกำหนดค่าแล้ว แต่ไม่รู้จักค่าบางค่า"
+
+#, boost-format
+msgid ""
+"Configuration file \"%1%\" was loaded, but some values were not recognized."
+msgstr "โหลดไฟล์การกำหนดค่า \"%1%\" แล้ว แต่ระบบไม่รู้จักค่าบางค่า"
+
+msgid "Loading configuration"
+msgstr "กำลังโหลดการตั้งค่า"
+
+msgid "STEP files"
+msgstr "ไฟล์ STEP"
+
+msgid "STL files"
+msgstr "ไฟล์ STL"
+
+msgid "OBJ files"
+msgstr "ไฟล์ OBJ"
+
+msgid "AMF files"
+msgstr "ไฟล์ AMF"
+
+msgid "3MF files"
+msgstr "ไฟล์ 3MF"
+
+msgid "Gcode 3MF files"
+msgstr "ไฟล์ Gcode3MF"
+
+msgid "G-code files"
+msgstr "ไฟล์ G-code"
+
+msgid "Supported files"
+msgstr "ไฟล์ที่รองรับ"
+
+msgid "ZIP files"
+msgstr "ไฟล์ ZIP"
+
+msgid "Project files"
+msgstr "ไฟล์โปรเจกต์"
+
+msgid "Known files"
+msgstr "ไฟล์ที่รู้จัก"
+
+msgid "INI files"
+msgstr "ไฟล์ INI"
+
+msgid "SVG files"
+msgstr "ไฟล์ SVG"
+
+msgid "Texture"
+msgstr "พื้นผิว"
+
+msgid "Masked SLA files"
+msgstr "ไฟล์ SLA ที่ปกปิด"
+
+msgid "Draco files"
+msgstr "ไฟล์เดรโก"
+
+msgid ""
+"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
+"It will be appreciated if you report the issue to our team."
+msgstr ""
+"OrcaSlicer จะยุติลงเนื่องจากหน่วยความจำไม่เพียงพอ มันอาจจะเป็นข้อผิดพลาด "
+"เราจะยินดีเป็นอย่างยิ่งหากคุณรายงานปัญหาดังกล่าวให้ทีมงานของเราทราบ"
+
+msgid "Fatal error"
+msgstr "ข้อผิดพลาดร้ายแรง"
+
+msgid ""
+"OrcaSlicer will terminate because of a localization error. It will be "
+"appreciated if you report the specific scenario this issue happened."
+msgstr ""
+"OrcaSlicer จะยุติลงเนื่องจากข้อผิดพลาดในการแปล "
+"เราจะยินดีอย่างยิ่งหากคุณรายงานสถานการณ์เฉพาะที่ปัญหานี้เกิดขึ้น"
+
+msgid "Critical error"
+msgstr "ข้อผิดพลาดร้ายแรง"
+
+#, boost-format
+msgid "OrcaSlicer got an unhandled exception: %1%"
+msgstr "OrcaSlicer พบข้อยกเว้นที่ไม่ได้จัดการ: %1%"
+
+msgid "Untitled"
+msgstr "ไม่มีชื่อ"
+
+msgid "Reloading network plug-in..."
+msgstr "กำลังโหลดปลั๊กอินเครือข่ายใหม่..."
+
+msgid "Downloading Network Plug-in"
+msgstr "กำลังดาวน์โหลดปลั๊กอินเครือข่าย"
+
+msgid "Downloading Bambu Network Plug-in"
+msgstr "กำลังดาวน์โหลดปลั๊กอินเครือข่าย Bambu"
+
+msgid "Login information expired. Please login again."
+msgstr "ข้อมูลการเข้าสู่ระบบหมดอายุ กรุณาเข้าสู่ระบบอีกครั้ง"
+
+msgid "Incorrect password"
+msgstr "รหัสผ่านไม่ถูกต้อง"
+
+#, c-format, boost-format
+msgid "Connect %s failed! [SN:%s, code=%s]"
+msgstr "เชื่อมต่อ %s ล้มเหลว! [SN:%s, รหัส=%s]"
+
+msgid ""
+"Orca Slicer requires the Microsoft WebView2 Runtime to operate certain "
+"features.\n"
+"Click Yes to install it now."
+msgstr ""
+"Orca Slicer ต้องใช้ Microsoft WebView2 Runtime เพื่อใช้งานคุณสมบัติบางอย่าง\n"
+"คลิกใช่เพื่อติดตั้งทันที"
+
+msgid "WebView2 Runtime"
+msgstr "รันไทม์ WebView2"
+
+#, c-format, boost-format
+msgid "Resources path does not exist or is not a directory: %s"
+msgstr "ไม่มีเส้นทางทรัพยากรหรือไม่ใช่ไดเรกทอรี: %s"
+
+#, c-format, boost-format
+msgid ""
+"%s\n"
+"Do you want to continue?"
+msgstr ""
+"%s\n"
+"คุณต้องการดำเนินการต่อหรือไม่?"
+
+msgid "Remember my choice"
+msgstr "จดจำตัวเลือกของฉัน"
+
+#, c-format, boost-format
+msgid "Click to download new version in default browser: %s"
+msgstr "คลิกเพื่อดาวน์โหลดเวอร์ชันใหม่ในเบราว์เซอร์เริ่มต้น: %s"
+
+msgid "OrcaSlicer needs an update"
+msgstr "OrcaSlicer ต้องการการอัปเดต"
+
+msgid "This is the newest version."
+msgstr "นี่เป็นเวอร์ชันใหม่ล่าสุด"
+
+msgid "Info"
+msgstr "ข้อมูล"
+
+msgid "Loading printer & filament profiles"
+msgstr "กำลังโหลดโปรไฟล์เครื่องพิมพ์และฟิลาเมนต์"
+
+msgid "Creating main window"
+msgstr "กำลังสร้างหน้าต่างหลัก"
+
+msgid "Loading current preset"
+msgstr "กำลังโหลดค่าที่กำหนดล่วงหน้าปัจจุบัน"
+
+msgid "Showing main window"
+msgstr "กำลังแสดงหน้าต่างหลัก"
+
+msgid ""
+"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
+"OrcaSlicer has attempted to recreate the configuration file.\n"
+"Please note, application settings will be lost, but printer profiles will "
+"not be affected."
+msgstr ""
+"ไฟล์การกำหนดค่า OrcaSlicer อาจเสียหายและไม่สามารถแยกวิเคราะห์ได้\n"
+"OrcaSlicer พยายามสร้างไฟล์การกำหนดค่าใหม่\n"
+"โปรดทราบว่าการตั้งค่าแอปพลิเคชันจะหายไป แต่โปรไฟล์เครื่องพิมพ์จะไม่ได้รับผลกระทบ"
+
+msgid "Rebuild"
+msgstr "สร้างใหม่"
+
+msgid "Loading current presets"
+msgstr "กำลังโหลดค่าที่ตั้งล่วงหน้าปัจจุบัน"
+
+msgid "Loading a mode view"
+msgstr "กำลังโหลดมุมมองโหมด"
+
+msgid "Choose one file (3MF):"
+msgstr "เลือกหนึ่งไฟล์ (3MF):"
+
+msgid "Choose one or more files (3MF/STEP/STL/SVG/OBJ/AMF/USD*/ABC/PLY):"
+msgstr "เลือกหนึ่งไฟล์ขึ้นไป (3MF/STEP/STL/SVG/OBJ/AMF/USD*/ABC/PLY):"
+
+msgid "Choose one or more files (3MF/STEP/STL/SVG/OBJ/AMF):"
+msgstr "เลือกหนึ่งไฟล์ขึ้นไป (3MF/STEP/STL/SVG/OBJ/AMF):"
+
+msgid "Choose ZIP file"
+msgstr "เลือกไฟล์ ZIP"
+
+msgid "Choose one file (GCODE/3MF):"
+msgstr "เลือกหนึ่งไฟล์ (GCODE/3MF):"
+
+msgid "Ext"
+msgstr "ต่อ"
+
+msgid "Some presets are modified."
+msgstr "ค่าที่ตั้งล่วงหน้าบางส่วนได้รับการแก้ไข"
+
+msgid ""
+"You can keep the modified presets to the new project, discard or save "
+"changes as new presets."
+msgstr ""
+"คุณสามารถเก็บค่าที่ตั้งล่วงหน้าที่แก้ไขแล้วไว้ในโปรเจ็กต์ใหม่ "
+"ทิ้งหรือบันทึกการเปลี่ยนแปลงเป็นค่าที่ตั้งล่วงหน้าใหม่ได้"
+
+msgid "User logged out"
+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!"
+msgstr "ไม่อนุญาตให้ใช้ไฟล์โครงการใหม่หรือเปิดในระหว่างกระบวนการแบ่งส่วน!"
+
+msgid "Open Project"
+msgstr "เปิดโปรเจกต์"
+
+msgid ""
+"The version of Orca Slicer is too low and needs to be updated to the latest "
+"version before it can be used normally."
+msgstr ""
+"Orca Slicer "
+"เวอร์ชันต่ำเกินไปและจำเป็นต้องอัปเดตเป็นเวอร์ชันล่าสุดก่อนจึงจะสามารถใช้งานได้ตามปกติ"
+
+msgid ""
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
+msgstr ""
+
+msgid ""
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
+msgstr ""
+
+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 ""
+
+msgid "Retrieving printer information, please try again later."
+msgstr "กำลังดึงข้อมูลเครื่องพิมพ์ โปรดลองอีกครั้งในภายหลัง"
+
+msgid "Please try updating OrcaSlicer and then try again."
+msgstr "โปรดลองอัปเดต OrcaSlicer แล้วลองอีกครั้ง"
+
+msgid ""
+"The certificate has expired. Please check the time settings or update "
+"OrcaSlicer and try again."
+msgstr "ใบรับรองหมดอายุแล้ว โปรดตรวจสอบการตั้งค่าเวลาหรืออัปเดต OrcaSlicer แล้วลองอีกครั้ง"
+
+msgid ""
+"The certificate is no longer valid and the printing functions are "
+"unavailable."
+msgstr "ใบรับรองไม่ถูกต้องอีกต่อไป และฟังก์ชันการพิมพ์ไม่พร้อมใช้งาน"
+
+msgid ""
+"Internal error. Please try upgrading the firmware and OrcaSlicer version. If "
+"the issue persists, contact support."
+msgstr ""
+"ข้อผิดพลาดภายใน โปรดลองอัปเกรดเฟิร์มแวร์และเวอร์ชัน OrcaSlicer หากปัญหายังคงอยู่ "
+"โปรดติดต่อฝ่ายสนับสนุน"
+
+msgid ""
+"To use OrcaSlicer with Bambu Lab printers, you need to enable LAN mode and "
+"Developer mode on your printer.\n"
+"\n"
+"Please go to your printer's settings and:\n"
+"1. Turn on LAN mode\n"
+"2. Enable Developer mode\n"
+"\n"
+"Developer mode allows the printer to work exclusively through local network "
+"access, enabling full functionality with OrcaSlicer."
+msgstr ""
+"หากต้องการใช้ OrcaSlicer กับเครื่องพิมพ์ Bambu Lab คุณต้องเปิดใช้งานโหมด LAN "
+"และโหมดนักพัฒนาซอฟต์แวร์บนเครื่องพิมพ์ของคุณ\n"
+"\n"
+"โปรดไปที่การตั้งค่าเครื่องพิมพ์ของคุณและ:\n"
+"1. เปิดโหมด LAN\n"
+"2. เปิดใช้งานโหมดนักพัฒนาซอฟต์แวร์\n"
+"\n"
+"โหมดนักพัฒนาซอฟต์แวร์ช่วยให้เครื่องพิมพ์ทำงานผ่านการเข้าถึงเครือข่ายท้องถิ่นโดยเฉพาะ "
+"เปิดใช้งานฟังก์ชันการทำงานเต็มรูปแบบด้วย OrcaSlicer"
+
+msgid "Network Plug-in Restriction"
+msgstr "ข้อจำกัดปลั๊กอินเครือข่าย"
+
+msgid "Privacy Policy Update"
+msgstr "การปรับปรุงนโยบายความเป็นส่วนตัว"
+
+#, c-format, boost-format
+msgid "your Orca Cloud profile (user ID: \"%s\")"
+msgstr "โปรไฟล์ Orca Cloud ของคุณ (รหัสผู้ใช้: \"%s\")"
+
+msgid "your default profile"
+msgstr "โปรไฟล์เริ่มต้นของคุณ"
+
+#, c-format, boost-format
+msgid "a user profile (folder: \"%s\")"
+msgstr "โปรไฟล์ผู้ใช้ (โฟลเดอร์: \"%s\")"
+
+#, c-format, boost-format
+msgid ""
+"Existing user presets were found in %s.\n"
+"Do you want to migrate them to your OrcaCloud profile?\n"
+"This will copy your presets so they are available under your new account."
+msgstr ""
+"พบค่าที่ตั้งล่วงหน้าของผู้ใช้ที่มีอยู่ใน %s\n"
+"คุณต้องการย้ายไปยังโปรไฟล์ OrcaCloud ของคุณหรือไม่?\n"
+"การดำเนินการนี้จะคัดลอกค่าที่ตั้งล่วงหน้าของคุณเพื่อให้สามารถใช้งานได้ภายใต้บัญชีใหม่ของคุณ"
+
+msgid "Migrate User Presets"
+msgstr "ย้ายค่าที่ตั้งไว้ของผู้ใช้"
+
+#, c-format, boost-format
+msgid ""
+"Failed to migrate user presets:\n"
+"%s"
+msgstr ""
+"ไม่สามารถย้ายค่าที่ตั้งล่วงหน้าของผู้ใช้:\n"
+"%s"
+
+msgid ""
+"The number of user presets cached in the cloud has exceeded the upper limit, "
+"newly created user presets can only be used locally."
+msgstr ""
+"จำนวนค่าที่ตั้งไว้ล่วงหน้าของผู้ใช้ที่แคชไว้ในคลาวด์เกินขีดจำกัดสูงสุด "
+"ค่าที่ตั้งไว้ล่วงหน้าของผู้ใช้ที่สร้างขึ้นใหม่สามารถใช้ได้เฉพาะในเครื่องเท่านั้น"
+
+msgid "Sync user presets"
+msgstr "ซิงค์การตั้งค่าล่วงหน้าของผู้ใช้"
+
+msgid ""
+"The preset content is too large to sync to the cloud (exceeds 1MB). Please "
+"reduce the preset size by removing custom configurations or use it locally "
+"only."
+msgstr ""
+"เนื้อหาที่ตั้งไว้ล่วงหน้ามีขนาดใหญ่เกินกว่าจะซิงค์กับระบบคลาวด์ (เกิน 1MB) "
+"โปรดลดขนาดที่กำหนดไว้ล่วงหน้าโดยการลบการกำหนดค่าที่กำหนดเองออกหรือใช้เฉพาะในเครื่องเท่านั้น"
+
+#, c-format, boost-format
+msgid "%s updated from %s to %s"
+msgstr "%s อัปเดตจาก %s เป็น %s แล้ว"
+
+#, c-format, boost-format
+msgid "%s has been downloaded."
+msgstr "ดาวน์โหลด %s แล้ว"
+
+#, c-format, boost-format
+msgid "Bundle %s is no longer available."
+msgstr "บันเดิล %s ไม่มีให้บริการอีกต่อไป"
+
+#, c-format, boost-format
+msgid "Bundle %s access is unauthorized."
+msgstr "การเข้าถึง Bundle %s ไม่ได้รับอนุญาต"
+
+msgid "Loading user preset"
+msgstr "กำลังโหลดค่าที่ตั้งล่วงหน้าของผู้ใช้"
+
+#, c-format, boost-format
+msgid "%s has been removed."
+msgstr "ลบ %s แล้ว"
+
+msgid "Switching application language"
+msgstr "การเปลี่ยนภาษาของแอปพลิเคชัน"
+
+msgid "Select the language"
+msgstr "เลือกภาษา"
+
+msgid "Language"
+msgstr "ภาษา"
+
+msgid "*"
+msgstr "*"
+
+msgid "Changing application language"
+msgstr "การเปลี่ยนภาษาของแอปพลิเคชัน"
+
+msgid "The uploads are still ongoing"
+msgstr "การอัปโหลดยังคงดำเนินต่อไป"
+
+msgid "Stop them and continue anyway?"
+msgstr "หยุดพวกมันแล้วไปต่อเลยเหรอ?"
+
+msgid "Ongoing uploads"
+msgstr "การอัปโหลดอย่างต่อเนื่อง"
+
+msgid "Select a G-code file:"
+msgstr "เลือกไฟล์ G-code:"
+
+msgid ""
+"Could not start URL download. Destination folder is not set. Please choose "
+"destination folder in Configuration Wizard."
+msgstr ""
+"ไม่สามารถเริ่มการดาวน์โหลด URL ไม่ได้ตั้งค่าโฟลเดอร์ปลายทาง "
+"โปรดเลือกโฟลเดอร์ปลายทางในตัวช่วยสร้างการกำหนดค่า"
+
+msgid "Import File"
+msgstr "นำเข้าไฟล์"
+
+msgid "Choose files"
+msgstr "ไฟล์เลือก"
+
+msgid "New Folder"
+msgstr "โฟลเดอร์ใหม่"
+
+msgid "Open"
+msgstr "เปิด"
+
+msgid "Rename"
+msgstr "เปลี่ยนชื่อ"
+
+msgid "Orca Slicer GUI initialization failed"
+msgstr "การเริ่มต้น Orca Slicer GUI ล้มเหลว"
+
+#, boost-format
+msgid "Fatal error, exception caught: %1%"
+msgstr "ข้อผิดพลาดร้ายแรง พบข้อยกเว้น: %1%"
+
+msgid "Quality"
+msgstr "คุณภาพ"
+
+msgid "Shell"
+msgstr "ผนัง"
+
+msgid "Infill"
+msgstr "ไส้ใน"
+
+msgid "Support"
+msgstr "ส่วนรองรับ"
+
+msgid "Flush options"
+msgstr "ตัวเลือกการไล่เส้น"
+
+msgid "Speed"
+msgstr "ความเร็ว"
+
+msgid "Strength"
+msgstr "ความแข็งแรง"
+
+msgid "Top Solid Layers"
+msgstr "เลเยอร์ทึบด้านบน"
+
+msgid "Top Minimum Shell Thickness"
+msgstr "ความหนาของเปลือกขั้นต่ำสูงสุด"
+
+msgid "Top Surface Density"
+msgstr "ความหนาแน่นพื้นผิวด้านบน"
+
+msgid "Bottom Solid Layers"
+msgstr "เลเยอร์ทึบด้านล่าง"
+
+msgid "Bottom Minimum Shell Thickness"
+msgstr "ความหนาของเปลือกขั้นต่ำด้านล่าง"
+
+msgid "Bottom Surface Density"
+msgstr "ความหนาแน่นพื้นผิวด้านล่าง"
+
+msgid "Ironing"
+msgstr "รีดผิว"
+
+msgid "Fuzzy Skin"
+msgstr "ผิวฟัซซี"
+
+msgid "Extruders"
+msgstr "ชุดดันเส้น"
+
+msgid "Extrusion Width"
+msgstr "ความกว้างของการอัดขึ้นรูป"
+
+msgid "Wipe options"
+msgstr "ตัวเลือกการเช็ดหัวฉีด"
+
+msgid "Bed adhesion"
+msgstr "การยึดเกาะของฐานพิมพ์"
+
+msgid "Add part"
+msgstr "เพิ่มส่วนหนึ่ง"
+
+msgid "Add negative part"
+msgstr "เพิ่มส่วนที่เป็นลบ"
+
+msgid "Add modifier"
+msgstr "เพิ่มตัวแก้ไข"
+
+msgid "Add support blocker"
+msgstr "เพิ่มตัวบล็อกส่วนรองรับ"
+
+msgid "Add support enforcer"
+msgstr "เพิ่มกำหนดส่วนรองรับ"
+
+msgid "Add text"
+msgstr "เพิ่มข้อความ"
+
+msgid "Add negative text"
+msgstr "เพิ่มข้อความเชิงลบ"
+
+msgid "Add text modifier"
+msgstr "เพิ่มตัวแก้ไขข้อความ"
+
+msgid "Add SVG part"
+msgstr "เพิ่มส่วน SVG"
+
+msgid "Add negative SVG"
+msgstr "เพิ่ม SVG เชิงลบ"
+
+msgid "Add SVG modifier"
+msgstr "เพิ่มตัวแก้ไข SVG"
+
+msgid "Select settings"
+msgstr "การตั้งค่าเลือก"
+
+msgid "Hide"
+msgstr "ซ่อน"
+
+msgid "Show"
+msgstr "แสดง"
+
+msgid "Del"
+msgstr "เดล"
+
+msgid "Delete the selected object"
+msgstr "ลบวัตถุที่เลือก"
+
+msgid "Backspace"
+msgstr "แบ็คสเปซ"
+
+msgid "Load..."
+msgstr "โหลด..."
+
+msgid "Cube"
+msgstr "ลูกบาศก์"
+
+msgid "Cylinder"
+msgstr "ทรงกระบอก"
+
+msgid "Cone"
+msgstr "ทรงกรวย"
+
+msgid "Disc"
+msgstr "แผ่นกลม"
+
+msgid "Torus"
+msgstr "ทอรัส"
+
+msgid "Orca Cube"
+msgstr "ออร์ก้าคิวบ์"
+
+msgid "OrcaSliced Combo"
+msgstr ""
+
+msgid "Orca Tolerance Test"
+msgstr "การทดสอบค่าความเผื่อ Orca"
+
+msgid "3DBenchy"
+msgstr "3Dbenchy"
+
+msgid "Cali Cat"
+msgstr "แมวกาลี"
+
+msgid "Autodesk FDM Test"
+msgstr "การทดสอบ Autodesk FDM"
+
+msgid "Voron Cube"
+msgstr "โวรอน คิวบ์"
+
+msgid "Stanford Bunny"
+msgstr "สแตนฟอร์ด บันนี่"
+
+msgid "Orca String Hell"
+msgstr "ออร์ก้าสตริงนรก"
+
+msgid ""
+"This model features text embossment on the top surface. For optimal results, "
+"it is advisable to set the 'One Wall Threshold (min_width_top_surface)' to 0 "
+"for the 'Only One Wall on Top Surfaces' to work best.\n"
+"Yes - Change these settings automatically\n"
+"No - Do not change these settings for me"
+msgstr ""
+"รุ่นนี้มีข้อความนูนบนพื้นผิวด้านบน เพื่อให้ได้ผลลัพธ์ที่ดีที่สุด ขอแนะนำให้ตั้งค่า 'เกณฑ์ผนังด้านเดียว "
+"(min_width_top_surface)' เป็น 0 เพื่อให้ 'ผนังด้านเดียวเท่านั้นบนพื้นผิวด้านบน' "
+"เพื่อให้ทำงานได้ดีที่สุด\n"
+"ใช่ - เปลี่ยนการตั้งค่าเหล่านี้โดยอัตโนมัติ\n"
+"ไม่ - อย่าเปลี่ยนการตั้งค่าเหล่านี้ให้ฉัน"
+
+msgid "Suggestion"
+msgstr "คำแนะนำ"
+
+msgid "Text"
+msgstr "ข้อความ"
+
+msgid "Height range Modifier"
+msgstr "ตัวแก้ไขช่วงความสูง"
+
+msgid "Add settings"
+msgstr "การตั้งค่าเพิ่ม"
+
+msgid "Change type"
+msgstr "เปลี่ยนประเภท"
+
+msgid "Negative Part"
+msgstr "ส่วนเชิงลบ"
+
+msgid "Support Blocker"
+msgstr "ตัวบล็อกส่วนรองรับ"
+
+msgid "Support Enforcer"
+msgstr "กำหนดส่วนรองรับ"
+
+msgid "Change part type"
+msgstr "เปลี่ยนประเภทชิ้นส่วน"
+
+msgid "Set as an individual object"
+msgstr "ตั้งเป็นวัตถุแต่ละรายการ"
+
+msgid "Set as individual objects"
+msgstr "ตั้งเป็นวัตถุแต่ละรายการ"
+
+msgid "Fill bed with copies"
+msgstr "เติมฐานพิมพ์ด้วยสำเนา"
+
+msgid "Fill the remaining area of bed with copies of the selected object"
+msgstr "เติมพื้นที่ที่เหลือของฐานพิมพ์ด้วยสำเนาของวัตถุที่เลือก"
+
+msgid "Printable"
+msgstr "พิมพ์ได้"
+
+msgid "Auto Drop"
+msgstr "ดรอปอัตโนมัติ"
+
+msgid "Automatically drops the selected object to the build plate"
+msgstr "วางวัตถุที่เลือกลงในเพลตฐานพิมพ์โดยอัตโนมัติ"
+
+msgid "Fix model"
+msgstr "ซ่อมโมเดล"
+
+msgid "Export as one STL"
+msgstr "ส่งออกเป็น STL เดียว"
+
+msgid "Export as STLs"
+msgstr "ส่งออกเป็น STL"
+
+msgid "Export as one DRC"
+msgstr "ส่งออกเป็น DRC เดียว"
+
+msgid "Export as DRCs"
+msgstr "ส่งออกเป็น DRC"
+
+msgid "Reload from disk"
+msgstr "โหลดซ้ำจากดิสก์"
+
+msgid "Reload the selected parts from disk"
+msgstr "โหลดส่วนที่เลือกจากดิสก์อีกครั้ง"
+
+msgid "Replace 3D file"
+msgstr "แทนที่ไฟล์ 3D"
+
+msgid "Replace the selected part with a new 3D file"
+msgstr "แทนที่ส่วนที่เลือกด้วยไฟล์ 3D ใหม่"
+
+msgid "Replace all with 3D files"
+msgstr "แทนที่ทั้งหมดด้วยไฟล์ 3D"
+
+msgid "Replace all selected parts with 3D files from folder"
+msgstr "แทนที่ส่วนที่เลือกทั้งหมดด้วยไฟล์ 3D จากโฟลเดอร์"
+
+msgid "Change filament"
+msgstr "เปลี่ยนเส้นพลาสติก"
+
+msgid "Set filament for selected items"
+msgstr "ตั้งค่าเส้นพลาสติกสำหรับรายการที่เลือก"
+
+msgid "Default"
+msgstr "ค่าเริ่มต้น"
+
+#, c-format, boost-format
+msgid "Filament %d"
+msgstr "เส้นพลาสติก %d"
+
+msgid "current"
+msgstr "ปัจจุบัน"
+
+msgid "Scale to build volume"
+msgstr "ปรับขนาดเพื่อสร้างปริมาณ"
+
+msgid "Scale an object to fit the build volume"
+msgstr "ปรับขนาดวัตถุให้พอดีกับปริมาณงานสร้าง"
+
+msgid "Flush Options"
+msgstr "ตัวเลือกการไล่เส้น"
+
+msgid "Flush into objects' infill"
+msgstr "ไล่เส้นเข้าไปใน ไส้ใน ของวัตถุ"
+
+msgid "Flush into this object"
+msgstr "พุ่งเข้าไปในวัตถุนี้"
+
+msgid "Flush into objects' support"
+msgstr "ไล่เส้นเข้าไปในส่วนรองรับของวัตถุ"
+
+msgid "Edit in Parameter Table"
+msgstr "แก้ไขในตารางพารามิเตอร์"
+
+msgid "Convert from inches"
+msgstr "แปลงจากนิ้ว"
+
+msgid "Restore to inches"
+msgstr "กลับคืนสู่นิ้ว"
+
+msgid "Convert from meters"
+msgstr "แปลงจากเมตร"
+
+msgid "Restore to meters"
+msgstr "คืนค่าเป็นเมตร"
+
+msgid "Assemble the selected objects into an object with multiple parts"
+msgstr "ประกอบวัตถุที่เลือกให้เป็นวัตถุที่มีหลายส่วน"
+
+msgid "Assemble the selected objects into an object with single part"
+msgstr "ประกอบวัตถุที่เลือกให้เป็นวัตถุที่มีส่วนเดียว"
+
+msgid "Mesh boolean"
+msgstr "บูลีนแบบตาข่าย"
+
+msgid "Mesh boolean operations including union and subtraction"
+msgstr "การดำเนินการบูลีนแบบ Mesh รวมถึงการรวมและการลบ"
+
+msgid "Along X axis"
+msgstr "ตามแกน X"
+
+msgid "Mirror along the X axis"
+msgstr "กลับด้านตามแกน X"
+
+msgid "Along Y axis"
+msgstr "ตามแกน Y"
+
+msgid "Mirror along the Y axis"
+msgstr "กลับด้านตามแกน Y"
+
+msgid "Along Z axis"
+msgstr "ตามแกน Z"
+
+msgid "Mirror along the Z axis"
+msgstr "กลับด้านตามแกน Z"
+
+msgid "Mirror object"
+msgstr "วัตถุกระจก"
+
+msgid "Edit text"
+msgstr "แก้ไขข้อความ"
+
+msgid "Ability to change text, font, size, ..."
+msgstr "ความสามารถในการเปลี่ยนข้อความ แบบอักษร ขนาด ..."
+
+msgid "Edit SVG"
+msgstr "แก้ไข SVG"
+
+msgid "Change SVG source file, projection, size, ..."
+msgstr "เปลี่ยนไฟล์ต้นฉบับ SVG, การฉายภาพ, ขนาด, ..."
+
+msgid "Invalidate cut info"
+msgstr "ข้อมูลการตัดไม่ถูกต้อง"
+
+msgid "Add Primitive"
+msgstr "เพิ่มดั้งเดิม"
+
+msgid "Add Handy models"
+msgstr "เพิ่มรุ่นแฮนดี้"
+
+msgid "Add Models"
+msgstr "เพิ่มโมเดล"
+
+msgid "Show Labels"
+msgstr "แสดงป้ายชื่อ"
+
+msgid "To objects"
+msgstr "ไปยังวัตถุ"
+
+msgid "Split the selected object into multiple objects"
+msgstr "แยกวัตถุที่เลือกออกเป็นหลายวัตถุ"
+
+msgid "To parts"
+msgstr "เพื่อชิ้นส่วน"
+
+msgid "Split the selected object into multiple parts"
+msgstr "แยกวัตถุที่เลือกออกเป็นหลายส่วน"
+
+msgid "Split"
+msgstr "แยก"
+
+msgid "Split the selected object"
+msgstr "แยกวัตถุที่เลือก"
+
+msgid "Auto orientation"
+msgstr "การวางแนวอัตโนมัติ"
+
+msgid "Auto orient the object to improve print quality"
+msgstr "ปรับทิศทางวัตถุโดยอัตโนมัติเพื่อปรับปรุงคุณภาพการพิมพ์"
+
+msgid "Edit"
+msgstr "แก้ไข"
+
+msgid "Merge with"
+msgstr "รวมกับ"
+
+msgid "Delete this filament"
+msgstr "ลบเส้นพลาสติกนี้"
+
+msgid "Select All"
+msgstr "เลือกทั้งหมด"
+
+msgid "Select all objects on the current plate"
+msgstr "เลือกวัตถุทั้งหมดบนจานปัจจุบัน"
+
+msgid "Select All Plates"
+msgstr "เลือกจานทั้งหมด"
+
+msgid "Select all objects on all plates"
+msgstr "เลือกวัตถุทั้งหมดบนจานทั้งหมด"
+
+msgid "Delete All"
+msgstr "ลบทั้งหมด"
+
+msgid "Delete all objects on the current plate"
+msgstr "ลบวัตถุทั้งหมดบนแผ่นปัจจุบัน"
+
+msgid "Arrange"
+msgstr "จัดเรียง"
+
+msgid "Arrange current plate"
+msgstr "จัดจานปัจจุบัน"
+
+msgid "Reload All"
+msgstr "โหลดใหม่ทั้งหมด"
+
+msgid "Reload all from disk"
+msgstr "โหลดใหม่ทั้งหมดจากดิสก์"
+
+msgid "Auto Rotate"
+msgstr "หมุนอัตโนมัติ"
+
+msgid "Auto rotate current plate"
+msgstr "หมุนแผ่นปัจจุบันอัตโนมัติ"
+
+msgid "Delete Plate"
+msgstr "ลบฐานพิมพ์"
+
+msgid "Remove the selected plate"
+msgstr "นำแผ่นที่เลือกออก"
+
+msgid "Add instance"
+msgstr "เพิ่มอินสแตนซ์"
+
+msgid "Add one more instance of the selected object"
+msgstr "เพิ่มอีกหนึ่งอินสแตนซ์ของออบเจ็กต์ที่เลือก"
+
+msgid "Remove instance"
+msgstr "ลบอินสแตนซ์"
+
+msgid "Remove one instance of the selected object"
+msgstr "ลบหนึ่งอินสแตนซ์ของออบเจ็กต์ที่เลือก"
+
+msgid "Set number of instances"
+msgstr "กำหนดจำนวนอินสแตนซ์"
+
+msgid "Change the number of instances of the selected object"
+msgstr "เปลี่ยนจำนวนอินสแตนซ์ของวัตถุที่เลือก"
+
+msgid "Fill bed with instances"
+msgstr "เติมฐานพิมพ์ด้วยอินสแตนซ์"
+
+msgid "Fill the remaining area of bed with instances of the selected object"
+msgstr "เติมพื้นที่ที่เหลือของฐานพิมพ์ด้วยวัตถุที่เลือก"
+
+msgid "Clone"
+msgstr "โคลน"
+
+msgid "Simplify Model"
+msgstr "ลดความซับซ้อนของโมเดล"
+
+msgid "Subdivision mesh"
+msgstr "แบ่งตาข่าย"
+
+msgid "(Lost color)"
+msgstr "(สีที่หายไป)"
+
+msgid "Center"
+msgstr "กึ่งกลาง"
+
+msgid "Drop"
+msgstr "หยด"
+
+msgid "Edit Process Settings"
+msgstr "แก้ไขการตั้งค่ากระบวนการ"
+
+msgid "Copy Process Settings"
+msgstr "คัดลอกการตั้งค่ากระบวนการ"
+
+msgid "Paste Process Settings"
+msgstr "วางการตั้งค่ากระบวนการ"
+
+msgid "Edit print parameters for a single object"
+msgstr "แก้ไขพารามิเตอร์การพิมพ์สำหรับวัตถุเดียว"
+
+msgid "Change Filament"
+msgstr "เปลี่ยนเส้นพลาสติก"
+
+msgid "Set Filament for selected items"
+msgstr "ตั้งค่า เส้นพลาสติก สำหรับรายการที่เลือก"
+
+msgid "Automatically snaps the selected object to the build plate"
+msgstr "ยึดวัตถุที่เลือกเข้ากับฐานรองพิมพ์โดยอัตโนมัติ"
+
+msgid "Unlock"
+msgstr "ปลดล็อค"
+
+msgid "Lock"
+msgstr "ล็อค"
+
+msgid "Edit Plate Name"
+msgstr "แก้ไขชื่อเพลท"
+
+msgid "Name"
+msgstr "ชื่อ"
+
+msgid "Fila."
+msgstr "ฟิล่า."
+
+#, c-format, boost-format
+msgid "%1$d error repaired"
+msgid_plural "%1$d errors repaired"
+msgstr[0] "ซ่อมแซมข้อผิดพลาดแล้ว %1$d รายการ"
+
+#, c-format, boost-format
+msgid "Error: %1$d non-manifold edge."
+msgid_plural "Error: %1$d non-manifold edges."
+msgstr[0] "ข้อผิดพลาด: พบขอบ non-manifold จำนวน %1$d ขอบ"
+
+msgid "Remaining errors"
+msgstr "ข้อผิดพลาดที่เหลืออยู่"
+
+#, c-format, boost-format
+msgid "%1$d non-manifold edge"
+msgid_plural "%1$d non-manifold edges"
+msgstr[0] "ขอบ non-manifold จำนวน %1$d ขอบ"
+
+msgid "Click the icon to repair model object"
+msgstr "คลิกที่ไอคอนเพื่อซ่อมแซมโมเดลออบเจ็กต์"
+
+msgid "Right button click the icon to drop the object settings"
+msgstr "คลิกขวาที่ไอคอนเพื่อยกเลิกการตั้งค่าออบเจ็กต์"
+
+msgid "Click the icon to reset all settings of the object"
+msgstr "คลิกที่ไอคอนเพื่อรีเซ็ตการตั้งค่าทั้งหมดของออบเจ็กต์"
+
+msgid "Right button click the icon to drop the object printable property"
+msgstr "คลิกขวาที่ไอคอนเพื่อปล่อยคุณสมบัติการพิมพ์ของออบเจ็กต์"
+
+msgid "Click the icon to toggle printable property of the object"
+msgstr "คลิกที่ไอคอนเพื่อสลับคุณสมบัติการพิมพ์ของออบเจ็กต์"
+
+msgid "Click the icon to edit support painting of the object"
+msgstr "คลิกที่ไอคอนเพื่อแก้ไขภาพวาดส่วนรองรับของวัตถุ"
+
+msgid "Click the icon to edit color painting of the object"
+msgstr "คลิกที่ไอคอนเพื่อแก้ไขการวาดภาพสีของวัตถุ"
+
+msgid "Click the icon to shift this object to the bed"
+msgstr "คลิกที่ไอคอนเพื่อเลื่อนวัตถุนี้ไปที่ฐานพิมพ์"
+
+msgid "Loading file"
+msgstr "กำลังโหลดไฟล์"
+
+msgid "Error!"
+msgstr "ข้อผิดพลาด!"
+
+msgid "Failed to get the model data in the current file."
+msgstr "ไม่สามารถรับข้อมูลโมเดลในไฟล์ปัจจุบัน"
+
+msgid "Generic"
+msgstr "ทั่วไป"
+
+msgid "Add Modifier"
+msgstr "เพิ่มตัวแก้ไข"
+
+msgid "Switch to per-object setting mode to edit modifier settings."
+msgstr "สลับไปที่โหมดการตั้งค่าต่อวัตถุเพื่อแก้ไขการตั้งค่าตัวแก้ไข"
+
+msgid ""
+"Switch to per-object setting mode to edit process settings of selected "
+"objects."
+msgstr "สลับไปที่โหมดการตั้งค่าต่ออ็อบเจ็กต์เพื่อแก้ไขการตั้งค่ากระบวนการของอ็อบเจ็กต์ที่เลือก"
+
+msgid "Remove paint-on fuzzy skin"
+msgstr "ลบสีบนผิวที่คลุมเครือ"
+
+msgid "Delete connector from object which is a part of cut"
+msgstr "ลบตัวเชื่อมต่อออกจากวัตถุที่เป็นส่วนหนึ่งของการตัด"
+
+msgid "Delete solid part from object which is a part of cut"
+msgstr "ลบส่วนที่เป็นของแข็งออกจากวัตถุที่เป็นส่วนหนึ่งของการตัด"
+
+msgid "Delete negative volume from object which is a part of cut"
+msgstr "ลบปริมาตรเชิงลบออกจากวัตถุซึ่งเป็นส่วนหนึ่งของการตัด"
+
+msgid ""
+"To save cut correspondence you can delete all connectors from all related "
+"objects."
+msgstr "หากต้องการบันทึกการติดต่อตัด คุณสามารถลบตัวเชื่อมต่อทั้งหมดออกจากวัตถุที่เกี่ยวข้องทั้งหมดได้"
+
+msgid ""
+"This action will break a cut correspondence.\n"
+"After that model consistency can't be guaranteed.\n"
+"\n"
+"To manipulate with solid parts or negative volumes you have to invalidate "
+"cut information first."
+msgstr ""
+"การกระทำนี้จะตัดการติดต่อทางจดหมาย\n"
+"หลังจากนั้นจึงไม่สามารถรับประกันความสอดคล้องของโมเดลได้\n"
+"\n"
+"หากต้องการจัดการกับชิ้นส่วนที่เป็นของแข็งหรือปริมาตรเป็นลบ คุณต้องทำให้ข้อมูลการตัดเป็นโมฆะก่อน"
+
+msgid "Delete all connectors"
+msgstr "ลบตัวเชื่อมต่อทั้งหมด"
+
+msgid "Deleting the last solid part is not allowed."
+msgstr "ไม่อนุญาตให้ลบส่วนที่เป็นของแข็งสุดท้าย"
+
+msgid "The target object contains only one part and can not be split."
+msgstr "วัตถุเป้าหมายมีเพียงส่วนเดียวและไม่สามารถแยกออกได้"
+
+msgid "Assembly"
+msgstr "การประกอบ"
+
+msgid "Cut Connectors information"
+msgstr "ตัดข้อมูลตัวเชื่อมต่อ"
+
+msgid "Object manipulation"
+msgstr "การจัดการวัตถุ"
+
+msgid "Group manipulation"
+msgstr "การจัดการกลุ่ม"
+
+msgid "Object Settings to modify"
+msgstr "การตั้งค่าวัตถุที่จะแก้ไข"
+
+msgid "Part Settings to modify"
+msgstr "การตั้งค่าส่วนที่จะแก้ไข"
+
+msgid "Layer range Settings to modify"
+msgstr "การตั้งค่าช่วงชั้นที่จะแก้ไข"
+
+msgid "Part manipulation"
+msgstr "การจัดการชิ้นส่วน"
+
+msgid "Instance manipulation"
+msgstr "การจัดการอินสแตนซ์"
+
+msgid "Height ranges"
+msgstr "ช่วงความสูง"
+
+msgid "Settings for height range"
+msgstr "การตั้งค่าช่วงความสูง"
+
+msgid "Layer"
+msgstr "เลเยอร์"
+
+msgid "Selection conflicts"
+msgstr "ข้อขัดแย้งในการคัดเลือก"
+
+msgid ""
+"If the first selected item is an object, the second should also be an object."
+msgstr "หากรายการแรกที่เลือกเป็นวัตถุ รายการที่สองก็ควรเป็นวัตถุด้วย"
+
+msgid ""
+"If the first selected item is a part, the second should be a part in the "
+"same object."
+msgstr "หากรายการแรกที่เลือกเป็นส่วนหนึ่ง รายการที่สองควรเป็นส่วนในวัตถุเดียวกัน"
+
+msgid "The type of the last solid object part is not to be changed."
+msgstr "ประเภทของชิ้นส่วนวัตถุทึบชิ้นสุดท้ายจะไม่ถูกเปลี่ยนแปลง"
+
+msgid "Type:"
+msgstr "ชนิด:"
+
+msgid "Choose part type"
+msgstr "เลือกประเภทชิ้นส่วน"
+
+msgid "Enter new name"
+msgstr "ป้อนชื่อใหม่"
+
+msgid "Renaming"
+msgstr "กำลังเปลี่ยนชื่อ"
+
+msgid "Following model object has been repaired"
+msgid_plural "Following model objects have been repaired"
+msgstr[0] "ซ่อมแซมวัตถุโมเดลต่อไปนี้แล้ว"
+
+msgid "Failed to repair following model object"
+msgid_plural "Failed to repair following model objects"
+msgstr[0] "ล้มเหลวในการซ่อมแซมวัตถุโมเดลต่อไปนี้"
+
+msgid "Repairing was canceled"
+msgstr "การซ่อมแซมถูกยกเลิก"
+
+#, c-format, boost-format
+msgid ""
+"\"%s\" will exceed 1 million faces after this subdivision, which may "
+"increase slicing time. Do you want to continue?"
+msgstr ""
+"\"%s\" จะมีเกิน 1 ล้านผิวหน้าหลังจากการแบ่งย่อยนี้ ซึ่งอาจเพิ่มเวลาการแบ่งส่วน "
+"คุณต้องการดำเนินการต่อหรือไม่?"
+
+#, c-format, boost-format
+msgid "\"%s\" part's mesh contains errors. Please repair it first."
+msgstr "mesh ของส่วน \"%s\" มีข้อผิดพลาด กรุณาซ่อมแซมก่อน."
+
+msgid "Additional process preset"
+msgstr "การตั้งค่าล่วงหน้าของกระบวนการเพิ่มไส้ใน"
+
+msgid "Remove parameter"
+msgstr "ลบพารามิเตอร์"
+
+msgid "to"
+msgstr "ถึง"
+
+msgid "Remove height range"
+msgstr "ลบช่วงความสูง"
+
+msgid "Add height range"
+msgstr "เพิ่มช่วงความสูง"
+
+msgid "Invalid numeric."
+msgstr "ตัวเลขไม่ถูกต้อง"
+
+msgid "One cell can only be copied to one or more cells in the same column."
+msgstr "สามารถคัดลอกเซลล์หนึ่งเซลล์ไปยังเซลล์ตั้งแต่หนึ่งเซลล์ขึ้นไปในคอลัมน์เดียวกันเท่านั้น"
+
+msgid "Copying multiple cells is not supported."
+msgstr "ไม่รองรับการคัดลอกหลายเซลล์"
+
+msgid "Outside"
+msgstr "ด้านนอก"
+
+msgid "Layer height"
+msgstr "ความสูงเลเยอร์"
+
+msgid "Wall loops"
+msgstr "จำนวนรอบผนัง"
+
+msgid "Infill density(%)"
+msgstr "ความหนาแน่นไส้ใน (%)"
+
+msgid "Auto Brim"
+msgstr "ขอบยึดชิ้นงาน อัตโนมัติ"
+
+msgid "Mouse ear"
+msgstr "หูหนู"
+
+msgid "Painted"
+msgstr "ทาสี"
+
+msgid "Outer brim only"
+msgstr "ขอบยึดชิ้นงานด้านนอกเท่านั้น"
+
+msgid "Inner brim only"
+msgstr "ขอบยึดชิ้นงานด้านในเท่านั้น"
+
+msgid "Outer and inner brim"
+msgstr "ขอบยึดชิ้นงานด้านนอกและด้านใน"
+
+msgid "No-brim"
+msgstr "ไม่มี ขอบยึดชิ้นงาน"
+
+msgid "Outer wall speed"
+msgstr "ความเร็วผนังด้านนอก"
+
+msgid "Plate"
+msgstr "ฐานพิมพ์"
+
+msgid "Brim"
+msgstr "ขอบยึดชิ้นงาน"
+
+msgid "Object/Part Settings"
+msgstr "การตั้งค่าวัตถุ/ชิ้นส่วน"
+
+msgid "Reset parameter"
+msgstr "รีเซ็ตพารามิเตอร์"
+
+msgid "Multicolor Print"
+msgstr "พิมพ์หลากสี"
+
+msgid "Line Type"
+msgstr "ประเภทเส้น"
+
+#, c-format, boost-format
+msgid "1x1 Grid: %d mm"
+msgstr "1x1 ตาราง: %d มม"
+
+msgid "More"
+msgstr "เพิ่มเติม"
+
+msgid "Open Preferences."
+msgstr "เปิดการตั้งค่า"
+
+msgid "Open next tip."
+msgstr "เปิดเคล็ดลับถัดไป"
+
+msgid "Open Documentation in web browser."
+msgstr "เปิดเอกสารในเว็บเบราว์เซอร์"
+
+msgid "Color"
+msgstr "สี"
+
+msgid "Pause"
+msgstr "หยุดชั่วคราว"
+
+msgid "Template"
+msgstr "แม่แบบ"
+
+msgid "Custom"
+msgstr "กำหนดเอง"
+
+msgid "Pause:"
+msgstr "หยุดชั่วคราว:"
+
+msgid "Custom Template:"
+msgstr "เทมเพลตที่กำหนดเอง:"
+
+msgid "Custom G-code:"
+msgstr "รหัส G ที่กำหนดเอง:"
+
+msgid "Custom G-code"
+msgstr "รหัส G ที่กำหนดเอง"
+
+msgid "Enter Custom G-code used on current layer:"
+msgstr "ป้อนรหัส G ที่กำหนดเองที่ใช้ในเลเยอร์ปัจจุบัน:"
+
+msgid "Jump to Layer"
+msgstr "ข้ามไปที่เลเยอร์"
+
+msgid "Please enter the layer number"
+msgstr "กรุณากรอกหมายเลขชั้น"
+
+msgid "Add Pause"
+msgstr "เพิ่มการหยุดชั่วคราว"
+
+msgid "Insert a pause command at the beginning of this layer."
+msgstr "แทรกคำสั่งหยุดชั่วคราวที่จุดเริ่มต้นของเลเยอร์นี้"
+
+msgid "Add Custom G-code"
+msgstr "เพิ่มรหัส G ที่กำหนดเอง"
+
+msgid "Insert custom G-code at the beginning of this layer."
+msgstr "แทรก G-code ที่กำหนดเองที่จุดเริ่มต้นของเลเยอร์นี้"
+
+msgid "Add Custom Template"
+msgstr "เพิ่มเทมเพลตที่กำหนดเอง"
+
+msgid "Insert template custom G-code at the beginning of this layer."
+msgstr "แทรก G-code ที่กำหนดเองของเทมเพลตที่จุดเริ่มต้นของเลเยอร์นี้"
+
+msgid "Filament "
+msgstr "เส้นพลาสติก "
+
+msgid "Change filament at the beginning of this layer."
+msgstr "เปลี่ยนเส้นพลาสติกที่จุดเริ่มต้นของชั้นนี้"
+
+msgid "Delete Pause"
+msgstr "ลบการหยุดชั่วคราว"
+
+msgid "Delete Custom Template"
+msgstr "ลบเทมเพลตแบบกำหนดเอง"
+
+msgid "Edit Custom G-code"
+msgstr "แก้ไขรหัส G ที่กำหนดเอง"
+
+msgid "Delete Custom G-code"
+msgstr "ลบรหัส G แบบกำหนดเอง"
+
+msgid "Delete Filament Change"
+msgstr "ลบการเปลี่ยนแปลงเส้นพลาสติก"
+
+msgid "No printer"
+msgstr "ไม่มีเครื่องพิมพ์"
+
+msgid "..."
+msgstr "..."
+
+msgid "Failed to connect to the server"
+msgstr "ไม่สามารถเชื่อมต่อกับเซิร์ฟเวอร์"
+
+msgid "Check the status of current system services"
+msgstr "ตรวจสอบสถานะของบริการระบบปัจจุบัน"
+
+msgid "code"
+msgstr "รหัส"
+
+msgid "Failed to connect to cloud service"
+msgstr "เชื่อมต่อบริการคลาวด์ไม่สำเร็จ"
+
+msgid "Please click on the hyperlink above to view the cloud service status"
+msgstr "โปรดคลิกที่ไฮเปอร์ลิงก์ด้านบนเพื่อดูสถานะบริการคลาวด์"
+
+msgid "Failed to connect to the printer"
+msgstr "เชื่อมต่อเครื่องพิมพ์ไม่สำเร็จ"
+
+msgid "Connection to printer failed"
+msgstr "การเชื่อมต่อเครื่องพิมพ์ล้มเหลว"
+
+msgid "Please check the network connection of the printer and Orca."
+msgstr "โปรดตรวจสอบการเชื่อมต่อเครือข่ายของเครื่องพิมพ์และ Orca"
+
+msgid "Connecting..."
+msgstr "กำลังเชื่อมต่อ..."
+
+msgid "Auto Refill"
+msgstr "เติมเส้นอัตโนมัติ"
+
+msgid "Load"
+msgstr "โหลด"
+
+msgid "Unload"
+msgstr "ถอนเส้น"
+
+msgid ""
+"Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically "
+"load or unload filaments."
+msgstr ""
+"เลือกช่อง AMS จากนั้นกดปุ่ม \"โหลด\" หรือ \"ยกเลิกการโหลด\" "
+"เพื่อโหลดหรือยกเลิกการโหลดฟิลาเมนต์โดยอัตโนมัติ"
+
+msgid ""
+"Filament type is unknown which is required to perform this action. Please "
+"set target filament's informations."
+msgstr ""
+"ไม่ทราบประเภทเส้นพลาสติกซึ่งจำเป็นต่อการดำเนินการนี้ กรุณาตั้งค่าข้อมูลของเส้นพลาสติกเป้าหมาย"
+
+msgid ""
+"Changing fan speed during printing may affect print quality, please choose "
+"carefully."
+msgstr ""
+"การเปลี่ยนความเร็วพัดลมระหว่างการพิมพ์อาจส่งผลต่อคุณภาพการพิมพ์ โปรดเลือกอย่างระมัดระวัง"
+
+msgid "Change Anyway"
+msgstr "เปลี่ยนยังไงก็ได้"
+
+msgid "Off"
+msgstr "ปิด"
+
+msgid "Filter"
+msgstr "กรอง"
+
+msgid ""
+"Enabling filtration redirects the right fan to filter gas, which may reduce "
+"cooling performance."
+msgstr ""
+"การเปิดใช้งานการกรองจะเปลี่ยนเส้นทางพัดลมที่เหมาะสมไปกรองก๊าซ "
+"ซึ่งอาจลดประสิทธิภาพการทำความเย็น"
+
+msgid ""
+"Enabling filtration during printing may reduce cooling and affect print "
+"quality. Please choose carefully."
+msgstr ""
+"การเปิดใช้งานการกรองระหว่างการพิมพ์อาจลดความเย็นและส่งผลต่อคุณภาพการพิมพ์ "
+"โปรดเลือกอย่างระมัดระวัง"
+
+msgid ""
+"The selected material only supports the current fan mode, and it can't be "
+"changed during printing."
+msgstr ""
+"วัสดุที่เลือกรองรับเฉพาะโหมดพัดลมปัจจุบันเท่านั้น และไม่สามารถเปลี่ยนแปลงได้ในระหว่างการพิมพ์"
+
+msgid "Cooling"
+msgstr "การระบายความร้อน"
+
+msgid "Heating"
+msgstr "กำลังทำความร้อน"
+
+msgid "Exhaust"
+msgstr "ระบายอากาศ"
+
+msgid "Full Cooling"
+msgstr "ระบายความร้อนเต็มที่"
+
+msgid "Init"
+msgstr "เริ่มต้น"
+
+msgid "Chamber"
+msgstr "ห้องพิมพ์"
+
+msgid "Innerloop"
+msgstr "อินเนอร์ลูป"
+
+#. TRN To be shown in the main menu View->Top
+msgid "Top"
+msgstr "บน"
+
+msgid ""
+"The fan controls the temperature during printing to improve print quality. "
+"The system automatically adjusts the fan's switch and speed according to "
+"different printing materials."
+msgstr ""
+"พัดลมจะควบคุมอุณหภูมิระหว่างการพิมพ์เพื่อปรับปรุงคุณภาพการพิมพ์ "
+"ระบบจะปรับสวิตช์และความเร็วของพัดลมโดยอัตโนมัติตามวัสดุการพิมพ์ที่แตกต่างกัน"
+
+msgid ""
+"Cooling mode is suitable for printing PLA/PETG/TPU materials and filters the "
+"chamber air."
+msgstr "โหมดทำความเย็นเหมาะสำหรับการพิมพ์วัสดุ PLA/PETG/TPU และกรองอากาศในห้อง"
+
+msgid ""
+"Heating mode is suitable for printing ABS/ASA/PC/PA materials and circulates "
+"filters the chamber air."
+msgstr ""
+"โหมดทำความร้อนเหมาะสำหรับการพิมพ์วัสดุ ABS/ASA/PC/PA และหมุนเวียนตัวกรองอากาศในห้อง"
+
+msgid ""
+"Strong cooling mode is suitable for printing PLA/TPU materials. In this "
+"mode, the printouts will be fully cooled."
+msgstr ""
+"โหมดระบายความร้อนสูงเหมาะสำหรับการพิมพ์วัสดุ PLA/TPU ในโหมดนี้ "
+"งานพิมพ์จะถูกระบายความร้อนเต็มที่"
+
+msgid "Cooling mode is suitable for printing PLA/PETG/TPU materials."
+msgstr "โหมดทำความเย็นเหมาะสำหรับการพิมพ์วัสดุ PLA/PETG/TPU"
+
+msgctxt "air_duct"
+msgid "Right(Aux)"
+msgstr "ขวา(AUX)"
+
+msgctxt "air_duct"
+msgid "Right(Filter)"
+msgstr "ขวา(ตัวกรอง)"
+
+msgctxt "air_duct"
+msgid "Left(Aux)"
+msgstr "ซ้าย(เสริม)"
+
+msgid "Hotend"
+msgstr "ฮอตเอนด์"
+
+msgid "Parts"
+msgstr "ชิ้นส่วน"
+
+msgid "Aux"
+msgstr "เสริม"
+
+msgid "Nozzle1"
+msgstr "หัวฉีด1"
+
+msgid "MC Board"
+msgstr "บอร์ด MC"
+
+msgid "Heat"
+msgstr "ทำความร้อน"
+
+msgid "Fan"
+msgstr "พัดลม"
+
+msgid "Idling..."
+msgstr "ว่าง..."
+
+msgid "Heat the nozzle"
+msgstr "อุ่นหัวฉีด"
+
+msgid "Cut filament"
+msgstr "ตัดเส้นพลาสติก"
+
+msgid "Pull back current filament"
+msgstr "ดึงไส้ปัจจุบันกลับ"
+
+msgid "Push new filament into extruder"
+msgstr "ดันเส้นพลาสติกใหม่เข้าไปในชุดดันเส้น"
+
+msgid "Grab new filament"
+msgstr "คว้าเส้นพลาสติกใหม่"
+
+msgid "Purge old filament"
+msgstr "ล้างเส้นพลาสติกเก่า"
+
+msgid "Confirm extruded"
+msgstr "ยืนยันการอัดขึ้นรูป"
+
+msgid "Check filament location"
+msgstr "ตรวจสอบตำแหน่งของเส้นพลาสติก"
+
+msgid "The maximum temperature cannot exceed "
+msgstr "อุณหภูมิสูงสุดต้องไม่เกิน "
+
+msgid "The minmum temperature should not be less than "
+msgstr "อุณหภูมิต่ำสุดไม่ควรต่ำกว่า"
+
+msgid ""
+"All the selected objects are on a locked plate.\n"
+"Cannot auto-arrange these objects."
+msgstr ""
+"วัตถุที่เลือกทั้งหมดอยู่บนแผ่นล็อค\n"
+"ไม่สามารถจัดเรียงวัตถุเหล่านี้โดยอัตโนมัติ"
+
+msgid "No arrangeable objects are selected."
+msgstr "ไม่มีการเลือกวัตถุที่สามารถจัดเรียงได้"
+
+msgid ""
+"This plate is locked.\n"
+"Cannot auto-arrange on this plate."
+msgstr ""
+"จานนี้ถูกล็อค\n"
+"ไม่สามารถจัดเรียงอัตโนมัติบนจานนี้ได้"
+
+msgid "Arranging..."
+msgstr "กำลังจัด..."
+
+msgid "Arranging"
+msgstr "การจัด"
+
+msgid "Arranging canceled."
+msgstr "ยกเลิกการจัดเตรียมแล้ว"
+
+msgid ""
+"Arranging is done but there are unpacked items. Reduce spacing and try again."
+msgstr "จัดเตรียมของเสร็จแต่มีของที่แกะออกมา ลดระยะห่างแล้วลองอีกครั้ง"
+
+msgid "Arranging done."
+msgstr "จัดการเรียบร้อยแล้ว."
+
+msgid ""
+"Arrange failed. Found some exceptions when processing object geometries."
+msgstr "การจัดเรียงล้มเหลว พบข้อยกเว้นบางประการเมื่อประมวลผลรูปทรงของวัตถุ"
+
+#, c-format, boost-format
+msgid ""
+"Arrangement ignored the following objects which can't fit into a single "
+"bed:\n"
+"%s"
+msgstr ""
+"การจัดวางจะละเลยวัตถุต่อไปนี้ซึ่งไม่สามารถบรรจุลงในฐานพิมพ์เดี่ยวได้:\n"
+"%s"
+
+msgid ""
+"All the selected objects are on a locked plate.\n"
+"Cannot auto-orient these objects."
+msgstr ""
+"วัตถุที่เลือกทั้งหมดอยู่บนแผ่นล็อค\n"
+"ไม่สามารถปรับทิศทางวัตถุเหล่านี้ได้โดยอัตโนมัติ"
+
+msgid ""
+"This plate is locked.\n"
+"Cannot auto-orient on this plate."
+msgstr ""
+"จานนี้ถูกล็อค\n"
+"ไม่สามารถปรับทิศทางอัตโนมัติบนจานนี้ได้"
+
+msgid "Orienting..."
+msgstr "กำลังปรับทิศทาง..."
+
+msgid "Orienting"
+msgstr "การวางแนว"
+
+msgid "Orienting canceled."
+msgstr "ยกเลิกการปฐมนิเทศแล้ว"
+
+msgid "Filling"
+msgstr "กำลังเติม"
+
+msgid "Bed filling canceled."
+msgstr "การเติมฐานพิมพ์ถูกยกเลิก"
+
+msgid "Bed filling done."
+msgstr "การเติมฐานพิมพ์เสร็จสิ้น"
+
+msgid "Searching for optimal orientation"
+msgstr "กำลังค้นหาการวางแนวที่เหมาะสมที่สุด"
+
+msgid "Orientation search canceled."
+msgstr "การค้นหาการวางแนวถูกยกเลิก"
+
+msgid "Orientation found."
+msgstr "พบการวางแนว"
+
+msgid "Logging in"
+msgstr "เข้าสู่ระบบ"
+
+msgid "Login failed"
+msgstr "การเข้าสู่ระบบล้มเหลว"
+
+msgid "Please check the printer network connection."
+msgstr "โปรดตรวจสอบการเชื่อมต่อเครือข่ายเครื่องพิมพ์"
+
+msgid "Abnormal print file data. Please slice again."
+msgstr "ข้อมูลไฟล์การพิมพ์ผิดปกติ กรุณาสไลซ์อีกครั้ง."
+
+msgid "Task canceled."
+msgstr "ยกเลิกงานแล้ว"
+
+msgid "Upload task timed out. Please check the network status and try again."
+msgstr "งานอัปโหลดหมดเวลา โปรดตรวจสอบสถานะเครือข่ายแล้วลองอีกครั้ง"
+
+msgid "Cloud service connection failed. Please try again."
+msgstr "การเชื่อมต่อบริการคลาวด์ล้มเหลว โปรดลองอีกครั้ง"
+
+msgid "Print file not found. Please slice again."
+msgstr "ไม่พบไฟล์การพิมพ์ กรุณาสไลซ์อีกครั้ง."
+
+msgid ""
+"The print file exceeds the maximum allowable size (1GB). Please simplify the "
+"model and slice again."
+msgstr "ไฟล์พิมพ์เกินขนาดสูงสุดที่อนุญาต (1GB) โปรดทำให้โมเดลง่ายขึ้นและแบ่งส่วนอีกครั้ง"
+
+msgid "Failed to send the print job. Please try again."
+msgstr "ไม่สามารถส่งงานพิมพ์ได้ โปรดลองอีกครั้ง"
+
+msgid "Failed to upload file to ftp. Please try again."
+msgstr "ไม่สามารถอัปโหลดไฟล์ไปยัง ftp โปรดลองอีกครั้ง"
+
+msgid ""
+"Check the current status of the bambu server by clicking on the link above."
+msgstr "ตรวจสอบสถานะปัจจุบันของเซิร์ฟเวอร์ bambu โดยคลิกที่ลิงค์ด้านบน"
+
+msgid ""
+"The size of the print file is too large. Please adjust the file size and try "
+"again."
+msgstr "ขนาดของไฟล์การพิมพ์ใหญ่เกินไป โปรดปรับขนาดไฟล์แล้วลองอีกครั้ง"
+
+msgid "Print file not found, please slice it again and send it for printing."
+msgstr "ไม่พบไฟล์พิมพ์ โปรดสไลซ์อีกครั้งและส่งไปพิมพ์"
+
+msgid ""
+"Failed to upload print file to FTP. Please check the network status and try "
+"again."
+msgstr "ไม่สามารถอัปโหลดไฟล์พิมพ์ไปยัง FTP โปรดตรวจสอบสถานะเครือข่ายแล้วลองอีกครั้ง"
+
+msgid "Sending print job over LAN"
+msgstr "การส่งงานพิมพ์ผ่าน LAN"
+
+msgid "Sending print job through cloud service"
+msgstr "การส่งงานพิมพ์ผ่านบริการคลาวด์"
+
+msgid "Print task sending times out."
+msgstr "งานพิมพ์หมดเวลาส่งงาน"
+
+msgid "Service Unavailable"
+msgstr "บริการไม่พร้อมใช้งาน"
+
+msgid "Unknown Error."
+msgstr "ข้อผิดพลาดไม่ทราบสาเหตุ"
+
+msgid "Sending print configuration"
+msgstr "กำลังส่งการกำหนดค่าการพิมพ์"
+
+#, c-format, boost-format
+msgid "Successfully sent. Will automatically jump to the device page in %ss"
+msgstr "ส่งเรียบร้อยแล้ว. จะข้ามไปที่หน้าอุปกรณ์โดยอัตโนมัติใน %ss"
+
+#, c-format, boost-format
+msgid "Successfully sent. Will automatically jump to the next page in %ss"
+msgstr "ส่งเรียบร้อยแล้ว. จะข้ามไปยังหน้าถัดไปโดยอัตโนมัติใน %ss"
+
+#, c-format, boost-format
+msgid "Access code:%s IP address:%s"
+msgstr "รหัสเข้าถึง:%s ที่อยู่ IP:%s"
+
+msgid "A Storage needs to be inserted before printing via LAN."
+msgstr "ต้องใส่ที่เก็บข้อมูลก่อนที่จะพิมพ์ผ่าน LAN"
+
+msgid ""
+"Sending print job over LAN, but the Storage in the printer is abnormal and "
+"print-issues may be caused by this."
+msgstr ""
+"การส่งงานพิมพ์ผ่าน LAN แต่ที่เก็บข้อมูลในเครื่องพิมพ์ผิดปกติและปัญหาการพิมพ์อาจมีสาเหตุจากสิ่งนี้"
+
+msgid ""
+"The Storage in the printer is abnormal. Please replace it with a normal "
+"Storage before sending print job to printer."
+msgstr ""
+"พื้นที่จัดเก็บข้อมูลในเครื่องพิมพ์ผิดปกติ โปรดแทนที่ด้วยที่เก็บข้อมูลปกติก่อนที่จะส่งงานพิมพ์ไปยังเครื่องพิมพ์"
+
+msgid ""
+"The Storage in the printer is read-only. Please replace it with a normal "
+"Storage before sending print job to printer."
+msgstr ""
+"ที่เก็บข้อมูลในเครื่องพิมพ์เป็นแบบอ่านอย่างเดียว "
+"โปรดแทนที่ด้วยที่เก็บข้อมูลปกติก่อนที่จะส่งงานพิมพ์ไปยังเครื่องพิมพ์"
+
+msgid "Encountered an unknown error with the Storage status. Please try again."
+msgstr "พบข้อผิดพลาดที่ไม่ทราบสาเหตุเกี่ยวกับสถานะการจัดเก็บ โปรดลองอีกครั้ง"
+
+msgid "Sending G-code file over LAN"
+msgstr "การส่งไฟล์ G-code ผ่าน LAN"
+
+msgid "Sending G-code file to SD card"
+msgstr "กำลังส่งไฟล์ G-code ไปยังการ์ด SD"
+
+#, c-format, boost-format
+msgid "Successfully sent. Close current page in %s s"
+msgstr "ส่งสำเร็จ หน้านี้จะปิดใน %s วินาที"
+
+msgid "Storage needs to be inserted before sending to printer."
+msgstr "ต้องใส่ที่เก็บข้อมูลก่อนที่จะส่งไปยังเครื่องพิมพ์"
+
+msgid ""
+"Sending G-code file over LAN, but the Storage in the printer is abnormal and "
+"print-issues may be caused by this."
+msgstr ""
+"กำลังส่งไฟล์ G-code ผ่าน LAN "
+"แต่ที่เก็บข้อมูลในเครื่องพิมพ์ผิดปกติและปัญหาการพิมพ์อาจมีสาเหตุจากสิ่งนี้"
+
+msgid ""
+"The Storage in the printer is abnormal. Please replace it with a normal "
+"Storage before sending to printer."
+msgstr "พื้นที่จัดเก็บข้อมูลในเครื่องพิมพ์ผิดปกติ โปรดแทนที่ด้วยที่เก็บข้อมูลปกติก่อนที่จะส่งไปยังเครื่องพิมพ์"
+
+msgid ""
+"The Storage in the printer is read-only. Please replace it with a normal "
+"Storage before sending to printer."
+msgstr ""
+"ที่เก็บข้อมูลในเครื่องพิมพ์เป็นแบบอ่านอย่างเดียว "
+"โปรดแทนที่ด้วยที่เก็บข้อมูลปกติก่อนที่จะส่งไปยังเครื่องพิมพ์"
+
+msgid "Bad input data for EmbossCreateObjectJob."
+msgstr "ข้อมูลอินพุตไม่ถูกต้องสำหรับ EmbossCreateObjectJob"
+
+msgid "Add Emboss text object"
+msgstr "เพิ่มวัตถุข้อความนูน"
+
+msgid "Bad input data for EmbossUpdateJob."
+msgstr "ข้อมูลอินพุตไม่ถูกต้องสำหรับ EmbossUpdateJob"
+
+msgid "Created text volume is empty. Change text or font."
+msgstr "ปริมาณข้อความที่สร้างว่างเปล่า เปลี่ยนข้อความหรือแบบอักษร"
+
+msgid "Bad input data for CreateSurfaceVolumeJob."
+msgstr "ข้อมูลอินพุตไม่ถูกต้องสำหรับ CreateSurfaceVolumeJob"
+
+msgid "Bad input data for UseSurfaceJob."
+msgstr "ข้อมูลอินพุตไม่ถูกต้องสำหรับ UseSurfaceJob"
+
+#. TRN: This is the title of the action appearing in undo/redo stack.
+#. It is same for Text and SVG.
+msgid "Emboss attribute change"
+msgstr "การเปลี่ยนแปลงคุณลักษณะนูน"
+
+msgid "Add Emboss text Volume"
+msgstr "เพิ่มปริมาณข้อความลายนูน"
+
+msgid "Font doesn't have any shape for given text."
+msgstr "แบบอักษรไม่มีรูปร่างสำหรับข้อความที่กำหนด"
+
+msgid "There is no valid surface for text projection."
+msgstr "ไม่มีพื้นผิวที่ถูกต้องสำหรับการฉายข้อความ"
+
+msgid "Thermal Preconditioning for first layer optimization"
+msgstr "การปรับสภาพล่วงหน้าด้วยความร้อนเพื่อการเพิ่มประสิทธิภาพชั้นแรก"
+
+msgid "Remaining time: Calculating..."
+msgstr "เวลาที่เหลืออยู่: กำลังคำนวณ..."
+
+msgid ""
+"The heated bed's thermal preconditioning helps optimize the first layer "
+"print quality. Printing will start once preconditioning is complete."
+msgstr ""
+"การปรับสภาพความร้อนล่วงหน้าของฐานพิมพ์อุ่นช่วยปรับคุณภาพการพิมพ์ชั้นแรกให้เหมาะสมที่สุด "
+"การพิมพ์จะเริ่มขึ้นเมื่อการปรับสภาพเบื้องต้นเสร็จสิ้น"
+
+#, c-format, boost-format
+msgid "Remaining time: %dmin%ds"
+msgstr "เวลาที่เหลือ: %d นาที %d วินาที"
+
+msgid "Importing SLA archive"
+msgstr "การนำเข้าไฟล์เก็บถาวร SLA"
+
+msgid ""
+"The SLA archive doesn't contain any presets. Please activate some SLA "
+"printer preset first before importing that SLA archive."
+msgstr ""
+"ไฟล์เก็บถาวร SLA ไม่มีการตั้งค่าล่วงหน้าใดๆ โปรดเปิดใช้งานเครื่องพิมพ์ SLA "
+"ที่ตั้งไว้ล่วงหน้าก่อนที่จะนำเข้าไฟล์เก็บถาวร SLA นั้น"
+
+msgid "Importing canceled."
+msgstr "การนำเข้าถูกยกเลิก"
+
+msgid "Importing done."
+msgstr "นำเข้าเรียบร้อยแล้ว"
+
+msgid ""
+"The imported SLA archive did not contain any presets. The current SLA "
+"presets were used as fallback."
+msgstr ""
+"ไฟล์เก็บถาวร SLA ที่นำเข้าไม่มีการตั้งค่าล่วงหน้าใดๆ ค่าที่ตั้งไว้ล่วงหน้าของ SLA "
+"ปัจจุบันถูกใช้เป็นทางเลือก"
+
+msgid "You cannot load SLA project with a multi-part object on the bed"
+msgstr "คุณไม่สามารถโหลดโครงการ SLA ที่มีวัตถุหลายส่วนบนฐานพิมพ์ได้"
+
+msgid "Please check your object list before preset changing."
+msgstr "โปรดตรวจสอบรายการวัตถุของคุณก่อนที่จะเปลี่ยนค่าที่ตั้งล่วงหน้า"
+
+msgid "Attention!"
+msgstr "โปรดทราบ!"
+
+msgid "Downloading"
+msgstr "กำลังดาวน์โหลด"
+
+msgid "Download failed"
+msgstr "ดาวน์โหลดล้มเหลว"
+
+msgid "Canceled"
+msgstr "ยกเลิกแล้ว"
+
+msgid "Installed successfully"
+msgstr "ติดตั้งสำเร็จ"
+
+msgid "Installing"
+msgstr "กำลังติดตั้ง"
+
+msgid "Install failed"
+msgstr "ติดตั้งล้มเหลว"
+
+msgid "Portions copyright"
+msgstr "ลิขสิทธิ์บางส่วน"
+
+msgid "Copyright"
+msgstr "ลิขสิทธิ์"
+
+msgid "License"
+msgstr "ใบอนุญาต"
+
+msgid "Orca Slicer is licensed under "
+msgstr "Orca Slicer ได้รับอนุญาตภายใต้"
+
+msgid "GNU Affero General Public License, version 3"
+msgstr "ใบอนุญาตสาธารณะทั่วไปของ GNU Affero เวอร์ชัน 3"
+
+msgid "Orca Slicer is based on PrusaSlicer and BambuStudio"
+msgstr "Orca Slicer ขึ้นอยู่กับ PrusaSlicer และ BambuStudio"
+
+msgid "Libraries"
+msgstr "ห้องสมุด"
+
+msgid ""
+"This software uses open source components whose copyright and other "
+"proprietary rights belong to their respective owners"
+msgstr ""
+"ซอฟต์แวร์นี้ใช้ส่วนประกอบโอเพ่นซอร์สซึ่งมีลิขสิทธิ์และกรรมสิทธิ์อื่น ๆ เป็นของเจ้าของที่เกี่ยวข้อง"
+
+#, c-format, boost-format
+msgid "About %s"
+msgstr "เกี่ยวกับ %s"
+
+msgid ""
+"Open-source slicing stands on a tradition of collaboration and attribution. "
+"Slic3r, created by Alessandro Ranellucci and the RepRap community, laid the "
+"foundation. PrusaSlicer by Prusa Research built on that work, Bambu Studio "
+"forked from PrusaSlicer, and SuperSlicer extended it with community-driven "
+"enhancements. Each project carried the work of its predecessors forward, "
+"crediting those who came before."
+msgstr ""
+"การแบ่งส่วนโอเพ่นซอร์สยืนหยัดบนพื้นฐานของการทำงานร่วมกันและการระบุแหล่งที่มา Slic3r "
+"ซึ่งสร้างโดย Alessandro Ranellucci และชุมชน RepRap ได้วางรากฐาน PrusaSlicer โดย "
+"Prusa Research สร้างขึ้นจากผลงานดังกล่าว Bambu Studio แยกจาก PrusaSlicer และ "
+"SuperSlicer ได้ขยายขอบเขตด้วยการปรับปรุงที่ขับเคลื่อนโดยชุมชน "
+"แต่ละโครงการได้สานต่องานของรุ่นก่อนไปข้างหน้า โดยให้เครดิตผู้ที่มาก่อนหน้านี้"
+
+msgid ""
+"OrcaSlicer began in that same spirit, drawing from PrusaSlicer, BambuStudio, "
+"SuperSlicer, and CuraSlicer. But it has since grown far beyond its origins — "
+"introducing advanced calibration tools, precise wall and seam control and "
+"hundreds of other features."
+msgstr ""
+"OrcaSlicer เริ่มต้นด้วยจิตวิญญาณเดียวกัน โดยวาดจาก PrusaSlicer, BambuStudio, "
+"SuperSlicer และ CuraSlicer แต่ตั้งแต่นั้นเป็นต้นมามันก็เติบโตไปไกลเกินกว่าต้นกำเนิด "
+"โดยนำเสนอเครื่องมือสอบเทียบขั้นสูง การควบคุมผนังและรอยตะเข็บที่แม่นยำ และคุณสมบัติอื่น ๆ "
+"หลายร้อยรายการ"
+
+msgid ""
+"Today, OrcaSlicer is the most widely used and actively developed open-source "
+"slicer in the 3D printing community. Many of its innovations have been "
+"adopted by other slicers, making it a driving force for the entire industry."
+msgstr ""
+"ปัจจุบัน OrcaSlicer "
+"เป็นตัวแบ่งส่วนข้อมูลแบบโอเพ่นซอร์สที่ใช้กันอย่างแพร่หลายและได้รับการพัฒนาอย่างแข็งขันที่สุดในชุมชนการพิมพ์ "
+"3 มิติ นวัตกรรมหลายอย่างของบริษัทได้ถูกนำไปใช้โดยตัวแบ่งส่วนข้อมูลอื่นๆ "
+"ทำให้สิ่งนี้เป็นแรงผลักดันสำหรับอุตสาหกรรมทั้งหมด"
+
+msgid "Version"
+msgstr "เวอร์ชัน"
+
+msgid "AMS Materials Setting"
+msgstr "การตั้งค่าวัสดุ AMS"
+
+msgid "Confirm"
+msgstr "ยืนยัน"
+
+msgid "Close"
+msgstr "ปิด"
+
+msgid ""
+"Nozzle\n"
+"Temperature"
+msgstr ""
+"หัวฉีด\n"
+"อุณหภูมิ"
+
+msgid "max"
+msgstr "สูงสุด"
+
+msgid "min"
+msgstr "ต่ำสุด"
+
+#, boost-format
+msgid "The input value should be greater than %1% and less than %2%"
+msgstr "ค่าอินพุตควรมากกว่า %1% และน้อยกว่า %2%"
+
+msgid "SN"
+msgstr "ส.น"
+
+msgid "Factors of Flow Dynamics Calibration"
+msgstr "ปัจจัยของการสอบเทียบโฟลว์ไดนามิกส์"
+
+msgid "PA Profile"
+msgstr "โปรไฟล์ PA"
+
+msgid "Factor K"
+msgstr "ปัจจัยเค"
+
+msgid "Factor N"
+msgstr "ปัจจัย N"
+
+msgid "Setting AMS slot information while printing is not supported"
+msgstr "ไม่รองรับการตั้งค่าข้อมูลสล็อต AMS ขณะพิมพ์"
+
+msgid "Setting Virtual slot information while printing is not supported"
+msgstr "ไม่รองรับการตั้งค่าข้อมูลสล็อตเสมือนขณะพิมพ์"
+
+msgid "Are you sure you want to clear the filament information?"
+msgstr "คุณแน่ใจหรือไม่ว่าต้องการล้างข้อมูลฟิลาเมนต์"
+
+msgid "You need to select the material type and color first."
+msgstr "คุณต้องเลือกประเภทวัสดุและสีก่อน"
+
+#, c-format, boost-format
+msgid "Please input a valid value (K in %.1f~%.1f)"
+msgstr "โปรดป้อนค่าที่ถูกต้อง (K อยู่ในช่วง %.1f~%.1f)"
+
+#, c-format, boost-format
+msgid "Please input a valid value (K in %.1f~%.1f, N in %.1f~%.1f)"
+msgstr "โปรดป้อนค่าที่ถูกต้อง (K ใน %.1f~%.1f, N ใน %.1f~%.1f)"
+
+msgid ""
+"The nozzle flow is not set. Please set the nozzle flow rate before editing "
+"the filament.\n"
+"'Device -> Print parts'"
+msgstr ""
+"ไม่ได้ตั้งค่าการไหลของหัวฉีด โปรดตั้งค่าอัตราการไหลของหัวฉีดก่อนที่จะแก้ไขเส้นพลาสติก\n"
+"'อุปกรณ์ -> พิมพ์ชิ้นส่วน'"
+
+msgid "AMS"
+msgstr "AMS"
+
+msgid "Other Color"
+msgstr "สีอื่น"
+
+msgid "Custom Color"
+msgstr "สีกำหนดเอง"
+
+msgid "Dynamic flow calibration"
+msgstr "ปรับเทียบการไหลแบบไดนามิก"
+
+msgid ""
+"The nozzle temp and max volumetric speed will affect the calibration "
+"results. Please fill in the same values as the actual printing. They can be "
+"auto-filled by selecting a filament preset."
+msgstr ""
+"อุณหภูมิหัวฉีดและความเร็วปริมาตรสูงสุดจะส่งผลต่อผลการสอบเทียบ "
+"กรุณากรอกค่าเดียวกันกับการพิมพ์จริง สามารถไส้ในเส้นได้อัตโนมัติโดยเลือกค่าเส้นสายที่ตั้งไว้ล่วงหน้า"
+
+msgid "Nozzle Diameter"
+msgstr "เส้นผ่านศูนย์กลางหัวฉีด"
+
+msgid "Bed Type"
+msgstr "ชนิดฐานพิมพ์"
+
+msgid "Nozzle temperature"
+msgstr "อุณหภูมิหัวฉีด"
+
+msgid "Bed Temperature"
+msgstr "อุณหภูมิฐานพิมพ์"
+
+msgid "Max volumetric speed"
+msgstr "ความเร็วปริมาตรสูงสุด"
+
+msgid "℃"
+msgstr "℃"
+
+msgid "Bed temperature"
+msgstr "อุณหภูมิฐานพิมพ์"
+
+msgid "mm³"
+msgstr "มม.³"
+
+msgid "Start calibration"
+msgstr "เริ่มปรับเทียบ"
+
+msgid "Next"
+msgstr "ถัดไป"
+
+msgid ""
+"Calibration completed. Please find the most uniform extrusion line on your "
+"hot bed like the picture below, and fill the value on its left side into the "
+"factor K input box."
+msgstr ""
+"การสอบเทียบเสร็จสิ้น โปรดค้นหาเส้นการอัดรีดที่สม่ำเสมอที่สุดบนฐานพิมพ์ร้อนของคุณดังภาพด้านล่าง "
+"และกรอกค่าทางด้านซ้ายลงในกล่องอินพุตแฟคเตอร์ K"
+
+msgid "Save"
+msgstr "บันทึก"
+
+msgid "Last Step"
+msgstr "ขั้นตอนสุดท้าย"
+
+msgid "Example"
+msgstr "ตัวอย่าง"
+
+#, c-format, boost-format
+msgid "Calibrating... %d%%"
+msgstr "กำลังปรับเทียบ... %d%%"
+
+msgid "Calibration completed"
+msgstr "ปรับเทียบเสร็จแล้ว"
+
+#, c-format, boost-format
+msgid "%s does not support %s"
+msgstr "%s ไม่รองรับ %s"
+
+msgid "Dynamic flow Calibration"
+msgstr "การสอบเทียบการไหลแบบไดนามิก"
+
+msgid "Step"
+msgstr "ขั้นตอน"
+
+msgid "Unmapped"
+msgstr "ไม่ได้แมป"
+
+msgid ""
+"Upper half area: Original\n"
+"Lower half area: The filament from original project will be used when "
+"unmapped.\n"
+"And you can click it to modify"
+msgstr ""
+"พื้นที่ครึ่งบน: ต้นฉบับ\n"
+"พื้นที่ครึ่งล่าง: เส้นพลาสติกจากโปรเจ็กต์ดั้งเดิมจะถูกใช้เมื่อไม่ได้แมป\n"
+"และคุณสามารถคลิกเพื่อแก้ไขได้"
+
+msgid ""
+"Upper half area: Original\n"
+"Lower half area: Filament in AMS\n"
+"And you can click it to modify"
+msgstr ""
+"พื้นที่ครึ่งบน: ต้นฉบับ\n"
+"บริเวณครึ่งล่าง: เส้นพลาสติกใน AMS\n"
+"และคุณสามารถคลิกเพื่อแก้ไขได้"
+
+msgid ""
+"Upper half area: Original\n"
+"Lower half area: Filament in AMS\n"
+"And you cannot click it to modify"
+msgstr ""
+"พื้นที่ครึ่งบน: ต้นฉบับ\n"
+"บริเวณครึ่งล่าง: เส้นพลาสติกใน AMS\n"
+"และคุณไม่สามารถคลิกเพื่อแก้ไขได้"
+
+msgid "AMS Slots"
+msgstr "สล็อต AMS"
+
+msgid "Please select from the following filaments"
+msgstr "กรุณาเลือกจากเส้นพลาสติกต่อไปนี้"
+
+msgid "Select filament that installed to the left nozzle"
+msgstr "เลือกเส้นพลาสติกที่ติดตั้งไว้ที่หัวฉีดด้านซ้าย"
+
+msgid "Select filament that installed to the right nozzle"
+msgstr "เลือกเส้นพลาสติกที่ติดตั้งไว้ที่หัวฉีดด้านขวา"
+
+msgid "Left AMS"
+msgstr "AMS ซ้าย"
+
+msgid "External"
+msgstr "ภายนอก"
+
+msgid "Reset current filament mapping"
+msgstr "รีเซ็ตการแมปเส้นพลาสติกปัจจุบัน"
+
+msgid "Right AMS"
+msgstr "AMS ขวา"
+
+msgid "Left Nozzle"
+msgstr "หัวฉีดซ้าย"
+
+msgid "Right Nozzle"
+msgstr "หัวฉีดขวา"
+
+msgid "Nozzle"
+msgstr "หัวฉีด"
+
+#, c-format, boost-format
+msgid ""
+"Note: the filament type(%s) does not match with the filament type(%s) in the "
+"slicing file. If you want to use this slot, you can install %s instead of %s "
+"and change slot information on the 'Device' page."
+msgstr ""
+"หมายเหตุ: ประเภทเส้นพลาสติก (%s) ไม่ตรงกับประเภทเส้นพลาสติก (%s) ในไฟล์การแบ่งส่วน "
+"หากคุณต้องการใช้ช่องนี้ คุณสามารถติดตั้ง %s แทน %s และเปลี่ยนข้อมูลช่องบนหน้า 'อุปกรณ์'"
+
+#, c-format, boost-format
+msgid ""
+"Note: the slot is empty or undefined. If you want to use this slot, you can "
+"install %s and change slot information on the 'Device' page."
+msgstr ""
+"หมายเหตุ: ช่องว่างเปล่าหรือไม่ได้กำหนด หากคุณต้องการใช้ช่องนี้ คุณสามารถติดตั้ง %s "
+"และเปลี่ยนข้อมูลช่องได้ในหน้า 'อุปกรณ์'"
+
+msgid "Note: Only filament-loaded slots can be selected."
+msgstr "หมายเหตุ: สามารถเลือกได้เฉพาะช่องที่ใส่ฟิลาเมนท์เท่านั้น"
+
+msgid "Enable AMS"
+msgstr "เปิดใช้ AMS"
+
+msgid "Print with filaments in the AMS"
+msgstr "พิมพ์ด้วยเส้นพลาสติกในระบบ AMS"
+
+msgid "Disable AMS"
+msgstr "ปิดใช้ AMS"
+
+msgid "Print with the filament mounted on the back of chassis"
+msgstr "พิมพ์โดยติดฟิลาเมนท์ไว้ที่ด้านหลังของตัวเครื่อง"
+
+msgid ""
+"Please change the desiccant when it is too wet. The indicator may not "
+"represent accurately in following cases: when the lid is open or the "
+"desiccant pack is changed. It take hours to absorb the moisture, and low "
+"temperatures also slow down the process."
+msgstr ""
+"โปรดเปลี่ยนสารดูดความชื้นเมื่อเปียกเกินไป ตัวบ่งชี้อาจแสดงไม่ถูกต้องในกรณีต่อไปนี้: "
+"เมื่อเปิดฝาหรือเปลี่ยนชุดดูดความชื้น การดูดซับความชื้นใช้เวลาหลายชั่วโมง "
+"และอุณหภูมิที่ต่ำยังทำให้กระบวนการช้าลงอีกด้วย"
+
+msgid ""
+"Configure which AMS slot should be used for a filament used in the print job."
+msgstr "กำหนดค่าช่อง AMS ที่จะใช้สำหรับเส้นพลาสติกที่ใช้ในงานพิมพ์"
+
+msgid "Filament used in this print job"
+msgstr "เส้นพลาสติกที่ใช้ในงานพิมพ์นี้"
+
+msgid "AMS slot used for this filament"
+msgstr "ช่อง AMS ที่ใช้สำหรับเส้นพลาสติกนี้"
+
+msgid "Click to select AMS slot manually"
+msgstr "คลิกเพื่อเลือกช่อง AMS ด้วยตนเอง"
+
+msgid "Do not Enable AMS"
+msgstr "อย่าเปิดใช้งาน AMS"
+
+msgid "Print using materials mounted on the back of the case"
+msgstr "พิมพ์โดยใช้วัสดุที่ติดตั้งอยู่ที่ด้านหลังของเคส"
+
+msgid "Print with filaments in AMS"
+msgstr "พิมพ์ด้วยเส้นพลาสติกในระบบ AMS"
+
+msgid "Print with filaments mounted on the back of the chassis"
+msgstr "พิมพ์โดยใช้เส้นพลาสติกติดตั้งอยู่ที่ด้านหลังของตัวเครื่อง"
+
+msgid "Left"
+msgstr "ซ้าย"
+
+msgid "Right"
+msgstr "ขวา"
+
+msgid ""
+"When the current material run out, the printer will continue to print in the "
+"following order."
+msgstr "เมื่อวัสดุปัจจุบันหมด เครื่องพิมพ์จะพิมพ์ต่อตามลำดับต่อไปนี้"
+
+msgid "Identical filament: same brand, type and color."
+msgstr "เส้นพลาสติกเหมือนกัน: ยี่ห้อ ชนิด และสีเดียวกัน"
+
+msgid "Group"
+msgstr "กลุ่ม"
+
+msgid ""
+"When the current material runs out, the printer would use identical filament "
+"to continue printing."
+msgstr "เมื่อวัสดุที่ใช้ในปัจจุบันหมด เครื่องพิมพ์จะใช้เส้นพลาสติกที่เหมือนกันเพื่อพิมพ์ต่อ"
+
+msgid "The printer does not currently support auto refill."
+msgstr "ขณะนี้เครื่องพิมพ์ไม่รองรับการโหลดเส้นอัตโนมัติ"
+
+msgid ""
+"AMS filament backup is not enabled, please enable it in the AMS settings."
+msgstr "ไม่ได้เปิดใช้งานการสำรองข้อมูลเส้นพลาสติก AMS โปรดเปิดใช้งานในการตั้งค่า AMS"
+
+msgid ""
+"When the current filament runs out, the printer will use identical filament "
+"to continue printing.\n"
+"*Identical filament: same brand, type and color."
+msgstr ""
+"เมื่อเส้นพลาสติกปัจจุบันหมด เครื่องพิมพ์จะใช้เส้นพลาสติกที่เหมือนกันเพื่อพิมพ์ต่อ\n"
+"*เส้นพลาสติกเหมือนกัน: ยี่ห้อ ประเภท และสีเดียวกัน"
+
+msgid "DRY"
+msgstr "แห้ง"
+
+msgid "WET"
+msgstr "ชื้น"
+
+msgid "AMS Settings"
+msgstr "การตั้งค่า AMS"
+
+msgid "Insertion update"
+msgstr "การอัพเดตการแทรก"
+
+msgid ""
+"The AMS will automatically read the filament information when inserting a "
+"new Bambu Lab filament. This takes about 20 seconds."
+msgstr ""
+"AMS จะอ่านข้อมูลเส้นพลาสติกโดยอัตโนมัติเมื่อใส่เส้นพลาสติก Bambu Lab ใหม่ This takes about "
+"20 seconds."
+
+msgid ""
+"Note: if a new filament is inserted during printing, the AMS will not "
+"automatically read any information until printing is completed."
+msgstr ""
+"หมายเหตุ: หากใส่เส้นพลาสติกใหม่ระหว่างการพิมพ์ AMS จะไม่อ่านข้อมูลใดๆ "
+"โดยอัตโนมัติจนกว่าการพิมพ์จะเสร็จสิ้น"
+
+msgid ""
+"When inserting a new filament, the AMS will not automatically read its "
+"information, leaving it blank for you to enter manually."
+msgstr ""
+"เมื่อใส่เส้นพลาสติกใหม่ AMS จะไม่อ่านข้อมูลโดยอัตโนมัติ ปล่อยให้ว่างไว้เพื่อให้คุณป้อนด้วยตนเอง"
+
+msgid "Power on update"
+msgstr "เปิดการอัพเดต"
+
+msgid ""
+"The AMS will automatically read the information of inserted filament on "
+"start-up. It will take about 1 minute. The reading process will roll the "
+"filament spools."
+msgstr ""
+"AMS จะอ่านข้อมูลของเส้นพลาสติกที่ใส่ไว้โดยอัตโนมัติเมื่อสตาร์ทเครื่อง จะใช้เวลาประมาณ 1 นาที "
+"กระบวนการอ่านจะม้วนแกนเส้นพลาสติก"
+
+msgid ""
+"The AMS will not automatically read information from inserted filament "
+"during startup and will continue to use the information recorded before the "
+"last shutdown."
+msgstr ""
+"AMS จะไม่อ่านข้อมูลจากเส้นพลาสติกที่แทรกไว้โดยอัตโนมัติระหว่างการเริ่มต้นระบบ "
+"และจะยังคงใช้ข้อมูลที่บันทึกไว้ก่อนการปิดระบบครั้งล่าสุด"
+
+msgid "Update remaining capacity"
+msgstr "อัพเดตความจุคงเหลือ"
+
+msgid ""
+"AMS will attempt to estimate the remaining capacity of the Bambu Lab "
+"filaments."
+msgstr "AMS จะพยายามประเมินกำลังการผลิตที่เหลืออยู่ของเส้นพลาสติก Bambu Lab"
+
+msgid "AMS filament backup"
+msgstr "การสำรองข้อมูลเส้นพลาสติก AMS"
+
+msgid ""
+"AMS will continue to another spool with matching filament properties "
+"automatically when current filament runs out."
+msgstr ""
+"AMS "
+"จะดำเนินการต่อไปยังแกนม้วนอื่นที่มีคุณสมบัติเส้นพลาสติกที่ตรงกันโดยอัตโนมัติเมื่อเส้นพลาสติกปัจจุบันหมด"
+
+msgid "Air Printing Detection"
+msgstr "การตรวจจับการพิมพ์ทางอากาศ"
+
+msgid ""
+"Detects clogging and filament grinding, halting printing immediately to "
+"conserve time and filament."
+msgstr "ตรวจจับการอุดตันและการบดเส้นพลาสติก หยุดการพิมพ์ทันทีเพื่อประหยัดเวลาและเส้นพลาสติก"
+
+msgid "AMS Type"
+msgstr "ประเภทเอเอ็มเอส"
+
+msgid "Switching"
+msgstr "การสลับ"
+
+msgid "The printer is busy and cannot switch AMS type."
+msgstr "เครื่องพิมพ์ไม่ว่างและไม่สามารถสลับประเภท AMS ได้"
+
+msgid "Please unload all filament before switching."
+msgstr "กรุณาขนเส้นพลาสติกทั้งหมดออกก่อนที่จะเปลี่ยน"
+
+msgid "AMS type switching needs firmware update, taking about 30s. Switch now?"
+msgstr "การสลับประเภท AMS จำเป็นต้องอัปเดตเฟิร์มแวร์ โดยใช้เวลาประมาณ 30 วินาที สลับตอนนี้?"
+
+msgid "Arrange AMS Order"
+msgstr "จัดเรียงคำสั่งซื้อ AMS"
+
+msgid ""
+"AMS ID will be reset. If you want a specific ID sequence, disconnect all AMS "
+"before resetting and connect them in the desired order after resetting."
+msgstr ""
+"รหัส AMS จะถูกรีเซ็ต หากคุณต้องการลำดับ ID เฉพาะ ให้ยกเลิกการเชื่อมต่อ AMS "
+"ทั้งหมดก่อนที่จะรีเซ็ต และเชื่อมต่อตามลำดับที่ต้องการหลังจากรีเซ็ต"
+
+msgid "File"
+msgstr "ไฟล์"
+
+msgid "Calibration"
+msgstr "การปรับเทียบ"
+
+msgid ""
+"Failed to download the plug-in. Please check your firewall settings and VPN "
+"software and retry."
+msgstr ""
+"ดาวน์โหลดปลั๊กอินไม่สำเร็จ โปรดตรวจสอบการตั้งค่าไฟร์วอลล์และซอฟต์แวร์ VPN แล้วลองอีกครั้ง"
+
+msgid ""
+"Failed to install the plug-in. The plug-in file may be in use. Please "
+"restart OrcaSlicer and try again. Also check whether it is blocked or "
+"deleted by anti-virus software."
+msgstr ""
+"ไม่สามารถติดตั้งปลั๊กอินได้ ไฟล์ปลั๊กอินอาจถูกใช้งานอยู่ โปรดรีสตาร์ท OrcaSlicer แล้วลองอีกครั้ง "
+"ตรวจสอบด้วยว่าซอฟต์แวร์ป้องกันไวรัสบล็อกหรือลบหรือไม่"
+
+msgid "Click here to see more info"
+msgstr "คลิกที่นี่เพื่อดูข้อมูลเพิ่มเติม"
+
+msgid ""
+"The network plug-in was installed but could not be loaded. Please restart "
+"the application."
+msgstr "ติดตั้งปลั๊กอินเครือข่ายแล้ว แต่ไม่สามารถโหลดได้ กรุณารีสตาร์ทแอปพลิเคชัน"
+
+msgid "Restart Required"
+msgstr "ต้องเริ่มใหม่"
+
+msgid "Please home all axes (click "
+msgstr "กรุณากลับบ้านทุกแกน (คลิก"
+
+msgid ""
+") to locate the toolhead's position. This prevents device moving beyond the "
+"printable boundary and causing equipment wear."
+msgstr ""
+") เพื่อค้นหาตำแหน่งของหัวเครื่องมือ เพื่อป้องกันไม่ให้อุปกรณ์เคลื่อนที่เกินขอบเขตที่สามารถพิมพ์ได้ "
+"และทำให้อุปกรณ์สึกหรอ"
+
+msgid "Go Home"
+msgstr "กลับจุดอ้างอิง"
+
+msgid ""
+"A error occurred. Maybe memory of system is not enough or it's a bug of the "
+"program"
+msgstr "เกิดข้อผิดพลาด บางทีหน่วยความจำของระบบอาจไม่เพียงพอหรือเป็นข้อบกพร่องของโปรแกรม"
+
+#, boost-format
+msgid "A fatal error occurred: \"%1%\""
+msgstr "เกิดข้อผิดพลาดร้ายแรง: \"%1%\""
+
+msgid "Please save project and restart the program."
+msgstr "โปรดบันทึกโปรเจกต์และเริ่มโปรแกรมใหม่"
+
+msgid "Processing G-code from Previous file..."
+msgstr "กำลังประมวลผล G-code จากไฟล์ก่อนหน้า..."
+
+msgid "Slicing complete"
+msgstr "สไลซ์เสร็จแล้ว"
+
+msgid "Access violation"
+msgstr "การเข้าถึงหน่วยความจำผิดพลาด"
+
+msgid "Illegal instruction"
+msgstr "คำสั่งไม่ถูกต้อง"
+
+msgid "Divide by zero"
+msgstr "หารด้วยศูนย์"
+
+msgid "Overflow"
+msgstr "ค่าล้น"
+
+msgid "Underflow"
+msgstr "ค่าต่ำเกินขอบเขต"
+
+msgid "Floating reserved operand"
+msgstr "ตัวถูกดำเนินการที่สงวนไว้แบบลอยตัว"
+
+msgid "Stack overflow"
+msgstr "สแตกโอเวอร์โฟลว์"
+
+msgid "Running post-processing scripts"
+msgstr "การรันสคริปต์หลังการประมวลผล"
+
+msgid "Successfully executed post-processing script"
+msgstr "ดำเนินการสคริปต์หลังการประมวลผลสำเร็จแล้ว"
+
+msgid "Unknown error occurred during exporting G-code."
+msgstr "เกิดข้อผิดพลาดที่ไม่รู้จักระหว่างการส่งออก G-code"
+
+#, boost-format
+msgid ""
+"Copying of the temporary G-code to the output G-code failed. Maybe the SD "
+"card is write locked?\n"
+"Error message: %1%"
+msgstr ""
+"การคัดลอก G-code ชั่วคราวไปยังเอาต์พุต G-code ล้มเหลว บางทีการ์ด SD อาจถูกล็อคการเขียน?\n"
+"ข้อความแสดงข้อผิดพลาด: %1%"
+
+#, boost-format
+msgid ""
+"Copying of the temporary G-code to the output G-code failed. There might be "
+"problem with target device, please try exporting again or using different "
+"device. The corrupted output G-code is at %1%.tmp."
+msgstr ""
+"การคัดลอก G-code ชั่วคราวไปยังเอาต์พุต G-code ล้มเหลว อาจมีปัญหากับอุปกรณ์เป้าหมาย "
+"โปรดลองส่งออกอีกครั้งหรือใช้อุปกรณ์อื่น G-code เอาต์พุตที่เสียหายอยู่ที่ %1%.tmp"
+
+#, boost-format
+msgid ""
+"Renaming of the G-code after copying to the selected destination folder has "
+"failed. Current path is %1%.tmp. Please try exporting again."
+msgstr ""
+"การเปลี่ยนชื่อ G-code หลังจากคัดลอกไปยังโฟลเดอร์ปลายทางที่เลือกล้มเหลว เส้นทางปัจจุบันคือ %1%."
+"tmp โปรดลองส่งออกอีกครั้ง"
+
+#, boost-format
+msgid ""
+"Copying of the temporary G-code has finished but the original code at %1% "
+"couldn't be opened during copy check. The output G-code is at %2%.tmp."
+msgstr ""
+"การคัดลอก G-code ชั่วคราวเสร็จสิ้นแล้ว แต่ไม่สามารถเปิดรหัสต้นฉบับที่ %1% "
+"ได้ในระหว่างการตรวจสอบการคัดลอก G-code เอาต์พุตอยู่ที่ %2%.tmp"
+
+#, boost-format
+msgid ""
+"Copying of the temporary G-code has finished but the exported code couldn't "
+"be opened during copy check. The output G-code is at %1%.tmp."
+msgstr ""
+"การคัดลอก G-code ชั่วคราวเสร็จสิ้นแล้ว "
+"แต่ไม่สามารถเปิดรหัสที่ส่งออกได้ในระหว่างการตรวจสอบการคัดลอก G-code เอาต์พุตอยู่ที่ %1%.tmp"
+
+#, boost-format
+msgid "G-code file exported to %1%"
+msgstr "ส่งออกไฟล์ G-code ไปที่ %1% แล้ว"
+
+msgid "Unknown error when exporting G-code."
+msgstr "เกิดข้อผิดพลาดไม่ทราบสาเหตุขณะส่งออก G-code"
+
+#, boost-format
+msgid ""
+"Failed to save G-code file.\n"
+"Error message: %1%.\n"
+"Source file %2%."
+msgstr ""
+"ไม่สามารถบันทึกไฟล์ G-code\n"
+"ข้อความแสดงข้อผิดพลาด: %1%\n"
+"ไฟล์ต้นฉบับ %2%"
+
+msgid "Copying of the temporary G-code to the output G-code failed"
+msgstr "การคัดลอก G-code ชั่วคราวไปยังเอาต์พุต G-code ล้มเหลว"
+
+#, boost-format
+msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue"
+msgstr "กำลังกำหนดเวลาอัปโหลดเป็น `%1%` ดูหน้าต่าง -> คิวการอัปโหลดโฮสต์การพิมพ์"
+
+msgid "Origin"
+msgstr "ต้นทาง"
+
+msgid "Size in X and Y of the rectangular plate."
+msgstr "ขนาดของแผ่นสี่เหลี่ยมเป็น X และ Y"
+
+msgid ""
+"Distance of the 0,0 G-code coordinate from the front left corner of the "
+"rectangle."
+msgstr "ระยะห่างของพิกัด 0,0 G-code จากมุมซ้ายหน้าของสี่เหลี่ยมผืนผ้า"
+
+msgid ""
+"Diameter of the print bed. It is assumed that origin (0,0) is located in the "
+"center."
+msgstr "เส้นผ่านศูนย์กลางของฐานพิมพ์ สันนิษฐานว่าจุดกำเนิด (0,0) อยู่ตรงกลาง"
+
+msgid "Rectangular"
+msgstr "สี่เหลี่ยม"
+
+msgid "Circular"
+msgstr "หนังสือเวียน"
+
+msgid "Load shape from STL..."
+msgstr "โหลดรูปร่างจาก STL..."
+
+msgid "Settings"
+msgstr "การตั้งค่า"
+
+msgid "Remove"
+msgstr "ลบ"
+
+msgid "Not found:"
+msgstr "ไม่พบ:"
+
+msgid "Model"
+msgstr "โมเดล"
+
+msgid "Choose an STL file to import bed shape from:"
+msgstr "เลือกไฟล์ STL ที่จะนำเข้ารูปทรงฐานพิมพ์จาก:"
+
+msgid "Invalid file format."
+msgstr "รูปแบบไฟล์ไม่ถูกต้อง"
+
+msgid "Error! Invalid model"
+msgstr "ข้อผิดพลาด! โมเดลไม่ถูกต้อง"
+
+msgid "The selected file contains no geometry."
+msgstr "ไฟล์ที่เลือกไม่มีรูปทรงเรขาคณิต"
+
+msgid ""
+"The selected file contains several disjoint areas. This is not supported."
+msgstr "ไฟล์ที่เลือกมีพื้นที่ที่ไม่ต่อเนื่องกันหลายส่วน สิ่งนี้ไม่ได้รับส่วนรองรับ"
+
+msgid "Choose a file to import bed texture from (PNG/SVG):"
+msgstr "เลือกไฟล์ที่จะนำเข้าพื้นผิวฐานพิมพ์จาก (PNG/SVG):"
+
+msgid "Choose an STL file to import bed model from:"
+msgstr "เลือกไฟล์ STL ที่จะนำเข้าแบบจำลองฐานพิมพ์จาก:"
+
+msgid "Bed Shape"
+msgstr "รูปทรงฐานพิมพ์"
+
+#, c-format, boost-format
+msgid "A minimum temperature above %d℃ is recommended for %s.\n"
+msgstr "แนะนำให้ใช้อุณหภูมิต่ำสุดที่สูงกว่า %d℃ สำหรับ %s\n"
+
+#, c-format, boost-format
+msgid "A maximum temperature below %d℃ is recommended for %s.\n"
+msgstr "แนะนำให้ใช้อุณหภูมิสูงสุดต่ำกว่า %d℃ สำหรับ %s\n"
+
+msgid ""
+"The recommended minimum temperature cannot be higher than the recommended "
+"maximum temperature.\n"
+msgstr "อุณหภูมิต่ำสุดที่แนะนำต้องไม่สูงกว่าอุณหภูมิสูงสุดที่แนะนำ\n"
+
+msgid "Please check.\n"
+msgstr "กรุณาตรวจสอบ.\n"
+
+msgid ""
+"Nozzle may be blocked when the temperature is out of recommended range.\n"
+"Please make sure whether to use the temperature to print.\n"
+"\n"
+msgstr ""
+"หัวฉีดอาจถูกปิดกั้นเมื่ออุณหภูมิอยู่นอกช่วงที่แนะนำ\n"
+"โปรดตรวจสอบให้แน่ใจว่าจะใช้อุณหภูมิในการพิมพ์หรือไม่\n"
+
+#, c-format, boost-format
+msgid ""
+"The recommended nozzle temperature for this filament type is [%d, %d] "
+"degrees Celsius."
+msgstr "อุณหภูมิหัวฉีดที่แนะนำสำหรับเส้นพลาสติกประเภทนี้คือ [%d, %d] องศาเซลเซียส"
+
+msgid ""
+"Too small max volumetric speed.\n"
+"Reset to 0.5."
+msgstr ""
+"ความเร็วปริมาตรสูงสุดน้อยเกินไป\n"
+"รีเซ็ตเป็น 0.5"
+
+#, c-format, boost-format
+msgid ""
+"Current chamber temperature is higher than the material's safe temperature, "
+"this may result in material softening and clogging. The maximum safe "
+"temperature for the material is %d"
+msgstr ""
+"อุณหภูมิห้องเพาะเลี้ยงในปัจจุบันสูงกว่าอุณหภูมิที่ปลอดภัยของวัสดุ ซึ่งอาจส่งผลให้วัสดุอ่อนตัวและอุดตัน "
+"อุณหภูมิที่ปลอดภัยสูงสุดสำหรับวัสดุคือ %d"
+
+msgid ""
+"Too small layer height.\n"
+"Reset to 0.2."
+msgstr ""
+"ความสูงของชั้นเล็กเกินไป\n"
+"รีเซ็ตเป็น 0.2"
+
+msgid ""
+"Too small ironing spacing.\n"
+"Reset to 0.1."
+msgstr ""
+"ระยะห่างในการรีดผิวน้อยเกินไป\n"
+"รีเซ็ตเป็น 0.1"
+
+msgid ""
+"Zero initial layer height is invalid.\n"
+"\n"
+"The first layer height will be reset to 0.2."
+msgstr ""
+"ความสูงของเลเยอร์เริ่มต้นเป็นศูนย์ไม่ถูกต้อง\n"
+"\n"
+"ความสูงของเลเยอร์แรกจะถูกรีเซ็ตเป็น 0.2"
+
+msgid ""
+"This setting is only used for model size tunning with small value in some "
+"cases.\n"
+"For example, when model size has small error and hard to be assembled.\n"
+"For large size tuning, please use model scale function.\n"
+"\n"
+"The value will be reset to 0."
+msgstr ""
+"การตั้งค่านี้ใช้สำหรับการปรับขนาดโมเดลที่มีค่าน้อยเท่านั้นในบางกรณี\n"
+"เช่น เมื่อขนาดรุ่นมีข้อผิดพลาดเล็กน้อยและประกอบได้ยาก\n"
+"สำหรับการปรับแต่งขนาดใหญ่ โปรดใช้ฟังก์ชันสเกลโมเดล\n"
+"\n"
+"ค่าจะถูกรีเซ็ตเป็น 0"
+
+msgid ""
+"Too large elephant foot compensation is unreasonable.\n"
+"If really have serious elephant foot effect, please check other settings.\n"
+"For example, whether bed temperature is too high.\n"
+"\n"
+"The value will be reset to 0."
+msgstr ""
+"การชดเชยอาการฐานบานที่ใหญ่เกินไปนั้นไม่สมเหตุสมผล\n"
+"หากมีผลกระทบร้ายแรงต่ออาการฐานบาน โปรดตรวจสอบการตั้งค่าอื่นๆ\n"
+"เช่น อุณหภูมิฐานพิมพ์สูงเกินไปหรือไม่\n"
+"\n"
+"ค่าจะถูกรีเซ็ตเป็น 0"
+
+msgid ""
+"Alternate extra wall does't work well when ensure vertical shell thickness "
+"is set to All."
+msgstr "ผนังเสริมสำรองทำงานได้ไม่ดีเมื่อตั้งค่าความหนาของเปลือกแนวตั้งเป็นทั้งหมด"
+
+msgid ""
+"Change these settings automatically?\n"
+"Yes - Change ensure vertical shell thickness to Moderate and enable "
+"alternate extra wall\n"
+"No - Don't use alternate extra wall"
+msgstr ""
+"เปลี่ยนการตั้งค่าเหล่านี้โดยอัตโนมัติหรือไม่\n"
+"ใช่ - เปลี่ยนให้แน่ใจว่าความหนาของเปลือกแนวตั้งเป็นปานกลาง และเปิดใช้งานผนังเสริมสำรอง\n"
+"ไม่ - ห้ามใช้ผนังเสริมสำรอง"
+
+msgid ""
+"Prime tower does not work when Adaptive Layer Height or Independent Support "
+"Layer Height is on.\n"
+"Which do you want to keep?\n"
+"YES - Keep Prime Tower\n"
+"NO - Keep Adaptive Layer Height and Independent Support Layer Height"
+msgstr ""
+"ไพรม์ทาวเวอร์ไม่ทำงานเมื่อเปิดใช้งาน Adaptive Layer Height หรือ Independent ส่วนรองรับ "
+"Layer Height\n"
+"คุณต้องการเก็บอันไหน?\n"
+"ใช่ - เก็บ Prime Tower ไว้\n"
+"ไม่ - คงความสูงของเลเยอร์แบบปรับได้และความสูงของเลเยอร์รองรับที่เป็นอิสระ"
+
+msgid ""
+"Prime tower does not work when Adaptive Layer Height is on.\n"
+"Which do you want to keep?\n"
+"YES - Keep Prime Tower\n"
+"NO - Keep Adaptive Layer Height"
+msgstr ""
+"ไพรม์ทาวเวอร์ไม่ทำงานเมื่อเปิด Adaptive Layer Height\n"
+"คุณต้องการเก็บอันไหน?\n"
+"ใช่ - เก็บ Prime Tower ไว้\n"
+"ไม่ - คงความสูงของเลเยอร์แบบปรับได้"
+
+msgid ""
+"Prime tower does not work when Independent Support Layer Height is on.\n"
+"Which do you want to keep?\n"
+"YES - Keep Prime Tower\n"
+"NO - Keep Independent Support Layer Height"
+msgstr ""
+"ไพร์มทาวเวอร์ไม่ทำงานเมื่อเปิดความสูงของเลเยอร์รองรับอิสระ\n"
+"คุณต้องการเก็บอันไหน?\n"
+"ใช่ - เก็บ Prime Tower ไว้\n"
+"ไม่ - รักษาความสูงของชั้นรองรับที่เป็นอิสระ"
+
+msgid ""
+"seam_slope_start_height need to be smaller than layer_height.\n"
+"Reset to 0."
+msgstr ""
+"seam_slope_start_height ต้องเล็กกว่า layer_height\n"
+"รีเซ็ตเป็น 0"
+
+#, no-c-format, no-boost-format
+msgid ""
+"Lock depth should smaller than skin depth.\n"
+"Reset to 50% of skin depth."
+msgstr ""
+"ความลึกของล็อคควรน้อยกว่าความลึกของผิวหนัง\n"
+"รีเซ็ตเป็น 50% ของความลึกของผิว"
+
+msgid ""
+"Both [Extrusion] and [Combined] modes of Fuzzy Skin require the Arachne Wall "
+"Generator to be enabled."
+msgstr ""
+"ทั้งโหมด [อัดขึ้นรูป] และ [รวม] ของ Fuzzy Skin จำเป็นต้องเปิดใช้งาน Arachne Wall "
+"Generator"
+
+msgid ""
+"Change these settings automatically?\n"
+"Yes - Enable Arachne Wall Generator\n"
+"No - Disable Arachne Wall Generator and set [Displacement] mode of the "
+"Fuzzy Skin"
+msgstr ""
+"เปลี่ยนการตั้งค่าเหล่านี้โดยอัตโนมัติหรือไม่\n"
+"ใช่ - เปิดใช้งาน Arachne Wall Generator\n"
+"ไม่ - ปิดการใช้งาน Arachne Wall Generator และตั้งค่าโหมด [Displacement] ของ Fuzzy "
+"Skin"
+
+msgid ""
+"Spiral mode only works when wall loops is 1, support is disabled, clumping "
+"detection by probing is disabled, top shell layers is 0, sparse infill "
+"density is 0 and timelapse type is traditional."
+msgstr ""
+"โหมดเกลียวจะทำงานเฉพาะเมื่อลูปติดผนังเป็น 1, ปิดใช้งานส่วนรองรับ, "
+"การตรวจจับการจับตัวเป็นก้อนโดยการตรวจวัดถูกปิดใช้งาน, ชั้นเปลือกด้านบนเป็น 0, "
+"ความหนาแน่นของไส้ในแบบกระจายเป็น 0 และประเภทไทม์แลปส์เป็นแบบดั้งเดิม"
+
+msgid " But machines with I3 structure will not generate timelapse videos."
+msgstr "แต่เครื่องที่มีโครงสร้าง I3 จะไม่สร้างวิดีโอแบบไทม์แลปส์"
+
+msgid ""
+"Change these settings automatically?\n"
+"Yes - Change these settings and enable spiral mode automatically\n"
+"No - Give up using spiral mode this time"
+msgstr ""
+"เปลี่ยนการตั้งค่าเหล่านี้โดยอัตโนมัติหรือไม่\n"
+"ใช่ - เปลี่ยนการตั้งค่าเหล่านี้และเปิดใช้งานโหมดเกลียวโดยอัตโนมัติ\n"
+"ไม่ - เลิกใช้โหมดเกลียวในครั้งนี้"
+
+msgid "Printing"
+msgstr "กำลังพิมพ์"
+
+msgid "Auto bed leveling"
+msgstr "ปรับระดับฐานพิมพ์อัตโนมัติ"
+
+msgid "Heatbed preheating"
+msgstr "การอุ่นฐานพิมพ์ด้วยความร้อน"
+
+msgid "Vibration compensation"
+msgstr "ชดเชยการสั่น"
+
+msgid "Changing filament"
+msgstr "กำลังเปลี่ยนเส้นพลาสติก"
+
+msgid "M400 pause"
+msgstr "M400 หยุดชั่วคราว"
+
+msgid "Paused (filament ran out)"
+msgstr "หยุดชั่วคราว (เส้นพลาสติกหมด)"
+
+msgid "Heating nozzle"
+msgstr "หัวฉีดความร้อน"
+
+msgid "Calibrating dynamic flow"
+msgstr "การปรับเทียบการไหลแบบไดนามิก"
+
+msgid "Scanning bed surface"
+msgstr "การสแกนพื้นผิวฐานพิมพ์"
+
+msgid "Inspecting first layer"
+msgstr "การตรวจสอบชั้นแรก"
+
+msgid "Identifying build plate type"
+msgstr "การระบุประเภทของแผ่นประกอบ"
+
+msgid "Calibrating Micro Lidar"
+msgstr "การปรับเทียบไมโครไลดาร์"
+
+msgid "Homing toolhead"
+msgstr "นำหัวพิมพ์กลับจุดอ้างอิง"
+
+msgid "Cleaning nozzle tip"
+msgstr "ปลายหัวฉีดทำความสะอาด"
+
+msgid "Checking extruder temperature"
+msgstr "การตรวจสอบอุณหภูมิชุดดันเส้น"
+
+msgid "Paused by the user"
+msgstr "หยุดชั่วคราวโดยผู้ใช้"
+
+msgid "Pause (front cover fall off)"
+msgstr "หยุดชั่วคราว (ปกหน้าหลุด)"
+
+msgid "Calibrating the micro lidar"
+msgstr "การปรับเทียบไมโครไลดาร์"
+
+msgid "Calibrating flow ratio"
+msgstr "อัตราส่วนการไหลกำลังปรับเทียบ"
+
+msgid "Pause (nozzle temperature malfunction)"
+msgstr "หยุดชั่วคราว (อุณหภูมิหัวฉีดทำงานผิดปกติ)"
+
+msgid "Pause (heatbed temperature malfunction)"
+msgstr "หยุดชั่วคราว (อุณหภูมิของฐานพิมพ์ทำงานผิดปกติ)"
+
+msgid "Filament unloading"
+msgstr "กำลังถอนเส้นพลาสติก"
+
+msgid "Pause (step loss)"
+msgstr "หยุดชั่วคราว (สูญเสียขั้นตอน)"
+
+msgid "Filament loading"
+msgstr "กำลังโหลดเส้นพลาสติก"
+
+msgid "Motor noise cancellation"
+msgstr "การยกเลิกเสียงรบกวนของมอเตอร์"
+
+msgid "Pause (AMS offline)"
+msgstr "หยุดชั่วคราว (AMS ออฟไลน์)"
+
+msgid "Pause (low speed of the heatbreak fan)"
+msgstr "หยุดชั่วคราว (พัดลมระบายความร้อนความเร็วต่ำ)"
+
+msgid "Pause (chamber temperature control problem)"
+msgstr "หยุดชั่วคราว (ปัญหาการควบคุมอุณหภูมิห้องเพาะเลี้ยง)"
+
+msgid "Cooling chamber"
+msgstr "ห้องทำความเย็น"
+
+msgid "Pause (G-code inserted by user)"
+msgstr "หยุดชั่วคราว (ใส่รหัส G-code โดยผู้ใช้)"
+
+msgid "Motor noise showoff"
+msgstr "โชว์เสียงมอเตอร์"
+
+msgid "Pause (nozzle clumping)"
+msgstr "หยุดชั่วคราว (หัวฉีดจับกันเป็นก้อน)"
+
+msgid "Pause (cutter error)"
+msgstr "หยุดชั่วคราว (ข้อผิดพลาดของเครื่องตัด)"
+
+msgid "Pause (first layer error)"
+msgstr "หยุดชั่วคราว (ข้อผิดพลาดชั้นแรก)"
+
+msgid "Pause (nozzle clog)"
+msgstr "หยุดชั่วคราว (หัวฉีดอุดตัน)"
+
+msgid "Measuring motion precision"
+msgstr "การวัดความแม่นยำของการเคลื่อนไหว"
+
+msgid "Enhancing motion precision"
+msgstr "เพิ่มความแม่นยำในการเคลื่อนไหว"
+
+msgid "Measure motion accuracy"
+msgstr "วัดความแม่นยำของการเคลื่อนไหว"
+
+msgid "Nozzle offset calibration"
+msgstr "การสอบเทียบชดเชยหัวฉีด"
+
+msgid "High temperature auto bed leveling"
+msgstr "การปรับระดับฐานพิมพ์อัตโนมัติที่อุณหภูมิสูง"
+
+msgid "Auto Check: Quick Release Lever"
+msgstr "ตรวจสอบอัตโนมัติ: คันโยกแบบปลดเร็ว"
+
+msgid "Auto Check: Door and Upper Cover"
+msgstr "ตรวจสอบอัตโนมัติ: ประตูและฝาครอบด้านบน"
+
+msgid "Laser Calibration"
+msgstr "การปรับเทียบเลเซอร์"
+
+msgid "Auto Check: Platform"
+msgstr "ตรวจสอบอัตโนมัติ: แพลตฟอร์ม"
+
+msgid "Confirming BirdsEye Camera location"
+msgstr "กำลังยืนยันตำแหน่งของกล้อง BirdsEye"
+
+msgid "Calibrating BirdsEye Camera"
+msgstr "การปรับเทียบกล้อง BirdsEye"
+
+msgid "Auto bed leveling -phase 1"
+msgstr "การปรับระดับฐานพิมพ์อัตโนมัติ - เฟส 1"
+
+msgid "Auto bed leveling -phase 2"
+msgstr "การปรับระดับฐานพิมพ์อัตโนมัติ - เฟส 2"
+
+msgid "Heating chamber"
+msgstr "ห้องทำความร้อน"
+
+msgid "Cooling heatbed"
+msgstr "กำลังระบายความร้อนของฐานพิมพ์"
+
+msgid "Printing calibration lines"
+msgstr "การพิมพ์เส้นปรับเทียบ"
+
+msgid "Auto Check: Material"
+msgstr "ตรวจสอบอัตโนมัติ: วัสดุ"
+
+msgid "Live View Camera Calibration"
+msgstr "การปรับเทียบกล้อง Live View"
+
+msgid "Waiting for heatbed to reach target temperature"
+msgstr "กำลังรอให้ฐานพิมพ์ทำความร้อนถึงอุณหภูมิเป้าหมาย"
+
+msgid "Auto Check: Material Position"
+msgstr "ตรวจสอบอัตโนมัติ: ตำแหน่งวัสดุ"
+
+msgid "Cutting Module Offset Calibration"
+msgstr "การสอบเทียบออฟเซ็ตโมดูลตัด"
+
+msgid "Measuring Surface"
+msgstr "การวัดพื้นผิว"
+
+msgid "Calibrating the detection position of nozzle clumping"
+msgstr "การปรับเทียบตำแหน่งการตรวจจับการเกาะตัวของหัวฉีด"
+
+msgid "Unknown"
+msgstr "ไม่ทราบ"
+
+msgid "Update successful."
+msgstr "อัปเดตสำเร็จ"
+
+msgid "Downloading failed."
+msgstr "การดาวน์โหลดล้มเหลว"
+
+msgid "Verification failed."
+msgstr "การยืนยันล้มเหลว"
+
+msgid "Update failed."
+msgstr "อัปเดตล้มเหลว"
+
+msgid "Timelapse is not supported on this printer."
+msgstr "เครื่องพิมพ์นี้ไม่รองรับไทม์แลปส์"
+
+msgid "Timelapse is not supported while the storage does not exist."
+msgstr "ไม่รองรับไทม์แลปส์ในขณะที่ไม่มีที่เก็บข้อมูล"
+
+msgid "Timelapse is not supported while the storage is unavailable."
+msgstr "ไม่รองรับไทม์แลปส์ในขณะที่พื้นที่เก็บข้อมูลไม่พร้อมใช้งาน"
+
+msgid "Timelapse is not supported while the storage is readonly."
+msgstr "ไม่รองรับไทม์แลปส์ในขณะที่พื้นที่เก็บข้อมูลเป็นแบบอ่านอย่างเดียว"
+
+msgid ""
+"To ensure your safety, certain processing tasks (such as laser) can only be "
+"resumed on printer."
+msgstr ""
+"เพื่อความปลอดภัยของคุณ งานการประมวลผลบางอย่าง (เช่น เลเซอร์) "
+"สามารถดำเนินการต่อได้บนเครื่องพิมพ์เท่านั้น"
+
+#, c-format, boost-format
+msgid ""
+"The chamber temperature is too high, which may cause the filament to soften. "
+"Please wait until the chamber temperature drops below %d℃. You may open the "
+"front door or enable fans to cool down."
+msgstr ""
+"อุณหภูมิในห้องเพาะเลี้ยงสูงเกินไป ซึ่งอาจทำให้เส้นพลาสติกนิ่มลง "
+"โปรดรอจนกว่าอุณหภูมิห้องจะลดลงต่ำกว่า %d℃ คุณสามารถเปิดประตูหน้าหรือเปิดพัดลมให้เย็นลงได้"
+
+#, c-format, boost-format
+msgid ""
+"AMS temperature is too high, which may cause the filament to soften. Please "
+"wait until the AMS temperature drops below %d℃."
+msgstr ""
+"อุณหภูมิ AMS สูงเกินไป ซึ่งอาจทำให้เส้นพลาสติกอ่อนตัวลง โปรดรอจนกว่าอุณหภูมิ AMS จะลดลงต่ำกว่า "
+"%d℃"
+
+msgid ""
+"The current chamber temperature or the target chamber temperature exceeds "
+"45℃. In order to avoid extruder clogging, low temperature filament(PLA/PETG/"
+"TPU) is not allowed to be loaded."
+msgstr ""
+"อุณหภูมิห้องปัจจุบันหรืออุณหภูมิห้องเป้าหมายเกิน 45°C เพื่อหลีกเลี่ยงการอุดตันของชุดดันเส้น "
+"ไม่อนุญาตให้โหลดเส้นพลาสติกที่มีอุณหภูมิต่ำ (PLA/PETG/TPU)"
+
+msgid ""
+"Low temperature filament(PLA/PETG/TPU) is loaded in the extruder. In order "
+"to avoid extruder clogging, it is not allowed to set the chamber temperature."
+msgstr ""
+"โหลดเส้นพลาสติกอุณหภูมิต่ำ (PLA/PETG/TPU) ลงในชุดดันเส้น เพื่อหลีกเลี่ยงการอุดตันของชุดดันเส้น "
+"ไม่อนุญาตให้ตั้งอุณหภูมิห้องเพาะเลี้ยง"
+
+msgid ""
+"When you set the chamber temperature below 40℃, the chamber temperature "
+"control will not be activated, and the target chamber temperature will "
+"automatically be set to 0℃."
+msgstr ""
+"เมื่อคุณตั้งอุณหภูมิห้องเพาะเลี้ยงให้ต่ำกว่า 40°C การควบคุมอุณหภูมิห้องเพาะเลี้ยงจะไม่ทำงาน "
+"และอุณหภูมิห้องเพาะเลี้ยงเป้าหมายจะถูกตั้งค่าเป็น 0°C โดยอัตโนมัติ"
+
+msgid "Failed to start print job"
+msgstr "ไม่สามารถเริ่มงานพิมพ์ได้"
+
+msgid ""
+"This calibration does not support the currently selected nozzle diameter"
+msgstr "การสอบเทียบนี้ไม่รองรับเส้นผ่านศูนย์กลางหัวฉีดที่เลือกในปัจจุบัน"
+
+msgid "Current flowrate cali param is invalid"
+msgstr "พารามิเตอร์ cali ของอัตราการไหลปัจจุบันไม่ถูกต้อง"
+
+msgid "Selected diameter and machine diameter do not match"
+msgstr "เส้นผ่านศูนย์กลางที่เลือกและเส้นผ่านศูนย์กลางของเครื่องจักรไม่ตรงกัน"
+
+msgid "Failed to generate cali G-code"
+msgstr "ไม่สามารถสร้าง cali G-code"
+
+msgid "Calibration error"
+msgstr "ข้อผิดพลาดในการสอบเทียบ"
+
+msgid "Resume Printing"
+msgstr "พิมพ์ต่อ"
+
+msgid "Resume (defects acceptable)"
+msgstr "ดำเนินการต่อ (ข้อบกพร่องที่ยอมรับได้)"
+
+msgid "Resume (problem solved)"
+msgstr "ดำเนินการต่อ (แก้ไขปัญหาแล้ว)"
+
+msgid "Stop Printing"
+msgstr "หยุดพิมพ์"
+
+msgid "Check Assistant"
+msgstr "ตรวจสอบผู้ช่วย"
+
+msgid "Filament Extruded, Continue"
+msgstr "เส้นพลาสติกอัดรีด ดำเนินการต่อ"
+
+msgid "Not Extruded Yet, Retry"
+msgstr "ยังไม่ได้อัด ลองอีกครั้ง"
+
+msgid "Finished, Continue"
+msgstr "เสร็จแล้ว ดำเนินการต่อ"
+
+msgid "Load Filament"
+msgstr "โหลดเส้นพลาสติก"
+
+msgid "Filament Loaded, Resume"
+msgstr "โหลดเส้นแล้ว พิมพ์ต่อ"
+
+msgid "View Liveview"
+msgstr "ดูภาพสด"
+
+msgid "No Reminder Next Time"
+msgstr "ไม่มีการเตือนครั้งต่อไป"
+
+msgid "Ignore. Don't Remind Next Time"
+msgstr "ไม่สนใจ. อย่าเตือนครั้งต่อไป"
+
+msgid "Ignore this and Resume"
+msgstr "ละเว้นสิ่งนี้และดำเนินการต่อ"
+
+msgid "Problem Solved and Resume"
+msgstr "แก้ไขปัญหาและดำเนินการต่อ"
+
+msgid "Got it, Turn off the Fire Alarm."
+msgstr "รับทราบ ปิดสัญญาณเตือนไฟไหม้"
+
+msgid "Retry (problem solved)"
+msgstr "ลองอีกครั้ง (แก้ไขปัญหาแล้ว)"
+
+msgid "Stop Drying"
+msgstr "หยุดการทำให้แห้ง"
+
+msgid "Proceed"
+msgstr "ดำเนินการต่อ"
+
+msgid "Retry"
+msgstr "ลองใหม่"
+
+msgid "Resume"
+msgstr "ประวัติย่อ"
+
+msgid "Unknown error."
+msgstr "ข้อผิดพลาดไม่ทราบสาเหตุ"
+
+msgid "default"
+msgstr "ค่าเริ่มต้น"
+
+#, boost-format
+msgid "Edit Custom G-code (%1%)"
+msgstr "แก้ไขรหัส G ที่กำหนดเอง (%1%)"
+
+msgid "Built-in placeholders (Double click item to add to G-code)"
+msgstr "ตัวยึดตำแหน่งในตัว (ดับเบิลคลิกรายการเพื่อเพิ่มใน G-code)"
+
+msgid "Search G-code placeholders"
+msgstr "ค้นหาตัวยึดตำแหน่ง G-code"
+
+msgid "Add selected placeholder to G-code"
+msgstr "เพิ่มตัวยึดตำแหน่งที่เลือกลงใน G-code"
+
+msgid "Select placeholder"
+msgstr "เลือกตัวยึดตำแหน่ง"
+
+msgid "[Global] Slicing State"
+msgstr "[ทั่วโลก] สถานะการแบ่งส่วน"
+
+msgid "Read Only"
+msgstr "อ่านอย่างเดียว"
+
+msgid "Read Write"
+msgstr "อ่านเขียน"
+
+msgid "Slicing State"
+msgstr "สถานะการแบ่งส่วน"
+
+msgid "Print Statistics"
+msgstr "พิมพ์สถิติ"
+
+msgid "Objects Info"
+msgstr "ข้อมูลวัตถุ"
+
+msgid "Dimensions"
+msgstr "ขนาด"
+
+msgid "Temperatures"
+msgstr "อุณหภูมิ"
+
+msgid "Timestamps"
+msgstr "การประทับเวลา"
+
+#, boost-format
+msgid "Specific for %1%"
+msgstr "เฉพาะสำหรับ %1%"
+
+msgid "Presets"
+msgstr "พรีเซ็ต"
+
+msgid "Print settings"
+msgstr "การตั้งค่าพิมพ์"
+
+msgid "Filament settings"
+msgstr "การตั้งค่าเส้นพลาสติก"
+
+msgid "SLA Materials settings"
+msgstr "การตั้งค่าวัสดุ SLA"
+
+msgid "Printer settings"
+msgstr "การตั้งค่าเครื่องพิมพ์"
+
+msgid "parameter name"
+msgstr "ชื่อพารามิเตอร์"
+
+msgid "layers"
+msgstr "ชั้น"
+
+msgid "Range"
+msgstr "พิสัย"
+
+msgid "Empty string"
+msgstr "สตริงว่าง"
+
+msgid "Value is out of range."
+msgstr "ค่าอยู่นอกช่วงที่กำหนด"
+
+#, c-format, boost-format
+msgid "%s can't be a percentage"
+msgstr "%s ไม่สามารถเป็นเปอร์เซ็นต์ได้"
+
+#, c-format, boost-format
+msgid "Value %s is out of range, continue?"
+msgstr "ค่า %s อยู่นอกช่วง ต้องการดำเนินการต่อหรือไม่"
+
+msgid "Parameter validation"
+msgstr "การตรวจสอบพารามิเตอร์"
+
+#, c-format, boost-format
+msgid "Value %s is out of range. The valid range is from %d to %d."
+msgstr "ค่า %s อยู่นอกช่วง ช่วงที่ถูกต้องคือตั้งแต่ %d ถึง %d"
+
+#, c-format, boost-format
+msgid ""
+"Is it %s%% or %s %s?\n"
+"YES for %s%%, \n"
+"NO for %s %s."
+msgstr ""
+"มันคือ %s%% หรือ %s %s?\n"
+"ใช่สำหรับ %s%% \n"
+"ไม่ สำหรับ %s %s"
+
+#, boost-format
+msgid ""
+"Invalid input format. Expected vector of dimensions in the following format: "
+"\"%1%\""
+msgstr "รูปแบบการป้อนข้อมูลไม่ถูกต้อง เวกเตอร์ที่คาดหวังของมิติข้อมูลในรูปแบบต่อไปนี้: \"%1%\""
+
+msgid "Input value is out of range"
+msgstr "ค่าที่ป้อนอยู่นอกช่วงที่กำหนด"
+
+msgid "Some extension in the input is invalid"
+msgstr "ส่วนขยายบางส่วนในอินพุตไม่ถูกต้อง"
+
+msgid "This parameter expects a valid template."
+msgstr "พารามิเตอร์นี้ต้องการเทมเพลตที่ถูกต้อง"
+
+msgid ""
+"Invalid pattern. Use N, N#K, or a comma-separated list with optional #K per "
+"entry. Examples: 5, 5#2, 1,7,9, 5,9#2,18."
+msgstr ""
+"รูปแบบไม่ถูกต้อง ใช้ N, N#K หรือรายการที่คั่นด้วยเครื่องหมายจุลภาคโดยมีตัวเลือก #K "
+"ให้เลือกต่อรายการ ตัวอย่าง: 5, 5#2, 1,7,9, 5,9#2,18"
+
+#, boost-format
+msgid "Invalid format. Expected vector format: \"%1%\""
+msgstr "รูปแบบไม่ถูกต้อง รูปแบบเวกเตอร์ที่ต้องการ: \"%1%\""
+
+msgid "N/A"
+msgstr "ไม่มี"
+
+msgid "Pick"
+msgstr "เลือก"
+
+msgid "Summary"
+msgstr "สรุป"
+
+msgid "Layer Height"
+msgstr "ความสูงเลเยอร์"
+
+msgid "Line Width"
+msgstr "ความกว้างเส้น"
+
+msgid "Actual Speed"
+msgstr "ความเร็วจริง"
+
+msgid "Acceleration"
+msgstr "ความเร่ง"
+
+msgid "Jerk"
+msgstr "เจิร์ก"
+
+msgid "Fan Speed"
+msgstr "ความเร็วพัดลม"
+
+msgid "Flow"
+msgstr "อัตราการไหล"
+
+msgid "Actual Flow"
+msgstr "อัตราการไหลจริง"
+
+msgid "Tool"
+msgstr "เครื่องมือ"
+
+msgid "Layer Time"
+msgstr "เวลาเลเยอร์"
+
+msgid "Layer Time (log)"
+msgstr "เวลาเลเยอร์ (บันทึก)"
+
+msgid "Pressure Advance"
+msgstr "แรงดันล่วงหน้า (Pressure Advance)"
+
+msgid "Noop"
+msgstr "นะ"
+
+msgid "Retract"
+msgstr "ดึงกลับ"
+
+msgid "Unretract"
+msgstr "คืนเส้น"
+
+msgid "Seam"
+msgstr "รอยตะเข็บ"
+
+msgid "Tool Change"
+msgstr "การเปลี่ยนเครื่องมือ"
+
+msgid "Color Change"
+msgstr "เปลี่ยนสี"
+
+msgid "Pause Print"
+msgstr "หยุดพิมพ์ชั่วคราว"
+
+msgid "Travel"
+msgstr "เดินหัวเปล่า"
+
+msgid "Wipe"
+msgstr "เช็ดหัวฉีด"
+
+msgid "Extrude"
+msgstr "ขับไล่"
+
+msgid "Inner wall"
+msgstr "ผนังด้านใน"
+
+msgid "Outer wall"
+msgstr "ผนังด้านนอก"
+
+msgid "Overhang wall"
+msgstr "ผนังส่วนยื่น"
+
+msgid "Sparse infill"
+msgstr "ไส้ในแบบโปร่ง"
+
+msgid "Internal solid infill"
+msgstr "ไส้ในแบบทึบ"
+
+msgid "Top surface"
+msgstr "ผิวด้านบน"
+
+msgid "Bridge"
+msgstr "สะพาน"
+
+msgid "Gap infill"
+msgstr "เติมช่องว่าง"
+
+msgid "Skirt"
+msgstr "เส้นล้อมชิ้นงาน"
+
+msgid "Support interface"
+msgstr "ผิวสัมผัสส่วนรองรับ"
+
+msgid "Prime tower"
+msgstr "ทาวเวอร์ไล่เส้น"
+
+msgid "Bottom surface"
+msgstr "ผิวด้านล่าง"
+
+msgid "Internal bridge"
+msgstr "สะพานภายใน"
+
+msgid "Support transition"
+msgstr "ช่วงเปลี่ยนส่วนรองรับ"
+
+msgid "Mixed"
+msgstr "ผสม"
+
+msgid "Height: "
+msgstr "ความสูง: "
+
+msgid "Width: "
+msgstr "ความกว้าง: "
+
+msgid "Flow: "
+msgstr "อัตราการไหล: "
+
+msgid "Fan: "
+msgstr "พัดลม: "
+
+msgid "Temperature: "
+msgstr "อุณหภูมิ: "
+
+msgid "Layer Time: "
+msgstr "เวลาเลเยอร์:"
+
+msgid "Tool: "
+msgstr "เครื่องมือ:"
+
+msgid "Color: "
+msgstr "สี: "
+
+msgid "Acceleration: "
+msgstr "ความเร่ง: "
+
+msgid "Jerk: "
+msgstr "เจิร์ก: "
+
+msgid "PA: "
+msgstr "พ่อ:"
+
+msgid "mm/s"
+msgstr "มม./วินาที"
+
+msgid "mm/s²"
+msgstr "มม./วินาที²"
+
+msgid "mm³/s"
+msgstr "มม.³/วินาที"
+
+msgid "Flow rate"
+msgstr "อัตราการไหล"
+
+msgid "Fan speed"
+msgstr "ความเร็วพัดลม"
+
+msgid "°C"
+msgstr "°C"
+
+msgid "Time"
+msgstr "เวลา"
+
+msgid "Speed: "
+msgstr "ความเร็ว: "
+
+msgid "Actual speed profile"
+msgstr "โปรไฟล์ความเร็วจริง"
+
+msgid "Statistics of All Plates"
+msgstr "สถิติของแผ่นทั้งหมด"
+
+msgid "Display"
+msgstr "แสดง"
+
+msgid "Flushed"
+msgstr "ไล่เส้นแล้ว"
+
+msgid "Tower"
+msgstr "ทาวเวอร์"
+
+msgid "Total"
+msgstr "รวม"
+
+msgid "Total Estimation"
+msgstr "การประมาณค่าทั้งหมด"
+
+msgid "Total time"
+msgstr "เวลาทั้งหมด"
+
+msgid "Total cost"
+msgstr "ค่าใช้จ่ายทั้งหมด"
+
+msgid ""
+"Automatically re-slice according to the optimal filament grouping, and the "
+"grouping results will be displayed after slicing."
+msgstr ""
+"สไลซ์ใหม่โดยอัตโนมัติตามการจัดกลุ่มเส้นพลาสติกที่เหมาะสมที่สุด "
+"และผลลัพธ์การจัดกลุ่มจะแสดงหลังจากการสไลซ์"
+
+msgid "Filament Grouping"
+msgstr "การจัดกลุ่มเส้นพลาสติก"
+
+msgid "Why this grouping"
+msgstr "ทำไมถึงจัดกลุ่มแบบนี้."
+
+msgid "Left nozzle"
+msgstr "หัวฉีดซ้าย"
+
+msgid "Right nozzle"
+msgstr "หัวฉีดขวา"
+
+msgid "Please place filaments on the printer based on grouping result."
+msgstr "กรุณาวางฟิลาเมนต์บนเครื่องพิมพ์ตามผลการจัดกลุ่ม"
+
+msgid "Tips:"
+msgstr "เคล็ดลับ:"
+
+msgid "Current grouping of slice result is not optimal."
+msgstr "การจัดกลุ่มผลลัพธ์การแบ่งส่วนในปัจจุบันไม่เหมาะสมที่สุด"
+
+#, boost-format
+msgid "Increase %1%g filament and %2% changes compared to optimal grouping."
+msgstr ""
+"เพิ่ม %1%g เส้นพลาสติกและ %2% การเปลี่ยนแปลงเมื่อเปรียบเทียบกับการจัดกลุ่มที่เหมาะสมที่สุด"
+
+#, boost-format
+msgid ""
+"Increase %1%g filament and save %2% changes compared to optimal grouping."
+msgstr ""
+"เพิ่มเส้นพลาสติก %1%g และบันทึกการเปลี่ยนแปลง %2% เมื่อเปรียบเทียบกับการจัดกลุ่มที่เหมาะสมที่สุด"
+
+#, boost-format
+msgid ""
+"Save %1%g filament and increase %2% changes compared to optimal grouping."
+msgstr ""
+"ประหยัดเส้นพลาสติก %1%g และเพิ่มการเปลี่ยนแปลง %2% เมื่อเปรียบเทียบกับการจัดกลุ่มที่เหมาะสมที่สุด"
+
+#, boost-format
+msgid ""
+"Save %1%g filament and %2% changes compared to a printer with one nozzle."
+msgstr ""
+"บันทึก %1%g เส้นพลาสติกและ %2% การเปลี่ยนแปลง เมื่อเปรียบเทียบกับเครื่องพิมพ์ที่มีหัวฉีดเดียว"
+
+#, boost-format
+msgid ""
+"Save %1%g filament and increase %2% changes compared to a printer with one "
+"nozzle."
+msgstr ""
+"ประหยัดเส้นพลาสติก %1%g และเพิ่มการเปลี่ยนแปลง %2% เมื่อเทียบกับเครื่องพิมพ์ที่มีหัวฉีดเพียงอันเดียว"
+
+#, boost-format
+msgid ""
+"Increase %1%g filament and save %2% changes compared to a printer with one "
+"nozzle."
+msgstr ""
+"เพิ่มเส้นพลาสติก %1%g และประหยัดการเปลี่ยนแปลง %2% "
+"เมื่อเปรียบเทียบกับเครื่องพิมพ์ที่มีหัวฉีดเพียงอันเดียว"
+
+msgid "Set to Optimal"
+msgstr "ตั้งค่าให้เหมาะสมที่สุด"
+
+msgid "Regroup filament"
+msgstr "จัดกลุ่มเส้นพลาสติกใหม่"
+
+msgid "Wiki Guide"
+msgstr "คู่มือวิกิ"
+
+msgid "up to"
+msgstr "ขึ้นไป"
+
+msgid "above"
+msgstr "ข้างบน"
+
+msgid "from"
+msgstr "จาก"
+
+msgid "Usage"
+msgstr "การใช้งาน"
+
+msgid "Layer Height (mm)"
+msgstr "ความสูงเลเยอร์ (มม.)"
+
+msgid "Line Width (mm)"
+msgstr "ความกว้างเส้น (มม.)"
+
+msgid "Speed (mm/s)"
+msgstr "ความเร็ว (มม./วินาที)"
+
+msgid "Actual Speed (mm/s)"
+msgstr "ความเร็วจริง (มม./วินาที)"
+
+msgid "Acceleration (mm/s²)"
+msgstr "ความเร่ง (มม./วินาที²)"
+
+msgid "Jerk (mm/s)"
+msgstr "กระตุก (มม./วินาที)"
+
+msgid "Fan Speed (%)"
+msgstr "ความเร็วพัดลม (%)"
+
+msgid "Temperature (°C)"
+msgstr "อุณหภูมิ (°C)"
+
+msgid "Volumetric flow rate (mm³/s)"
+msgstr "อัตราการไหลเชิงปริมาตร (มม.³/วินาที)"
+
+msgid "Actual volumetric flow rate (mm³/s)"
+msgstr "อัตราการไหลเชิงปริมาตรจริง (มม.³/วินาที)"
+
+msgid "Seams"
+msgstr "รอยตะเข็บ"
+
+msgid "Filament Changes"
+msgstr "การเปลี่ยนเส้นพลาสติก"
+
+msgid "Options"
+msgstr "ตัวเลือก"
+
+msgid "Extruder"
+msgstr "ชุดดันเส้น"
+
+msgid "Cost"
+msgstr "ต้นทุน"
+
+msgid "Filament change times"
+msgstr "จำนวนครั้งที่เปลี่ยนเส้น"
+
+msgid "Tool changes"
+msgstr "การเปลี่ยนแปลงเครื่องมือ"
+
+msgid "Color change"
+msgstr "เปลี่ยนสี"
+
+msgid "Print"
+msgstr "พิมพ์"
+
+msgid "Printer"
+msgstr "เครื่องพิมพ์"
+
+msgid "Time Estimation"
+msgstr "การประมาณเวลา"
+
+msgid "Normal mode"
+msgstr "โหมดปกติ"
+
+msgid "Total Filament"
+msgstr "เส้นพลาสติกทั้งหมด"
+
+msgid "Model Filament"
+msgstr "เส้นพลาสติกโมเดล"
+
+msgid "Prepare time"
+msgstr "เตรียมเวลา"
+
+msgid "Model printing time"
+msgstr "ระยะเวลาในการพิมพ์โมเดล"
+
+msgid "Show stealth mode"
+msgstr "แสดงโหมดซ่อนตัว"
+
+msgid "Show normal mode"
+msgstr "แสดงโหมดปกติ"
+
+msgid ""
+"An object is placed in the left/right nozzle-only area or exceeds the "
+"printable height of the left nozzle.\n"
+"Please ensure the filaments used by this object are not arranged to other "
+"nozzles."
+msgstr ""
+"วัตถุถูกวางในพื้นที่เฉพาะหัวฉีดด้านซ้าย/ขวา หรือเกินความสูงที่สามารถพิมพ์ได้ของหัวฉีดด้านซ้าย\n"
+"โปรดตรวจสอบให้แน่ใจว่าเส้นพลาสติกที่ใช้โดยวัตถุนี้ไม่ได้ถูกจัดเรียงเข้ากับหัวฉีดอื่น"
+
+msgid ""
+"An object is laid over the boundary of plate or exceeds the height limit.\n"
+"Please solve the problem by moving it totally on or off the plate, and "
+"confirming that the height is within the build volume."
+msgstr ""
+"วัตถุวางอยู่เหนือขอบเขตของแผ่นหรือสูงเกินขีดจำกัดความสูง\n"
+"โปรดแก้ไขปัญหาด้วยการเลื่อนเข้าหรือออกจากเพลตโดยสิ้นเชิง "
+"และยืนยันว่าความสูงอยู่ภายในปริมาตรงานประกอบ"
+
+msgid "Variable layer height"
+msgstr "ความสูงของชั้นตัวแปร"
+
+msgid "Adaptive"
+msgstr "ปรับตัวได้"
+
+msgid "Quality / Speed"
+msgstr "คุณภาพ/ความเร็ว"
+
+msgid "Smooth"
+msgstr "เรียบ"
+
+msgid "Radius"
+msgstr "รัศมี"
+
+msgid "Keep min"
+msgstr "เก็บขั้นต่ำไว้"
+
+msgid "Add detail"
+msgstr "เพิ่มรายละเอียด"
+
+msgid "Remove detail"
+msgstr "ลบรายละเอียด"
+
+msgid "Reset to base"
+msgstr "รีเซ็ตเป็นฐาน"
+
+msgid "Smoothing"
+msgstr "ปรับให้เรียบ"
+
+msgid "Increase/decrease edit area"
+msgstr "เพิ่ม/ลดพื้นที่แก้ไข"
+
+msgid "Sequence"
+msgstr "ลำดับ"
+
+msgid "Object Selection"
+msgstr "การเลือกวัตถุ"
+
+msgid "Part Selection"
+msgstr "การเลือกชิ้นส่วน"
+
+msgid "number keys"
+msgstr "ปุ่มตัวเลข"
+
+msgid "Number keys can quickly change the color of objects"
+msgstr "ปุ่มตัวเลขสามารถเปลี่ยนสีของวัตถุได้อย่างรวดเร็ว"
+
+msgid ""
+"Following objects are laid over the boundary of plate or exceeds the height "
+"limit:\n"
+msgstr "วัตถุต่อไปนี้วางอยู่เหนือขอบเขตของแผ่นหรือสูงเกินขีดจำกัดความสูง:\n"
+
+msgid ""
+"Please solve the problem by moving it totally on or off the plate, and "
+"confirming that the height is within the build volume.\n"
+msgstr ""
+"โปรดแก้ไขปัญหาด้วยการเลื่อนเข้าหรือออกจากเพลตโดยสิ้นเชิง "
+"และยืนยันว่าความสูงอยู่ภายในปริมาตรงานประกอบ\n"
+
+msgid "left nozzle"
+msgstr "หัวฉีดซ้าย"
+
+msgid "right nozzle"
+msgstr "หัวฉีดขวา"
+
+#, c-format, boost-format
+msgid "The position or size of some models exceeds the %s's printable range."
+msgstr "ตำแหน่งหรือขนาดของบางรุ่นเกินช่วงที่สามารถพิมพ์ได้ของ %s"
+
+#, c-format, boost-format
+msgid "The position or size of the model %s exceeds the %s's printable range."
+msgstr "ตำแหน่งหรือขนาดของโมเดล %s เกินช่วงที่สามารถพิมพ์ได้ของ %s"
+
+msgid ""
+" Please check and adjust the part's position or size to fit the printable "
+"range:\n"
+msgstr "โปรดตรวจสอบและปรับตำแหน่งหรือขนาดของชิ้นส่วนให้พอดีกับช่วงที่สามารถพิมพ์ได้:\n"
+
+#, boost-format
+msgid "Left nozzle: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%\n"
+msgstr "หัวฉีดด้านซ้าย: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%\n"
+
+#, boost-format
+msgid "Right nozzle: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%"
+msgstr "หัวฉีดด้านขวา: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%"
+
+msgid "Mirror Object"
+msgstr "วัตถุกระจก"
+
+msgid "Tool Move"
+msgstr "การเคลื่อนย้ายเครื่องมือ"
+
+msgid "Tool Rotate"
+msgstr "หมุนเครื่องมือ"
+
+msgid "Move Object"
+msgstr "ย้ายวัตถุ"
+
+msgid "Auto Orientation options"
+msgstr "ตัวเลือกการวางแนวอัตโนมัติ"
+
+msgid "Enable rotation"
+msgstr "เปิดใช้งานการหมุน"
+
+msgid "Optimize support interface area"
+msgstr "ปรับพื้นที่อินเทอร์เฟซส่วนรองรับให้เหมาะสม"
+
+msgid "Orient"
+msgstr "ตะวันออก"
+
+msgid "Arrange options"
+msgstr "ตัวเลือกจัดเรียง"
+
+msgid "0 means auto spacing."
+msgstr "0 หมายถึงการเว้นระยะห่างอัตโนมัติ"
+
+msgid "Auto rotate for arrangement"
+msgstr "หมุนอัตโนมัติเพื่อการจัดเรียง"
+
+msgid "Allow multiple materials on same plate"
+msgstr "อนุญาตให้ใช้วัสดุหลายชนิดในจานเดียวกัน"
+
+msgid "Avoid extrusion calibration region"
+msgstr "หลีกเลี่ยงบริเวณการสอบเทียบการอัดขึ้นรูป"
+
+msgid "Align to Y axis"
+msgstr "จัดแนวตามแกน Y"
+
+msgctxt "Camera"
+msgid "Left"
+msgstr "ซ้าย"
+
+msgctxt "Camera"
+msgid "Right"
+msgstr "ขวา"
+
+msgid "Add"
+msgstr "เพิ่ม"
+
+msgid "Add plate"
+msgstr "เพิ่มจาน"
+
+msgid "Auto orient all/selected objects"
+msgstr "ปรับทิศทางวัตถุทั้งหมด/ที่เลือกโดยอัตโนมัติ"
+
+msgid "Auto orient all objects on current plate"
+msgstr "ปรับทิศทางวัตถุทั้งหมดบนแผ่นปัจจุบันโดยอัตโนมัติ"
+
+msgid "Arrange all objects"
+msgstr "จัดเรียงวัตถุทั้งหมด"
+
+msgid "Arrange objects on selected plates"
+msgstr "จัดเรียงวัตถุบนจานที่เลือก"
+
+msgid "Split to objects"
+msgstr "แยกเป็นวัตถุ"
+
+msgid "Split to parts"
+msgstr "แยกเป็นส่วนๆ"
+
+msgid "Assembly View"
+msgstr "มุมมองการประกอบ"
+
+msgid "Select Plate"
+msgstr "เลือกฐานพิมพ์"
+
+msgid "Slicing"
+msgstr "กำลังสไลซ์"
+
+msgid "Slice all"
+msgstr "สไลซ์ทั้งหมด"
+
+msgid "Failed"
+msgstr "ล้มเหลว"
+
+msgid "All Plates"
+msgstr "ทุกแผ่น"
+
+msgid "Stats"
+msgstr "สถิติ"
+
+msgid "Assembly Return"
+msgstr "การส่งคืนการประกอบ"
+
+msgid "Return"
+msgstr "กลับ"
+
+msgid "Canvas Toolbar"
+msgstr "แถบเครื่องมือแคนวาส"
+
+msgid "Fit camera to scene or selected object."
+msgstr "ปรับกล้องให้พอดีกับฉากหรือวัตถุที่เลือก"
+
+msgid "3D Navigator"
+msgstr "นาวิเกเตอร์ 3 มิติ"
+
+msgid "Zoom button"
+msgstr "ปุ่มซูม"
+
+msgid "Overhangs"
+msgstr "ส่วนยื่น"
+
+msgid "Outline"
+msgstr "เส้นขอบ"
+
+msgid "Realistic View"
+msgstr ""
+
+msgid "Perspective"
+msgstr "เปอร์สเปกทีฟ"
+
+msgid "Axes"
+msgstr "แกน"
+
+msgid "Gridlines"
+msgstr "เส้นกริด"
+
+msgid "Labels"
+msgstr "ป้ายชื่อ"
+
+msgid "Paint Toolbar"
+msgstr "แถบเครื่องมือสี"
+
+msgid "part selection"
+msgstr "การเลือกชิ้นส่วน"
+
+msgid "Explosion Ratio"
+msgstr "อัตราส่วนการระเบิด"
+
+msgid "Section View"
+msgstr "มุมมองส่วน"
+
+msgid "Assemble Control"
+msgstr "ประกอบการควบคุม"
+
+msgid "Selection Mode"
+msgstr "โหมดการเลือก"
+
+msgid "Total Volume:"
+msgstr "ปริมาณรวม:"
+
+msgid "Assembly Info"
+msgstr "ข้อมูลการประกอบ"
+
+msgid "Volume:"
+msgstr "ปริมาณ:"
+
+msgid "Size:"
+msgstr "ขนาด:"
+
+#, c-format, boost-format
+msgid ""
+"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
+"separate the conflicted objects farther (%s <-> %s)."
+msgstr ""
+"พบความขัดแย้งของเส้นทางรหัส G ที่เลเยอร์ %d, Z = %.2lfmm "
+"โปรดแยกวัตถุที่ขัดแย้งกันให้ไกลออกไป (%s <-> %s)"
+
+msgid "An object is laid over the plate boundaries."
+msgstr "มีวัตถุวางอยู่เหนือขอบเขตของแผ่น"
+
+msgid "A G-code path goes beyond the max print height."
+msgstr "เส้นทาง G-code อยู่เกินความสูงสูงสุดในการพิมพ์"
+
+msgid "A G-code path goes beyond the plate boundaries."
+msgstr "เส้นทาง G-code อยู่นอกเหนือขอบเขตของเพลท"
+
+msgid "Not support printing 2 or more TPU filaments."
+msgstr "ไม่รองรับการพิมพ์เส้นพลาสติก TPU 2 เส้นขึ้นไป"
+
+#, c-format, boost-format
+msgid "Tool %d"
+msgstr "เครื่องมือ %d"
+
+#, c-format, boost-format
+msgid ""
+"Filament %s is placed in the %s, but the generated G-code path exceeds the "
+"printable range of the %s."
+msgstr ""
+"เส้นพลาสติก %s ถูกวางไว้ใน %s แต่เส้นทาง G-code ที่สร้างขึ้นเกินช่วงที่สามารถพิมพ์ได้ของ %s"
+
+#, c-format, boost-format
+msgid ""
+"Filaments %s are placed in the %s, but the generated G-code path exceeds the "
+"printable range of the %s."
+msgstr ""
+"เส้นพลาสติก %s ถูกวางไว้ใน %s แต่เส้นทาง G-code ที่สร้างขึ้นเกินช่วงที่สามารถพิมพ์ได้ของ %s"
+
+#, c-format, boost-format
+msgid ""
+"Filament %s is placed in the %s, but the generated G-code path exceeds the "
+"printable height of the %s."
+msgstr ""
+"เส้นพลาสติก %s ถูกวางไว้ใน %s แต่เส้นทาง G-code ที่สร้างขึ้นเกินความสูงที่สามารถพิมพ์ได้ของ %s"
+
+#, c-format, boost-format
+msgid ""
+"Filaments %s are placed in the %s, but the generated G-code path exceeds the "
+"printable height of the %s."
+msgstr ""
+"เส้นพลาสติก %s ถูกวางไว้ใน %s แต่เส้นทาง G-code ที่สร้างขึ้นเกินความสูงที่สามารถพิมพ์ได้ของ %s"
+
+msgid "Open wiki for more information."
+msgstr "เปิดวิกิเพื่อดูข้อมูลเพิ่มเติม"
+
+msgid "Only the object being edited is visible."
+msgstr "มองเห็นได้เฉพาะวัตถุที่กำลังแก้ไขเท่านั้น"
+
+#, c-format, boost-format
+msgid "Filaments %s cannot be printed directly on the surface of this plate."
+msgstr "ไม่สามารถพิมพ์เส้นพลาสติก %s ลงบนพื้นผิวของเพลตนี้ได้โดยตรง"
+
+msgid ""
+"PLA and PETG filaments detected in the mixture. Adjust parameters according "
+"to the Wiki to ensure print quality."
+msgstr ""
+"ตรวจพบเส้นพลาสติก PLA และ PETG ในส่วนผสม ปรับพารามิเตอร์ตาม Wiki "
+"เพื่อรับรองคุณภาพการพิมพ์"
+
+msgid "The prime tower extends beyond the plate boundary."
+msgstr "หอคอยหลักขยายออกไปเกินขอบเขตแผ่นเปลือกโลก"
+
+msgid ""
+"Partial flushing volume set to 0. Multi-color printing may cause color "
+"mixing in models. Please readjust flushing settings."
+msgstr ""
+"ตั้งค่าปริมาณการไล่เส้นบางส่วนเป็น 0 การพิมพ์หลายสีอาจทำให้เกิดการผสมสีในรุ่นต่างๆ "
+"โปรดปรับการตั้งค่าการไล่เส้นใหม่"
+
+msgid "Click Wiki for help."
+msgstr "คลิก Wiki เพื่อขอความช่วยเหลือ"
+
+msgid "Click here to regroup"
+msgstr "คลิกที่นี่เพื่อจัดกลุ่มใหม่"
+
+msgid "Flushing Volume"
+msgstr "ปริมาตรไล่เส้น"
+
+msgid "Calibration step selection"
+msgstr "การเลือกขั้นตอนการสอบเทียบ"
+
+msgid "Micro lidar calibration"
+msgstr "การสอบเทียบไมโครไลดาร์"
+
+msgid "Bed leveling"
+msgstr "ปรับระดับฐานพิมพ์"
+
+msgid "High-temperature Heatbed Calibration"
+msgstr "การสอบเทียบ ฐานพิมพ์อุณหภูมิสูง"
+
+msgid "Nozzle clumping detection Calibration"
+msgstr "การสอบเทียบการตรวจจับการจับตัวกันของหัวฉีด"
+
+msgid "Calibration program"
+msgstr "โปรแกรมสอบเทียบ"
+
+msgid ""
+"The calibration program detects the status of your device automatically to "
+"minimize deviation.\n"
+"It keeps the device performing optimally."
+msgstr ""
+"โปรแกรมปรับเทียบจะตรวจจับสถานะของอุปกรณ์ของคุณโดยอัตโนมัติเพื่อลดความเบี่ยงเบน\n"
+"มันทำให้อุปกรณ์ทำงานได้อย่างเหมาะสมที่สุด"
+
+msgid "Calibration Flow"
+msgstr "การไหลของการสอบเทียบ"
+
+msgid "Start Calibration"
+msgstr "เริ่มปรับเทียบ"
+
+msgid "Completed"
+msgstr "สมบูรณ์"
+
+msgid "Calibrating"
+msgstr "กำลังปรับเทียบ"
+
+msgid "No step selected"
+msgstr "ไม่ได้เลือกขั้นตอน"
+
+msgid "Auto-record Monitoring"
+msgstr "การตรวจสอบบันทึกอัตโนมัติ"
+
+msgid "Go Live"
+msgstr "ดูสด"
+
+msgid "Liveview Retry"
+msgstr "ลองดูภาพสดอีกครั้ง"
+
+msgid "Resolution"
+msgstr "ปณิธาน"
+
+msgid "Enable"
+msgstr "เปิดใช้"
+
+msgid "Hostname or IP"
+msgstr "ชื่อโฮสต์หรือ IP"
+
+msgid "Custom camera source"
+msgstr "แหล่งที่มาของกล้องแบบกำหนดเอง"
+
+msgid "Show \"Live Video\" guide page."
+msgstr "แสดงหน้าคำแนะนำ \"วิดีโอสด\""
+
+msgid "Connect Printer (LAN)"
+msgstr "เชื่อมต่อเครื่องพิมพ์ (LAN)"
+
+msgid "Please input the printer access code:"
+msgstr "โปรดใส่รหัสเข้าถึงเครื่องพิมพ์:"
+
+msgid ""
+"You can find it in \"Settings > Network > Access code\"\n"
+"on the printer, as shown in the figure:"
+msgstr ""
+"คุณสามารถค้นหาได้ใน \"การตั้งค่า > เครือข่าย > รหัสการเข้าถึง\"\n"
+"บนเครื่องพิมพ์ ดังแสดงในรูป:"
+
+msgid ""
+"You can find it in \"Setting > Setting > LAN only > Access Code\"\n"
+"on the printer, as shown in the figure:"
+msgstr ""
+"คุณสามารถค้นหาได้ใน \"การตั้งค่า > การตั้งค่า > LAN เท่านั้น > รหัสการเข้าถึง\"\n"
+"บนเครื่องพิมพ์ ดังแสดงในรูป:"
+
+msgid "Invalid input."
+msgstr "ข้อมูลไม่ถูกต้อง"
+
+msgid "New Window"
+msgstr "หน้าต่างใหม่"
+
+msgid "Open a new window"
+msgstr "เปิดหน้าต่างใหม่"
+
+msgid "Application is closing"
+msgstr "ปิดรับสมัครแล้ว"
+
+msgid "Closing Application while some presets are modified."
+msgstr "การปิดแอปพลิเคชันในขณะที่มีการแก้ไขค่าที่ตั้งไว้บางส่วน"
+
+msgid "Logging"
+msgstr "การบันทึก"
+
+msgid "Prepare"
+msgstr "เตรียมพิมพ์"
+
+msgid "Preview"
+msgstr "พรีวิว"
+
+msgid "Device"
+msgstr "อุปกรณ์"
+
+msgid "Multi-device"
+msgstr "หลายอุปกรณ์"
+
+msgid "Project"
+msgstr "โปรเจกต์"
+
+msgid "Yes"
+msgstr "ใช่"
+
+msgid "No"
+msgstr "ไม่"
+
+msgid "will be closed before creating a new model. Do you want to continue?"
+msgstr "จะถูกปิดก่อนที่จะสร้างโมเดลใหม่ คุณต้องการดำเนินการต่อหรือไม่?"
+
+msgid "Slice plate"
+msgstr "สไลซ์ฐานพิมพ์"
+
+msgid "Print plate"
+msgstr "พิมพ์ฐานพิมพ์"
+
+msgid "Export G-code file"
+msgstr "ส่งออกไฟล์ G-code"
+
+msgid "Send"
+msgstr "ส่ง"
+
+msgid "Export plate sliced file"
+msgstr "ส่งออกไฟล์แผ่นสไลซ์บาง ๆ"
+
+msgid "Export all sliced file"
+msgstr "ส่งออกไฟล์ที่สไลซ์บาง ๆ ทั้งหมด"
+
+msgid "Print all"
+msgstr "พิมพ์ทั้งหมด"
+
+msgid "Send all"
+msgstr "ส่งทั้งหมด"
+
+msgid "Send to Multi-device"
+msgstr "ส่งไปยังอุปกรณ์หลายเครื่อง"
+
+msgid "Keyboard Shortcuts"
+msgstr "แป้นพิมพ์ลัด"
+
+msgid "Show the list of keyboard shortcuts"
+msgstr "แสดงรายการแป้นพิมพ์ลัด"
+
+msgid "Setup Wizard"
+msgstr "วิซาร์ดการตั้งค่า"
+
+msgid "Show Configuration Folder"
+msgstr "แสดงโฟลเดอร์การกำหนดค่า"
+
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "เปิดทดสอบเครือข่าย"
+
+msgid "Show Tip of the Day"
+msgstr "แสดงเคล็ดลับประจำวัน"
+
+msgid "Check for Updates"
+msgstr "ตรวจสอบการอัปเดต"
+
+#, c-format, boost-format
+msgid "&About %s"
+msgstr "&เกี่ยวกับ %s"
+
+msgid "Upload Models"
+msgstr "อัปโหลดโมเดล"
+
+msgid "Download Models"
+msgstr "ดาวน์โหลดโมเดล"
+
+msgid "Default View"
+msgstr "มุมมองเริ่มต้น"
+
+msgid "Top View"
+msgstr "มุมมองด้านบน"
+
+#. TRN To be shown in the main menu View->Bottom
+msgid "Bottom"
+msgstr "ล่าง"
+
+msgid "Bottom View"
+msgstr "มุมมองด้านล่าง"
+
+msgid "Front"
+msgstr "ด้านหน้า"
+
+msgid "Front View"
+msgstr "มุมมองด้านหน้า"
+
+msgid "Rear"
+msgstr "ด้านหลัง"
+
+msgid "Rear View"
+msgstr "มุมมองด้านหลัง"
+
+msgid "Left View"
+msgstr "มุมมองด้านซ้าย"
+
+msgid "Right View"
+msgstr "มุมมองด้านขวา"
+
+msgid "Start a new window"
+msgstr "เริ่มหน้าต่างใหม่"
+
+msgid "New Project"
+msgstr "โปรเจกต์ใหม่"
+
+msgid "Start a new project"
+msgstr "เริ่มโครงการใหม่"
+
+msgid "Open a project file"
+msgstr "เปิดไฟล์โครงการ"
+
+msgid "Recent files"
+msgstr "ไฟล์ล่าสุด"
+
+msgid "Save Project"
+msgstr "บันทึกโปรเจกต์"
+
+msgid "Save current project to file"
+msgstr "บันทึกโครงการปัจจุบันลงไฟล์"
+
+msgid "Save Project as"
+msgstr "บันทึกโปรเจกต์เป็น"
+
+msgid "Save current project as"
+msgstr "บันทึกโครงการปัจจุบันเป็น"
+
+msgid "Import 3MF/STL/STEP/SVG/OBJ/AMF"
+msgstr "นำเข้า 3MF/STL/STEP/SVG/OBJ/AMF"
+
+msgid "Load a model"
+msgstr "โหลดโมเดล"
+
+msgid "Import Zip Archive"
+msgstr "นำเข้าไฟล์ Zip"
+
+msgid "Load models contained within a zip archive"
+msgstr "โหลดโมเดลที่มีอยู่ในไฟล์ zip"
+
+msgid "Import Configs"
+msgstr "นำเข้าการกำหนดค่า"
+
+msgid "Load configs"
+msgstr "โหลดการกำหนดค่า"
+
+msgid "Import"
+msgstr "นำเข้า"
+
+msgid "Export all objects as one STL"
+msgstr "ส่งออกวัตถุทั้งหมดเป็น STL เดียว"
+
+msgid "Export all objects as STLs"
+msgstr "ส่งออกวัตถุทั้งหมดเป็น STL"
+
+msgid "Export all objects as one DRC"
+msgstr "ส่งออกวัตถุทั้งหมดเป็น DRC เดียว"
+
+msgid "Export all objects as DRCs"
+msgstr "ส่งออกวัตถุทั้งหมดเป็น DRC"
+
+msgid "Export Generic 3MF"
+msgstr "ส่งออก 3MF ทั่วไป"
+
+msgid "Export 3MF file without using some 3mf-extensions"
+msgstr "ส่งออกไฟล์ 3MF โดยไม่ใช้ส่วนขยาย 3mf บางส่วน"
+
+msgid "Export current sliced file"
+msgstr "ส่งออกไฟล์ที่สไลซ์เป็นชิ้นปัจจุบัน"
+
+msgid "Export all plate sliced file"
+msgstr "ส่งออกไฟล์ที่สไลซ์เป็นแผ่นทั้งหมด"
+
+msgid "Export G-code"
+msgstr "ส่งออก G-code"
+
+msgid "Export current plate as G-code"
+msgstr "ส่งออกแผ่นปัจจุบันเป็นรหัส G"
+
+msgid "Export toolpaths as OBJ"
+msgstr "ส่งออกเส้นทางเครื่องมือเป็น OBJ"
+
+msgid "Export Preset Bundle"
+msgstr "ส่งออกชุดที่ตั้งไว้ล่วงหน้า"
+
+msgid "Export current configuration to files"
+msgstr "ส่งออกการกำหนดค่าปัจจุบันไปยังไฟล์"
+
+msgid "Export"
+msgstr "ส่งออก"
+
+msgid "Sync Presets"
+msgstr "ซิงค์พรีเซ็ต"
+
+msgid "Pull and apply the latest presets from OrcaCloud"
+msgstr "ดึงและใช้ค่าที่ตั้งล่วงหน้าล่าสุดจาก OrcaCloud"
+
+msgid "You must be logged in to sync presets from cloud."
+msgstr "คุณต้องเข้าสู่ระบบเพื่อซิงค์ค่าที่ตั้งล่วงหน้าจากคลาวด์"
+
+msgid "Quit"
+msgstr "ออก"
+
+msgid "Undo"
+msgstr "เลิกทำ"
+
+msgid "Redo"
+msgstr "ทำซ้ำ"
+
+msgid "Cut selection to clipboard"
+msgstr "ตัดส่วนที่เลือกไปที่คลิปบอร์ด"
+
+msgid "Copy"
+msgstr "คัดลอก"
+
+msgid "Copy selection to clipboard"
+msgstr "คัดลอกส่วนที่เลือกไปยังคลิปบอร์ด"
+
+msgid "Paste"
+msgstr "วาง"
+
+msgid "Paste clipboard"
+msgstr "วางคลิปบอร์ด"
+
+msgid "Delete selected"
+msgstr "ลบรายการที่เลือก"
+
+msgid "Deletes the current selection"
+msgstr "ลบการเลือกปัจจุบัน"
+
+msgid "Delete all"
+msgstr "ลบทั้งหมด"
+
+msgid "Deletes all objects"
+msgstr "ลบวัตถุทั้งหมด"
+
+msgid "Clone selected"
+msgstr "เลือกโคลนแล้ว"
+
+msgid "Clone copies of selections"
+msgstr "คัดลอกสำเนาของการเลือก"
+
+msgid "Duplicate Current Plate"
+msgstr "ทำซ้ำแผ่นปัจจุบัน"
+
+msgid "Duplicate the current plate"
+msgstr "ทำซ้ำแผ่นปัจจุบัน"
+
+msgid "Select all"
+msgstr "เลือกทั้งหมด"
+
+msgid "Selects all objects"
+msgstr "เลือกวัตถุทั้งหมด"
+
+msgid "Deselect all"
+msgstr "ยกเลิกการเลือกทั้งหมด"
+
+msgid "Deselects all objects"
+msgstr "ยกเลิกการเลือกออบเจ็กต์ทั้งหมด"
+
+msgid "Use Perspective View"
+msgstr "ใช้มุมมองเปอร์สเปคทีฟ"
+
+msgid "Use Orthogonal View"
+msgstr "ใช้มุมมองมุมฉาก"
+
+msgid "Auto Perspective"
+msgstr "มุมมองอัตโนมัติ"
+
+msgid ""
+"Automatically switch between orthographic and perspective when changing from "
+"top/bottom/side views."
+msgstr ""
+"สลับระหว่างออร์โธกราฟิกและเปอร์สเปคทีฟโดยอัตโนมัติเมื่อเปลี่ยนจากมุมมองด้านบน/ล่าง/ด้านข้าง"
+
+msgid "Show &G-code Window"
+msgstr "แสดงหน้าต่าง &G-code"
+
+msgid "Show G-code window in Preview scene."
+msgstr "แสดงหน้าต่าง G-code ในฉากแสดงตัวอย่าง"
+
+msgid "Show 3D Navigator"
+msgstr "แสดง 3D Navigator"
+
+msgid "Show 3D navigator in Prepare and Preview scene."
+msgstr "แสดงเครื่องนำทาง 3 มิติในฉากเตรียมและดูตัวอย่าง"
+
+msgid "Show Gridlines"
+msgstr "แสดงเส้นกริด"
+
+msgid "Show Gridlines on plate"
+msgstr "แสดงเส้นตารางบนจาน"
+
+msgid "Reset Window Layout"
+msgstr "รีเซ็ตเค้าโครงหน้าต่าง"
+
+msgid "Reset to default window layout"
+msgstr "รีเซ็ตเป็นเค้าโครงหน้าต่างเริ่มต้น"
+
+msgid "Show &Labels"
+msgstr "แสดง&ป้ายชื่อ"
+
+msgid "Show object labels in 3D scene."
+msgstr "แสดงป้ายกำกับวัตถุในฉาก 3 มิติ"
+
+msgid "Show &Overhang"
+msgstr "แสดง&โอเวอร์แฮงค์"
+
+msgid "Show object overhang highlight in 3D scene."
+msgstr "แสดงไฮไลท์ส่วนยื่นของวัตถุในฉาก 3 มิติ"
+
+msgid "Show Selected Outline (beta)"
+msgstr "แสดงโครงร่างที่เลือก (เบต้า)"
+
+msgid "Show outline around selected object in 3D scene."
+msgstr "แสดงเค้าร่างรอบๆ วัตถุที่เลือกในฉาก 3 มิติ"
+
+msgid "Preferences"
+msgstr "การตั้งค่า"
+
+msgid "View"
+msgstr "มุมมอง"
+
+msgid "Preset Bundle"
+msgstr "ชุดที่ตั้งไว้ล่วงหน้า"
+
+msgid "Syncing presets from cloud…"
+msgstr "กำลังซิงค์ค่าที่ตั้งล่วงหน้าจากคลาวด์..."
+
+msgid "Help"
+msgstr "ช่วยเหลือ"
+
+msgid "Temperature Calibration"
+msgstr "ปรับเทียบอุณหภูมิ"
+
+msgid "Max flowrate"
+msgstr "อัตราการไหลสูงสุด"
+
+msgid "Pressure advance"
+msgstr "แรงดันล่วงหน้า (Pressure Advance)"
+
+msgid "Flow ratio"
+msgstr "อัตราส่วนการไหล"
+
+msgid "Flow Rate Calibration"
+msgstr "ปรับเทียบอัตราการไหล"
+
+msgid "Retraction"
+msgstr "การดึงกลับ"
+
+msgid "Cornering"
+msgstr "การเข้าโค้ง"
+
+msgid "Cornering calibration"
+msgstr "ปรับเทียบการเข้าโค้ง"
+
+msgid "Input Shaping Frequency"
+msgstr "ความถี่ Input Shaping"
+
+msgid "Input Shaping Damping/zeta factor"
+msgstr "ค่าหน่วง/zeta ของ Input Shaping"
+
+msgid "Input Shaping"
+msgstr "Input Shaping"
+
+msgid "VFA"
+msgstr "VFA"
+
+msgid "Calibration Guide"
+msgstr "คู่มือการสอบเทียบ"
+
+msgid "&Open G-code"
+msgstr "&เปิดรหัส G"
+
+msgid "Open a G-code file"
+msgstr "เปิดไฟล์รหัส G"
+
+msgid "Re&load from Disk"
+msgstr "&โหลดจากดิสก์อีกครั้ง"
+
+msgid "Reload the plater from disk"
+msgstr "โหลดเพลเตอร์จากดิสก์อีกครั้ง"
+
+msgid "Export &Toolpaths as OBJ"
+msgstr "ส่งออก &Toolpaths เป็น OBJ"
+
+msgid "Open &Slicer"
+msgstr "เปิด&ตัวแบ่งส่วนข้อมูล"
+
+msgid "Open Slicer"
+msgstr "เปิดตัวแบ่งส่วนข้อมูล"
+
+msgid "&Quit"
+msgstr "&ออก"
+
+#, c-format, boost-format
+msgid "Quit %s"
+msgstr "ออกจาก %s"
+
+msgid "&File"
+msgstr "&ไฟล์"
+
+msgid "&View"
+msgstr "&มุมมอง"
+
+msgid "&Help"
+msgstr "&ช่วยเหลือ"
+
+#, c-format, boost-format
+msgid "A file exists with the same name: %s, do you want to overwrite it?"
+msgstr "มีไฟล์ชื่อเดียวกันนี้: %s คุณต้องการเขียนทับหรือไม่?"
+
+#, c-format, boost-format
+msgid "A config exists with the same name: %s, do you want to overwrite it?"
+msgstr "มีการกำหนดค่าชื่อเดียวกัน: %s คุณต้องการเขียนทับหรือไม่"
+
+msgid "Overwrite file"
+msgstr "เขียนทับไฟล์"
+
+msgid "Overwrite config"
+msgstr "เขียนทับการกำหนดค่า"
+
+msgid "Yes to All"
+msgstr "ใช่ทั้งหมด"
+
+msgid "No to All"
+msgstr "ไม่ใช่ทั้งหมด"
+
+msgid "Choose a directory"
+msgstr "เลือกไดเร็กทอรี"
+
+#, c-format, boost-format
+msgid "There is %d config exported. (Only non-system configs)"
+msgid_plural "There are %d configs exported. (Only non-system configs)"
+msgstr[0] "มีการส่งออกการตั้งค่า %d รายการ (เฉพาะการตั้งค่าที่ไม่ใช่ของระบบ)"
+
+msgid "Export result"
+msgstr "ผลลัพธ์การส่งออก"
+
+msgid "Select profile to load:"
+msgstr "เลือกโปรไฟล์ที่จะโหลด:"
+
+#, c-format, boost-format
+msgid "There is %d config imported. (Only non-system and compatible configs)"
+msgid_plural ""
+"There are %d configs imported. (Only non-system and compatible configs)"
+msgstr[0] ""
+"There is %d config imported. (Only non-system and compatible configs)"
+
+msgid ""
+"\n"
+"Hint: Make sure you have added the corresponding printer before importing "
+"the configs."
+msgstr ""
+"\n"
+"คำแนะนำ: ตรวจสอบให้แน่ใจว่าคุณได้เพิ่มเครื่องพิมพ์ที่เกี่ยวข้องก่อนที่จะนำเข้าการกำหนดค่า"
+
+msgid "Import result"
+msgstr "นำเข้าผลลัพธ์"
+
+msgid "File is missing"
+msgstr "ไฟล์หายไป"
+
+msgid "The project is no longer available."
+msgstr "โครงการนี้ไม่สามารถใช้ได้อีกต่อไป"
+
+msgid "Filament Settings"
+msgstr "การตั้งค่าเส้นพลาสติก"
+
+msgid ""
+"Do you want to synchronize your personal data from Orca Cloud?\n"
+"It contains the following information:\n"
+"1. The Process presets\n"
+"2. The Filament presets\n"
+"3. The Printer presets"
+msgstr ""
+"คุณต้องการซิงโครไนซ์ข้อมูลส่วนบุคคลของคุณจาก Orca Cloud หรือไม่?\n"
+"ประกอบด้วยข้อมูลต่อไปนี้:\n"
+"1. กระบวนการที่ตั้งไว้ล่วงหน้า\n"
+"2. ค่าที่ตั้งไว้ล่วงหน้าของ เส้นพลาสติก\n"
+"3. เครื่องพิมพ์จะตั้งค่าล่วงหน้า"
+
+msgid "Synchronization"
+msgstr "การซิงโครไนซ์"
+
+msgid "The device cannot handle more conversations. Please retry later."
+msgstr "อุปกรณ์ไม่สามารถรองรับการสนทนาเพิ่มไส้ในได้ โปรดลองอีกครั้งในภายหลัง"
+
+msgid "Player is malfunctioning. Please reinstall the system player."
+msgstr "เครื่องเล่นทำงานผิดปกติ กรุณาติดตั้งเครื่องเล่นระบบใหม่"
+
+msgid "The player is not loaded, please click \"play\" button to retry."
+msgstr "โปรแกรมเล่นไม่ได้โหลด กรุณาคลิกปุ่ม \"เล่น\" เพื่อลองอีกครั้ง"
+
+msgid ""
+"The player is not loaded because the GStreamer GTK video sink is missing or "
+"failed to initialize."
+msgstr ""
+"ไม่ได้โหลดโปรแกรมเล่นเนื่องจาก GStreamer GTK video sink หายไปหรือไม่สามารถเริ่มต้นได้"
+
+msgid "Please confirm if the printer is connected."
+msgstr "โปรดยืนยันว่าเครื่องพิมพ์เชื่อมต่ออยู่หรือไม่"
+
+msgid ""
+"The printer is currently busy downloading. Please try again after it "
+"finishes."
+msgstr "เครื่องพิมพ์กำลังยุ่งอยู่กับการดาวน์โหลด โปรดลองอีกครั้งหลังจากเสร็จสิ้น"
+
+msgid "Printer camera is malfunctioning."
+msgstr "กล้องเครื่องพิมพ์ทำงานผิดปกติ"
+
+msgid "A problem occurred. Please update the printer firmware and try again."
+msgstr "เกิดปัญหาขึ้น โปรดอัปเดตเฟิร์มแวร์เครื่องพิมพ์แล้วลองอีกครั้ง"
+
+msgid ""
+"LAN Only Liveview is off. Please turn on the liveview on printer screen."
+msgstr "LAN Only Liveview ปิดอยู่ กรุณาเปิด liveview บนหน้าจอเครื่องพิมพ์"
+
+msgid "Please enter the IP of printer to connect."
+msgstr "โปรดป้อน IP ของเครื่องพิมพ์เพื่อเชื่อมต่อ"
+
+msgid "Initializing..."
+msgstr "กำลังเริ่มต้น..."
+
+msgid "Connection Failed. Please check the network and try again"
+msgstr "การเชื่อมต่อล้มเหลว โปรดตรวจสอบเครือข่ายแล้วลองอีกครั้ง"
+
+msgid ""
+"Please check the network and try again. You can restart or update the "
+"printer if the issue persists."
+msgstr ""
+"โปรดตรวจสอบเครือข่ายแล้วลองอีกครั้ง คุณสามารถรีสตาร์ทหรืออัปเดตเครื่องพิมพ์ได้หากปัญหายังคงมีอยู่"
+
+msgid "The printer has been logged out and cannot connect."
+msgstr "เครื่องพิมพ์ออกจากระบบและไม่สามารถเชื่อมต่อได้"
+
+msgid "Video Stopped."
+msgstr "วิดีโอหยุดแล้ว"
+
+msgid "LAN Connection Failed (Failed to start liveview)"
+msgstr "การเชื่อมต่อ LAN ล้มเหลว (ไม่สามารถเริ่ม liveview)"
+
+msgid ""
+"Virtual Camera Tools is required for this task!\n"
+"Do you want to install them?"
+msgstr ""
+"จำเป็นต้องมีเครื่องมือกล้องเสมือนสำหรับงานนี้!\n"
+"คุณต้องการติดตั้งหรือไม่?"
+
+msgid "Downloading Virtual Camera Tools"
+msgstr "กำลังดาวน์โหลดเครื่องมือกล้องเสมือน"
+
+msgid ""
+"Another virtual camera is running.\n"
+"Orca Slicer supports only a single virtual camera.\n"
+"Do you want to stop this virtual camera?"
+msgstr ""
+"กล้องเสมือนอีกตัวกำลังทำงานอยู่\n"
+"Orca Slicer รองรับกล้องเสมือนเพียงตัวเดียวเท่านั้น\n"
+"คุณต้องการหยุดกล้องเสมือนนี้หรือไม่?"
+
+#, c-format, boost-format
+msgid "Virtual camera initialize failed (%s)!"
+msgstr "การเริ่มต้นกล้องเสมือนล้มเหลว (%s)!"
+
+msgid "Network unreachable"
+msgstr "ไม่สามารถเข้าถึงเครือข่าย"
+
+msgid "Information"
+msgstr "ข้อมูล"
+
+msgid "Playing..."
+msgstr "กำลังเล่น..."
+
+msgid "Loading..."
+msgstr "กำลังโหลด..."
+
+msgid "Year"
+msgstr "ปี"
+
+msgid "Month"
+msgstr "เดือน"
+
+msgid "All Files"
+msgstr "ไฟล์ทั้งหมด"
+
+msgid "Group files by year, recent first."
+msgstr "จัดกลุ่มไฟล์ตามปี ล่าสุดก่อน"
+
+msgid "Group files by month, recent first."
+msgstr "จัดกลุ่มไฟล์ตามเดือน ล่าสุดก่อน"
+
+msgid "Show all files, recent first."
+msgstr "แสดงไฟล์ทั้งหมด โดยแสดงไฟล์ล่าสุดก่อน"
+
+msgid "Timelapse"
+msgstr "ไทม์แลปส์"
+
+msgid "Switch to timelapse files."
+msgstr "สลับไปยังไฟล์ไทม์แลปส์"
+
+msgid "Video"
+msgstr "วีดีโอ"
+
+msgid "Switch to video files."
+msgstr "สลับไปยังไฟล์วิดีโอ"
+
+msgid "Switch to 3MF model files."
+msgstr "สลับเป็นไฟล์โมเดล 3MF"
+
+msgid "Delete selected files from printer."
+msgstr "ลบไฟล์ที่เลือกออกจากเครื่องพิมพ์"
+
+msgid "Download"
+msgstr "ดาวน์โหลด"
+
+msgid "Download selected files from printer."
+msgstr "ดาวน์โหลดไฟล์ที่เลือกจากเครื่องพิมพ์"
+
+msgid "Batch manage files."
+msgstr "จัดการไฟล์เป็นกลุ่ม"
+
+msgid "Refresh"
+msgstr "รีเฟรช"
+
+msgid "Reload file list from printer."
+msgstr "โหลดรายการไฟล์จากเครื่องพิมพ์อีกครั้ง"
+
+msgid "No printers."
+msgstr "ไม่มีเครื่องพิมพ์"
+
+msgid "Loading file list..."
+msgstr "กำลังโหลดรายการไฟล์..."
+
+msgid "No files"
+msgstr "ไม่มีไฟล์"
+
+msgid "Load failed"
+msgstr "โหลดล้มเหลว"
+
+msgid ""
+"Browsing file in storage is not supported in current firmware. Please update "
+"the printer firmware."
+msgstr ""
+"การเรียกดูไฟล์ในที่จัดเก็บข้อมูลไม่ได้รับส่วนรองรับในเฟิร์มแวร์ปัจจุบัน โปรดอัปเดตเฟิร์มแวร์เครื่องพิมพ์"
+
+msgid "LAN Connection Failed (Failed to view sdcard)"
+msgstr "การเชื่อมต่อ LAN ล้มเหลว (ไม่สามารถดู sdcard)"
+
+msgid "Browsing file in storage is not supported in LAN Only Mode."
+msgstr "ไม่รองรับการเรียกดูไฟล์ในที่จัดเก็บข้อมูลในโหมด LAN เท่านั้น"
+
+#, c-format, boost-format
+msgid "You are going to delete %u file from printer. Are you sure to continue?"
+msgid_plural ""
+"You are going to delete %u files from printer. Are you sure to continue?"
+msgstr[0] ""
+"You are going to delete %u file from printer. Are you sure to continue?"
+
+msgid "Delete files"
+msgstr "ไฟล์ลบ"
+
+#, c-format, boost-format
+msgid "Do you want to delete the file '%s' from printer?"
+msgstr "คุณต้องการลบไฟล์ '%s' ออกจากเครื่องพิมพ์หรือไม่?"
+
+msgid "Delete file"
+msgstr "ไฟล์ลบ"
+
+msgid "Fetching model information..."
+msgstr "กำลังเรียกข้อมูลรุ่น..."
+
+msgid "Failed to fetch model information from printer."
+msgstr "ไม่สามารถดึงข้อมูลรุ่นจากเครื่องพิมพ์"
+
+msgid "Failed to parse model information."
+msgstr "ไม่สามารถแยกวิเคราะห์ข้อมูลโมเดล"
+
+msgid ""
+"The .gcode.3mf file contains no G-code data. Please slice it with Orca "
+"Slicer and export a new .gcode.3mf file."
+msgstr ""
+"ไฟล์ .gcode.3mf ไม่มีข้อมูล G-code โปรดแบ่งส่วนด้วย Orca Slicer และส่งออกไฟล์ ."
+"gcode.3mf ใหม่"
+
+#, c-format, boost-format
+msgid "File '%s' was lost! Please download it again."
+msgstr "ไฟล์ '%s' สูญหาย! กรุณาดาวน์โหลดอีกครั้ง."
+
+#, c-format, boost-format
+msgid ""
+"File: %s\n"
+"Title: %s\n"
+msgstr ""
+"ไฟล์: %s\n"
+"ชื่อเรื่อง: %s\n"
+
+msgid "Download waiting..."
+msgstr "ดาวน์โหลดรอ..."
+
+msgid "Play"
+msgstr "เล่น"
+
+msgid "Open Folder"
+msgstr "เปิดโฟลเดอร์"
+
+msgid "Download finished"
+msgstr "ดาวน์โหลดเสร็จแล้ว"
+
+#, c-format, boost-format
+msgid "Downloading %d%%..."
+msgstr "กำลังดาวน์โหลด %d%%..."
+
+msgid "Air Condition"
+msgstr "ปรับอากาศ"
+
+msgid ""
+"Reconnecting the printer, the operation cannot be completed immediately, "
+"please try again later."
+msgstr ""
+"กำลังเชื่อมต่อเครื่องพิมพ์ใหม่ ไม่สามารถดำเนินการให้เสร็จสิ้นได้ในทันที โปรดลองอีกครั้งในภายหลัง"
+
+msgid "Timeout, please try again."
+msgstr "หมดเวลา โปรดลองอีกครั้ง"
+
+msgid "File does not exist."
+msgstr "ไม่มีไฟล์นี้"
+
+msgid "File checksum error. Please retry."
+msgstr "ข้อผิดพลาดในการตรวจสอบไฟล์ กรุณาลองอีกครั้ง"
+
+msgid "Not supported on the current printer version."
+msgstr "ไม่รองรับเครื่องพิมพ์เวอร์ชันปัจจุบัน"
+
+msgid ""
+"Please check if the storage is inserted into the printer.\n"
+"If it still cannot be read, you can try formatting the storage."
+msgstr ""
+"โปรดตรวจสอบว่ามีการใส่ที่เก็บข้อมูลเข้าไปในเครื่องพิมพ์หรือไม่\n"
+"หากยังไม่สามารถอ่านได้ คุณสามารถลองฟอร์แมตที่จัดเก็บข้อมูลได้"
+
+msgid ""
+"The firmware version of the printer is too low. Please update the firmware "
+"and try again."
+msgstr "เวอร์ชันเฟิร์มแวร์ของเครื่องพิมพ์ต่ำเกินไป โปรดอัปเดตเฟิร์มแวร์แล้วลองอีกครั้ง"
+
+msgid "The file already exists, do you want to replace it?"
+msgstr "ไฟล์นี้มีอยู่แล้ว คุณต้องการแทนที่หรือไม่"
+
+msgid "Insufficient storage space, please clear the space and try again."
+msgstr "พื้นที่เก็บข้อมูลไม่เพียงพอ โปรดล้างพื้นที่แล้วลองอีกครั้ง"
+
+msgid "File creation failed, please try again."
+msgstr "การสร้างไฟล์ล้มเหลว โปรดลองอีกครั้ง"
+
+msgid "File write failed, please try again."
+msgstr "การเขียนไฟล์ล้มเหลว โปรดลองอีกครั้ง"
+
+msgid "MD5 verification failed, please try again."
+msgstr "การยืนยัน MD5 ล้มเหลว โปรดลองอีกครั้ง"
+
+msgid "File renaming failed, please try again."
+msgstr "การเปลี่ยนชื่อไฟล์ล้มเหลว โปรดลองอีกครั้ง"
+
+msgid "File upload failed, please try again."
+msgstr "การอัปโหลดไฟล์ล้มเหลว โปรดลองอีกครั้ง"
+
+#, c-format, boost-format
+msgid "Error code: %d"
+msgstr "รหัสข้อผิดพลาด: %d"
+
+msgid "User cancels task."
+msgstr "ผู้ใช้ยกเลิกงาน"
+
+msgid "Failed to read file, please try again."
+msgstr "ไม่สามารถอ่านไฟล์ได้ โปรดลองอีกครั้ง"
+
+msgid "Speed:"
+msgstr "ความเร็ว:"
+
+msgid "Deadzone:"
+msgstr "เดดโซน:"
+
+msgid "Options:"
+msgstr "ตัวเลือก:"
+
+msgid "Zoom"
+msgstr "ซูม"
+
+msgid "Translation/Zoom"
+msgstr "การแปล/ซูม"
+
+msgid "3Dconnexion settings"
+msgstr "การตั้งค่า 3Dconnexion"
+
+msgid "Swap Y/Z axes"
+msgstr "สลับแกน Y/Z"
+
+msgid "Invert X axis"
+msgstr "กลับแกน X"
+
+msgid "Invert Y axis"
+msgstr "กลับแกน Y"
+
+msgid "Invert Z axis"
+msgstr "กลับแกน Z"
+
+msgid "Invert Yaw axis"
+msgstr "กลับแกนหันเห"
+
+msgid "Invert Pitch axis"
+msgstr "สลับแกนพิทช์"
+
+msgid "Invert Roll axis"
+msgstr "กลับแกนม้วน"
+
+msgid "(LAN)"
+msgstr "(แลน)"
+
+msgid "Search"
+msgstr "ค้นหา"
+
+msgid "My Device"
+msgstr "อุปกรณ์ของฉัน"
+
+msgid "Other Device"
+msgstr "อุปกรณ์อื่น ๆ"
+
+msgid "Online"
+msgstr "ออนไลน์"
+
+msgid "Input access code"
+msgstr "ป้อนรหัสการเข้าถึง"
+
+msgid "Can't find my devices?"
+msgstr "ไม่พบอุปกรณ์ของฉัน?"
+
+msgid "Log out successful."
+msgstr "ออกจากระบบสำเร็จ"
+
+msgid "Offline"
+msgstr "ออฟไลน์"
+
+msgid "Busy"
+msgstr "ไม่ว่าง"
+
+msgid "Modifying the device name"
+msgstr "การปรับเปลี่ยนชื่ออุปกรณ์"
+
+msgid "Name is invalid;"
+msgstr "ชื่อไม่ถูกต้อง"
+
+msgid "illegal characters:"
+msgstr "อักขระที่ผิดกฎหมาย:"
+
+msgid "illegal suffix:"
+msgstr "คำต่อท้ายที่ผิดกฎหมาย:"
+
+msgid "The name is not allowed to be empty."
+msgstr "ชื่อไม่ได้รับอนุญาตให้เว้นว่าง"
+
+msgid "The name is not allowed to start with space character."
+msgstr "ชื่อไม่ได้รับอนุญาตให้ขึ้นต้นด้วยอักขระเว้นวรรค"
+
+msgid "The name is not allowed to end with space character."
+msgstr "ชื่อไม่ได้รับอนุญาตให้ลงท้ายด้วยอักขระเว้นวรรค"
+
+msgid "The name is not allowed to exceed 32 characters."
+msgstr "ชื่อไม่ได้รับอนุญาตให้เกิน 32 ตัวอักษร"
+
+msgid "Bind with Pin Code"
+msgstr "ผูกด้วยรหัสพิน"
+
+msgid "Bind with Access Code"
+msgstr "ผูกด้วยรหัสการเข้าถึง"
+
+msgctxt "Quit_Switching"
+msgid "Quit"
+msgstr "ออก"
+
+msgid "Switching..."
+msgstr "กำลังเปลี่ยน..."
+
+msgid "Switching failed"
+msgstr "การสลับล้มเหลว"
+
+msgid "Printing Progress"
+msgstr "ความคืบหน้าการพิมพ์"
+
+msgid "Parts Skip"
+msgstr "อะไหล่ข้าม"
+
+msgid "Stop"
+msgstr "หยุด"
+
+msgid "Layer: N/A"
+msgstr "ชั้น: N/A"
+
+msgid "Click to view thermal preconditioning explanation"
+msgstr "คลิกเพื่อดูคำอธิบายการปรับสภาพล่วงหน้าทางความร้อน"
+
+msgid "Clear"
+msgstr "ชัดเจน"
+
+msgid ""
+"You have completed printing the mall model, \n"
+"but the synchronization of rating information has failed."
+msgstr ""
+"คุณพิมพ์โมเดลห้างสรรพสินค้าเสร็จแล้ว \n"
+"แต่การซิงโครไนซ์ข้อมูลการให้คะแนนล้มเหลว"
+
+msgid "How do you like this printing file?"
+msgstr "คุณชอบไฟล์การพิมพ์นี้อย่างไร?"
+
+msgid ""
+"(The model has already been rated. Your rating will overwrite the previous "
+"rating.)"
+msgstr "(แบบจำลองได้รับการจัดอันดับแล้ว การให้คะแนนของคุณจะเขียนทับการให้คะแนนครั้งก่อน)"
+
+msgid "Rate"
+msgstr "ประเมิน"
+
+msgid "Camera"
+msgstr "กล้อง"
+
+msgid "Storage"
+msgstr "ที่จัดเก็บ"
+
+msgid "Camera Setting"
+msgstr "การตั้งค่ากล้อง"
+
+msgid "Switch Camera View"
+msgstr "สลับมุมมองกล้อง"
+
+msgid "Control"
+msgstr "ควบคุม"
+
+msgid "Printer Parts"
+msgstr "ชิ้นส่วนเครื่องพิมพ์"
+
+msgid "Print Options"
+msgstr "ตัวเลือกพิมพ์"
+
+msgid "Safety Options"
+msgstr "ตัวเลือกความปลอดภัย"
+
+msgid "Lamp"
+msgstr "ไฟ"
+
+msgid "Bed"
+msgstr "ฐานพิมพ์"
+
+msgid "Debug Info"
+msgstr "ข้อมูลการแก้ไขข้อบกพร่อง"
+
+msgid "Filament loading..."
+msgstr "กำลังโหลดเส้นพลาสติก..."
+
+msgid "No Storage"
+msgstr "ไม่มีที่จัดเก็บ"
+
+msgid "Storage Abnormal"
+msgstr "ที่จัดเก็บผิดปกติ"
+
+msgid "Cancel print"
+msgstr "ยกเลิกการพิมพ์"
+
+msgid "Are you sure you want to stop this print?"
+msgstr "คุณแน่ใจหรือไม่ว่าต้องการหยุดงานพิมพ์นี้"
+
+msgid "The printer is busy with another print job."
+msgstr "เครื่องพิมพ์กำลังยุ่งอยู่กับงานพิมพ์อื่น"
+
+msgid ""
+"When printing is paused, filament loading and unloading are only supported "
+"for external slots."
+msgstr "เมื่อหยุดการพิมพ์ชั่วคราว การโหลดฟิลาเมนท์และการขนถ่ายจะรองรับเฉพาะช่องภายนอกเท่านั้น"
+
+msgid "Current extruder is busy changing filament."
+msgstr "ปัจจุบันชุดดันเส้นกำลังยุ่งอยู่กับการเปลี่ยนเส้นพลาสติก"
+
+msgid "Current slot has already been loaded."
+msgstr "ช่องปัจจุบันถูกโหลดแล้ว"
+
+msgid "The selected slot is empty."
+msgstr "ช่องที่เลือกว่างเปล่า"
+
+msgid "Printer 2D mode does not support 3D calibration"
+msgstr "โหมด 2D ของเครื่องพิมพ์ไม่รองรับการปรับเทียบ 3D"
+
+msgid "Downloading..."
+msgstr "กำลังดาวน์โหลด..."
+
+msgid "Cloud Slicing..."
+msgstr "คลาวด์สไลซ์..."
+
+#, c-format, boost-format
+msgid "In Cloud Slicing Queue, there are %s tasks ahead."
+msgstr "ใน Cloud Slicing Queue มี %s งานรออยู่ข้างหน้า"
+
+#, c-format, boost-format
+msgid "Layer: %s"
+msgstr "เลเยอร์: %s"
+
+#, c-format, boost-format
+msgid "Layer: %d/%d"
+msgstr "เลเยอร์: %d/%d"
+
+msgid ""
+"Please heat the nozzle to above 170℃ before loading or unloading filament."
+msgstr "กรุณาตั้งอุณหภูมิหัวฉีดให้สูงกว่า 170°C ก่อนที่จะบรรจุหรือขนถ่ายเส้นพลาสติก"
+
+msgid "Chamber temperature cannot be changed in cooling mode while printing."
+msgstr "อุณหภูมิห้องเพาะเลี้ยงไม่สามารถเปลี่ยนแปลงได้ในโหมดทำความเย็นขณะพิมพ์"
+
+msgid ""
+"If the chamber temperature exceeds 40℃, the system will automatically switch "
+"to heating mode. Please confirm whether to switch."
+msgstr ""
+"หากอุณหภูมิห้องเพาะเกิน 40°C ระบบจะเปลี่ยนเป็นโหมดทำความร้อนโดยอัตโนมัติ "
+"โปรดยืนยันว่าจะสลับหรือไม่"
+
+msgid "Please select an AMS slot before calibration"
+msgstr "โปรดเลือกช่อง AMS ก่อนการสอบเทียบ"
+
+msgid ""
+"Cannot read filament info: the filament is loaded to the tool head,please "
+"unload the filament and try again."
+msgstr ""
+"ไม่สามารถอ่านข้อมูลเส้นพลาสติกได้: โหลดเส้นพลาสติกไปที่หัวเครื่องมือแล้ว "
+"โปรดยกเลิกการโหลดเส้นพลาสติกแล้วลองอีกครั้ง"
+
+msgid "This only takes effect during printing"
+msgstr "ซึ่งจะมีผลเฉพาะระหว่างการพิมพ์เท่านั้น"
+
+msgid "Silent"
+msgstr "เงียบ"
+
+msgid "Standard"
+msgstr "มาตรฐาน"
+
+msgid "Sport"
+msgstr "สปอร์ต"
+
+msgid "Ludicrous"
+msgstr "เร็วสุด"
+
+msgid ""
+"Turning off the lights during the task will cause the failure of AI "
+"monitoring, like spaghetti detection. Please choose carefully."
+msgstr ""
+"การปิดไฟระหว่างทำงานจะทำให้การตรวจสอบ AI ล้มเหลว เช่น การตรวจจับสปาเก็ตตี้ "
+"โปรดเลือกอย่างระมัดระวัง"
+
+msgid "Keep it On"
+msgstr "เก็บไว้บน"
+
+msgid "Turn it Off"
+msgstr "ปิดมัน"
+
+msgid "Can't start this without storage."
+msgstr "ไม่สามารถเริ่มต้นได้หากไม่มีพื้นที่เก็บข้อมูล"
+
+msgid "Rate the Print Profile"
+msgstr "ให้คะแนนโปรไฟล์การพิมพ์"
+
+msgid "Comment"
+msgstr "ความคิดเห็น"
+
+msgid "Rate this print"
+msgstr "ให้คะแนนงานพิมพ์นี้"
+
+msgid "Add Photo"
+msgstr "เพิ่มรูปภาพ"
+
+msgid "Delete Photo"
+msgstr "ลบรูปภาพ"
+
+msgid "Submit"
+msgstr "ส่ง"
+
+msgid "Please click on the star first."
+msgstr "กรุณาคลิกที่ดาวก่อน"
+
+msgid "Get oss config failed."
+msgstr "รับการกำหนดค่า oss ล้มเหลว"
+
+msgid "Upload Pictures"
+msgstr "อัพโหลดรูปภาพ"
+
+msgid "Number of images successfully uploaded"
+msgstr "จำนวนภาพที่อัพโหลดสำเร็จ"
+
+msgid " upload failed"
+msgstr "การอัปโหลดล้มเหลว"
+
+msgid " upload config prase failed\n"
+msgstr "การอัปโหลดการกำหนดค่าล้มเหลว\n"
+
+msgid " No corresponding storage bucket\n"
+msgstr "ไม่มีที่เก็บข้อมูลที่เกี่ยวข้อง\n"
+
+msgid " cannot be opened\n"
+msgstr "ไม่สามารถเปิดได้\n"
+
+msgid ""
+"The following issues occurred during the process of uploading images. Do you "
+"want to ignore them?\n"
+"\n"
+msgstr ""
+"ปัญหาต่อไปนี้เกิดขึ้นระหว่างกระบวนการอัพโหลดรูปภาพ คุณต้องการที่จะเพิกเฉยต่อพวกเขาหรือไม่?\n"
+
+msgid "info"
+msgstr "ข้อมูล"
+
+msgid "Synchronizing the printing results. Please retry a few seconds later."
+msgstr "การซิงโครไนซ์ผลการพิมพ์ โปรดลองอีกครั้งในภายหลัง"
+
+msgid "Upload failed\n"
+msgstr "การอัปโหลดล้มเหลว\n"
+
+msgid "Obtaining instance_id failed\n"
+msgstr "การรับ instance_id ล้มเหลว\n"
+
+msgid ""
+"Your comment result cannot be uploaded due to the following reasons:\n"
+"\n"
+" error code: "
+msgstr ""
+"ไม่สามารถอัปโหลดผลลัพธ์ความคิดเห็นของคุณเนื่องจากสาเหตุดังต่อไปนี้:\n"
+"\n"
+" รหัสข้อผิดพลาด:"
+
+msgid "error message: "
+msgstr "ข้อความแสดงข้อผิดพลาด:"
+
+msgid ""
+"\n"
+"\n"
+"Would you like to redirect to the webpage to give a rating?"
+msgstr ""
+"\n"
+"คุณต้องการเปลี่ยนเส้นทางไปยังหน้าเว็บเพื่อให้คะแนนหรือไม่"
+
+msgid ""
+"Some of your images failed to upload. Would you like to redirect to the "
+"webpage to give a rating?"
+msgstr ""
+"รูปภาพบางรูปของคุณล้มเหลวในการอัปโหลด คุณต้องการเปลี่ยนเส้นทางไปยังหน้าเว็บเพื่อให้คะแนนหรือไม่"
+
+msgid "You can select up to 16 images."
+msgstr "คุณสามารถเลือกได้สูงสุด 16 ภาพ"
+
+msgid ""
+"At least one successful print record of this print profile is required \n"
+"to give a positive rating (4 or 5 stars)."
+msgstr ""
+"ต้องมีบันทึกการพิมพ์ที่สำเร็จของโปรไฟล์การพิมพ์นี้อย่างน้อยหนึ่งรายการ \n"
+"เพื่อให้คะแนนเป็นบวก (4 หรือ 5 ดาว)"
+
+msgid "click to add machine"
+msgstr "คลิกเพื่อเพิ่มเครื่อง"
+
+msgid "Status"
+msgstr "สถานะ"
+
+msgctxt "Firmware"
+msgid "Update"
+msgstr "อัปเดต"
+
+msgid "Assistant(HMS)"
+msgstr "ผู้ช่วย(HMS)"
+
+#, c-format, boost-format
+msgid "Network plug-in v%s"
+msgstr "ปลั๊กอินเครือข่าย v%s"
+
+#, c-format, boost-format
+msgid "Network plug-in v%s (%s)"
+msgstr "ปลั๊กอินเครือข่าย v%s (%s)"
+
+msgid "Don't show again"
+msgstr "ไม่ต้องแสดงอีก"
+
+msgid "Go to"
+msgstr "ไปที่"
+
+msgid "Later"
+msgstr "ภายหลัง"
+
+#, c-format, boost-format
+msgid "%s error"
+msgstr "ข้อผิดพลาด %s"
+
+#, c-format, boost-format
+msgid "%s has encountered an error"
+msgstr "%s พบข้อผิดพลาด"
+
+#, c-format, boost-format
+msgid "%s warning"
+msgstr "คำเตือน %s"
+
+#, c-format, boost-format
+msgid "%s has a warning"
+msgstr "%s มีคำเตือน"
+
+#, c-format, boost-format
+msgid "%s info"
+msgstr "ข้อมูล %s"
+
+#, c-format, boost-format
+msgid "%s information"
+msgstr "ข้อมูล %s"
+
+msgid "Skip"
+msgstr "ข้าม"
+
+msgid "Newer 3MF version"
+msgstr "เวอร์ชัน 3MF ที่ใหม่กว่า"
+
+msgid ""
+"The 3MF file version is in Beta and it is newer than the current OrcaSlicer "
+"version."
+msgstr "เวอร์ชันไฟล์ 3MF อยู่ในรุ่นเบต้าและใหม่กว่าเวอร์ชัน OrcaSlicer ปัจจุบัน"
+
+msgid "If you would like to try Orca Slicer Beta, you may click to"
+msgstr "หากคุณต้องการลองใช้ Orca Slicer Beta คุณสามารถคลิกไปที่"
+
+msgid "Download Beta Version"
+msgstr "ดาวน์โหลดเวอร์ชันเบต้า"
+
+msgid "The 3MF file version is newer than the current OrcaSlicer version."
+msgstr "เวอร์ชันไฟล์ 3MF ใหม่กว่าเวอร์ชัน OrcaSlicer ปัจจุบัน"
+
+msgid ""
+"Updating your OrcaSlicer could enable all functionality in the 3MF file."
+msgstr "การอัปเดต OrcaSlicer ของคุณสามารถเปิดใช้งานฟังก์ชันทั้งหมดในไฟล์ 3MF"
+
+msgid "Current Version: "
+msgstr "เวอร์ชันปัจจุบัน: "
+
+msgid "Latest Version: "
+msgstr "เวอร์ชันล่าสุด: "
+
+msgctxt "Software"
+msgid "Update"
+msgstr "อัปเดต"
+
+msgid "Not for now"
+msgstr "ยังไม่ใช่ตอนนี้"
+
+msgid "Server Exception"
+msgstr "ข้อยกเว้นของเซิร์ฟเวอร์"
+
+msgid ""
+"The server is unable to respond. Please click the link below to check the "
+"server status."
+msgstr "เซิร์ฟเวอร์ไม่สามารถตอบสนองได้ กรุณาคลิกลิงค์ด้านล่างเพื่อตรวจสอบสถานะเซิร์ฟเวอร์"
+
+msgid ""
+"If the server is in a fault state, you can temporarily use offline printing "
+"or local network printing."
+msgstr ""
+"หากเซิร์ฟเวอร์อยู่ในสถานะผิดปกติ "
+"คุณสามารถใช้การพิมพ์ออฟไลน์หรือการพิมพ์ผ่านเครือข่ายท้องถิ่นได้ชั่วคราว"
+
+msgid "How to use LAN only mode"
+msgstr "วิธีใช้โหมด LAN เท่านั้น"
+
+msgid "Don't show this dialog again"
+msgstr "อย่าแสดงกล่องโต้ตอบนี้อีก"
+
+msgid "3D Mouse disconnected."
+msgstr "เมาส์ 3D ถูกตัดการเชื่อมต่อ"
+
+msgid "Configuration can update now."
+msgstr "การกำหนดค่าสามารถอัปเดตได้ทันที"
+
+msgid "Detail."
+msgstr "รายละเอียด"
+
+msgid "Integration was successful."
+msgstr "บูรณาการสำเร็จ"
+
+msgid "Integration failed."
+msgstr "บูรณาการล้มเหลว"
+
+msgid "Undo integration was successful."
+msgstr "เลิกทำการบูรณาการสำเร็จ"
+
+msgid "New network plug-in available."
+msgstr "มีปลั๊กอินเครือข่ายใหม่ให้ใช้งาน"
+
+msgid "Details"
+msgstr "รายละเอียด"
+
+msgid "New printer config available."
+msgstr "มีการกำหนดค่าเครื่องพิมพ์ใหม่ให้ใช้งาน"
+
+msgid "Undo integration failed."
+msgstr "เลิกทำการผสานรวมล้มเหลว"
+
+msgid "Exporting."
+msgstr "กำลังส่งออก"
+
+msgid "Software has New version."
+msgstr "ซอฟต์แวร์มีเวอร์ชันใหม่"
+
+msgid "Goto download page."
+msgstr "ไปที่หน้าดาวน์โหลด"
+
+msgid "Open Folder."
+msgstr "เปิดโฟลเดอร์"
+
+msgid "Safely remove hardware."
+msgstr "ถอดฮาร์ดแวร์อย่างปลอดภัย"
+
+#, c-format, boost-format
+msgid "%1$d Object has custom supports."
+msgid_plural "%1$d Objects have custom supports."
+msgstr[0] "วัตถุ %1$d ชิ้นมีส่วนรองรับแบบกำหนดเอง"
+
+#, c-format, boost-format
+msgid "%1$d Object has color painting."
+msgid_plural "%1$d Objects have color painting."
+msgstr[0] "วัตถุ %1$d ชิ้นมีการระบายสี"
+
+#, c-format, boost-format
+msgid "%1$d object was loaded as a part of cut object."
+msgid_plural "%1$d objects were loaded as parts of cut object."
+msgstr[0] "วัตถุ %1$d ชิ้นถูกโหลดมาเป็นส่วนหนึ่งของวัตถุที่ถูกตัด"
+
+#, c-format, boost-format
+msgid "%1$d object was loaded with fuzzy skin painting."
+msgid_plural "%1$d objects were loaded with fuzzy skin painting."
+msgstr[0] "วัตถุ %1$d ชิ้นถูกโหลดมาพร้อมกับการระบายสีผิวฟัซซี"
+
+msgid "ERROR"
+msgstr "ข้อผิดพลาด"
+
+msgid "COMPLETED"
+msgstr "เสร็จสมบูรณ์"
+
+msgid "CANCELED"
+msgstr "ยกเลิกแล้ว"
+
+msgid "Cancel upload"
+msgstr "ยกเลิกการอัปโหลด"
+
+msgid "Jump to"
+msgstr "ข้ามไปที่"
+
+msgid "Error:"
+msgstr "ข้อผิดพลาด:"
+
+msgid "Warning:"
+msgstr "คำเตือน:"
+
+msgid "Exported successfully"
+msgstr "ส่งออกสำเร็จ"
+
+msgid "Model file downloaded."
+msgstr "ดาวน์โหลดไฟล์โมเดลแล้ว"
+
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
+msgid "Shared profiles may be available for this printer."
+msgstr "โปรไฟล์ที่ใช้ร่วมกันอาจพร้อมใช้งานสำหรับเครื่องพิมพ์นี้"
+
+msgid "Browse shared profiles"
+msgstr "เรียกดูโปรไฟล์ที่แชร์"
+
+msgid "Serious warning:"
+msgstr "คำเตือนร้ายแรง:"
+
+msgid " (Repair)"
+msgstr "(ซ่อมแซม)"
+
+msgid " Click here to install it."
+msgstr "คลิกที่นี่เพื่อติดตั้ง"
+
+msgid "WARNING:"
+msgstr "คำเตือน:"
+
+msgid "Your model needs support! Please enable support material."
+msgstr "โมเดลของคุณต้องการส่วนรองรับ! กรุณาเปิดใช้งานสื่อส่วนรองรับ"
+
+msgid "G-code path overlap"
+msgstr "เส้นทาง G-code ทับซ้อนกัน"
+
+msgid "Support painting"
+msgstr "ระบายส่วนรองรับ"
+
+msgid "Color painting"
+msgstr "จิตรกรรมสี"
+
+msgid "Cut connectors"
+msgstr "ตัดขั้วต่อ"
+
+msgid "Layers"
+msgstr "เลเยอร์"
+
+msgid ""
+"The application cannot run normally because OpenGL version is lower than "
+"3.2.\n"
+msgstr "แอปพลิเคชันไม่สามารถทำงานได้ตามปกติเนื่องจากเวอร์ชัน OpenGL ต่ำกว่า 3.2\n"
+
+msgid "Please upgrade your graphics card driver."
+msgstr "กรุณาอัพเกรดไดรเวอร์การ์ดแสดงผลของคุณ"
+
+msgid "Unsupported OpenGL version"
+msgstr "เวอร์ชัน OpenGL ที่ไม่รองรับ"
+
+#, c-format, boost-format
+msgid ""
+"Unable to load shaders:\n"
+"%s"
+msgstr ""
+"ไม่สามารถโหลดเชเดอร์ได้:\n"
+"%s"
+
+msgid "Error loading shaders"
+msgstr "เกิดข้อผิดพลาดในการโหลดเชเดอร์"
+
+msgctxt "Layers"
+msgid "Top"
+msgstr "บน"
+
+msgctxt "Layers"
+msgid "Bottom"
+msgstr "ล่าง"
+
+msgid "Enable detection of build plate position"
+msgstr "เปิดใช้งานการตรวจจับตำแหน่งฐานรองแท่นพิมพ์"
+
+msgid ""
+"The localization tag of build plate is detected, and printing is paused if "
+"the tag is not in predefined range."
+msgstr ""
+"ตรวจพบแท็กการแปลของเพลตการพิมพ์ "
+"และการพิมพ์จะหยุดชั่วคราวหากแท็กไม่อยู่ในช่วงที่กำหนดไว้ล่วงหน้า"
+
+msgid "Build Plate Detection"
+msgstr "ตรวจจับฐานพิมพ์"
+
+msgid ""
+"Identifies the type and position of the build plate on the heatbed. Pausing "
+"printing if a mismatch is detected."
+msgstr ""
+"ระบุประเภทและตำแหน่งของแผ่นฐานรองพิมพ์บนฐานพิมพ์ทำความร้อน "
+"หยุดการพิมพ์ชั่วคราวหากตรวจพบความไม่ตรงกัน"
+
+msgid "AI Detections"
+msgstr "การตรวจจับเอไอ"
+
+msgid ""
+"Printer will send assistant message or pause printing if any of the "
+"following problem is detected."
+msgstr "เครื่องพิมพ์จะส่งข้อความผู้ช่วยหรือหยุดการพิมพ์ชั่วคราว หากตรวจพบปัญหาใดๆ ต่อไปนี้"
+
+msgid "Enable AI monitoring of printing"
+msgstr "เปิดใช้งานการตรวจสอบการพิมพ์โดย AI"
+
+msgid "Pausing Sensitivity:"
+msgstr "การหยุดความไว:"
+
+msgid "Spaghetti Detection"
+msgstr "การตรวจจับสปาเก็ตตี้"
+
+msgid "Detect spaghetti failures (scattered lose filament)."
+msgstr "ตรวจจับความล้มเหลวของสปาเก็ตตี้ (เส้นพลาสติกสูญเสียกระจัดกระจาย)"
+
+msgid "Purge Chute Pile-Up Detection"
+msgstr "การตรวจจับกองซ้อนรางล้าง"
+
+msgid "Monitor if the waste is piled up in the purge chute."
+msgstr "ตรวจสอบว่าของเสียสะสมอยู่ในรางชำระล้างหรือไม่"
+
+msgid "Nozzle Clumping Detection"
+msgstr "การตรวจจับการเกาะตัวของหัวฉีด"
+
+msgid "Check if the nozzle is clumping by filaments or other foreign objects."
+msgstr "ตรวจสอบว่าหัวฉีดจับกันเป็นก้อนด้วยเส้นพลาสติกหรือวัตถุแปลกปลอมอื่นๆ หรือไม่"
+
+msgid "Detects air printing caused by nozzle clogging or filament grinding."
+msgstr "ตรวจจับการพิมพ์ทางอากาศที่เกิดจากการอุดตันของหัวฉีดหรือการบดเส้นพลาสติก"
+
+msgid "First Layer Inspection"
+msgstr "การตรวจสอบชั้นแรก"
+
+msgid "Auto-recovery from step loss"
+msgstr "กู้คืนอัตโนมัติจากการสูญเสียขั้นตอน"
+
+msgid "Store Sent Files on External Storage"
+msgstr "จัดเก็บไฟล์ที่ส่งไปยังที่จัดเก็บข้อมูลภายนอก"
+
+msgid ""
+"Save the printing files initiated from Bambu Studio, Bambu Handy and "
+"MakerWorld on External Storage"
+msgstr ""
+"บันทึกไฟล์การพิมพ์ที่เริ่มต้นจาก Bambu Studio, Bambu Handy และ MakerWorld "
+"บนที่จัดเก็บข้อมูลภายนอก"
+
+msgid "Allow Prompt Sound"
+msgstr "อนุญาตเสียงพร้อมท์"
+
+msgid "Filament Tangle Detect"
+msgstr "การตรวจจับเส้นพลาสติกพันกัน"
+
+msgid "Check if the nozzle is clumping by filament or other foreign objects."
+msgstr "ตรวจสอบว่าหัวฉีดจับกันเป็นก้อนด้วยเส้นพลาสติกหรือวัตถุแปลกปลอมอื่นๆ หรือไม่"
+
+msgid "Open Door Detection"
+msgstr "การตรวจจับเปิดประตู"
+
+msgid "Notification"
+msgstr "การแจ้งเตือน"
+
+msgid "Pause printing"
+msgstr "หยุดพิมพ์ชั่วคราว"
+
+msgctxt "Nozzle Type"
+msgid "Type"
+msgstr "ชนิด"
+
+msgctxt "Nozzle Diameter"
+msgid "Diameter"
+msgstr "เส้นผ่านศูนย์กลาง"
+
+msgctxt "Nozzle Flow"
+msgid "Flow"
+msgstr "อัตราการไหล"
+
+msgid "Please change the nozzle settings on the printer."
+msgstr "กรุณาเปลี่ยนการตั้งค่าหัวฉีดบนเครื่องพิมพ์"
+
+msgid "Hardened Steel"
+msgstr "เหล็กชุบแข็ง"
+
+msgid "Stainless Steel"
+msgstr "สแตนเลส"
+
+msgid "Tungsten Carbide"
+msgstr "ทังสเตนคาร์ไบด์"
+
+msgid "Brass"
+msgstr "ทองเหลือง"
+
+msgid "High flow"
+msgstr "อัตราไหลสูง"
+
+msgid "No wiki link available for this printer."
+msgstr "ไม่มีลิงก์ wiki สำหรับเครื่องพิมพ์นี้"
+
+msgid "Refreshing"
+msgstr "สดชื่น"
+
+msgid "Unavailable while heating maintenance function is on."
+msgstr "ไม่สามารถใช้งานได้ในขณะที่เปิดฟังก์ชันบำรุงรักษาเครื่องทำความร้อน"
+
+msgid "Idle Heating Protection"
+msgstr "การป้องกันความร้อนที่ไม่ได้ใช้งาน"
+
+msgid "Stops heating automatically after 5 mins of idle to ensure safety."
+msgstr "หยุดทำความร้อนโดยอัตโนมัติหลังจากไม่ได้ใช้งานเป็นเวลา 5 นาทีเพื่อความปลอดภัย"
+
+msgid "Global"
+msgstr "ทั่วโลก"
+
+msgid "Objects"
+msgstr "วัตถุ"
+
+msgid "Cycle settings visibility"
+msgstr "การมองเห็นการตั้งค่าวงจร"
+
+msgid "Compare presets"
+msgstr "เปรียบเทียบค่าที่ตั้งล่วงหน้า"
+
+msgid "View all object's settings"
+msgstr "ดูการตั้งค่าของวัตถุทั้งหมด"
+
+msgid "Material settings"
+msgstr "การตั้งค่าวัสดุ"
+
+msgid "Remove current plate (if not last one)"
+msgstr "ลบแผ่นปัจจุบัน (ถ้าไม่ใช่แผ่นสุดท้าย)"
+
+msgid "Auto orient objects on current plate"
+msgstr "ปรับทิศทางวัตถุอัตโนมัติบนแผ่นปัจจุบัน"
+
+msgid "Arrange objects on current plate"
+msgstr "จัดเรียงวัตถุบนจานปัจจุบัน"
+
+msgid "Unlock current plate"
+msgstr "ปลดล็อคจานปัจจุบัน"
+
+msgid "Lock current plate"
+msgstr "ล็อคแผ่นปัจจุบัน"
+
+msgid "Filament grouping"
+msgstr "การจัดกลุ่มเส้นพลาสติก"
+
+msgid "Edit current plate name"
+msgstr "แก้ไขชื่อป้ายทะเบียนปัจจุบัน"
+
+msgid "Move plate to the front"
+msgstr "ย้ายจานไปด้านหน้า"
+
+msgid "Customize current plate"
+msgstr "ปรับแต่งแผ่นปัจจุบัน"
+
+#, c-format, boost-format
+msgid "The %s nozzle can not print %s."
+msgstr "หัวฉีด %s ไม่สามารถพิมพ์ %s ได้"
+
+#, boost-format
+msgid "Mixing %1% with %2% in printing is not recommended.\n"
+msgstr "ไม่แนะนำให้ผสม %1% กับ %2% ในการพิมพ์\n"
+
+msgid " nozzle"
+msgstr "หัวฉีด"
+
+#, boost-format
+msgid ""
+"It is not recommended to print the following filament(s) with %1%: %2%\n"
+msgstr "ไม่แนะนำให้พิมพ์เส้นพลาสติกต่อไปนี้ด้วย %1%: %2%\n"
+
+msgid ""
+"It is not recommended to use the following nozzle and filament "
+"combinations:\n"
+msgstr "ไม่แนะนำให้ใช้หัวฉีดและเส้นพลาสติกผสมกันดังต่อไปนี้:\n"
+
+#, boost-format
+msgid "%1% with %2%\n"
+msgstr "%1% กับ %2%\n"
+
+#, boost-format
+msgid " plate %1%:"
+msgstr "จาน %1%:"
+
+msgid "Invalid name, the following characters are not allowed:"
+msgstr "ชื่อไม่ถูกต้อง ไม่อนุญาตให้ใช้อักขระต่อไปนี้:"
+
+msgid "Sliced Info"
+msgstr "ข้อมูลสไลซ์บาง ๆ"
+
+msgid "Used Filament (m)"
+msgstr "เส้นพลาสติกใช้แล้ว (ม.)"
+
+msgid "Used Filament (mm³)"
+msgstr "เส้นพลาสติกที่ใช้แล้ว (มม.)"
+
+msgid "Used Filament (g)"
+msgstr "เส้นพลาสติกใช้แล้ว (กรัม)"
+
+msgid "Used Materials"
+msgstr "วัสดุที่ใช้แล้ว"
+
+msgid "Estimated time"
+msgstr "เวลาโดยประมาณ"
+
+msgid "Filament changes"
+msgstr "การเปลี่ยนเส้นพลาสติก"
+
+msgid "Set the number of AMS installed on the nozzle."
+msgstr "กำหนดจำนวน AMS ที่ติดตั้งบนหัวฉีด"
+
+msgid "AMS(4 slots)"
+msgstr "AMS(4 ช่อง)"
+
+msgid "AMS(1 slot)"
+msgstr "AMS(1 ช่อง)"
+
+msgid "Not installed"
+msgstr "ไม่ได้ติดตั้ง"
+
+msgid ""
+"The software does not support using different diameter of nozzles for one "
+"print. If the left and right nozzles are inconsistent, we can only proceed "
+"with single-head printing. Please confirm which nozzle you would like to use "
+"for this project."
+msgstr ""
+"ซอฟต์แวร์ไม่รองรับการใช้หัวฉีดที่มีเส้นผ่านศูนย์กลางต่างกันในการพิมพ์ครั้งเดียว "
+"หากหัวฉีดด้านซ้ายและขวาไม่สอดคล้องกัน เราสามารถดำเนินการพิมพ์แบบหัวเดียวเท่านั้น "
+"โปรดยืนยันว่าคุณต้องการใช้หัวฉีดใดสำหรับโปรเจ็กต์นี้"
+
+msgid "Switch diameter"
+msgstr "สลับเส้นผ่านศูนย์กลาง"
+
+msgid "Configuration incompatible"
+msgstr "การกำหนดค่าเข้ากันไม่ได้"
+
+msgid "Sync printer information"
+msgstr "ซิงค์ข้อมูลเครื่องพิมพ์"
+
+msgid ""
+"The currently selected machine preset is inconsistent with the connected "
+"printer type.\n"
+"Are you sure to continue syncing?"
+msgstr ""
+"ค่าที่ตั้งล่วงหน้าของเครื่องที่เลือกในปัจจุบันไม่สอดคล้องกับประเภทเครื่องพิมพ์ที่เชื่อมต่อ\n"
+"คุณแน่ใจหรือไม่ว่าจะดำเนินการซิงค์ต่อ?"
+
+msgid ""
+"There are unset nozzle types. Please set the nozzle types of all extruders "
+"before synchronizing."
+msgstr "มีประเภทหัวฉีดที่ไม่ได้ตั้งค่า โปรดตั้งค่าประเภทหัวฉีดของชุดดันเส้นทั้งหมดก่อนทำการซิงโครไนซ์"
+
+msgid "Sync extruder infomation"
+msgstr "ซิงค์ข้อมูลชุดดันเส้น"
+
+msgid "Connection"
+msgstr "การเชื่อมต่อ"
+
+msgid "Synchronize nozzle information and the number of AMS"
+msgstr "ประสานข้อมูลหัวฉีดและจำนวน AMS"
+
+msgid "Click to edit preset"
+msgstr "คลิกเพื่อแก้ไขค่าที่ตั้งล่วงหน้า"
+
+msgid "Project Filaments"
+msgstr "เส้นพลาสติกโครงการ"
+
+msgid "Flushing volumes"
+msgstr "ปริมาตรไล่เส้น"
+
+msgid "Add one filament"
+msgstr "เพิ่มหนึ่งเส้นพลาสติก"
+
+msgid "Remove last filament"
+msgstr "ลบเส้นพลาสติกสุดท้าย"
+
+msgid "Synchronize filament list from AMS"
+msgstr "ประสานรายการเส้นพลาสติกจาก AMS"
+
+msgid "Set filaments to use"
+msgstr "ตั้งค่าเส้นพลาสติกที่จะใช้"
+
+msgid "Search plate, object and part."
+msgstr "ค้นหาจาน วัตถุ และชิ้นส่วน"
+
+msgid "Pellets"
+msgstr "เม็ด"
+
+#, c-format, boost-format
+msgid ""
+"After completing your operation, %s project will be closed and create a new "
+"project."
+msgstr "หลังจากเสร็จสิ้นการดำเนินการของคุณ โครงการ %s จะถูกปิดและสร้างโครงการใหม่"
+
+msgid "There are no compatible filaments, and sync is not performed."
+msgstr "ไม่มีเส้นพลาสติกที่เข้ากันได้ และไม่ได้ทำการซิงค์"
+
+msgid "Sync filaments with AMS"
+msgstr "ซิงค์เส้นพลาสติกกับ AMS"
+
+msgid ""
+"There are some unknown or incompatible filaments mapped to generic preset.\n"
+"Please update Orca Slicer or restart Orca Slicer to check if there is an "
+"update to system presets."
+msgstr ""
+"มีเส้นพลาสติกที่ไม่รู้จักหรือเข้ากันไม่ได้บางส่วนที่แมปกับค่าที่ตั้งล่วงหน้าทั่วไป\n"
+"โปรดอัปเดต Orca Slicer หรือรีสตาร์ท Orca Slicer "
+"เพื่อตรวจสอบว่ามีการอัปเดตการตั้งค่าล่วงหน้าของระบบหรือไม่"
+
+msgid "Only filament color information has been synchronized from printer."
+msgstr "เฉพาะข้อมูลสีของเส้นพลาสติกเท่านั้นที่ได้รับการซิงโครไนซ์จากเครื่องพิมพ์"
+
+msgid ""
+"Filament type and color information have been synchronized, but slot "
+"information is not included."
+msgstr "ข้อมูลประเภทเส้นพลาสติกและสีได้รับการซิงโครไนซ์แล้ว แต่ไม่รวมข้อมูลช่อง"
+
+#, boost-format
+msgid "Do you want to save changes to \"%1%\"?"
+msgstr "คุณต้องการบันทึกการเปลี่ยนแปลงใน \"%1%\" หรือไม่?"
+
+#, c-format, boost-format
+msgid ""
+"Successfully unmounted. The device %s (%s) can now be safely removed from "
+"the computer."
+msgstr ""
+"ยกเลิกการต่อเชื่อมสำเร็จแล้ว ขณะนี้สามารถลบอุปกรณ์ %s (%s) "
+"ออกจากคอมพิวเตอร์ได้อย่างปลอดภัยแล้ว"
+
+#, c-format, boost-format
+msgid "Ejecting of device %s (%s) has failed."
+msgstr "การดีดอุปกรณ์ %s (%s) ล้มเหลว"
+
+msgid "Previous unsaved project detected, do you want to restore it?"
+msgstr "ตรวจพบโปรเจ็กต์ที่ยังไม่ได้บันทึกก่อนหน้านี้ คุณต้องการกู้คืนหรือไม่"
+
+msgid "Restore"
+msgstr "คืนค่า"
+
+msgid ""
+"The current hot bed temperature is relatively high. The nozzle may be "
+"clogged when printing this filament in a closed enclosure. Please open the "
+"front door and/or remove the upper glass."
+msgstr ""
+"อุณหภูมิฐานพิมพ์ร้อนในปัจจุบันค่อนข้างสูง หัวฉีดอาจอุดตันเมื่อพิมพ์เส้นพลาสติกนี้ในตู้ปิด "
+"กรุณาเปิดประตูหน้าและ/หรือถอดกระจกด้านบนออก"
+
+msgid ""
+"The nozzle hardness required by the filament is higher than the default "
+"nozzle hardness of the printer. Please replace the hardened nozzle or "
+"filament, otherwise, the nozzle will be attrited or damaged."
+msgstr ""
+"ความแข็งของหัวฉีดที่ต้องการสำหรับเส้นพลาสติกนั้นสูงกว่าความแข็งของหัวฉีดเริ่มต้นของเครื่องพิมพ์ "
+"โปรดเปลี่ยนหัวฉีดหรือเส้นพลาสติกที่แข็งแล้ว ไม่เช่นนั้นหัวฉีดจะเสียหายหรือเสียหาย"
+
+msgid ""
+"Enabling traditional timelapse photography may cause surface imperfections. "
+"It is recommended to change to smooth mode."
+msgstr ""
+"การเปิดใช้งานการถ่ายภาพไทม์แลปส์แบบดั้งเดิมอาจทำให้เกิดความไม่สมบูรณ์ของพื้นผิวได้ "
+"ขอแนะนำให้เปลี่ยนเป็นโหมดราบรื่น"
+
+msgid ""
+"Smooth mode for timelapse is enabled, but the prime tower is off, which may "
+"cause print defects. Please enable the prime tower, re-slice and print again."
+msgstr ""
+"เปิดใช้งานโหมด Smooth สำหรับไทม์แลปส์แล้ว แต่ไพรม์ทาวเวอร์ปิดอยู่ "
+"ซึ่งอาจทำให้เกิดข้อบกพร่องในการพิมพ์ โปรดเปิดใช้งานไพร์มทาวเวอร์ สไลซ์ใหม่และพิมพ์อีกครั้ง"
+
+msgid "Expand sidebar"
+msgstr "ขยายแถบด้านข้าง"
+
+msgid "Collapse sidebar"
+msgstr "ยุบแถบด้านข้าง"
+
+msgid "Tab"
+msgstr "แท็บ"
+
+#, c-format, boost-format
+msgid "Loading file: %s"
+msgstr "กำลังโหลดไฟล์: %s"
+
+msgid "Load 3MF"
+msgstr "โหลด 3MF"
+
+msgid "BambuStudio Project"
+msgstr "โครงการแบมบูสตูดิโอ"
+
+msgid "The 3MF is not supported by OrcaSlicer, loading geometry data only."
+msgstr "OrcaSlicer ไม่รองรับ 3MF โดยจะโหลดข้อมูลเรขาคณิตเท่านั้น"
+
+msgid ""
+"The 3MF file was generated by an old OrcaSlicer version, loading geometry "
+"data only."
+msgstr "ไฟล์ 3MF สร้างขึ้นโดย OrcaSlicer เวอร์ชันเก่า โดยโหลดข้อมูลเรขาคณิตเท่านั้น"
+
+msgid ""
+"The 3MF file was generated by an older version, loading geometry data only."
+msgstr "ไฟล์ 3MF ถูกสร้างขึ้นโดยเวอร์ชันเก่า โดยโหลดข้อมูลเรขาคณิตเท่านั้น"
+
+msgid "The 3MF file was generated by BambuStudio, loading geometry data only."
+msgstr "ไฟล์ 3MF สร้างโดย BambuStudio โดยโหลดข้อมูลเรขาคณิตเท่านั้น"
+
+msgid ""
+"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
+"rotation template settings that may not work properly with your current "
+"infill pattern. This could result in weak support or print quality issues."
+msgstr ""
+"โปรเจ็กต์นี้สร้างขึ้นด้วย OrcaSlicer 2.3.1-alpha และใช้การตั้งค่าเทมเพลตการหมุน ไส้ใน "
+"ที่อาจทำงานไม่ถูกต้องกับรูปแบบ ไส้ใน ปัจจุบันของคุณ "
+"ซึ่งอาจส่งผลให้ส่วนรองรับไม่ดีหรือปัญหาคุณภาพการพิมพ์"
+
+msgid ""
+"Would you like OrcaSlicer to automatically fix this by clearing the rotation "
+"template settings?"
+msgstr ""
+"คุณต้องการให้ OrcaSlicer แก้ไขปัญหานี้โดยอัตโนมัติโดยการล้างการตั้งค่าเทมเพลตการหมุนหรือไม่"
+
+#, c-format, boost-format
+msgid ""
+"The 3MF file version %s is newer than %s's version %s, found the following "
+"unrecognized keys:"
+msgstr "ไฟล์ 3MF เวอร์ชัน %s ใหม่กว่าเวอร์ชัน %s ของ %s พบคีย์ที่ไม่รู้จักต่อไปนี้:"
+
+msgid "You'd better upgrade your software.\n"
+msgstr "คุณควรอัพเกรดซอฟต์แวร์ของคุณดีกว่า\n"
+
+#, c-format, boost-format
+msgid ""
+"The 3MF file version %s is newer than %s's version %s, we suggest to upgrade "
+"your software."
+msgstr ""
+"ไฟล์ 3MF เวอร์ชัน %s ใหม่กว่าเวอร์ชัน %s ของ %s เราขอแนะนำให้อัปเกรดซอฟต์แวร์ของคุณ"
+
+#, c-format, boost-format
+msgid ""
+"The 3MF was created by BambuStudio (version %s), which is newer than the "
+"compatible version %s. Found unrecognized settings:"
+msgstr ""
+"3MF ถูกสร้างขึ้นโดย BambuStudio (เวอร์ชัน %s) ซึ่งใหม่กว่าเวอร์ชัน %s ที่เข้ากันได้ "
+"พบการตั้งค่าที่ไม่รู้จัก:"
+
+#, c-format, boost-format
+msgid ""
+"The 3MF was created by BambuStudio (version %s), which is newer than the "
+"compatible version %s. Some settings may not be fully compatible."
+msgstr ""
+"3MF ถูกสร้างขึ้นโดย BambuStudio (เวอร์ชัน %s) ซึ่งใหม่กว่าเวอร์ชัน %s ที่เข้ากันได้ "
+"การตั้งค่าบางอย่างอาจเข้ากันไม่ได้อย่างสมบูรณ์"
+
+msgid ""
+"The 3MF was created by BambuStudio. Some settings may differ from OrcaSlicer."
+msgstr "3MF ถูกสร้างขึ้นโดย BambuStudio การตั้งค่าบางอย่างอาจแตกต่างจาก OrcaSlicer"
+
+msgid "Invalid values found in the 3MF:"
+msgstr "พบค่าที่ไม่ถูกต้องใน 3MF:"
+
+msgid "Please correct them in the param tabs"
+msgstr "โปรดแก้ไขให้ถูกต้องในแท็บพารามิเตอร์"
+
+msgid ""
+"The 3MF has the following modified G-code in filament or printer presets:"
+msgstr "3MF มี G-code ที่แก้ไขแล้วต่อไปนี้ในฟิลาเมนต์หรือพรีเซ็ตเครื่องพิมพ์:"
+
+msgid ""
+"Please confirm that all modified G-code is safe to prevent any damage to the "
+"machine!"
+msgstr "โปรดยืนยันว่า G-code ที่แก้ไขทั้งหมดนั้นปลอดภัยเพื่อป้องกันความเสียหายต่อเครื่อง!"
+
+msgid "Modified G-code"
+msgstr "แก้ไขรหัส G"
+
+msgid "The 3MF has the following customized filament or printer presets:"
+msgstr "3MF มีเส้นพลาสติกที่กำหนดเองหรือการตั้งค่าเครื่องพิมพ์ไว้ล่วงหน้าดังต่อไปนี้:"
+
+msgid ""
+"Please confirm that the G-code within these presets is safe to prevent any "
+"damage to the machine!"
+msgstr "โปรดยืนยันว่ารหัส G ภายในค่าที่ตั้งล่วงหน้าเหล่านี้ปลอดภัยเพื่อป้องกันความเสียหายต่อเครื่อง!"
+
+msgid "Customized Preset"
+msgstr "ค่าที่ตั้งไว้ล่วงหน้าที่กำหนดเอง"
+
+msgid "Name of components inside STEP file is not UTF8 format!"
+msgstr "ชื่อของส่วนประกอบภายในไฟล์ STEP ไม่ใช่รูปแบบ UTF8!"
+
+msgid "The name may show garbage characters!"
+msgstr "ชื่ออาจแสดงตัวอักษรขยะ!"
+
+msgid "Remember my choice."
+msgstr "จดจำตัวเลือกของฉัน"
+
+#, boost-format
+msgid "Failed loading file \"%1%\". An invalid configuration was found."
+msgstr "การโหลดไฟล์ \"%1%\" ล้มเหลว พบการกำหนดค่าที่ไม่ถูกต้อง"
+
+msgid "Objects with zero volume removed"
+msgstr "วัตถุที่มีปริมาตรเป็นศูนย์ถูกลบออก"
+
+msgid "The volume of the object is zero"
+msgstr "ปริมาตรของวัตถุเป็นศูนย์"
+
+#, c-format, boost-format
+msgid ""
+"The object from file %s is too small, and maybe in meters or inches.\n"
+" Do you want to scale to millimeters?"
+msgstr ""
+"วัตถุจากไฟล์ %s มีขนาดเล็กเกินไป และอาจมีหน่วยเป็นเมตรหรือนิ้ว\n"
+" คุณต้องการขยายขนาดเป็นมิลลิเมตรหรือไม่?"
+
+msgid "Object too small"
+msgstr "วัตถุมีขนาดเล็กเกินไป"
+
+msgid ""
+"This file contains several objects positioned at multiple heights.\n"
+"Instead of considering them as multiple objects, should \n"
+"the file be loaded as a single object having multiple parts?"
+msgstr ""
+"ไฟล์นี้ประกอบด้วยวัตถุหลายชิ้นที่อยู่ในตำแหน่งที่มีความสูงหลายระดับ\n"
+"แทนที่จะพิจารณาว่าเป็นวัตถุหลายชิ้นควร \n"
+"โหลดไฟล์เป็นวัตถุเดียวที่มีหลายส่วน?"
+
+msgid "Multi-part object detected"
+msgstr "ตรวจพบวัตถุที่มีหลายส่วน"
+
+msgid "Load these files as a single object with multiple parts?\n"
+msgstr "โหลดไฟล์เหล่านี้เป็นออบเจ็กต์เดียวที่มีหลายส่วนใช่ไหม\n"
+
+msgid "Object with multiple parts was detected"
+msgstr "ตรวจพบวัตถุที่มีหลายส่วน"
+
+msgid "Auto-Drop"
+msgstr "วางอัตโนมัติ"
+
+#, c-format, boost-format
+msgid ""
+"Connected printer is %s. It must match the project preset for printing.\n"
+msgstr "เครื่องพิมพ์ที่เชื่อมต่อคือ %s โดยจะต้องตรงกับค่าที่ตั้งล่วงหน้าของโปรเจ็กต์สำหรับการพิมพ์\n"
+
+msgid ""
+"Do you want to sync the printer information and automatically switch the "
+"preset?"
+msgstr "คุณต้องการซิงค์ข้อมูลเครื่องพิมพ์และสลับการตั้งค่าล่วงหน้าโดยอัตโนมัติหรือไม่"
+
+msgid "Tips"
+msgstr "เคล็ดลับ"
+
+msgid "The file does not contain any geometry data."
+msgstr "ไฟล์นี้ไม่มีข้อมูลเรขาคณิตใดๆ"
+
+msgid ""
+"Your object appears to be too large, do you want to scale it down to fit the "
+"print bed automatically?"
+msgstr "วัตถุของคุณดูใหญ่เกินไป คุณต้องการย่อขนาดให้พอดีกับฐานพิมพ์โดยอัตโนมัติหรือไม่"
+
+msgid "Object too large"
+msgstr "วัตถุมีขนาดใหญ่เกินไป"
+
+msgid "Export STL file:"
+msgstr "ส่งออกไฟล์ STL:"
+
+msgid "Export Draco file:"
+msgstr "ส่งออกไฟล์ Draco:"
+
+msgid "Export AMF file:"
+msgstr "ส่งออกไฟล์ AMF:"
+
+msgid "Save file as:"
+msgstr "บันทึกไฟล์เป็น:"
+
+msgid "Export OBJ file:"
+msgstr "ส่งออกไฟล์ OBJ:"
+
+#, c-format, boost-format
+msgid ""
+"The file %s already exists\n"
+"Do you want to replace it?"
+msgstr ""
+"มีไฟล์ %s อยู่แล้ว\n"
+"คุณต้องการเปลี่ยนมันหรือไม่?"
+
+msgid "Confirm Save As"
+msgstr "ยืนยันบันทึกเป็น"
+
+msgid "Delete object which is a part of cut object"
+msgstr "ลบวัตถุซึ่งเป็นส่วนหนึ่งของวัตถุที่ตัด"
+
+msgid ""
+"You try to delete an object which is a part of a cut object.\n"
+"This action will break a cut correspondence.\n"
+"After that model consistency can't be guaranteed."
+msgstr ""
+"คุณพยายามลบวัตถุซึ่งเป็นส่วนหนึ่งของวัตถุที่ตัดออก\n"
+"การกระทำนี้จะตัดการติดต่อทางจดหมาย\n"
+"หลังจากนั้นจึงไม่สามารถรับประกันความสอดคล้องของโมเดลได้"
+
+msgid "The selected object couldn't be split."
+msgstr "ไม่สามารถแยกวัตถุที่เลือกได้"
+
+msgid "Disable Auto-Drop to preserve z positioning?\n"
+msgstr "ปิดการใช้งานการวางอัตโนมัติเพื่อรักษาตำแหน่ง z หรือไม่\n"
+
+msgid "Object with floating parts was detected"
+msgstr "ตรวจพบวัตถุที่มีชิ้นส่วนลอยอยู่"
+
+msgid "Another export job is running."
+msgstr "งานส่งออกอื่นกำลังทำงานอยู่"
+
+msgid "Unable to replace with more than one volume"
+msgstr "ไม่สามารถแทนที่ด้วยวอลุ่มมากกว่าหนึ่งวอลุ่ม"
+
+msgid "Error during replace"
+msgstr "เกิดข้อผิดพลาดระหว่างการเปลี่ยน"
+
+msgid "Replace from:"
+msgstr "แทนที่จาก:"
+
+msgid "Select a new file"
+msgstr "เลือกไฟล์ใหม่"
+
+msgid "File for the replace wasn't selected"
+msgstr "ไม่ได้เลือกไฟล์สำหรับการแทนที่"
+
+msgid "Select folder to replace from"
+msgstr "เลือกโฟลเดอร์ที่จะแทนที่"
+
+msgid "Directory for the replace wasn't selected"
+msgstr "ไม่ได้เลือกไดเรกทอรีสำหรับการแทนที่"
+
+msgid "Replaced with 3D files from directory:\n"
+msgstr "แทนที่ด้วยไฟล์ 3D จากไดเรกทอรี:\n"
+
+#, boost-format
+msgid "✖ Skipped %1%: same file.\n"
+msgstr "✖ ข้าม %1%: ไฟล์เดียวกัน\n"
+
+#, boost-format
+msgid "✖ Skipped %1%: file does not exist.\n"
+msgstr "✖ ข้าม %1%: ไม่มีไฟล์อยู่\n"
+
+#, boost-format
+msgid "✖ Skipped %1%: failed to replace.\n"
+msgstr "✖ ข้าม %1%: ไม่สามารถแทนที่ได้\n"
+
+#, boost-format
+msgid "✔ Replaced %1%.\n"
+msgstr "✔แทนที่ %1%\n"
+
+msgid "Replaced volumes"
+msgstr "ปริมาณที่ถูกแทนที่"
+
+msgid "Please select a file"
+msgstr "โปรดเลือกไฟล์"
+
+msgid "Do you want to replace it"
+msgstr "คุณต้องการเปลี่ยนมัน"
+
+msgid "Message"
+msgstr "ข้อความ"
+
+msgid "Reload from:"
+msgstr "โหลดซ้ำจาก:"
+
+msgid "Unable to reload:"
+msgstr "ไม่สามารถโหลดซ้ำได้:"
+
+msgid "Error during reload"
+msgstr "เกิดข้อผิดพลาดระหว่างการโหลดซ้ำ"
+
+msgid "There are warnings after slicing models:"
+msgstr "มีคำเตือนหลังจากการแบ่งโมเดล:"
+
+msgid "warnings"
+msgstr "คำเตือน"
+
+msgid "Invalid data"
+msgstr "ข้อมูลไม่ถูกต้อง"
+
+msgid "Slicing Canceled"
+msgstr "ยกเลิกการสไลซ์แล้ว"
+
+#, c-format, boost-format
+msgid "Slicing Plate %d"
+msgstr "กำลังสไลซ์ฐานพิมพ์ %d"
+
+msgid "Please resolve the slicing errors and publish again."
+msgstr "โปรดแก้ไขข้อผิดพลาดในการแบ่งส่วนและเผยแพร่อีกครั้ง"
+
+msgid ""
+"The network plug-in was not detected. Network related features are "
+"unavailable."
+msgstr "ตรวจไม่พบปลั๊กอินเครือข่าย คุณสมบัติที่เกี่ยวข้องกับเครือข่ายไม่พร้อมใช้งาน"
+
+msgid ""
+"Preview only mode:\n"
+"The loaded file contains G-code only, cannot enter the Prepare page."
+msgstr ""
+"โหมดดูตัวอย่างเท่านั้น:\n"
+"ไฟล์ที่โหลดมีเฉพาะ G-code ไม่สามารถเข้าหน้าเตรียมความพร้อมได้"
+
+msgid ""
+"The nozzle type and AMS quantity information has not been synced from the "
+"connected printer.\n"
+"After syncing, software can optimize printing time and filament usage when "
+"slicing.\n"
+"Would you like to sync now?"
+msgstr ""
+"ข้อมูลประเภทหัวฉีดและข้อมูลปริมาณ AMS ไม่ได้ถูกซิงค์จากเครื่องพิมพ์ที่เชื่อมต่อ\n"
+"หลังจากการซิงค์ "
+"ซอฟต์แวร์จะสามารถปรับเวลาการพิมพ์และการใช้เส้นพลาสติกให้เหมาะสมเมื่อทำการตัด\n"
+"คุณต้องการซิงค์ตอนนี้หรือไม่?"
+
+msgid "Sync now"
+msgstr "ซิงค์เลย"
+
+msgid "You can keep the modified presets to the new project or discard them"
+msgstr "คุณสามารถเก็บค่าที่ตั้งไว้ล่วงหน้าที่แก้ไขแล้วไว้ในโปรเจ็กต์ใหม่หรือทิ้งก็ได้"
+
+msgid "Creating a new project"
+msgstr "กำลังสร้างโปรเจกต์ใหม่"
+
+msgid "Load project"
+msgstr "โหลดโปรเจกต์"
+
+msgid ""
+"Failed to save the project.\n"
+"Please check whether the folder exists online or if other programs open the "
+"project file."
+msgstr ""
+"ไม่สามารถบันทึกโครงการ\n"
+"โปรดตรวจสอบว่าโฟลเดอร์ออนไลน์อยู่หรือมีโปรแกรมอื่นเปิดไฟล์โครงการหรือไม่"
+
+msgid "Save project"
+msgstr "บันทึกโครงการ"
+
+msgid "Importing Model"
+msgstr "กำลังนำเข้าโมเดล"
+
+msgid "Preparing 3MF file..."
+msgstr "กำลังเตรียมไฟล์ 3MF..."
+
+msgid "Download failed, unknown file format."
+msgstr "การดาวน์โหลดล้มเหลว รูปแบบไฟล์ที่ไม่รู้จัก"
+
+msgid "Downloading project..."
+msgstr "กำลังดาวน์โหลดโปรเจ็กต์..."
+
+msgid "Download failed, File size exception."
+msgstr "ดาวน์โหลดล้มเหลว มีข้อยกเว้นขนาดไฟล์"
+
+#, c-format, boost-format
+msgid "Project downloaded %d%%"
+msgstr "ดาวน์โหลดโครงการแล้ว %d%%"
+
+msgid ""
+"Importing to Orca Slicer failed. Please download the file and manually "
+"import it."
+msgstr "การนำเข้าไปยัง Orca Slicer ล้มเหลว โปรดดาวน์โหลดไฟล์และนำเข้าด้วยตนเอง"
+
+msgid "INFO:"
+msgstr "ข้อมูล:"
+
+msgid ""
+"No accelerations provided for calibration. Use default acceleration value "
+msgstr "ไม่มีการเร่งความเร็วสำหรับการสอบเทียบ ใช้ค่าความเร่งเริ่มต้น"
+
+msgid "No speeds provided for calibration. Use default optimal speed "
+msgstr "ไม่มีความเร็วสำหรับการสอบเทียบ ใช้ความเร็วที่เหมาะสมตามค่าเริ่มต้น"
+
+msgid "Import SLA archive"
+msgstr "นำเข้าเอกสาร SLA"
+
+msgid "The selected file"
+msgstr "ไฟล์ที่เลือก"
+
+msgid "does not contain valid G-code."
+msgstr "ไม่มีรหัส G ที่ถูกต้อง"
+
+msgid "Error occurs while loading G-code file"
+msgstr "เกิดข้อผิดพลาดขณะโหลดไฟล์ G-code"
+
+#. TRN %1% is archive path
+#, boost-format
+msgid "Loading of a ZIP archive on path %1% has failed."
+msgstr "การโหลดไฟล์ ZIP บนเส้นทาง %1% ล้มเหลว"
+
+#. TRN: First argument = path to file, second argument = error description
+#, boost-format
+msgid "Failed to unzip file to %1%: %2%"
+msgstr "ไม่สามารถแตกไฟล์เป็น %1%: %2%"
+
+#, boost-format
+msgid "Failed to find unzipped file at %1%. Unzipping of file has failed."
+msgstr "ล้มเหลวในการค้นหาไฟล์ที่คลายซิปที่ %1% การคลายซิปไฟล์ล้มเหลว"
+
+msgid "Drop project file"
+msgstr "วางไฟล์โครงการ"
+
+msgid "Please select an action"
+msgstr "โปรดเลือกการทำงาน"
+
+msgid "Open as project"
+msgstr "เปิดเป็นโครงการ"
+
+msgid "Import geometry only"
+msgstr "นำเข้ารูปทรงเรขาคณิตเท่านั้น"
+
+msgid "Only one G-code file can be opened at the same time."
+msgstr "สามารถเปิดไฟล์ G-code ได้เพียงไฟล์เดียวเท่านั้น"
+
+msgid "G-code loading"
+msgstr "กำลังโหลดรหัส G"
+
+msgid "G-code files cannot be loaded with models together!"
+msgstr "ไม่สามารถโหลดไฟล์ G-code กับโมเดลด้วยกันได้!"
+
+msgid "Cannot add models when in preview mode!"
+msgstr "ไม่สามารถเพิ่มโมเดลได้เมื่ออยู่ในโหมดแสดงตัวอย่าง!"
+
+msgid "All objects will be removed, continue?"
+msgstr "วัตถุทั้งหมดจะถูกลบ ดำเนินการต่อหรือไม่"
+
+msgid "The current project has unsaved changes, save it before continue?"
+msgstr "โปรเจ็กต์ปัจจุบันมีการเปลี่ยนแปลงที่ยังไม่ได้บันทึก บันทึกก่อนดำเนินการต่อหรือไม่"
+
+msgid "Number of copies:"
+msgstr "จำนวนสำเนา:"
+
+msgid "Copies of the selected object"
+msgstr "สำเนาของวัตถุที่เลือก"
+
+msgid "Save G-code file as:"
+msgstr "บันทึกไฟล์ G-code เป็น:"
+
+msgid "Save SLA file as:"
+msgstr "บันทึกไฟล์ SLA เป็น:"
+
+msgid "The provided file name is not valid."
+msgstr "ชื่อไฟล์ที่ระบุไม่ถูกต้อง"
+
+msgid "The following characters are not allowed by a FAT file system:"
+msgstr "ระบบไฟล์ FAT ไม่อนุญาตให้ใช้อักขระต่อไปนี้:"
+
+msgid "Save Sliced file as:"
+msgstr "บันทึกไฟล์ที่สไลซ์เป็น:"
+
+#, c-format, boost-format
+msgid ""
+"The file %s has been sent to the printer's storage space and can be viewed "
+"on the printer."
+msgstr "ไฟล์ %s ถูกส่งไปยังพื้นที่เก็บข้อมูลของเครื่องพิมพ์แล้ว และสามารถดูได้บนเครื่องพิมพ์"
+
+msgid "The nozzle type is not set. Please set the nozzle and try again."
+msgstr "ไม่ได้ตั้งค่าประเภทหัวฉีด โปรดตั้งหัวฉีดแล้วลองอีกครั้ง"
+
+msgid "The nozzle type is not set. Please check."
+msgstr "ไม่ได้ตั้งค่าประเภทหัวฉีด กรุณาตรวจสอบ."
+
+msgid ""
+"Unable to perform boolean operation on model meshes. Only positive parts "
+"will be kept. You may fix the meshes and try again."
+msgstr ""
+"ไม่สามารถดำเนินการบูลีนบนโมเดลเมชได้ จะเก็บเฉพาะส่วนที่เป็นบวกเท่านั้น "
+"คุณอาจแก้ไขตาข่ายแล้วลองอีกครั้ง"
+
+#, boost-format
+msgid "Reason: part \"%1%\" is empty."
+msgstr "เหตุผล: ส่วน \"%1%\" ว่างเปล่า"
+
+#, boost-format
+msgid "Reason: part \"%1%\" does not bound a volume."
+msgstr "เหตุผล: ส่วน \"%1%\" ไม่ได้ผูกกับโวลุ่ม"
+
+#, boost-format
+msgid "Reason: part \"%1%\" has self intersection."
+msgstr "เหตุผล: ส่วน \"%1%\" มีจุดตัดกันเอง"
+
+#, boost-format
+msgid "Reason: \"%1%\" and another part have no intersection."
+msgstr "เหตุผล: \"%1%\" และอีกส่วนหนึ่งไม่มีจุดตัดกัน"
+
+msgid ""
+"Unable to perform boolean operation on model meshes. Only positive parts "
+"will be exported."
+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?"
+msgstr "เครื่องพิมพ์พร้อมหรือยัง? แผ่นพิมพ์อยู่ในตำแหน่ง ว่างเปล่า และสะอาดหรือไม่"
+
+msgid "Upload and Print"
+msgstr "อัปโหลดและพิมพ์"
+
+msgid "Abnormal print file data. Please slice again"
+msgstr "ข้อมูลไฟล์การพิมพ์ผิดปกติ กรุณาสไลซ์อีกครั้ง"
+
+msgid ""
+"Print By Object: \n"
+"Suggest to use auto-arrange to avoid collisions when printing."
+msgstr ""
+"พิมพ์ตามวัตถุ: \n"
+"แนะนำให้ใช้การจัดเรียงอัตโนมัติเพื่อหลีกเลี่ยงการชนกันเมื่อพิมพ์"
+
+msgid "Send G-code"
+msgstr "ส่ง G-code"
+
+msgid "Send to printer"
+msgstr "ส่งไปยังเครื่องพิมพ์"
+
+msgid "Custom supports and color painting were removed before repairing."
+msgstr "ส่วนรองรับแบบกำหนดเองและการทาสีสีถูกลบออกก่อนการซ่อม"
+
+msgid "Optimize Rotation"
+msgstr "เพิ่มประสิทธิภาพการหมุน"
+
+#, c-format, boost-format
+msgid ""
+"Printer not connected. Please go to the device page to connect %s before "
+"syncing."
+msgstr "ไม่ได้เชื่อมต่อเครื่องพิมพ์ โปรดไปที่หน้าอุปกรณ์เพื่อเชื่อมต่อ %s ก่อนที่จะทำการซิงค์"
+
+#, c-format, boost-format
+msgid ""
+"OrcaSlicer can't connect to %s. Please check if the printer is powered on "
+"and connected to the network."
+msgstr ""
+"OrcaSlicer ไม่สามารถเชื่อมต่อกับ %s ได้ "
+"โปรดตรวจสอบว่าเครื่องพิมพ์เปิดอยู่และเชื่อมต่อกับเครือข่ายหรือไม่"
+
+#, c-format, boost-format
+msgid ""
+"The currently connected printer on the device page is not %s. Please switch "
+"to %s before syncing."
+msgstr "เครื่องพิมพ์ที่เชื่อมต่ออยู่ในหน้าอุปกรณ์ไม่ใช่ %s โปรดสลับไปที่ %s ก่อนที่จะทำการซิงค์"
+
+msgid ""
+"There are no filaments on the printer. Please load the filaments on the "
+"printer first."
+msgstr "ไม่มีเส้นพลาสติกบนเครื่องพิมพ์ กรุณาใส่ฟิลาเมนต์บนเครื่องพิมพ์ก่อน"
+
+msgid ""
+"The filaments on the printer are all unknown types. Please go to the printer "
+"screen or software device page to set the filament type."
+msgstr ""
+"เส้นพลาสติกบนเครื่องพิมพ์ล้วนเป็นประเภทที่ไม่รู้จัก "
+"โปรดไปที่หน้าจอเครื่องพิมพ์หรือหน้าอุปกรณ์ซอฟต์แวร์เพื่อตั้งค่าประเภทเส้นพลาสติก"
+
+msgid "Device Page"
+msgstr "หน้าอุปกรณ์"
+
+msgid "Synchronize AMS Filament Information"
+msgstr "ประสานข้อมูล AMS เส้นพลาสติก"
+
+msgid "Plate Settings"
+msgstr "การตั้งค่าฐานพิมพ์"
+
+#, boost-format
+msgid "Number of currently selected parts: %1%\n"
+msgstr "จำนวนส่วนที่เลือกในปัจจุบัน: %1%\n"
+
+#, boost-format
+msgid "Number of currently selected objects: %1%\n"
+msgstr "จำนวนวัตถุที่เลือกในปัจจุบัน: %1%\n"
+
+#, boost-format
+msgid "Part name: %1%\n"
+msgstr "ชื่อชิ้นส่วน: %1%\n"
+
+#, boost-format
+msgid "Object name: %1%\n"
+msgstr "ชื่อวัตถุ: %1%\n"
+
+#, boost-format
+msgid "Size: %1% x %2% x %3% in\n"
+msgstr "ขนาด: %1% x %2% x %3% นิ้ว\n"
+
+#, boost-format
+msgid "Size: %1% x %2% x %3% mm\n"
+msgstr "ขนาด: %1% x %2% x %3% มม\n"
+
+#, boost-format
+msgid "Volume: %1% in³\n"
+msgstr "ปริมาตร: %1% ใน³\n"
+
+#, boost-format
+msgid "Volume: %1% mm³\n"
+msgstr "ปริมาตร: %1% mm³\n"
+
+#, boost-format
+msgid "Triangles: %1%\n"
+msgstr "สามเหลี่ยม: %1%\n"
+
+msgid "Use \"Fix Model\" to repair the mesh."
+msgstr "ใช้ \"Fix Model\" เพื่อซ่อมแซมตาข่าย"
+
+#, c-format, boost-format
+msgid ""
+"Plate %d: %s is not suggested to be used to print filament %s (%s). If you "
+"still want to do this print job, please set this filament's bed temperature "
+"to non-zero."
+msgstr ""
+"เพลต %d: ไม่แนะนำให้ใช้ %s ในการพิมพ์เส้นพลาสติก %s (%s) หากคุณยังต้องงานพิมพ์นี้ "
+"โปรดตั้งค่าอุณหภูมิฐานของเส้นพลาสติกให้ไม่เป็นศูนย์"
+
+msgid ""
+"Currently, the object configuration form cannot be used with a multiple-"
+"extruder printer."
+msgstr ""
+"ในปัจจุบัน แบบฟอร์มการกำหนดค่าออบเจ็กต์ไม่สามารถใช้กับเครื่องพิมพ์ที่มีชุดดันเส้นหลายเครื่องได้"
+
+msgid "Not available"
+msgstr "ไม่พร้อมใช้งาน"
+
+msgid "isometric"
+msgstr "มีมิติเท่ากัน"
+
+msgid "top_front"
+msgstr "top_front"
+
+msgid "top"
+msgstr "สูงสุด"
+
+msgid "bottom"
+msgstr "ด้านล่าง"
+
+msgid "front"
+msgstr "ด้านหน้า"
+
+msgid "rear"
+msgstr "หลัง"
+
+msgid "Switching the language requires application restart.\n"
+msgstr "การเปลี่ยนภาษาจำเป็นต้องรีสตาร์ทแอปพลิเคชัน\n"
+
+msgid "Do you want to continue?"
+msgstr "ต้องการดำเนินการต่อหรือไม่"
+
+msgid "Language selection"
+msgstr "การเลือกภาษา"
+
+msgid "Switching application language while some presets are modified."
+msgstr "การสลับภาษาของแอปพลิเคชันในขณะที่มีการแก้ไขค่าที่ตั้งไว้บางส่วน"
+
+msgid "Asia-Pacific"
+msgstr "เอเชียแปซิฟิก"
+
+msgid "China"
+msgstr "จีน"
+
+msgid "Europe"
+msgstr "ยุโรป"
+
+msgid "North America"
+msgstr "อเมริกาเหนือ"
+
+msgid "Others"
+msgstr "อื่นๆ"
+
+msgid "Changing the region will log out your account.\n"
+msgstr "การเปลี่ยนภูมิภาคจะออกจากระบบบัญชีของคุณ\n"
+
+msgid "Region selection"
+msgstr "เลือกภูมิภาค"
+
+msgid "sec"
+msgstr "วินาที"
+
+msgid "The period of backup in seconds."
+msgstr "ระยะเวลาการสำรองข้อมูลเป็นวินาที"
+
+msgid "Bed Temperature Difference Warning"
+msgstr "คำเตือนความแตกต่างของอุณหภูมิฐานพิมพ์"
+
+msgid ""
+"Using filaments with significantly different temperatures may cause:\n"
+"• Extruder clogging\n"
+"• Nozzle damage\n"
+"• Layer adhesion issues\n"
+"\n"
+"Continue with enabling this feature?"
+msgstr ""
+"การใช้เส้นพลาสติกที่มีอุณหภูมิแตกต่างกันอย่างมากอาจทำให้:\n"
+"• การอุดตันของชุดดันเส้น\n"
+"• หัวฉีดเสียหาย\n"
+"• ปัญหาการยึดเกาะของชั้น\n"
+"\n"
+"เปิดใช้งานฟีเจอร์นี้ต่อไปหรือไม่"
+
+msgid "Browse"
+msgstr "เรียกดู"
+
+msgid "Choose folder for downloaded items"
+msgstr "เลือกโฟลเดอร์สำหรับรายการที่ดาวน์โหลด"
+
+msgid "Choose Download Directory"
+msgstr "เลือกดาวน์โหลดไดเรกทอรี"
+
+msgid "Associate"
+msgstr "เชื่อมโยง"
+
+msgid "with OrcaSlicer so that Orca can open models from"
+msgstr "ด้วย OrcaSlicer เพื่อให้ Orca สามารถเปิดโมเดลได้"
+
+msgid "Current Association: "
+msgstr "สมาคมปัจจุบัน:"
+
+msgid "Current Instance"
+msgstr "อินสแตนซ์ปัจจุบัน"
+
+msgid "Current Instance Path: "
+msgstr "เส้นทางอินสแตนซ์ปัจจุบัน:"
+
+msgid "General"
+msgstr "ทั่วไป"
+
+msgid "Metric"
+msgstr "เมตริก"
+
+msgid "Imperial"
+msgstr "อิมพีเรียล"
+
+msgid "Units"
+msgstr "หน่วย"
+
+msgid "Home"
+msgstr "หน้าแรก"
+
+msgid "Default page"
+msgstr "หน้าเริ่มต้น"
+
+msgid "Set the page opened on startup."
+msgstr "ตั้งค่าเพจที่เปิดเมื่อเริ่มต้น"
+
+msgid "Enable dark mode"
+msgstr "เปิดใช้งานโหมดมืด"
+
+msgid "Allow only one OrcaSlicer instance"
+msgstr "อนุญาตอินสแตนซ์ OrcaSlicer เพียงอินสแตนซ์เดียวเท่านั้น"
+
+msgid ""
+"On OSX there is always only one instance of app running by default. However "
+"it is allowed to run multiple instances of same app from the command line. "
+"In such case this settings will allow only one instance."
+msgstr ""
+"บน OSX จะมีแอปเพียงอินสแตนซ์เดียวที่ทำงานตามค่าเริ่มต้นเสมอ อย่างไรก็ตาม "
+"อนุญาตให้เรียกใช้แอปเดียวกันหลายอินสแตนซ์จากบรรทัดคำสั่ง ในกรณีเช่นนี้ "
+"การตั้งค่านี้จะอนุญาตเพียงอินสแตนซ์เดียวเท่านั้น"
+
+msgid ""
+"If this is enabled, when starting OrcaSlicer and another instance of the "
+"same OrcaSlicer is already running, that instance will be reactivated "
+"instead."
+msgstr ""
+"หากเปิดใช้งานนี้ เมื่อเริ่มต้น OrcaSlicer และอินสแตนซ์อื่นของ OrcaSlicer "
+"เดียวกันกำลังทำงานอยู่แล้ว อินสแตนซ์นั้นจะถูกเปิดใช้งานอีกครั้งแทน"
+
+msgid "Show splash screen"
+msgstr "แสดงหน้าจอเริ่มต้น"
+
+msgid "Show the splash screen during startup."
+msgstr "แสดงหน้าจอเริ่มต้นระหว่างการเริ่มต้น"
+
+msgid "Show shared profiles notification"
+msgstr "แสดงการแจ้งเตือนโปรไฟล์ที่แชร์"
+
+msgid ""
+"Show a notification with a link to browse shared profiles when the selected "
+"printer is changed."
+msgstr "แสดงการแจ้งเตือนพร้อมลิงก์เพื่อเรียกดูโปรไฟล์ที่แชร์เมื่อเครื่องพิมพ์ที่เลือกมีการเปลี่ยนแปลง"
+
+msgid "Use window buttons on left side"
+msgstr "ใช้ปุ่มหน้าต่างทางด้านซ้าย"
+
+msgid "(Requires restart)"
+msgstr "(ต้องรีสตาร์ท)"
+
+msgid "Downloads folder"
+msgstr "โฟลเดอร์ดาวน์โหลด"
+
+msgid "Target folder for downloaded items"
+msgstr "โฟลเดอร์เป้าหมายสำหรับรายการที่ดาวน์โหลด"
+
+msgid "Load All"
+msgstr "โหลดทั้งหมด"
+
+msgid "Ask When Relevant"
+msgstr "ถามเมื่อเกี่ยวข้อง"
+
+msgid "Always Ask"
+msgstr "ถามเสมอ"
+
+msgid "Load Geometry Only"
+msgstr "โหลดรูปทรงเท่านั้น"
+
+msgid "Load behaviour"
+msgstr "พฤติกรรมการโหลด"
+
+msgid ""
+"Should printer/filament/process settings be loaded when opening a 3MF file?"
+msgstr "ควรโหลดการตั้งค่าเครื่องพิมพ์/เส้นพลาสติก/กระบวนการเมื่อเปิดไฟล์ 3MF หรือไม่"
+
+msgid "Maximum recent files"
+msgstr "ไฟล์ล่าสุดสูงสุด"
+
+msgid "Maximum count of recent files"
+msgstr "จำนวนไฟล์ล่าสุดสูงสุด"
+
+msgid "Add STL/STEP files to recent files list"
+msgstr "เพิ่มไฟล์ STL/STEP ไปยังรายการไฟล์ล่าสุด"
+
+msgid "Don't warn when loading 3MF with modified G-code"
+msgstr "อย่าเตือนเมื่อโหลด 3MF ด้วย G-code ที่แก้ไขแล้ว"
+
+msgid "Show options when importing STEP file"
+msgstr "แสดงตัวเลือกเมื่อนำเข้าไฟล์ STEP"
+
+msgid ""
+"If enabled, a parameter settings dialog will appear during STEP file import."
+msgstr "หากเปิดใช้งาน กล่องโต้ตอบการตั้งค่าพารามิเตอร์จะปรากฏขึ้นระหว่างการนำเข้าไฟล์ STEP"
+
+msgid "Auto backup"
+msgstr "การสำรองข้อมูลอัตโนมัติ"
+
+msgid ""
+"Backup your project periodically for restoring from the occasional crash."
+msgstr "สำรองข้อมูลโปรเจ็กต์ของคุณเป็นระยะเพื่อกู้คืนจากข้อขัดข้องเป็นครั้งคราว"
+
+msgid "Preset"
+msgstr "พรีเซ็ต"
+
+msgid "Remember printer configuration"
+msgstr "จำการกำหนดค่าเครื่องพิมพ์"
+
+msgid ""
+"If enabled, Orca will remember and switch filament/process configuration for "
+"each printer automatically."
+msgstr ""
+"หากเปิดใช้งาน Orca จะจดจำและสลับการกำหนดค่าเส้นพลาสติก/"
+"กระบวนการสำหรับเครื่องพิมพ์แต่ละเครื่องโดยอัตโนมัติ"
+
+msgid "Group user filament presets"
+msgstr "การตั้งค่าเส้นพลาสติกผู้ใช้แบบกลุ่ม"
+
+msgid "Group user filament presets based on selection"
+msgstr "ตั้งค่าเส้นพลาสติกผู้ใช้แบบกลุ่มตามการเลือก"
+
+msgid "All"
+msgstr "ทั้งหมด"
+
+msgid "By type"
+msgstr "ตามประเภท"
+
+msgid "By vendor"
+msgstr "โดยผู้ขาย"
+
+msgid "Optimize filaments area height for..."
+msgstr "ปรับความสูงของพื้นที่เส้นพลาสติกให้เหมาะสมสำหรับ..."
+
+msgid "filaments"
+msgstr "เส้นพลาสติก"
+
+msgid "Optimizes filament area maximum height by chosen filament count."
+msgstr "ปรับความสูงสูงสุดของพื้นที่เส้นพลาสติกให้เหมาะสมตามจำนวนเส้นพลาสติกที่เลือก"
+
+msgid "Features"
+msgstr "คุณสมบัติ"
+
+msgid "Multi device management"
+msgstr "การจัดการอุปกรณ์หลายเครื่อง"
+
+msgid ""
+"With this option enabled, you can send a task to multiple devices at the "
+"same time and manage multiple devices."
+msgstr ""
+"เมื่อเปิดใช้งานตัวเลือกนี้ "
+"คุณสามารถส่งงานไปยังอุปกรณ์หลายเครื่องพร้อมกันและจัดการอุปกรณ์หลายเครื่องได้"
+
+msgid "Pop up to select filament grouping mode"
+msgstr "ปรากฏขึ้นเพื่อเลือกโหมดการจัดกลุ่มเส้นพลาสติก"
+
+msgid "Quality level for Draco export"
+msgstr "ระดับคุณภาพสำหรับการส่งออกของ Draco"
+
+msgid "bits"
+msgstr "บิต"
+
+msgid ""
+"Controls the quantization bit depth used when compressing the mesh to Draco "
+"format.\n"
+"0 = lossless compression (geometry is preserved at full precision). Valid "
+"lossy values range from 8 to 30.\n"
+"Lower values produce smaller files but lose more geometric detail; higher "
+"values preserve more detail at the cost of larger files."
+msgstr ""
+"ควบคุมความลึกบิตเชิงปริมาณที่ใช้ในการบีบอัด mesh เป็นรูปแบบ Draco\n"
+"0 = การบีบอัดแบบไม่สูญเสีย (รูปทรงเรขาคณิตจะถูกรักษาไว้อย่างแม่นยำเต็มที่) "
+"ค่าการสูญเสียที่ถูกต้องมีตั้งแต่ 8 ถึง 30\n"
+"ค่าที่ต่ำกว่าจะทำให้ไฟล์มีขนาดเล็กลง แต่สูญเสียรายละเอียดทางเรขาคณิตมากขึ้น "
+"ค่าที่สูงกว่าจะรักษารายละเอียดได้มากขึ้นโดยที่ไฟล์มีขนาดใหญ่กว่า"
+
+msgid "Behaviour"
+msgstr "พฤติกรรม"
+
+msgid "Auto flush after changing..."
+msgstr "ไล่เส้นอัตโนมัติหลังเปลี่ยน..."
+
+msgid "Auto calculate flushing volumes when selected values changed"
+msgstr "คำนวณปริมาณการไล่เส้นชิ่งอัตโนมัติเมื่อค่าที่เลือกมีการเปลี่ยนแปลง"
+
+msgid "Auto arrange plate after cloning"
+msgstr "จัดเรียงจานอัตโนมัติหลังจากการโคลน"
+
+msgid "Auto slice after changes"
+msgstr "แบ่งส่วนอัตโนมัติหลังจากการเปลี่ยนแปลง"
+
+msgid ""
+"If enabled, OrcaSlicer will re-slice automatically whenever slicing-related "
+"settings change."
+msgstr ""
+"หากเปิดใช้งาน OrcaSlicer "
+"จะแบ่งส่วนใหม่โดยอัตโนมัติทุกครั้งที่การตั้งค่าที่เกี่ยวข้องกับการแบ่งมีการเปลี่ยนแปลง"
+
+msgid ""
+"Delay in seconds before auto slicing starts, allowing multiple edits to be "
+"grouped. Use 0 to slice immediately."
+msgstr ""
+"หน่วงเวลาเป็นวินาทีก่อนที่การแบ่งส่วนอัตโนมัติจะเริ่มขึ้น ทำให้สามารถจัดกลุ่มการแก้ไขได้หลายรายการ "
+"ใช้ 0 เพื่อสไลซ์ทันที"
+
+msgid "Remove mixed temperature restriction"
+msgstr "ลบข้อจำกัดอุณหภูมิแบบผสม"
+
+msgid ""
+"With this option enabled, you can print materials with a large temperature "
+"difference together."
+msgstr "เมื่อเปิดใช้งานตัวเลือกนี้ คุณสามารถพิมพ์วัสดุที่มีอุณหภูมิแตกต่างกันมากร่วมกันได้"
+
+msgid "Touchpad"
+msgstr "ทัชแพด"
+
+msgid "Camera style"
+msgstr "สไตล์กล้อง"
+
+msgid ""
+"Select camera navigation style.\n"
+"Default: LMB+move for rotation, RMB/MMB+move for panning.\n"
+"Touchpad: Alt+move for rotation, Shift+move for panning."
+msgstr ""
+"เลือกรูปแบบการนำทางด้วยกล้อง\n"
+"ค่าเริ่มต้น: LMB+ย้ายเพื่อหมุน RMB/MMB+ย้ายเพื่อแพน\n"
+"ทัชแพด: Alt+move เพื่อหมุน, Shift+move เพื่อแพนกล้อง"
+
+msgid "Orbit speed multiplier"
+msgstr "ตัวคูณความเร็ววงโคจร"
+
+msgid "Multiplies the orbit speed for finer or coarser camera movement."
+msgstr "คูณความเร็ววงโคจรเพื่อการเคลื่อนไหวของกล้องที่ละเอียดยิ่งขึ้นหรือหยาบยิ่งขึ้น"
+
+msgid "Zoom to mouse position"
+msgstr "ซูมไปที่ตำแหน่งเมาส์"
+
+msgid ""
+"Zoom in towards the mouse pointer's position in the 3D view, rather than the "
+"2D window center."
+msgstr "ซูมเข้าไปยังตำแหน่งของตัวชี้เมาส์ในมุมมอง 3 มิติ แทนที่จะซูมไปที่กึ่งกลางหน้าต่าง 2 มิติ"
+
+msgid "Use free camera"
+msgstr "ใช้กล้องฟรี"
+
+msgid "If enabled, use free camera. If not enabled, use constrained camera."
+msgstr "หากเปิดใช้งาน ให้ใช้กล้องฟรี หากไม่ได้เปิดใช้งาน ให้ใช้กล้องที่มีข้อจำกัด"
+
+msgid "Reverse mouse zoom"
+msgstr "ย้อนกลับการซูมเมาส์"
+
+msgid "If enabled, reverses the direction of zoom with mouse wheel."
+msgstr "หากเปิดใช้งาน จะกลับทิศทางการซูมด้วยล้อเลื่อนของเมาส์"
+
+msgid "Pan"
+msgstr "แพน"
+
+msgid "Left Mouse Drag"
+msgstr "ลากเมาส์ซ้าย"
+
+msgid "Set the action that dragging the left mouse button should perform."
+msgstr "ตั้งค่าการดำเนินการที่ควรดำเนินการด้วยการลากปุ่มซ้ายของเมาส์"
+
+msgid "Middle Mouse Drag"
+msgstr "ลากเมาส์กลาง"
+
+msgid "Set the action that dragging the middle mouse button should perform."
+msgstr "ตั้งค่าการดำเนินการที่ควรดำเนินการด้วยการลากปุ่มกลางของเมาส์"
+
+msgid "Right Mouse Drag"
+msgstr "ลากเมาส์ขวา"
+
+msgid "Set the action that dragging the right mouse button should perform."
+msgstr "ตั้งค่าการดำเนินการที่ควรดำเนินการด้วยการลากปุ่มเมาส์ขวา"
+
+msgid "Clear my choice on..."
+msgstr "ล้างตัวเลือกของฉันใน..."
+
+msgid "Unsaved projects"
+msgstr "โปรเจ็กต์ที่ยังไม่ได้บันทึก"
+
+msgid "Clear my choice on the unsaved projects."
+msgstr "ล้างตัวเลือกของฉันในโครงการที่ยังไม่ได้บันทึก"
+
+msgid "Unsaved presets"
+msgstr "ค่าที่ตั้งล่วงหน้าที่ไม่ได้บันทึกไว้"
+
+msgid "Clear my choice on the unsaved presets."
+msgstr "ล้างตัวเลือกของฉันในการตั้งค่าล่วงหน้าที่ยังไม่ได้บันทึก"
+
+msgid "Synchronizing printer preset"
+msgstr "กำลังซิงโครไนซ์การตั้งค่าเครื่องพิมพ์ล่วงหน้า"
+
+msgid ""
+"Clear my choice for synchronizing printer preset after loading the file."
+msgstr "ล้างตัวเลือกของฉันในการซิงโครไนซ์พรีเซ็ตเครื่องพิมพ์หลังจากโหลดไฟล์"
+
+msgid "Graphics"
+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"
+msgstr "ต่อต้านนามแฝง"
+
+msgid "MSAA Multiplier"
+msgstr "ตัวคูณ MSAA"
+
+msgid ""
+"Set the Multi-Sample Anti-Aliasing level.\n"
+"Higher values result in smoother edges, but the impact on performance is "
+"exponential.\n"
+"Lower values improve performance, at the cost of jagged edges.\n"
+"If disabled, its recommended to enable FXAA to reduce jagged edges with "
+"minimal performance impact.\n"
+"\n"
+"Requires application restart."
+msgstr ""
+"ตั้งค่าระดับ Anti-Aliasing แบบหลายตัวอย่าง\n"
+"ค่าที่สูงกว่าส่งผลให้ขอบเรียบขึ้น แต่ผลกระทบต่อประสิทธิภาพนั้นมีแบบทวีคูณ\n"
+"ค่าที่ต่ำกว่าจะช่วยปรับปรุงประสิทธิภาพ โดยแลกกับขอบหยัก\n"
+"หากปิดใช้งาน แนะนำให้เปิดใช้งาน FXAA เพื่อลดขอบหยักโดยมีผลกระทบต่อประสิทธิภาพน้อยที่สุด\n"
+"\n"
+"ต้องรีสตาร์ทแอปพลิเคชัน"
+
+msgid "Disabled"
+msgstr "ปิดใช้"
+
+msgid "FXAA post-processing"
+msgstr "หลังการประมวลผล FXAA"
+
+msgid ""
+"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n"
+"Useful for disabling or reducing the MSAA setting to improve performance.\n"
+"\n"
+"Takes effect immediately."
+msgstr ""
+"ใช้ Anti-Aliasing โดยประมาณแบบรวดเร็วเป็นการส่งผ่านพื้นที่หน้าจอ\n"
+"มีประโยชน์สำหรับการปิดใช้งานหรือลดการตั้งค่า MSAA เพื่อปรับปรุงประสิทธิภาพ\n"
+"\n"
+"มีผลบังคับใช้ทันที"
+
+msgid "FPS"
+msgstr "เฟรมต่อวินาที"
+
+msgid "FPS cap"
+msgstr "ขีดจำกัด FPS"
+
+msgid "(0 = unlimited)"
+msgstr "(0 = ไม่จำกัด)"
+
+msgid ""
+"Limits viewport frame rate to reduce GPU load and power usage.\n"
+"Set to 0 for unlimited frame rate."
+msgstr ""
+"จำกัดอัตราเฟรมวิวพอร์ตเพื่อลดภาระของ GPU และการใช้พลังงาน\n"
+"ตั้งค่าเป็น 0 สำหรับอัตราเฟรมไม่จำกัด"
+
+msgid "Show FPS overlay"
+msgstr "แสดงการซ้อนทับ FPS"
+
+msgid "Displays current viewport FPS in the top-right corner."
+msgstr "แสดงวิวพอร์ต FPS ปัจจุบันที่มุมขวาบน"
+
+msgid "Login region"
+msgstr "เข้าสู่ระบบภูมิภาค"
+
+msgid "Stealth mode"
+msgstr "โหมดซ่อนตัว"
+
+msgid ""
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
+
+msgid "Network test"
+msgstr "ทดสอบเครือข่าย"
+
+msgid "Test"
+msgstr "ทดสอบ"
+
+msgid "Cloud Providers"
+msgstr "ผู้ให้บริการคลาวด์"
+
+msgid "Enable Bambu Cloud"
+msgstr "เปิดใช้งาน Bambu Cloud"
+
+msgid ""
+"Allow logging into Bambu Cloud alongside Orca Cloud. When enabled, a Bambu "
+"login section appears on the homepage."
+msgstr ""
+"อนุญาตให้เข้าสู่ระบบ Bambu Cloud ควบคู่ไปกับ Orca Cloud เมื่อเปิดใช้งาน ส่วนเข้าสู่ระบบ "
+"Bambu จะปรากฏบนหน้าแรก"
+
+msgid "Update & sync"
+msgstr "อัปเดตและซิงค์"
+
+msgid "Check for stable updates only"
+msgstr "ตรวจสอบการอัปเดตที่เสถียรเท่านั้น"
+
+msgid "Auto sync user presets (Printer/Filament/Process)"
+msgstr "การตั้งค่าล่วงหน้าของผู้ใช้ซิงค์อัตโนมัติ (เครื่องพิมพ์/เส้นพลาสติก/กระบวนการ)"
+
+msgid "Update built-in Presets automatically."
+msgstr "อัปเดตค่าที่ตั้งล่วงหน้าในตัวโดยอัตโนมัติ"
+
+msgid "Use encrypted file for token storage"
+msgstr "ใช้ไฟล์ที่เข้ารหัสสำหรับการจัดเก็บโทเค็น"
+
+msgid ""
+"Store authentication tokens in an encrypted file instead of the system "
+"keychain. (Requires restart)"
+msgstr "จัดเก็บโทเค็นการรับรองความถูกต้องในไฟล์ที่เข้ารหัสแทนพวงกุญแจระบบ (ต้องรีสตาร์ท)"
+
+msgid "Filament Sync Options"
+msgstr "ตัวเลือกการซิงค์ฟิลาเมนต์"
+
+msgid "Filament sync mode"
+msgstr "โหมดการซิงค์ฟิลาเมนต์"
+
+msgid ""
+"Choose whether sync updates both filament preset and color, or only color."
+msgstr "เลือกว่าการซิงค์จะอัปเดตทั้งค่าที่ตั้งไว้ล่วงหน้าของเส้นพลาสติกและสี หรือเฉพาะสีเท่านั้น"
+
+msgid "Filament & Color"
+msgstr "เส้นพลาสติกและสี"
+
+msgid "Color only"
+msgstr "สีเท่านั้น"
+
+msgid "Network plug-in"
+msgstr "ปลั๊กอินเครือข่าย"
+
+msgid "Enable network plug-in"
+msgstr "เปิดใช้งานปลั๊กอินเครือข่าย"
+
+msgid "Network plug-in version"
+msgstr "เวอร์ชันปลั๊กอินเครือข่าย"
+
+msgid "Select the network plug-in version to use"
+msgstr "เลือกเวอร์ชันปลั๊กอินเครือข่ายที่จะใช้"
+
+msgid "(Latest)"
+msgstr "(ล่าสุด)"
+
+msgid "Network plug-in switched successfully."
+msgstr "สลับปลั๊กอินเครือข่ายสำเร็จแล้ว"
+
+msgid "Success"
+msgstr "สำเร็จ"
+
+msgid "Failed to load network plug-in. Please restart the application."
+msgstr "โหลดปลั๊กอินเครือข่ายไม่สำเร็จ กรุณารีสตาร์ทแอปพลิเคชัน"
+
+#, c-format, boost-format
+msgid ""
+"You've selected network plug-in version %s.\n"
+"\n"
+"Would you like to download and install this version now?\n"
+"\n"
+"Note: The application may need to restart after installation."
+msgstr ""
+"คุณได้เลือกปลั๊กอินเครือข่ายเวอร์ชัน %s\n"
+"\n"
+"คุณต้องการดาวน์โหลดและติดตั้งเวอร์ชันนี้ทันทีหรือไม่\n"
+"\n"
+"หมายเหตุ: แอปพลิเคชันอาจต้องรีสตาร์ทหลังการติดตั้ง"
+
+msgid "Download Network Plug-in"
+msgstr "ดาวน์โหลดปลั๊กอินเครือข่าย"
+
+msgid "Associate files to OrcaSlicer"
+msgstr "เชื่อมโยงไฟล์กับ OrcaSlicer"
+
+msgid "Associate 3MF files to OrcaSlicer"
+msgstr "เชื่อมโยงไฟล์ 3MF กับ OrcaSlicer"
+
+msgid "If enabled, sets OrcaSlicer as default application to open 3MF files."
+msgstr "หากเปิดใช้งาน ให้ตั้งค่า OrcaSlicer เป็นแอปพลิเคชันเริ่มต้นเพื่อเปิดไฟล์ 3MF"
+
+msgid "Associate DRC files to OrcaSlicer"
+msgstr "เชื่อมโยงไฟล์ DRC กับ OrcaSlicer"
+
+msgid "If enabled, sets OrcaSlicer as default application to open DRC files."
+msgstr "หากเปิดใช้งาน ให้ตั้งค่า OrcaSlicer เป็นแอปพลิเคชันเริ่มต้นเพื่อเปิดไฟล์ DRC"
+
+msgid "Associate STL files to OrcaSlicer"
+msgstr "เชื่อมโยงไฟล์ STL กับ OrcaSlicer"
+
+msgid "If enabled, sets OrcaSlicer as default application to open STL files."
+msgstr "หากเปิดใช้งาน ให้ตั้งค่า OrcaSlicer เป็นแอปพลิเคชันเริ่มต้นเพื่อเปิดไฟล์ STL"
+
+msgid "Associate STEP files to OrcaSlicer"
+msgstr "เชื่อมโยงไฟล์ STEP กับ OrcaSlicer"
+
+msgid "If enabled, sets OrcaSlicer as default application to open STEP files."
+msgstr "หากเปิดใช้งาน ให้ตั้งค่า OrcaSlicer เป็นแอปพลิเคชันเริ่มต้นเพื่อเปิดไฟล์ STEP"
+
+msgid "Associate web links to OrcaSlicer"
+msgstr "เชื่อมโยงเว็บลิงก์กับ OrcaSlicer"
+
+msgid "Developer"
+msgstr "นักพัฒนา"
+
+msgid "Developer mode"
+msgstr "โหมดนักพัฒนา"
+
+msgid "Skip AMS blacklist check"
+msgstr "ข้ามการตรวจสอบบัญชีดำของ AMS"
+
+msgid "(Experimental) Keep painted feature after mesh change"
+msgstr "(ทดลอง) เก็บคุณสมบัติการทาสีไว้หลังจากเปลี่ยนตาข่าย"
+
+msgid ""
+"Attempt to keep painted features (color/seam/support/fuzzy etc.) after "
+"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n"
+"Highly experimental! Slow and may create artifact."
+msgstr ""
+"พยายามคงคุณสมบัติการทาสีไว้ (สี/รอยตะเข็บ/ส่วนรองรับ/คลุมเครือ ฯลฯ) หลังจากเปลี่ยนตาข่ายวัตถุ "
+"(เช่น ตัด/โหลดซ้ำจากดิสก์/ลดความซับซ้อน/แก้ไข ฯลฯ)\n"
+"น่าทดลองมาก! ช้าและอาจสร้างสิ่งประดิษฐ์"
+
+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"
+msgstr "อนุญาตให้จัดเก็บผิดปกติ"
+
+msgid ""
+"This allows the use of Storage that is marked as abnormal by the Printer.\n"
+"Use at your own risk, can cause issues!"
+msgstr ""
+"ซึ่งช่วยให้สามารถใช้พื้นที่เก็บข้อมูลที่เครื่องพิมพ์ทำเครื่องหมายว่าผิดปกติได้\n"
+"ใช้ด้วยความเสี่ยงของคุณเอง อาจทำให้เกิดปัญหาได้!"
+
+msgid "Log Level"
+msgstr "ระดับบันทึก"
+
+msgid "fatal"
+msgstr "ร้ายแรง"
+
+msgid "error"
+msgstr "ข้อผิดพลาด"
+
+msgid "warning"
+msgstr "คำเตือน"
+
+msgid "debug"
+msgstr "แก้ปัญหา"
+
+msgid "trace"
+msgstr "ติดตาม"
+
+msgid "Reload"
+msgstr "โหลดใหม่"
+
+msgid "Reload the network plug-in without restarting the application"
+msgstr "โหลดปลั๊กอินเครือข่ายซ้ำโดยไม่ต้องรีสตาร์ทแอปพลิเคชัน"
+
+msgid "Network plug-in reloaded successfully."
+msgstr "โหลดปลั๊กอินเครือข่ายซ้ำสำเร็จแล้ว"
+
+msgid "Failed to reload network plug-in. Please restart the application."
+msgstr "โหลดปลั๊กอินเครือข่ายซ้ำไม่สำเร็จ กรุณารีสตาร์ทแอปพลิเคชัน"
+
+msgid "Reload Failed"
+msgstr "โหลดใหม่ล้มเหลว"
+
+msgid "Debug"
+msgstr "ดีบัก"
+
+msgid "Sync settings"
+msgstr "การตั้งค่าการซิงค์"
+
+msgid "User sync"
+msgstr "การซิงค์ผู้ใช้"
+
+msgid "Preset sync"
+msgstr "การซิงค์ที่ตั้งไว้ล่วงหน้า"
+
+msgid "Preferences sync"
+msgstr "ซิงค์การตั้งค่า"
+
+msgid "View control settings"
+msgstr "ดูการตั้งค่าการควบคุม"
+
+msgid "Rotate view"
+msgstr "หมุนมุมมอง"
+
+msgid "Pan view"
+msgstr "แพนวิว"
+
+msgid "Zoom view"
+msgstr "ซูมดู"
+
+msgid "Other"
+msgstr "อื่นๆ"
+
+msgid "Mouse wheel reverses when zooming"
+msgstr "ล้อเมาส์จะกลับด้านเมื่อซูม"
+
+msgid "Enable SSL(MQTT)"
+msgstr "เปิดใช้งาน SSL(MQTT)"
+
+msgid "Enable SSL(FTP)"
+msgstr "เปิดใช้งาน SSL(FTP)"
+
+msgid "Internal developer mode"
+msgstr "โหมดนักพัฒนาภายใน"
+
+msgid "Host Setting"
+msgstr "การตั้งค่าโฮสต์"
+
+msgid "DEV host: api-dev.bambu-lab.com/v1"
+msgstr "โฮสต์ DEV: api-dev.bambu-lab.com/v1"
+
+msgid "QA host: api-qa.bambu-lab.com/v1"
+msgstr "โฮสต์ QA: api-qa.bambu-lab.com/v1"
+
+msgid "PRE host: api-pre.bambu-lab.com/v1"
+msgstr "โฮสต์ก่อน: api-pre.bambu-lab.com/v1"
+
+msgid "Product host"
+msgstr "โฮสต์ผลิตภัณฑ์"
+
+msgid "Debug save button"
+msgstr "ปุ่มบันทึกการแก้ไขข้อบกพร่อง"
+
+msgid "Save debug settings"
+msgstr "บันทึกการตั้งค่าการแก้ไขข้อบกพร่อง"
+
+msgid "DEBUG settings have been saved successfully!"
+msgstr "บันทึกการตั้งค่า DEBUG สำเร็จแล้ว!"
+
+msgid "Cloud environment switched, please login again!"
+msgstr "สภาพแวดล้อมคลาวด์ถูกเปลี่ยน กรุณาเข้าสู่ระบบอีกครั้ง!"
+
+msgid "System presets"
+msgstr "พรีเซ็ตระบบ"
+
+msgid "User presets"
+msgstr "พรีเซ็ตผู้ใช้"
+
+msgid "Incompatible presets"
+msgstr "ค่าที่ตั้งล่วงหน้าที่เข้ากันไม่ได้"
+
+msgid "My Printer"
+msgstr "เครื่องพิมพ์ของฉัน"
+
+msgid "Left filaments"
+msgstr "เส้นพลาสติกด้านซ้าย"
+
+msgid "AMS filaments"
+msgstr "เส้นพลาสติก AMS"
+
+msgid "Right filaments"
+msgstr "เส้นพลาสติกที่ถูกต้อง"
+
+msgid "Click to select filament color"
+msgstr "คลิกเพื่อเลือกสีเส้นพลาสติก"
+
+msgid "Add/Remove presets"
+msgstr "เพิ่ม/ลบค่าที่ตั้งล่วงหน้า"
+
+msgid "Edit preset"
+msgstr "พรีเซ็ตแก้ไข"
+
+msgid "Unspecified"
+msgstr "ไม่ระบุ"
+
+msgid "Project-inside presets"
+msgstr "การตั้งค่าล่วงหน้าภายในโครงการ"
+
+msgid "Bundle presets"
+msgstr "ชุดที่ตั้งไว้ล่วงหน้า"
+
+msgid "System"
+msgstr "ระบบ"
+
+msgid "Unsupported presets"
+msgstr "ค่าที่ตั้งล่วงหน้าที่ไม่รองรับ"
+
+msgid "Unsupported"
+msgstr "ไม่รองรับ"
+
+msgid "Add/Remove filaments"
+msgstr "เพิ่ม/ลบเส้นพลาสติก"
+
+msgid "Add/Remove materials"
+msgstr "เพิ่ม/ลบวัสดุ"
+
+msgid "Select/Remove printers (system presets)"
+msgstr "เลือก/ลบเครื่องพิมพ์ (ค่าที่ตั้งล่วงหน้าของระบบ)"
+
+msgid "Create printer"
+msgstr "สร้างเครื่องพิมพ์"
+
+msgid "Empty"
+msgstr "ว่างเปล่า"
+
+msgid "Incompatible"
+msgstr "เข้ากันไม่ได้"
+
+msgid "The selected preset is null!"
+msgstr "ค่าที่ตั้งล่วงหน้าที่เลือกเป็นโมฆะ!"
+
+msgid "End"
+msgstr "จบ"
+
+msgid "Customize"
+msgstr "ปรับแต่ง"
+
+msgid "Other layer filament sequence"
+msgstr "ลำดับเส้นพลาสติกชั้นอื่นๆ"
+
+msgid "Please input layer value (>= 2)."
+msgstr "กรุณาป้อนค่าเลเยอร์ (>= 2)"
+
+msgid "Plate name"
+msgstr "ชื่อจาน"
+
+msgid "Same as Global Plate Type"
+msgstr "เช่นเดียวกับประเภทเพลททั่วโลก"
+
+msgid "Bed type"
+msgstr "ชนิดฐานพิมพ์"
+
+msgid "Same as Global Print Sequence"
+msgstr "เช่นเดียวกับลำดับการพิมพ์ทั่วโลก"
+
+msgid "Print sequence"
+msgstr "ลำดับการพิมพ์"
+
+msgid "Same as Global"
+msgstr "เช่นเดียวกับโกลบอล"
+
+msgid "Disable"
+msgstr "ปิดใช้"
+
+msgid "Spiral vase"
+msgstr "แจกันเกลียว"
+
+msgid "First layer filament sequence"
+msgstr "ลำดับเส้นพลาสติกชั้นแรก"
+
+msgid "Same as Global Bed Type"
+msgstr "เช่นเดียวกับประเภทฐานพิมพ์สากล"
+
+msgid "By Layer"
+msgstr "โดยเลเยอร์"
+
+msgid "By Object"
+msgstr "โดยวัตถุ"
+
+msgid "Accept"
+msgstr "ยอมรับ"
+
+msgid "Log Out"
+msgstr "ออกจากระบบ"
+
+msgid "Slice all plate to obtain time and filament estimation"
+msgstr "ตัดแผ่นทั้งหมดเพื่อให้ได้เวลาและการประมาณค่าเส้นพลาสติก"
+
+msgid "Packing project data into 3MF file"
+msgstr "บรรจุข้อมูลโครงการลงในไฟล์ 3MF"
+
+msgid "Uploading 3MF"
+msgstr "กำลังอัพโหลด 3MF"
+
+msgid "Jump to model publish web page"
+msgstr "ข้ามไปที่โมเดลเผยแพร่หน้าเว็บ"
+
+msgid "Note: The preparation may take several minutes. Please be patient."
+msgstr "หมายเหตุ: การเตรียมการอาจใช้เวลาหลายนาที กรุณาอดทน."
+
+msgid "Publish"
+msgstr "เผยแพร่"
+
+msgid "Publish was canceled"
+msgstr "การเผยแพร่ถูกยกเลิก"
+
+msgid "Slicing Plate 1"
+msgstr "แผ่นสไลซ์ 1"
+
+msgid "Packing data to 3MF"
+msgstr "บรรจุข้อมูลไปที่ 3MF"
+
+msgid "Uploading data"
+msgstr "กำลังอัพโหลดข้อมูล"
+
+msgid "Jump to webpage"
+msgstr "ข้ามไปที่หน้าเว็บ"
+
+#, c-format, boost-format
+msgid "Save %s as"
+msgstr "บันทึก %s เป็น"
+
+msgid "User Preset"
+msgstr "พรีเซ็ตผู้ใช้"
+
+msgid "Preset Inside Project"
+msgstr "โครงการภายในที่ตั้งไว้ล่วงหน้า"
+
+msgid "Detach from parent"
+msgstr "แยกออกจากผู้ปกครอง"
+
+msgid "Name is unavailable."
+msgstr "ชื่อไม่พร้อมใช้งาน"
+
+msgid "Overwriting a system profile is not allowed."
+msgstr "ไม่อนุญาตให้เขียนทับโปรไฟล์ระบบ"
+
+#, boost-format
+msgid "Preset \"%1%\" already exists."
+msgstr "มีพรีเซ็ต \"%1%\" อยู่แล้ว"
+
+#, boost-format
+msgid ""
+"Preset \"%1%\" already exists and is incompatible with the current printer."
+msgstr "ค่าที่ตั้งไว้ล่วงหน้า \"%1%\" มีอยู่แล้ว และเข้ากันไม่ได้กับเครื่องพิมพ์ปัจจุบัน"
+
+msgid "Please note that saving will overwrite this preset."
+msgstr "โปรดทราบว่าการบันทึกจะเขียนทับค่าที่ตั้งล่วงหน้านี้"
+
+msgid "The name cannot be the same as a preset alias name."
+msgstr "ชื่อต้องไม่เหมือนกับชื่อนามแฝงที่ตั้งไว้ล่วงหน้า"
+
+msgid "Save preset"
+msgstr "พรีเซ็ตบันทึก"
+
+msgctxt "PresetName"
+msgid "Copy"
+msgstr "คัดลอก"
+
+#, boost-format
+msgid "Printer \"%1%\" is selected with preset \"%2%\""
+msgstr "เลือกเครื่องพิมพ์ \"%1%\" พร้อมพรีเซ็ต \"%2%\""
+
+#, boost-format
+msgid "Please choose an action with \"%1%\" preset after saving."
+msgstr "โปรดเลือกการดำเนินการด้วยการตั้งค่าล่วงหน้า \"%1%\" หลังจากบันทึก"
+
+#, boost-format
+msgid "For \"%1%\", change \"%2%\" to \"%3%\" "
+msgstr "สำหรับ \"%1%\" ให้เปลี่ยน \"%2%\" เป็น \"%3%\""
+
+#, boost-format
+msgid "For \"%1%\", add \"%2%\" as a new preset"
+msgstr "สำหรับ \"%1%\" ให้เพิ่ม \"%2%\" เป็นค่าที่ตั้งล่วงหน้าใหม่"
+
+#, boost-format
+msgid "Simply switch to \"%1%\""
+msgstr "เพียงเปลี่ยนเป็น \"%1%\""
+
+msgid "Task canceled"
+msgstr "ยกเลิกงานแล้ว"
+
+msgid "Bambu Cool Plate"
+msgstr "แบมบูคูลเพลท"
+
+msgid "PLA Plate"
+msgstr "แผ่นเพลท PLA"
+
+msgid "Bambu Engineering Plate"
+msgstr "แผ่นวิศวกรรมแบมบู"
+
+msgid "Bambu Smooth PEI Plate"
+msgstr "แผ่น Bambu Smooth PEI"
+
+msgid "High temperature Plate"
+msgstr "แผ่นอุณหภูมิสูง"
+
+msgid "Bambu Textured PEI Plate"
+msgstr "แผ่น PEI ที่มีพื้นผิว Bambu"
+
+msgid "Bambu Cool Plate SuperTack"
+msgstr "แบมบู คูลเพลท ซุปเปอร์แทค"
+
+msgid "Send print job"
+msgstr "ส่งงานพิมพ์"
+
+msgid "On"
+msgstr "เปิด"
+
+msgid "Not satisfied with the grouping of filaments? Regroup and slice ->"
+msgstr "ไม่พอใจกับการจัดกลุ่มเส้นพลาสติกใช่ไหม? จัดกลุ่มใหม่และแบ่งส่วน ->"
+
+msgid "Manually change external spool during printing for multi-color printing"
+msgstr "เปลี่ยนแกนม้วนสายภายนอกด้วยตนเองระหว่างการพิมพ์สำหรับการพิมพ์หลายสี"
+
+msgid "Multi-color with external"
+msgstr "หลากสีพร้อมภายนอก"
+
+msgid "Your filament grouping method in the sliced file is not optimal."
+msgstr "วิธีการจัดกลุ่มเส้นพลาสติกของคุณในไฟล์ที่แบ่งส่วนนั้นไม่เหมาะสมที่สุด"
+
+msgid "Auto Bed Leveling"
+msgstr "ปรับระดับฐานพิมพ์อัตโนมัติ"
+
+msgid ""
+"This checks the flatness of heatbed. Leveling makes extruded height "
+"uniform.\n"
+"*Automatic mode: Run a leveling check(about 10 seconds). Skip if surface is "
+"fine."
+msgstr ""
+"วิธีนี้จะตรวจสอบความเรียบของฐานพิมพ์ การปรับระดับทำให้ความสูงที่ฉีดเส้นออกมาสม่ำเสมอ\n"
+"*โหมดอัตโนมัติ: เรียกใช้การตรวจสอบการปรับระดับ (ประมาณ 10 วินาที) ข้ามไปหากพื้นผิวดี"
+
+msgid "Flow Dynamics Calibration"
+msgstr "ปรับเทียบไดนามิกการไหล"
+
+msgid ""
+"This process determines the dynamic flow values to improve overall print "
+"quality.\n"
+"*Automatic mode: Skip if the filament was calibrated recently."
+msgstr ""
+"กระบวนการนี้จะกำหนดค่าการไหลแบบไดนามิกเพื่อปรับปรุงคุณภาพการพิมพ์โดยรวม\n"
+"*โหมดอัตโนมัติ: ข้ามไปหากเส้นพลาสติกได้รับการปรับเทียบเมื่อเร็วๆ นี้"
+
+msgid "Nozzle Offset Calibration"
+msgstr "การสอบเทียบออฟเซ็ตหัวฉีด"
+
+msgid ""
+"Calibrate nozzle offsets to enhance print quality.\n"
+"*Automatic mode: Check for calibration before printing. Skip if unnecessary."
+msgstr ""
+"ปรับเทียบออฟเซ็ตหัวฉีดเพื่อปรับปรุงคุณภาพการพิมพ์\n"
+"*โหมดอัตโนมัติ: ตรวจสอบการปรับเทียบก่อนพิมพ์ ข้ามไปหากไม่จำเป็น"
+
+msgid "Send complete"
+msgstr "ส่งเสร็จแล้ว"
+
+msgid "Error code"
+msgstr "รหัสข้อผิดพลาด"
+
+msgid "High Flow"
+msgstr "อัตราไหลสูง"
+
+#, c-format, boost-format
+msgid ""
+"The nozzle flow setting of %s(%s) doesn't match with the slicing file(%s). "
+"Please make sure the nozzle installed matches with settings in printer, then "
+"set the corresponding printer preset while slicing."
+msgstr ""
+"การตั้งค่าการไหลของหัวฉีดของ %s(%s) ไม่ตรงกับไฟล์การแบ่งส่วน (%s) "
+"โปรดตรวจสอบให้แน่ใจว่าหัวฉีดที่ติดตั้งตรงกับการตั้งค่าในเครื่องพิมพ์ "
+"จากนั้นตั้งค่าเครื่องพิมพ์ล่วงหน้าที่เกี่ยวข้องขณะสไลซ์"
+
+#, c-format, boost-format
+msgid ""
+"Filament %s does not match the filament in AMS slot %s. Please update the "
+"printer firmware to support AMS slot assignment."
+msgstr ""
+"เส้นพลาสติก %s ไม่ตรงกับเส้นพลาสติกในช่อง AMS %s "
+"โปรดอัปเดตเฟิร์มแวร์เครื่องพิมพ์เพื่อรองรับการกำหนดสล็อต AMS"
+
+msgid ""
+"Filament does not match the filament in AMS slot. Please update the printer "
+"firmware to support AMS slot assignment."
+msgstr ""
+"เส้นพลาสติกไม่ตรงกับเส้นพลาสติกในช่อง AMS "
+"โปรดอัปเดตเฟิร์มแวร์เครื่องพิมพ์เพื่อรองรับการกำหนดสล็อต AMS"
+
+#, c-format, boost-format
+msgid ""
+"The selected printer (%s) is incompatible with the print file configuration "
+"(%s). Please adjust the printer preset in the prepare page or choose a "
+"compatible printer on this page."
+msgstr ""
+"เครื่องพิมพ์ที่เลือก (%s) เข้ากันไม่ได้กับการกำหนดค่าไฟล์การพิมพ์ (%s) "
+"โปรดปรับการตั้งค่าล่วงหน้าของเครื่องพิมพ์ในหน้าจัดเตรียมหรือเลือกเครื่องพิมพ์ที่ใช้งานร่วมกันได้ในหน้านี้"
+
+msgid ""
+"When enable spiral vase mode, machines with I3 structure will not generate "
+"timelapse videos."
+msgstr "เมื่อเปิดใช้งานโหมดแจกันเกลียว เครื่องจักรที่มีโครงสร้าง I3 จะไม่สร้างวิดีโอไทม์แลปส์"
+
+msgid ""
+"The current printer does not support timelapse in Traditional Mode when "
+"printing By-Object."
+msgstr "เครื่องพิมพ์ปัจจุบันไม่รองรับไทม์แลปส์ในโหมดดั้งเดิมเมื่อพิมพ์ By-Object"
+
+msgid "Errors"
+msgstr "ข้อผิดพลาด"
+
+msgid ""
+"More than one filament types have been mapped to the same external spool, "
+"which may cause printing issues. The printer won't pause during printing."
+msgstr ""
+"มีการจับคู่เส้นพลาสติกมากกว่าหนึ่งประเภทกับแกนม้วนภายนอกเดียวกัน ซึ่งอาจทำให้เกิดปัญหาในการพิมพ์ "
+"เครื่องพิมพ์จะไม่หยุดชั่วคราวระหว่างการพิมพ์"
+
+msgid ""
+"The filament type setting of external spool is different from the filament "
+"in the slicing file."
+msgstr "การตั้งค่าประเภทฟิลาเมนต์ของสปูลภายนอกแตกต่างจากฟิลาเมนต์ในไฟล์สไลซ์"
+
+msgid ""
+"The printer type selected when generating G-code is not consistent with the "
+"currently selected printer. It is recommended that you use the same printer "
+"type for slicing."
+msgstr ""
+"ประเภทเครื่องพิมพ์ที่เลือกเมื่อสร้าง G-code ไม่สอดคล้องกับเครื่องพิมพ์ที่เลือกในปัจจุบัน "
+"ขอแนะนำให้คุณใช้เครื่องพิมพ์ประเภทเดียวกันในการตัด"
+
+msgid ""
+"There are some unknown filaments in the AMS mappings. Please check whether "
+"they are the required filaments. If they are okay, press \"Confirm\" to "
+"start printing."
+msgstr ""
+"มีเส้นพลาสติกที่ไม่รู้จักบางอย่างในการแมป AMS โปรดตรวจสอบว่าเป็นเส้นพลาสติกที่ต้องการหรือไม่ "
+"หากไม่เป็นไร ให้กด \"ยืนยัน\" เพื่อเริ่มพิมพ์"
+
+msgid "Please check the following:"
+msgstr "กรุณาตรวจสอบสิ่งต่อไปนี้:"
+
+msgid "Please fix the error above, otherwise printing cannot continue."
+msgstr "โปรดแก้ไขข้อผิดพลาดด้านบน ไม่เช่นนั้นการพิมพ์จะไม่สามารถดำเนินการต่อได้"
+
+msgid ""
+"Please click the confirm button if you still want to proceed with printing."
+msgstr "โปรดคลิกปุ่มยืนยันหากคุณยังต้องการดำเนินการพิมพ์ต่อ"
+
+msgid ""
+"This checks the flatness of heatbed. Leveling makes extruded height uniform."
+msgstr "วิธีนี้จะตรวจสอบความเรียบของฐานพิมพ์ การปรับระดับทำให้ความสูงที่ฉีดเส้นออกมาสม่ำเสมอ"
+
+msgid ""
+"This process determines the dynamic flow values to improve overall print "
+"quality."
+msgstr "กระบวนการนี้จะกำหนดค่าการไหลแบบไดนามิกเพื่อปรับปรุงคุณภาพการพิมพ์โดยรวม"
+
+msgid "Preparing print job"
+msgstr "กำลังเตรียมงานพิมพ์"
+
+msgid "The name length exceeds the limit."
+msgstr "ชื่อมีความยาวเกินขีดจำกัด"
+
+#, c-format, boost-format
+msgid "Cost %dg filament and %d changes more than optimal grouping."
+msgstr "ราคา %dg เส้นพลาสติกและ %d เปลี่ยนแปลงมากกว่าการจัดกลุ่มที่เหมาะสมที่สุด"
+
+msgid "nozzle"
+msgstr "หัวฉีด"
+
+msgid "both extruders"
+msgstr "ชุดดันเส้นทั้งสอง"
+
+msgid ""
+"Tips: If you changed your nozzle of your printer lately, Please go to "
+"'Device -> Printer parts' to change your nozzle setting."
+msgstr ""
+"เคล็ดลับ: หากคุณเปลี่ยนหัวฉีดของเครื่องพิมพ์เมื่อเร็วๆ นี้ โปรดไปที่ 'อุปกรณ์ -> ชิ้นส่วนเครื่องพิมพ์' "
+"เพื่อเปลี่ยนการตั้งค่าหัวฉีดของคุณ"
+
+#, c-format, boost-format
+msgid ""
+"The %s diameter(%.1fmm) of current printer doesn't match with the slicing "
+"file (%.1fmm). Please make sure the nozzle installed matches with settings "
+"in printer, then set the corresponding printer preset when slicing."
+msgstr ""
+"เส้นผ่านศูนย์กลาง %s(%.1fmm) ของเครื่องพิมพ์ปัจจุบันไม่ตรงกับไฟล์การแบ่งส่วน (%.1fmm) "
+"โปรดตรวจสอบให้แน่ใจว่าหัวฉีดที่ติดตั้งตรงกับการตั้งค่าในเครื่องพิมพ์ "
+"จากนั้นตั้งค่าเครื่องพิมพ์ล่วงหน้าที่เกี่ยวข้องเมื่อสไลซ์"
+
+#, c-format, boost-format
+msgid ""
+"The current nozzle diameter (%.1fmm) doesn't match with the slicing file "
+"(%.1fmm). Please make sure the nozzle installed matches with settings in "
+"printer, then set the corresponding printer preset when slicing."
+msgstr ""
+"เส้นผ่านศูนย์กลางหัวฉีดปัจจุบัน (%.1fmm) ไม่ตรงกับไฟล์การแบ่งส่วน (%.1fmm) "
+"โปรดตรวจสอบให้แน่ใจว่าหัวฉีดที่ติดตั้งตรงกับการตั้งค่าในเครื่องพิมพ์ "
+"จากนั้นตั้งค่าเครื่องพิมพ์ล่วงหน้าที่เกี่ยวข้องเมื่อสไลซ์"
+
+#, c-format, boost-format
+msgid ""
+"The hardness of current material (%s) exceeds the hardness of %s(%s). Please "
+"verify the nozzle or material settings and try again."
+msgstr ""
+"ความแข็งของวัสดุปัจจุบัน (%s) เกินความแข็งของ %s(%s) "
+"โปรดตรวจสอบการตั้งค่าหัวฉีดหรือวัสดุแล้วลองอีกครั้ง"
+
+#, c-format, boost-format
+msgid ""
+"[ %s ] requires printing in a high-temperature environment. Please close the "
+"door."
+msgstr "[ %s ] จำเป็นต้องพิมพ์ในสภาพแวดล้อมที่มีอุณหภูมิสูง กรุณาปิดประตู."
+
+#, c-format, boost-format
+msgid "[ %s ] requires printing in a high-temperature environment."
+msgstr "[ %s ] จำเป็นต้องพิมพ์ในสภาพแวดล้อมที่มีอุณหภูมิสูง"
+
+#, c-format, boost-format
+msgid "The filament on %s may soften. Please unload."
+msgstr "เส้นพลาสติกบน %s อาจอ่อนตัวลง กรุณายกเลิกการโหลด"
+
+#, c-format, boost-format
+msgid "The filament on %s is unknown and may soften. Please set filament."
+msgstr "ไม่ทราบเส้นพลาสติกบน %s และอาจอ่อนตัวลง กรุณาตั้งค่าเส้นพลาสติก"
+
+msgid ""
+"Unable to automatically match to suitable filament. Please click to manually "
+"match."
+msgstr "ไม่สามารถจับคู่เส้นพลาสติกที่เหมาะสมได้โดยอัตโนมัติ กรุณาคลิกเพื่อจับคู่ด้วยตนเอง"
+
+msgid "Install toolhead enhanced cooling fan to prevent filament softening."
+msgstr "ติดตั้งพัดลมระบายความร้อนที่เสริมหัวเครื่องมือเพื่อป้องกันไม่ให้เส้นพลาสติกอ่อนตัว"
+
+msgid "Smooth Cool Plate"
+msgstr "จานเย็นเรียบ"
+
+msgid "Engineering Plate"
+msgstr "แผ่นวิศวกรรม"
+
+msgid "Smooth High Temp Plate"
+msgstr "แผ่นความร้อนสูงเรียบ"
+
+msgid "Textured PEI Plate"
+msgstr "แผ่น PEI ที่มีพื้นผิว"
+
+msgid "Cool Plate (SuperTack)"
+msgstr "คูลเพลท (ซุปเปอร์แทค)"
+
+msgid "Click here if you can't connect to the printer"
+msgstr "คลิกที่นี่ หากคุณไม่สามารถเชื่อมต่อกับเครื่องพิมพ์ได้"
+
+msgid "No login account, only printers in LAN mode are displayed."
+msgstr "ไม่มีบัญชีเข้าสู่ระบบ จะแสดงเฉพาะเครื่องพิมพ์ในโหมด LAN เท่านั้น"
+
+msgid "Connecting to server..."
+msgstr "กำลังเชื่อมต่อกับเซิร์ฟเวอร์..."
+
+msgid "Synchronizing device information..."
+msgstr "กำลังซิงโครไนซ์ข้อมูลอุปกรณ์..."
+
+msgid "Synchronizing device information timed out."
+msgstr "การซิงโครไนซ์ข้อมูลอุปกรณ์หมดเวลา"
+
+msgid "Cannot send a print job when the printer is not at FDM mode."
+msgstr "ไม่สามารถส่งงานพิมพ์ได้เมื่อเครื่องพิมพ์ไม่ได้อยู่ในโหมด FDM"
+
+msgid "Cannot send a print job while the printer is updating firmware."
+msgstr "ไม่สามารถส่งงานพิมพ์ในขณะที่เครื่องพิมพ์กำลังอัปเดตเฟิร์มแวร์"
+
+msgid ""
+"The printer is executing instructions. Please restart printing after it ends."
+msgstr "เครื่องพิมพ์กำลังดำเนินการตามคำแนะนำ โปรดเริ่มการพิมพ์ใหม่หลังจากสิ้นสุด"
+
+msgid "AMS is setting up. Please try again later."
+msgstr "AMS กำลังจัดตั้ง โปรดลองอีกครั้งในภายหลัง"
+
+msgid ""
+"Not all filaments used in slicing are mapped to the printer. Please check "
+"the mapping of filaments."
+msgstr ""
+"เส้นพลาสติกที่ใช้ในการตัดบางเส้นไม่ได้ถูกแมปกับเครื่องพิมพ์ โปรดตรวจสอบการแมปของเส้นพลาสติก"
+
+msgid "Please do not mix-use the Ext with AMS."
+msgstr "กรุณาอย่าใช้ Ext ผสมกับ AMS"
+
+msgid ""
+"Invalid nozzle information, please refresh or manually set nozzle "
+"information."
+msgstr "ข้อมูลหัวฉีดไม่ถูกต้อง โปรดรีเฟรชหรือตั้งค่าข้อมูลหัวฉีดด้วยตนเอง"
+
+msgid "Storage needs to be inserted before printing via LAN."
+msgstr "ต้องใส่ที่เก็บข้อมูลก่อนที่จะพิมพ์ผ่าน LAN"
+
+msgid "Storage is in abnormal state or is in read-only mode."
+msgstr "ที่เก็บข้อมูลอยู่ในสถานะผิดปกติหรืออยู่ในโหมดอ่านอย่างเดียว"
+
+msgid "Storage needs to be inserted before printing."
+msgstr "ต้องใส่ที่เก็บข้อมูลก่อนพิมพ์"
+
+msgid ""
+"Cannot send the print job to a printer whose firmware is required to get "
+"updated."
+msgstr "ไม่สามารถส่งงานพิมพ์ไปยังเครื่องพิมพ์ที่ต้องใช้เฟิร์มแวร์ในการอัพเดต"
+
+msgid "Cannot send a print job for an empty plate."
+msgstr "ไม่สามารถส่งงานพิมพ์จานเปล่าได้"
+
+msgid "Storage needs to be inserted to record timelapse."
+msgstr "ต้องใส่ที่เก็บข้อมูลเพื่อบันทึกไทม์แลปส์"
+
+msgid ""
+"You have selected both external and AMS filaments for an extruder. You will "
+"need to manually switch the external filament during printing."
+msgstr ""
+"คุณได้เลือกเส้นพลาสติกทั้งภายนอกและ AMS สำหรับชุดดันเส้น "
+"คุณจะต้องสลับเส้นพลาสติกภายนอกด้วยตนเองระหว่างการพิมพ์"
+
+msgid ""
+"TPU 90A/TPU 85A is too soft and does not support automatic Flow Dynamics "
+"calibration."
+msgstr "TPU 90A/TPU 85A อ่อนเกินไปและไม่รองรับการปรับเทียบ Flow Dynamics อัตโนมัติ"
+
+msgid ""
+"Set dynamic flow calibration to 'OFF' to enable custom dynamic flow value."
+msgstr ""
+"ตั้งค่าการสอบเทียบโฟลว์แบบไดนามิกเป็น 'ปิด' เพื่อเปิดใช้งานค่าโฟลว์แบบไดนามิกที่กำหนดเอง"
+
+msgid "This printer does not support printing all plates."
+msgstr "เครื่องพิมพ์นี้ไม่รองรับการพิมพ์เพลตทั้งหมด"
+
+msgid ""
+"The current firmware supports a maximum of 16 materials. You can either "
+"reduce the number of materials to 16 or fewer on the Preparation Page, or "
+"try updating the firmware. If you are still restricted after the update, "
+"please wait for subsequent firmware support."
+msgstr ""
+"เฟิร์มแวร์ปัจจุบันรองรับวัสดุได้สูงสุด 16 รายการ คุณสามารถลดจำนวนวัสดุเหลือ 16 "
+"ชิ้นหรือน้อยกว่านั้นได้ในหน้าการเตรียมการ หรือลองอัปเดตเฟิร์มแวร์ "
+"หากคุณยังคงถูกจำกัดหลังจากการอัพเดต โปรดรอส่วนรองรับเฟิร์มแวร์ครั้งต่อไป"
+
+msgid ""
+"The type of external filament is unknown or does not match with the filament "
+"type in the slicing file. Please make sure you have installed the correct "
+"filament in the external spool."
+msgstr ""
+"ไม่ทราบประเภทของเส้นพลาสติกภายนอกหรือไม่ตรงกับประเภทเส้นพลาสติกในไฟล์สไลซ์ "
+"โปรดตรวจสอบให้แน่ใจว่าคุณได้ติดตั้งเส้นพลาสติกที่ถูกต้องในแกนม้วนสายภายนอก"
+
+msgid "Please refer to Wiki before use->"
+msgstr "โปรดดู Wiki ก่อนใช้งาน ->"
+
+msgid "Current firmware does not support file transfer to internal storage."
+msgstr "เฟิร์มแวร์ปัจจุบันไม่รองรับการถ่ายโอนไฟล์ไปยังที่จัดเก็บข้อมูลภายใน"
+
+msgid "Send to Printer storage"
+msgstr "ส่งไปยังที่เก็บข้อมูลเครื่องพิมพ์"
+
+msgid "Try to connect"
+msgstr "ลองเชื่อมต่อ"
+
+msgid "Internal Storage"
+msgstr "ที่จัดเก็บภายใน"
+
+msgid "External Storage"
+msgstr "ที่จัดเก็บภายนอก"
+
+msgid "Upload file timeout, please check if the firmware version supports it."
+msgstr "การอัปโหลดไฟล์หมดเวลา โปรดตรวจสอบว่าเวอร์ชันเฟิร์มแวร์รองรับหรือไม่"
+
+msgid "Connection timed out, please check your network."
+msgstr "การเชื่อมต่อหมดเวลา โปรดตรวจสอบเครือข่ายของคุณ"
+
+msgid "Connection failed. Click the icon to retry"
+msgstr "การเชื่อมต่อล้มเหลว คลิกไอคอนเพื่อลองอีกครั้ง"
+
+msgid "Cannot send the print task when the upgrade is in progress"
+msgstr "ไม่สามารถส่งงานพิมพ์ได้ในขณะที่กำลังอัปเกรด"
+
+msgid "The selected printer is incompatible with the chosen printer presets."
+msgstr "เครื่องพิมพ์ที่เลือกเข้ากันไม่ได้กับการตั้งค่าล่วงหน้าของเครื่องพิมพ์ที่เลือก"
+
+msgid "Storage needs to be inserted before send to printer."
+msgstr "ต้องใส่ที่เก็บข้อมูลก่อนส่งไปยังเครื่องพิมพ์"
+
+msgid "The printer is required to be in the same LAN as Orca Slicer."
+msgstr "เครื่องพิมพ์จะต้องอยู่ใน LAN เดียวกันกับ Orca Slicer"
+
+msgid "The printer does not support sending to printer storage."
+msgstr "เครื่องพิมพ์ไม่รองรับการส่งไปยังที่เก็บข้อมูลของเครื่องพิมพ์"
+
+msgid "Sending..."
+msgstr "กำลังส่ง..."
+
+msgid ""
+"File upload timed out. Please check if the firmware version supports this "
+"operation or verify if the printer is functioning properly."
+msgstr ""
+"การอัปโหลดไฟล์หมดเวลา โปรดตรวจสอบว่าเวอร์ชันเฟิร์มแวร์รองรับการทำงานนี้หรือไม่ "
+"หรือตรวจสอบว่าเครื่องพิมพ์ทำงานอย่างถูกต้องหรือไม่"
+
+msgid "Slice ok."
+msgstr "ชิ้นตกลง"
+
+msgid "View all Daily tips"
+msgstr "ดูเคล็ดลับรายวันทั้งหมด"
+
+msgid "Failed to create socket"
+msgstr "ไม่สามารถสร้างซ็อกเก็ต"
+
+msgid "Failed to connect socket"
+msgstr "ไม่สามารถเชื่อมต่อซ็อกเก็ตได้"
+
+msgid "Failed to publish login request"
+msgstr "ไม่สามารถเผยแพร่คำขอเข้าสู่ระบบได้"
+
+msgid "Get ticket from device timeout"
+msgstr "รับตั๋วจากการหมดเวลาของอุปกรณ์"
+
+msgid "Get ticket from server timeout"
+msgstr "รับตั๋วจากการหมดเวลาของเซิร์ฟเวอร์"
+
+msgid "Failed to post ticket to server"
+msgstr "ไม่สามารถโพสต์ตั๋วไปยังเซิร์ฟเวอร์"
+
+msgid "Failed to parse login report reason"
+msgstr "ไม่สามารถแยกวิเคราะห์เหตุผลของรายงานการเข้าสู่ระบบ"
+
+msgid "Receive login report timeout"
+msgstr "รับการหมดเวลารายงานการเข้าสู่ระบบ"
+
+msgid "Unknown Failure"
+msgstr "ความล้มเหลวที่ไม่รู้จัก"
+
+msgid ""
+"Please Find the Pin Code in Account page on printer screen,\n"
+" and type in the Pin Code below."
+msgstr ""
+"กรุณาค้นหารหัส PIN ในหน้าบัญชีบนหน้าจอเครื่องพิมพ์\n"
+" และพิมพ์รหัสพินด้านล่าง"
+
+msgid "Can't find Pin Code?"
+msgstr "ไม่พบรหัสพิน?"
+
+msgid "Pin Code"
+msgstr "รหัสพิน"
+
+msgid "Binding..."
+msgstr "ผูกพัน..."
+
+msgid "Please confirm on the printer screen"
+msgstr "กรุณายืนยันบนหน้าจอเครื่องพิมพ์"
+
+msgid "Log in failed. Please check the Pin Code."
+msgstr "เข้าสู่ระบบล้มเหลว กรุณาตรวจสอบรหัสพิน"
+
+msgid "Log in printer"
+msgstr "เข้าสู่ระบบเครื่องพิมพ์"
+
+msgid "Would you like to log in to this printer with the current account?"
+msgstr "คุณต้องการเข้าสู่ระบบเครื่องพิมพ์นี้ด้วยบัญชีปัจจุบันหรือไม่"
+
+msgid "Check the reason"
+msgstr "ตรวจสอบสาเหตุ"
+
+msgid "Read and accept"
+msgstr "อ่านและยอมรับ"
+
+msgid "Terms and Conditions"
+msgstr "ข้อกำหนดและเงื่อนไข"
+
+msgid ""
+"Thank you for purchasing a Bambu Lab device. Before using your Bambu Lab "
+"device, please read the terms and conditions. By clicking to agree to use "
+"your Bambu Lab device, you agree to abide by the Privacy Policy and Terms of "
+"Use (collectively, the \"Terms\"). If you do not comply with or agree to the "
+"Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services."
+msgstr ""
+"ขอขอบคุณที่ซื้ออุปกรณ์ Bambu Lab ก่อนใช้อุปกรณ์ Bambu Lab โปรดอ่านข้อกำหนดและเงื่อนไข "
+"การคลิกเพื่อยอมรับการใช้อุปกรณ์ Bambu Lab ของคุณ "
+"แสดงว่าคุณยินยอมที่จะปฏิบัติตามนโยบายความเป็นส่วนตัวและข้อกำหนดการใช้งาน (เรียกรวมกันว่า "
+"\"ข้อกำหนด\") หากคุณไม่ปฏิบัติตามหรือยอมรับนโยบายความเป็นส่วนตัวของ Bambu Lab "
+"โปรดอย่าใช้อุปกรณ์และบริการของ Bambu Lab"
+
+msgid "and"
+msgstr "และ"
+
+msgid "Privacy Policy"
+msgstr "นโยบายความเป็นส่วนตัว"
+
+msgid "We ask for your help to improve everyone's printer"
+msgstr "เราขอความช่วยเหลือจากคุณในการปรับปรุงเครื่องพิมพ์ของทุกคน"
+
+msgid "Statement about User Experience Improvement Program"
+msgstr "คำชี้แจงเกี่ยวกับโครงการปรับปรุงประสบการณ์ผู้ใช้"
+
+#, c-format, boost-format
+msgid ""
+"In the 3D Printing community, we learn from each other's successes and "
+"failures to adjust our own slicing parameters and settings. %s follows the "
+"same principle and uses machine learning to improve its performance from the "
+"successes and failures of the vast number of prints by our users. We are "
+"training %s to be smarter by feeding them the real-world data. If you are "
+"willing, this service will access information from your error logs and usage "
+"logs, which may include information described in Privacy Policy. We will not "
+"collect any Personal Data by which an individual can be identified directly "
+"or indirectly, including without limitation names, addresses, payment "
+"information, or phone numbers. By enabling this service, you agree to these "
+"terms and the statement about Privacy Policy."
+msgstr ""
+"ในชุมชนการพิมพ์ 3 มิติ "
+"เราเรียนรู้จากความสำเร็จและความล้มเหลวของกันและกันในการปรับพารามิเตอร์และการตั้งค่าการแบ่งส่วนของเราเอง "
+"%s "
+"ปฏิบัติตามหลักการเดียวกันและใช้การเรียนรู้ของเครื่องเพื่อปรับปรุงประสิทธิภาพจากความสำเร็จและความล้มเหลวของงานพิมพ์จำนวนมากโดยผู้ใช้ของเรา "
+"เรากำลังฝึก %s ให้ฉลาดขึ้นโดยป้อนข้อมูลจากโลกแห่งความเป็นจริงให้พวกเขา หากคุณเต็มใจ "
+"บริการนี้จะเข้าถึงข้อมูลจากบันทึกข้อผิดพลาดและบันทึกการใช้งานของคุณ "
+"ซึ่งอาจรวมถึงข้อมูลที่อธิบายไว้ในนโยบายความเป็นส่วนตัว เราจะไม่เก็บรวบรวมข้อมูลส่วนบุคคลใด ๆ "
+"ที่สามารถระบุตัวบุคคลได้โดยตรงหรือโดยอ้อม รวมถึงแต่ไม่จำกัดเพียงชื่อ ที่อยู่ ข้อมูลการชำระเงิน "
+"หรือหมายเลขโทรศัพท์ เมื่อเปิดใช้บริการนี้ "
+"แสดงว่าคุณยอมรับข้อกำหนดเหล่านี้และคำชี้แจงเกี่ยวกับนโยบายความเป็นส่วนตัว"
+
+msgid "Statement on User Experience Improvement Plan"
+msgstr "คำชี้แจงเกี่ยวกับแผนการปรับปรุงประสบการณ์ผู้ใช้"
+
+msgid "Log in successful."
+msgstr "เข้าสู่ระบบสำเร็จ"
+
+msgid "Log out printer"
+msgstr "ออกจากระบบเครื่องพิมพ์"
+
+msgid "Would you like to log out the printer?"
+msgstr "คุณต้องการออกจากระบบเครื่องพิมพ์หรือไม่?"
+
+msgid "Please log in first."
+msgstr "กรุณาเข้าสู่ระบบก่อน"
+
+msgid "There was a problem connecting to the printer. Please try again."
+msgstr "เกิดปัญหาในการเชื่อมต่อกับเครื่องพิมพ์ โปรดลองอีกครั้ง"
+
+msgid "Failed to log out."
+msgstr "ล้มเหลวในการออกจากระบบ"
+
+#. TRN "Save current Settings"
+#, c-format, boost-format
+msgid "Save current %s"
+msgstr "บันทึก %s ปัจจุบัน"
+
+msgid "Delete this preset"
+msgstr "ลบค่าที่ตั้งล่วงหน้านี้"
+
+msgid "Search in preset"
+msgstr "ค้นหาในที่ตั้งไว้ล่วงหน้า"
+
+msgid "Click to reset all settings to the last saved preset."
+msgstr "คลิกเพื่อรีเซ็ตการตั้งค่าทั้งหมดเป็นค่าที่ตั้งไว้ล่วงหน้าที่บันทึกไว้ล่าสุด"
+
+msgid ""
+"A prime tower is required for smooth timelapse. There may be flaws on the "
+"model without prime tower. Are you sure you want to disable prime tower?"
+msgstr ""
+"จำเป็นต้องมีหอคอยหลักเพื่อให้ไทม์แลปส์ราบรื่น อาจมีตำหนิตรงรุ่นที่ไม่มีไพร์มทาวเวอร์ "
+"คุณแน่ใจหรือไม่ว่าต้องการปิดการใช้งานไพร์มทาวเวอร์?"
+
+msgid ""
+"A prime tower is required for clumping detection. There may be flaws on the "
+"model without prime tower. Are you sure you want to disable prime tower?"
+msgstr ""
+"ต้องใช้ไพรม์ทาวเวอร์ในการตรวจจับการจับกันเป็นก้อน อาจมีตำหนิตรงรุ่นที่ไม่มีไพร์มทาวเวอร์ "
+"คุณแน่ใจหรือไม่ว่าต้องการปิดการใช้งานไพร์มทาวเวอร์?"
+
+msgid ""
+"Enabling both precise Z height and the prime tower may cause slicing errors. "
+"Do you still want to enable?"
+msgstr ""
+"การเปิดใช้งานทั้งความสูง Z ที่แม่นยำและหอคอยหลักอาจทำให้เกิดข้อผิดพลาดในการแบ่งส่วน "
+"คุณยังต้องการเปิดใช้งานหรือไม่?"
+
+msgid ""
+"A prime tower is required for clumping detection. There may be flaws on the "
+"model without prime tower. Do you still want to enable clumping detection?"
+msgstr ""
+"ต้องใช้ไพรม์ทาวเวอร์ในการตรวจจับการจับกันเป็นก้อน อาจมีตำหนิตรงรุ่นที่ไม่มีไพร์มทาวเวอร์ "
+"คุณยังต้องการเปิดใช้งานการตรวจจับการจับกันเป็นก้อนหรือไม่"
+
+msgid ""
+"Enabling both precise Z height and the prime tower may cause slicing errors. "
+"Do you still want to enable precise Z height?"
+msgstr ""
+"การเปิดใช้งานทั้งความสูง Z ที่แม่นยำและหอคอยหลักอาจทำให้เกิดข้อผิดพลาดในการแบ่งส่วน "
+"คุณยังต้องการเปิดใช้งานความสูง Z ที่แม่นยำหรือไม่"
+
+msgid ""
+"A prime tower is required for smooth timelapse. There may be flaws on the "
+"model without prime tower. Do you want to enable prime tower?"
+msgstr ""
+"จำเป็นต้องมีหอคอยหลักเพื่อให้ไทม์แลปส์ราบรื่น อาจมีตำหนิตรงรุ่นที่ไม่มีไพร์มทาวเวอร์ "
+"คุณต้องการเปิดใช้งานไพร์มทาวเวอร์หรือไม่?"
+
+msgid "Still print by object?"
+msgstr "ยังคงพิมพ์ตามวัตถุใช่ไหม"
+
+msgid ""
+"Non-soluble support materials are not recommended for support base.\n"
+"Are you sure to use them for support base?\n"
+msgstr ""
+"ไม่แนะนำให้ใช้วัสดุรองรับที่ไม่ละลายน้ำสำหรับฐานรองรับ\n"
+"คุณแน่ใจหรือว่าจะใช้พวกมันเป็นฐานส่วนรองรับ?\n"
+
+msgid ""
+"When using support material for the support interface, we recommend the "
+"following settings:\n"
+"0 top Z distance, 0 interface spacing, interlaced rectilinear pattern and "
+"disable independent support layer height."
+msgstr ""
+"เมื่อใช้สื่อส่วนรองรับสำหรับอินเทอร์เฟซส่วนรองรับ เราขอแนะนำการตั้งค่าต่อไปนี้:\n"
+"0 ระยะทาง Z บนสุด, ระยะห่างระหว่างอินเทอร์เฟซ 0, รูปแบบเส้นตรงแบบอินเทอร์เลซ "
+"และปิดใช้งานความสูงของเลเยอร์รองรับอิสระ"
+
+msgid ""
+"Change these settings automatically?\n"
+"Yes - Change these settings automatically\n"
+"No - Do not change these settings for me"
+msgstr ""
+"เปลี่ยนการตั้งค่าเหล่านี้โดยอัตโนมัติหรือไม่\n"
+"ใช่ - เปลี่ยนการตั้งค่าเหล่านี้โดยอัตโนมัติ\n"
+"ไม่ - อย่าเปลี่ยนการตั้งค่าเหล่านี้ให้ฉัน"
+
+msgid ""
+"When using soluble material for the support interface, we recommend the "
+"following settings:\n"
+"0 top Z distance, 0 interface spacing, interlaced rectilinear pattern, "
+"disable independent support layer height\n"
+"and use soluble materials for both support interface and support base."
+msgstr ""
+"เมื่อใช้วัสดุที่ละลายน้ำได้สำหรับอินเทอร์เฟซส่วนรองรับ เราขอแนะนำการตั้งค่าต่อไปนี้:\n"
+"0 ระยะทาง Z บนสุด, ระยะห่างระหว่างอินเทอร์เฟซ 0, รูปแบบเส้นตรงแบบอินเทอร์เลซ, "
+"ปิดใช้งานความสูงของเลเยอร์รองรับอิสระ\n"
+"และใช้วัสดุที่ละลายน้ำได้สำหรับทั้งส่วนต่อประสานและฐานรองรับ"
+
+msgid ""
+"Enabling this option will modify the model's shape. If your print requires "
+"precise dimensions or is part of an assembly, it's important to double-check "
+"whether this change in geometry impacts the functionality of your print."
+msgstr ""
+"การเปิดใช้งานตัวเลือกนี้จะปรับเปลี่ยนรูปร่างของแบบจำลอง "
+"หากการพิมพ์ของคุณต้องการขนาดที่แม่นยำหรือเป็นส่วนหนึ่งของชุดประกอบ "
+"สิ่งสำคัญคือต้องตรวจสอบอีกครั้งว่าการเปลี่ยนแปลงทางเรขาคณิตนี้ส่งผลต่อการทำงานของการพิมพ์ของคุณหรือไม่"
+
+msgid "Are you sure you want to enable this option?"
+msgstr "คุณแน่ใจหรือไม่ว่าต้องการเปิดใช้งานตัวเลือกนี้"
+
+msgid ""
+"Infill patterns are typically designed to handle rotation automatically to "
+"ensure proper printing and achieve their intended effects (e.g., Gyroid, "
+"Cubic). Rotating the current sparse infill pattern may lead to insufficient "
+"support. Please proceed with caution and thoroughly check for any potential "
+"printing issues. Are you sure you want to enable this option?"
+msgstr ""
+"โดยทั่วไปรูปแบบไส้ในได้รับการออกแบบให้รองรับการหมุนโดยอัตโนมัติเพื่อให้แน่ใจว่าการพิมพ์ถูกต้องและบรรลุผลตามที่ต้องการ "
+"(เช่น Gyroid, ลูกบาศก์) การหมุนรูปแบบ ไส้ใน "
+"แบบกระจัดกระจายในปัจจุบันอาจทำให้ส่วนรองรับไม่เพียงพอ "
+"โปรดดำเนินการด้วยความระมัดระวังและตรวจสอบปัญหาการพิมพ์ที่อาจเกิดขึ้นอย่างละเอียด "
+"คุณแน่ใจหรือไม่ว่าต้องการเปิดใช้งานตัวเลือกนี้"
+
+msgid ""
+"Layer height is too small.\n"
+"It will set to min_layer_height\n"
+msgstr ""
+"ความสูงของเลเยอร์น้อยเกินไป\n"
+"มันจะตั้งค่าเป็น min_layer_height\n"
+
+msgid ""
+"Layer height exceeds the limit in Printer Settings -> Extruder -> Layer "
+"height limits, this may cause printing quality issues."
+msgstr ""
+"ความสูงของเลเยอร์เกินขีดจำกัดในการตั้งค่าเครื่องพิมพ์ -> ชุดดันเส้น -> "
+"ขีดจำกัดความสูงของเลเยอร์ ซึ่งอาจทำให้เกิดปัญหาคุณภาพการพิมพ์"
+
+msgid "Adjust to the set range automatically?\n"
+msgstr "ปรับเป็นช่วงที่ตั้งไว้อัตโนมัติ?\n"
+
+msgid "Adjust"
+msgstr "ปรับ"
+
+msgid "Ignore"
+msgstr "ละเว้น"
+
+msgid ""
+"Experimental feature: Retracting and cutting off the filament at a greater "
+"distance during filament changes to minimize flush. Although it can notably "
+"reduce flush, it may also elevate the risk of nozzle clogs or other printing "
+"complications."
+msgstr ""
+"คุณลักษณะการทดลอง: "
+"การดึงกลับและตัดเส้นพลาสติกออกในระยะห่างที่มากขึ้นระหว่างการเปลี่ยนเส้นพลาสติกเพื่อลดการไล่เส้น "
+"แม้ว่าจะสามารถลดการไล่เส้นได้อย่างเห็นได้ชัด "
+"แต่ก็อาจเพิ่มความเสี่ยงของการอุดตันของหัวฉีดหรือภาวะแทรกซ้อนในการพิมพ์อื่นๆ อีกด้วย"
+
+msgid ""
+"Experimental feature: Retracting and cutting off the filament at a greater "
+"distance during filament changes to minimize flush. Although it can notably "
+"reduce flush, it may also elevate the risk of nozzle clogs or other printing "
+"complications. Please use with the latest printer firmware."
+msgstr ""
+"คุณลักษณะการทดลอง: "
+"การดึงกลับและตัดเส้นพลาสติกออกในระยะห่างที่มากขึ้นระหว่างการเปลี่ยนเส้นพลาสติกเพื่อลดการไล่เส้น "
+"แม้ว่าจะสามารถลดการไล่เส้นได้อย่างเห็นได้ชัด "
+"แต่ก็อาจเพิ่มความเสี่ยงของการอุดตันของหัวฉีดหรือภาวะแทรกซ้อนในการพิมพ์อื่นๆ อีกด้วย "
+"กรุณาใช้กับเฟิร์มแวร์เครื่องพิมพ์ล่าสุด"
+
+msgid ""
+"When recording timelapse without toolhead, it is recommended to add a "
+"\"Timelapse Wipe Tower\" \n"
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
+msgstr ""
+"เมื่อบันทึกไทม์แลปส์โดยไม่มีหัวเครื่องมือ แนะนำให้เพิ่ม \"Timelapse Wipe Tower\" \n"
+"โดยคลิกขวาที่ตำแหน่งว่างของแผ่นงานแล้วเลือก \"Add Primitive\"->\"Timelapse Wipe Tower"
+"\""
+
+msgid ""
+"A copy of the current system preset will be created, which will be detached "
+"from the system preset."
+msgstr ""
+"สำเนาของค่าที่ตั้งล่วงหน้าของระบบปัจจุบันจะถูกสร้างขึ้น ซึ่งจะแยกออกจากค่าที่ตั้งล่วงหน้าของระบบ"
+
+msgid ""
+"The current custom preset will be detached from the parent system preset."
+msgstr "ค่าที่ตั้งไว้ล่วงหน้าแบบกำหนดเองปัจจุบันจะแยกออกจากค่าที่ตั้งไว้ล่วงหน้าของระบบหลัก"
+
+msgid "Modifications to the current profile will be saved."
+msgstr "การแก้ไขโปรไฟล์ปัจจุบันจะถูกบันทึก"
+
+msgid ""
+"This action is not revertible.\n"
+"Do you want to proceed?"
+msgstr ""
+"การดำเนินการนี้ไม่สามารถย้อนกลับได้\n"
+"คุณต้องการดำเนินการต่อหรือไม่?"
+
+msgid "Detach preset"
+msgstr "ถอดค่าที่ตั้งไว้ล่วงหน้า"
+
+msgid "This is a default preset."
+msgstr "นี่เป็นค่าที่ตั้งล่วงหน้าเริ่มต้น"
+
+msgid "This is a system preset."
+msgstr "นี่เป็นการตั้งค่าล่วงหน้าของระบบ"
+
+msgid "Current preset is inherited from the default preset."
+msgstr "ค่าที่ตั้งล่วงหน้าปัจจุบันสืบทอดมาจากค่าที่ตั้งล่วงหน้าเริ่มต้น"
+
+msgid "Current preset is inherited from"
+msgstr "ค่าที่ตั้งล่วงหน้าปัจจุบันสืบทอดมาจาก"
+
+msgid "It can't be deleted or modified."
+msgstr "ไม่สามารถลบหรือแก้ไขได้"
+
+msgid ""
+"Any modifications should be saved as a new preset inherited from this one."
+msgstr "การแก้ไขใด ๆ ควรได้รับการบันทึกเป็นค่าที่ตั้งไว้ล่วงหน้าใหม่ซึ่งสืบทอดมาจากค่านี้"
+
+msgid "To do that please specify a new name for the preset."
+msgstr "หากต้องการทำเช่นนั้น โปรดระบุชื่อใหม่สำหรับค่าที่ตั้งล่วงหน้า"
+
+msgid "Additional information:"
+msgstr "ข้อมูลเพิ่มเติม:"
+
+msgid "vendor"
+msgstr "ผู้ขาย"
+
+msgid "printer model"
+msgstr "รุ่นเครื่องพิมพ์"
+
+msgid "default print profile"
+msgstr "โปรไฟล์การพิมพ์เริ่มต้น"
+
+msgid "default filament profile"
+msgstr "โปรไฟล์เส้นพลาสติกเริ่มต้น"
+
+msgid "default SLA material profile"
+msgstr "โปรไฟล์วัสดุ SLA เริ่มต้น"
+
+msgid "default SLA print profile"
+msgstr "โปรไฟล์การพิมพ์ SLA เริ่มต้น"
+
+msgid "full profile name"
+msgstr "ชื่อโปรไฟล์แบบเต็ม"
+
+msgid "symbolic profile name"
+msgstr "ชื่อโปรไฟล์สัญลักษณ์"
+
+msgid "Line width"
+msgstr "ความกว้างเส้น"
+
+msgid "Precision"
+msgstr "ความแม่นยำ"
+
+msgid "Wall generator"
+msgstr "เครื่องกำเนิดไฟฟ้าติดผนัง"
+
+msgid "Walls and surfaces"
+msgstr "ผนังและพื้นผิว"
+
+msgid "Bridging"
+msgstr "การพิมพ์สะพาน"
+
+msgid "Walls"
+msgstr "ผนัง"
+
+msgid "Top/bottom shells"
+msgstr "เปลือกบน/ล่าง"
+
+msgid "First layer speed"
+msgstr "ความเร็วชั้นแรก"
+
+msgid "Other layers speed"
+msgstr "ความเร็วชั้นอื่นๆ"
+
+msgid "Overhang speed"
+msgstr "ความเร็วส่วนยื่น"
+
+msgid ""
+"This is the speed for various overhang degrees. Overhang degrees are "
+"expressed as a percentage of line width. 0 speed means no slowing down for "
+"the overhang degree range and wall speed is used"
+msgstr ""
+"นี่คือความเร็วขององศาส่วนยื่นต่างๆ องศาที่ยื่นออกมาจะแสดงเป็นเปอร์เซ็นต์ของความกว้างของเส้น "
+"ความเร็ว 0 หมายถึงไม่มีการชะลอความเร็วสำหรับช่วงองศายื่นและใช้ความเร็วของผนัง"
+
+msgid "Set speed for external and internal bridges"
+msgstr "ตั้งค่าความเร็วสำหรับบริดจ์ภายนอกและภายใน"
+
+msgid "Travel speed"
+msgstr "ความเร็วเดินหัวเปล่า"
+
+msgid "Jerk(XY)"
+msgstr "กระตุก(XY)"
+
+msgid "Raft"
+msgstr "ฐานรองชิ้นงาน"
+
+msgid "Support filament"
+msgstr "เส้นพลาสติกสำหรับส่วนรองรับ"
+
+msgid "Support ironing"
+msgstr "รีดผิวส่วนรองรับ"
+
+msgid "Tree supports"
+msgstr "ส่วนรองรับแบบต้นไม้"
+
+msgid "Multimaterial"
+msgstr "หลากหลายวัสดุ"
+
+msgid "Filament for Features"
+msgstr "เส้นพลาสติกสำหรับคุณสมบัติ"
+
+msgid "Ooze prevention"
+msgstr "การป้องกันน้ำซึม"
+
+msgid "Special mode"
+msgstr "โหมดพิเศษ"
+
+msgid "G-code output"
+msgstr "เอาต์พุตรหัส G"
+
+msgid "Change extrusion role G-code"
+msgstr "เปลี่ยนบทบาทการอัดขึ้นรูป G-code"
+
+msgid "Post-processing Scripts"
+msgstr "สคริปต์หลังการประมวลผล"
+
+msgid "Notes"
+msgstr "หมายเหตุ"
+
+msgid "Frequent"
+msgstr "บ่อย"
+
+#, c-format, boost-format
+msgid ""
+"Following line %s contains reserved keywords.\n"
+"Please remove it, or will beat G-code visualization and printing time "
+"estimation."
+msgid_plural ""
+"Following lines %s contain reserved keywords.\n"
+"Please remove them, or will beat G-code visualization and printing time "
+"estimation."
+msgstr[0] ""
+
+msgid "Reserved keywords found"
+msgstr "พบคีย์เวิร์ดที่สงวนไว้"
+
+msgid "Setting Overrides"
+msgstr "การตั้งค่าการแทนที่"
+
+msgid "Basic information"
+msgstr "ข้อมูลพื้นฐาน"
+
+msgid "Recommended nozzle temperature"
+msgstr "อุณหภูมิหัวฉีดที่แนะนำ"
+
+msgid "Recommended nozzle temperature range of this filament. 0 means no set"
+msgstr "ช่วงอุณหภูมิหัวฉีดที่แนะนำของเส้นพลาสติกนี้ 0 หมายถึงไม่มีการตั้งค่า"
+
+msgid "Flow ratio and Pressure Advance"
+msgstr "อัตราการไหลและแรงดันล่วงหน้า (Pressure Advance)"
+
+msgid "Print chamber temperature"
+msgstr "อุณหภูมิห้องพิมพ์"
+
+msgid "Print temperature"
+msgstr "อุณหภูมิพิมพ์"
+
+msgid "Nozzle temperature when printing"
+msgstr "อุณหภูมิหัวฉีดเมื่อพิมพ์"
+
+msgid ""
+"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
+"means the filament does not support printing on the Cool Plate SuperTack."
+msgstr ""
+"อุณหภูมิฐานพิมพ์เมื่อติดตั้ง Cool Plate SuperTack ค่า 0 "
+"หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บน Cool Plate SuperTack"
+
+msgid "Cool Plate"
+msgstr "จานเย็น"
+
+msgid ""
+"Bed temperature when the Cool Plate is installed. A value of 0 means the "
+"filament does not support printing on the Cool Plate."
+msgstr ""
+"อุณหภูมิฐานพิมพ์เมื่อติดตั้ง Cool Plate ค่า 0 หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บน Cool "
+"Plate"
+
+msgid "Textured Cool Plate"
+msgstr "เท็กซ์เจอร์ คูลเพลท"
+
+msgid ""
+"Bed temperature when the Textured Cool Plate is installed. A value of 0 "
+"means the filament does not support printing on the Textured Cool Plate."
+msgstr ""
+"อุณหภูมิฐานพิมพ์เมื่อติดตั้ง Textured Cool Plate ค่า 0 "
+"หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บน Textured Cool Plate"
+
+msgid ""
+"Bed temperature when the Engineering Plate is installed. A value of 0 means "
+"the filament does not support printing on the Engineering Plate."
+msgstr ""
+"อุณหภูมิฐานพิมพ์เมื่อติดตั้ง Engineering Plate ค่า 0 หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บน "
+"Engineering Plate"
+
+msgid "Smooth PEI Plate / High Temp Plate"
+msgstr "แผ่น PEI เรียบ / แผ่นอุณหภูมิสูง"
+
+msgid ""
+"Bed temperature when the Smooth PEI Plate/High Temperature Plate is "
+"installed. A value of 0 means the filament does not support printing on the "
+"Smooth PEI Plate/High Temp Plate."
+msgstr ""
+"อุณหภูมิฐานพิมพ์เมื่อติดตั้งแผ่น Smooth PEI/แผ่นอุณหภูมิสูง ค่า 0 "
+"หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บนแผ่น PEI แบบเรียบ/แผ่นอุณหภูมิสูง"
+
+msgid ""
+"Bed temperature when the Textured PEI Plate is installed. A value of 0 means "
+"the filament does not support printing on the Textured PEI Plate."
+msgstr ""
+"อุณหภูมิฐานพิมพ์เมื่อติดตั้งเพลต PEI แบบมีพื้นผิว ค่า 0 "
+"หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บนเพลต PEI ที่มีพื้นผิว"
+
+msgid "Volumetric speed limitation"
+msgstr "การจำกัดความเร็วตามปริมาตร"
+
+msgid "Cooling for specific layer"
+msgstr "ระบายความร้อนเฉพาะชั้น"
+
+msgid "Part cooling fan"
+msgstr "พัดลมระบายความร้อนบางส่วน"
+
+msgid "Min fan speed threshold"
+msgstr "เกณฑ์ความเร็วพัดลมขั้นต่ำ"
+
+msgid ""
+"Part cooling fan speed will start to run at min speed when the estimated "
+"layer time is no longer than the layer time in setting. When layer time is "
+"shorter than threshold, fan speed is interpolated between the minimum and "
+"maximum fan speed according to layer printing time"
+msgstr ""
+"ความเร็วพัดลมระบายความร้อนชิ้นส่วนจะเริ่มทำงานที่ความเร็วต่ำสุด "
+"เมื่อเวลาของเลเยอร์โดยประมาณไม่นานกว่าเวลาของเลเยอร์ในการตั้งค่า "
+"เมื่อเวลาของเลเยอร์สั้นกว่าเกณฑ์ "
+"ความเร็วพัดลมจะถูกประมาณค่าระหว่างความเร็วพัดลมต่ำสุดและสูงสุดตามเวลาการพิมพ์ของเลเยอร์"
+
+msgid "Max fan speed threshold"
+msgstr "เกณฑ์ความเร็วพัดลมสูงสุด"
+
+msgid ""
+"Part cooling fan speed will be max when the estimated layer time is shorter "
+"than the setting value"
+msgstr "ความเร็วพัดลมระบายความร้อนของชิ้นส่วนจะสูงสุดเมื่อเวลาเลเยอร์โดยประมาณสั้นกว่าค่าที่ตั้งไว้"
+
+msgid "Auxiliary part cooling fan"
+msgstr "พัดลมระบายความร้อนชิ้นส่วนเสริม"
+
+msgid "Exhaust fan"
+msgstr "พัดลมดูดอากาศ"
+
+msgid "During print"
+msgstr "ระหว่างพิมพ์"
+
+msgid "Complete print"
+msgstr "พิมพ์เสร็จ"
+
+msgid "Filament start G-code"
+msgstr "เส้นพลาสติกสตาร์ท G-code"
+
+msgid "Filament end G-code"
+msgstr "G-code สิ้นสุดเส้นพลาสติก"
+
+msgid "Wipe tower parameters"
+msgstr "เช็ดพารามิเตอร์ทาวเวอร์"
+
+msgid "Multi Filament"
+msgstr "มัลติฟิลาเมนท์"
+
+msgid "Tool change parameters with single extruder MM printers"
+msgstr "พารามิเตอร์การเปลี่ยนเครื่องมือด้วยเครื่องพิมพ์ MM ชุดดันเส้นเดี่ยว"
+
+msgid "Set"
+msgstr "ชุด"
+
+msgid "Tool change parameters with multi extruder MM printers"
+msgstr "พารามิเตอร์การเปลี่ยนเครื่องมือด้วยเครื่องพิมพ์ MM ของชุดดันเส้นหลายตัว"
+
+msgid "Dependencies"
+msgstr "การพึ่งพาอาศัยกัน"
+
+msgid "Compatible printers"
+msgstr "เครื่องพิมพ์ที่เข้ากันได้"
+
+msgid "Compatible process profiles"
+msgstr "โปรไฟล์กระบวนการที่เข้ากันได้"
+
+msgid "Printable space"
+msgstr "พื้นที่ที่สามารถพิมพ์ได้"
+
+#. TRN: The first argument is the parameter's name; the second argument is its value.
+#, boost-format
+msgid "Invalid value provided for parameter %1%: %2%"
+msgstr "ค่าที่ระบุสำหรับพารามิเตอร์ %1% ไม่ถูกต้อง: %2%"
+
+msgid "G-code flavor is switched"
+msgstr "รสชาติ G-code ถูกเปลี่ยน"
+
+msgid "Cooling Fan"
+msgstr "พัดลมระบายความร้อน"
+
+msgid "Fan speed-up time"
+msgstr "เวลาเร่งความเร็วของพัดลม"
+
+msgid "Extruder Clearance"
+msgstr "ระยะเว้นชุดดันเส้น"
+
+msgid "Adaptive bed mesh"
+msgstr "ตาข่ายฐานพิมพ์ปรับได้"
+
+msgid "Accessory"
+msgstr "อุปกรณ์เสริม"
+
+msgid "Machine G-code"
+msgstr "เครื่องจีโค้ด"
+
+msgid "File header G-code"
+msgstr "ส่วนหัวของไฟล์ G-code"
+
+msgid "Machine start G-code"
+msgstr "เครื่องสตาร์ท G-code"
+
+msgid "Machine end G-code"
+msgstr "G-code สิ้นสุดการทำงานของเครื่อง"
+
+msgid "Printing by object G-code"
+msgstr "การพิมพ์ด้วยวัตถุ G-code"
+
+msgid "Before layer change G-code"
+msgstr "ก่อนเลเยอร์เปลี่ยน G-code"
+
+msgid "Layer change G-code"
+msgstr "เลเยอร์เปลี่ยนรหัส G"
+
+msgid "Timelapse G-code"
+msgstr "G-code ไทม์แลปส์"
+
+msgid "Clumping Detection G-code"
+msgstr "G-code การตรวจจับการจับตัวเป็นก้อน"
+
+msgid "Change filament G-code"
+msgstr "เปลี่ยนเส้นพลาสติก G-code"
+
+msgid "Pause G-code"
+msgstr "หยุดรหัส G ชั่วคราว"
+
+msgid "Template Custom G-code"
+msgstr "เทมเพลต G-code ที่กำหนดเอง"
+
+msgid "Motion ability"
+msgstr "ความสามารถในการเคลื่อนไหว"
+
+msgid "Normal"
+msgstr "ปกติ"
+
+msgid "Resonance Compensation"
+msgstr "การชดเชยการสั่นพ้อง"
+
+msgid "Resonance Avoidance Speed"
+msgstr "ความเร็วการหลีกเลี่ยงการสั่นพ้อง"
+
+msgid "Frequency"
+msgstr "ความถี่"
+
+msgid ""
+"The frequency of the anti-vibration signal will correspond to the natural "
+"frequency of the frame."
+msgstr "ความถี่ของสัญญาณป้องกันการสั่นสะเทือนจะสอดคล้องกับความถี่ธรรมชาติของเฟรม"
+
+msgid "Damping"
+msgstr "การทำให้หมาด ๆ"
+
+msgid "Damping ratio for the input shaping filter."
+msgstr "อัตราส่วนการหน่วงสำหรับตัวกรองการปรับรูปร่างอินพุต"
+
+msgid "Speed limitation"
+msgstr "การจำกัดความเร็ว"
+
+msgid "Acceleration limitation"
+msgstr "ข้อจำกัดในการเร่งความเร็ว"
+
+msgid "Jerk limitation"
+msgstr "ข้อจำกัดของการกระตุก"
+
+msgid "Single extruder multi-material setup"
+msgstr "การตั้งค่าวัสดุหลายชุดดันเส้นเดี่ยว"
+
+msgid "Number of extruders of the printer."
+msgstr "จำนวนชุดดันเส้นของเครื่องพิมพ์"
+
+msgid ""
+"Single Extruder Multi Material is selected,\n"
+"and all extruders must have the same diameter.\n"
+"Do you want to change the diameter for all extruders to first extruder "
+"nozzle diameter value?"
+msgstr ""
+"เลือกวัสดุหลายชุดดันเส้นเดี่ยว\n"
+"และชุดดันเส้นทั้งหมดจะต้องมีเส้นผ่านศูนย์กลางเท่ากัน\n"
+"คุณต้องการเปลี่ยนเส้นผ่านศูนย์กลางสำหรับชุดดันเส้นทั้งหมดเป็นค่าเส้นผ่านศูนย์กลางหัวฉีดของชุดดันเส้นตัวแรกหรือไม่?"
+
+msgid "Nozzle diameter"
+msgstr "เส้นผ่านศูนย์กลางหัวฉีด"
+
+msgid "Wipe tower"
+msgstr "ทาวเวอร์เช็ดหัวฉีด"
+
+msgid "Single extruder multi-material parameters"
+msgstr "พารามิเตอร์วัสดุหลายชุดดันเส้นเดี่ยว"
+
+msgid ""
+"This is a single extruder multi-material printer, diameters of all extruders "
+"will be set to the new value. Do you want to proceed?"
+msgstr ""
+"นี่คือเครื่องพิมพ์หลายวัสดุที่ใช้ชุดดันเส้นเดี่ยว "
+"โดยเส้นผ่านศูนย์กลางของชุดดันเส้นทั้งหมดจะถูกตั้งค่าเป็นค่าใหม่ คุณต้องการดำเนินการต่อหรือไม่?"
+
+msgid "Layer height limits"
+msgstr "การจำกัดความสูงของเลเยอร์"
+
+msgid "Z-Hop"
+msgstr "ยกแกน Z"
+
+msgid "Retraction when switching material"
+msgstr "การร่นกลับเมื่อเปลี่ยนวัสดุ"
+
+msgid ""
+"The Retract before wipe option could be only 100% when using the Firmware "
+"Retraction mode.\n"
+"\n"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
+msgstr ""
+
+msgid "Firmware Retraction"
+msgstr "การเพิกถอนเฟิร์มแวร์"
+
+msgid ""
+"Switching to a printer with different extruder types or numbers will discard "
+"or reset changes to extruder or multi-nozzle-related parameters."
+msgstr "การเปลี่ยนไปใช้เครื่องพิมพ์ที่มีประเภทหรือหมายเลขชุดดันเส้นที่แตกต่างกันจะยกเลิกหรือรีเซ็ตการเปลี่ยนแปลงในชุดดันเส้นหรือพารามิเตอร์ที่เกี่ยวข้องกับหัวฉีดหลายตัว"
+
+msgid "Use Modified Value"
+msgstr "ใช้ค่าที่แก้ไข"
+
+msgid "Detached"
+msgstr "เดี่ยว"
+
+#, c-format, boost-format
+msgid ""
+"%d Filament Preset and %d Process Preset is attached to this printer. Those "
+"presets would be deleted if the printer is deleted."
+msgstr ""
+"%d เส้นพลาสติก Preset และ %d Process Preset ถูกแนบไปกับเครื่องพิมพ์นี้ "
+"ค่าที่ตั้งล่วงหน้าเหล่านั้นจะถูกลบหากเครื่องพิมพ์ถูกลบ"
+
+msgid "Presets inherited by other presets cannot be deleted!"
+msgstr "ค่าที่ตั้งล่วงหน้าที่สืบทอดมาจากค่าที่ตั้งล่วงหน้าอื่นไม่สามารถลบได้!"
+
+msgid "The following presets inherit this preset."
+msgid_plural "The following preset inherits this preset."
+msgstr[0] "พรีเซ็ตต่อไปนี้สืบทอดจากพรีเซ็ตนี้"
+
+#. TRN Remove/Delete
+#, boost-format
+msgid "%1% Preset"
+msgstr "%1% ที่ตั้งไว้ล่วงหน้า"
+
+msgid "Following preset will be deleted too."
+msgid_plural "Following presets will be deleted too."
+msgstr[0] "พรีเซ็ตต่อไปนี้จะถูกลบด้วย"
+
+msgid ""
+"Are you sure to delete the selected preset?\n"
+"If the preset corresponds to a filament currently in use on your printer, "
+"please reset the filament information for that slot."
+msgstr ""
+"คุณแน่ใจหรือไม่ว่าต้องการลบค่าที่ตั้งล่วงหน้าที่เลือกไว้\n"
+"หากค่าที่ตั้งไว้ล่วงหน้าสอดคล้องกับเส้นพลาสติกที่ใช้งานอยู่ในเครื่องพิมพ์ของคุณ "
+"โปรดรีเซ็ตข้อมูลเส้นพลาสติกสำหรับช่องนั้น"
+
+#, boost-format
+msgid "Are you sure to %1% the selected preset?"
+msgstr "คุณแน่ใจหรือว่า %1% เป็นค่าที่ตั้งล่วงหน้าที่เลือกไว้"
+
+#, c-format, boost-format
+msgid ""
+" - %s:\n"
+" %s first layer %d %s, other layers %d %s\n"
+" %s max delta %d %s, current delta %d %s\n"
+msgstr ""
+"- %s:\n"
+" %s ชั้นแรก %d %s, ชั้นอื่นๆ %d %s\n"
+" %s เดลต้าสูงสุด %d %s เดลต้าปัจจุบัน %d %s\n"
+
+msgid ""
+"Some first-layer and other-layer temperature pairs exceed safety limits.\n"
+msgstr "คู่อุณหภูมิชั้นหนึ่งและชั้นอื่นๆ บางคู่เกินขีดจำกัดความปลอดภัย\n"
+
+msgid ""
+"\n"
+"Invalid pairs:\n"
+msgstr ""
+"\n"
+"คู่ที่ไม่ถูกต้อง:\n"
+
+msgid ""
+"\n"
+"You can go back to edit values, or continue if this is intentional."
+msgstr ""
+"\n"
+"คุณสามารถกลับไปแก้ไขค่าหรือดำเนินการต่อได้หากตั้งใจ"
+
+msgid ""
+"\n"
+"\n"
+"Continue anyway?"
+msgstr ""
+"\n"
+"ดำเนินการต่อหรือไม่?"
+
+msgid "Temperature Safety Check"
+msgstr "การตรวจสอบความปลอดภัยของอุณหภูมิ"
+
+msgid "Continue"
+msgstr "ดำเนินการต่อ"
+
+msgid "Back"
+msgstr "หลัง"
+
+msgid "Don't warn again for this preset"
+msgstr "ไม่ต้องเตือนอีกสำหรับค่าที่กำหนดล่วงหน้านี้"
+
+#, c-format, boost-format
+msgid "Left: %s"
+msgstr "ซ้าย: %s"
+
+#, c-format, boost-format
+msgid "Right: %s"
+msgstr "ขวา: %s"
+
+msgid "Click to reset current value and attach to the global value."
+msgstr "คลิกเพื่อรีเซ็ตค่าปัจจุบันและแนบไปกับค่าส่วนกลาง"
+
+msgid "Click to drop current modify and reset to saved value."
+msgstr "คลิกเพื่อยกเลิกการแก้ไขปัจจุบันและรีเซ็ตเป็นค่าที่บันทึกไว้"
+
+msgid "Process Settings"
+msgstr "การตั้งค่ากระบวนการ"
+
+msgid "Undef"
+msgstr "ไม่กำหนด"
+
+msgid "Unsaved Changes"
+msgstr "การเปลี่ยนแปลงที่ไม่ได้บันทึก"
+
+msgid "Transfer or discard changes"
+msgstr "โอนหรือละทิ้งการเปลี่ยนแปลง"
+
+msgid "Old Value"
+msgstr "ค่าเก่า"
+
+msgid "New Value"
+msgstr "คุณค่าใหม่"
+
+msgid "Transfer"
+msgstr "โอนย้าย"
+
+msgid "Don't save"
+msgstr "ไม่บันทึก"
+
+msgid "Discard"
+msgstr "ทิ้ง"
+
+msgid "the new profile"
+msgstr "โปรไฟล์ใหม่"
+
+#, boost-format
+msgid ""
+"Switch to\n"
+"\"%1%\"\n"
+"discarding any changes made in\n"
+"\"%2%\"."
+msgstr ""
+"เปลี่ยนไปที่\n"
+"\"%1%\"\n"
+"ละทิ้งการเปลี่ยนแปลงใด ๆ ที่เกิดขึ้นใน\n"
+"\"%2%\""
+
+#, boost-format
+msgid ""
+"All \"New Value\" settings modified in\n"
+"\"%1%\"\n"
+"will be transferred to\n"
+"\"%2%\"."
+msgstr ""
+"มีการแก้ไขการตั้งค่า \"ค่าใหม่\" ทั้งหมด\n"
+"\"%1%\"\n"
+"จะถูกโอนไปที่\n"
+"\"%2%\""
+
+#, boost-format
+msgid ""
+"All \"New Value\" settings are saved in\n"
+"\"%1%\"\n"
+"and \"%2%\" will open without any changes."
+msgstr ""
+"การตั้งค่า \"ค่าใหม่\" ทั้งหมดจะถูกบันทึกไว้ใน\n"
+"\"%1%\"\n"
+"และ \"%2%\" จะเปิดขึ้นโดยไม่มีการเปลี่ยนแปลงใดๆ"
+
+msgid "Click the right mouse button to display the full text."
+msgstr "คลิกปุ่มเมาส์ขวาเพื่อแสดงข้อความทั้งหมด"
+
+msgid "All changes will not be saved"
+msgstr "การเปลี่ยนแปลงทั้งหมดจะไม่ถูกบันทึก"
+
+msgid "All changes will be discarded."
+msgstr "การเปลี่ยนแปลงทั้งหมดจะถูกยกเลิก"
+
+msgid "Save the selected options."
+msgstr "บันทึกตัวเลือกที่เลือก"
+
+msgid "Keep the selected options."
+msgstr "เก็บตัวเลือกที่เลือกไว้"
+
+msgid "Transfer the selected options to the newly selected preset."
+msgstr "ถ่ายโอนตัวเลือกที่เลือกไปยังค่าที่ตั้งล่วงหน้าที่เลือกใหม่"
+
+#, boost-format
+msgid ""
+"Save the selected options to preset \n"
+"\"%1%\"."
+msgstr ""
+"บันทึกตัวเลือกที่เลือกเพื่อตั้งค่าล่วงหน้า \n"
+"\"%1%\""
+
+#, boost-format
+msgid ""
+"Transfer the selected options to the newly selected preset \n"
+"\"%1%\"."
+msgstr ""
+"ถ่ายโอนตัวเลือกที่เลือกไปยังค่าที่ตั้งล่วงหน้าที่เลือกใหม่ \n"
+"\"%1%\""
+
+#, boost-format
+msgid "Preset \"%1%\" contains the following unsaved changes:"
+msgstr "ค่าที่ตั้งไว้ล่วงหน้า \"%1%\" มีการเปลี่ยนแปลงที่ยังไม่ได้บันทึกต่อไปนี้:"
+
+#, boost-format
+msgid ""
+"Preset \"%1%\" is not compatible with the new printer profile and it "
+"contains the following unsaved changes:"
+msgstr ""
+"ค่าที่ตั้งไว้ล่วงหน้า \"%1%\" เข้ากันไม่ได้กับโปรไฟล์เครื่องพิมพ์ใหม่ "
+"และประกอบด้วยการเปลี่ยนแปลงที่ยังไม่ได้บันทึกต่อไปนี้:"
+
+#, boost-format
+msgid ""
+"Preset \"%1%\" is not compatible with the new process profile and it "
+"contains the following unsaved changes:"
+msgstr ""
+"ค่าที่ตั้งไว้ล่วงหน้า \"%1%\" เข้ากันไม่ได้กับโปรไฟล์กระบวนการใหม่ "
+"และประกอบด้วยการเปลี่ยนแปลงที่ยังไม่ได้บันทึกต่อไปนี้:"
+
+#, boost-format
+msgid "You have changed some settings of preset \"%1%\"."
+msgstr "คุณได้เปลี่ยนแปลงการตั้งค่าบางอย่างของพรีเซ็ต \"%1%\""
+
+msgid ""
+"\n"
+"You can save or discard the preset values you have modified."
+msgstr ""
+"\n"
+"คุณสามารถบันทึกหรือละทิ้งค่าที่ตั้งไว้ล่วงหน้าที่คุณได้แก้ไขได้"
+
+msgid ""
+"\n"
+"You can save or discard the preset values you have modified, or choose to "
+"transfer the values you have modified to the new preset."
+msgstr ""
+"\n"
+"คุณสามารถบันทึกหรือละทิ้งค่าที่ตั้งไว้ล่วงหน้าที่คุณได้แก้ไข "
+"หรือเลือกที่จะถ่ายโอนค่าที่คุณได้แก้ไขไปยังค่าที่ตั้งไว้ล่วงหน้าใหม่"
+
+msgid "You have previously modified your settings."
+msgstr "คุณได้แก้ไขการตั้งค่าของคุณก่อนหน้านี้"
+
+msgid ""
+"\n"
+"You can discard the preset values you have modified, or choose to transfer "
+"the modified values to the new project"
+msgstr ""
+"\n"
+"คุณสามารถละทิ้งค่าที่ตั้งไว้ล่วงหน้าที่คุณได้แก้ไข หรือเลือกที่จะถ่ายโอนค่าที่แก้ไขไปยังโปรเจ็กต์ใหม่"
+
+msgid "Extruder count"
+msgstr "จำนวนชุดดันเส้น"
+
+msgid "Capabilities"
+msgstr "ความสามารถ"
+
+msgid "Show all presets (including incompatible)"
+msgstr "แสดงค่าที่ตั้งล่วงหน้าทั้งหมด (รวมทั้งเข้ากันไม่ได้)"
+
+msgid "Select presets to compare"
+msgstr "เลือกค่าที่ตั้งล่วงหน้าเพื่อเปรียบเทียบ"
+
+msgid "Left Preset Value"
+msgstr "ค่าที่ตั้งไว้ล่วงหน้าด้านซ้าย"
+
+msgid "Right Preset Value"
+msgstr "ค่าที่ตั้งไว้ทางขวา"
+
+msgid ""
+"You can only transfer to current active profile because it has been modified."
+msgstr "คุณสามารถถ่ายโอนไปยังโปรไฟล์ที่ใช้งานปัจจุบันได้เท่านั้นเนื่องจากมีการแก้ไข"
+
+msgid ""
+"Transfer the selected options from left preset to the right.\n"
+"Note: New modified presets will be selected in settings tabs after close "
+"this dialog."
+msgstr ""
+"ถ่ายโอนตัวเลือกที่เลือกจากค่าที่ตั้งล่วงหน้าด้านซ้ายไปทางด้านขวา\n"
+"หมายเหตุ: ค่าที่ตั้งล่วงหน้าที่แก้ไขใหม่จะถูกเลือกในแท็บการตั้งค่าหลังจากปิดกล่องโต้ตอบนี้"
+
+msgid "Transfer values from left to right"
+msgstr "โอนค่าจากซ้ายไปขวา"
+
+msgid ""
+"If enabled, this dialog can be used for transfer selected values from left "
+"to right preset."
+msgstr ""
+"หากเปิดใช้งาน กล่องโต้ตอบนี้สามารถใช้เพื่อโอนค่าที่เลือกจากค่าที่ตั้งไว้ล่วงหน้าจากซ้ายไปขวาได้"
+
+msgid "Add File"
+msgstr "เพิ่มไฟล์"
+
+msgid "Set as cover"
+msgstr "ตั้งเป็นปก"
+
+msgid "Cover"
+msgstr "ปิดบัง"
+
+#, boost-format
+msgid "The name \"%1%\" already exists."
+msgstr "มีชื่อ \"%1%\" อยู่แล้ว"
+
+msgid "Basic Info"
+msgstr "ข้อมูลพื้นฐาน"
+
+msgid "Pictures"
+msgstr "รูปภาพ"
+
+msgid "Bill of Materials"
+msgstr "รายการวัสดุ"
+
+msgid "Assembly Guide"
+msgstr "คู่มือการประกอบ"
+
+msgid "Author"
+msgstr "ผู้เขียน"
+
+msgid "Model Name"
+msgstr "ชื่อรุ่น"
+
+msgid "Description:"
+msgstr "คำอธิบาย:"
+
+#, c-format, boost-format
+msgid "%s Update"
+msgstr "อัปเดต %s"
+
+msgid "A new version is available"
+msgstr "มีเวอร์ชันใหม่ให้ใช้งานแล้ว"
+
+msgid "Configuration update"
+msgstr "อัพเดตการกำหนดค่า"
+
+msgid "A new configuration package is available. Do you want to install it?"
+msgstr "มีแพ็คเกจการกำหนดค่าใหม่ให้ใช้งาน คุณต้องการติดตั้งหรือไม่?"
+
+msgid "the configuration package is incompatible with the current application."
+msgstr "แพ็คเกจการกำหนดค่าเข้ากันไม่ได้กับแอปพลิเคชันปัจจุบัน"
+
+#, c-format, boost-format
+msgid ""
+"The configuration package is incompatible with the current application.\n"
+"%s will update the configuration package to allow the application to start."
+msgstr ""
+"แพคเกจการกำหนดค่าเข้ากันไม่ได้กับแอปพลิเคชันปัจจุบัน\n"
+"%s จะอัปเดตแพ็คเกจการกำหนดค่าเพื่อให้แอปพลิเคชันเริ่มทำงานได้"
+
+#, c-format, boost-format
+msgid "Exit %s"
+msgstr "ออกจาก %s"
+
+msgid "Configuration updates"
+msgstr "อัพเดตการกำหนดค่า"
+
+msgid "No updates available."
+msgstr "ไม่มีการอัปเดต"
+
+msgid "The configuration is up to date."
+msgstr "การกำหนดค่าเป็นข้อมูลล่าสุด"
+
+msgid "OBJ file import color"
+msgstr "สีการนำเข้าไฟล์ OBJ"
+
+msgid "Some faces don't have color defined."
+msgstr "ผิวหน้าบางส่วนไม่ได้กำหนดสี"
+
+msgid "MTL file exist error, could not find the material:"
+msgstr "มีข้อผิดพลาดในไฟล์ MTL ไม่พบเนื้อหา:"
+
+msgid "Please check OBJ or MTL file."
+msgstr "โปรดตรวจสอบไฟล์ OBJ หรือ MTL"
+
+msgid "Specify number of colors:"
+msgstr "ระบุจำนวนสี:"
+
+msgid "Enter or click the adjustment button to modify number again"
+msgstr "ป้อนหรือคลิกปุ่มปรับเพื่อแก้ไขตัวเลขอีกครั้ง"
+
+msgid "Recommended "
+msgstr "ที่แนะนำ"
+
+msgid "view"
+msgstr "ดู"
+
+msgid "Current filament colors"
+msgstr "สีเส้นพลาสติกในปัจจุบัน"
+
+msgid "Matching"
+msgstr "การจับคู่"
+
+msgid "Quick set"
+msgstr "ตั้งค่าด่วน"
+
+msgid "Color match"
+msgstr "การจับคู่สี"
+
+msgid "Approximate color matching."
+msgstr "การจับคู่สีโดยประมาณ"
+
+msgid "Append"
+msgstr "ผนวก"
+
+msgid "Append to existing filaments"
+msgstr "ผนวกเข้ากับเส้นพลาสติกที่มีอยู่"
+
+msgid "Reset mapped extruders."
+msgstr "รีเซ็ตชุดดันเส้นที่แมป"
+
+msgid "Note"
+msgstr "หมายเหตุ"
+
+msgid ""
+"The color has been selected, you can choose OK \n"
+" to continue or manually adjust it."
+msgstr ""
+"เลือกสีแล้ว คุณสามารถเลือกตกลงได้ \n"
+" เพื่อดำเนินการต่อหรือปรับเปลี่ยนด้วยตนเอง"
+
+msgid "—> "
+msgstr "—> "
+
+msgid ""
+"Synchronizing AMS filaments will discard your modified but unsaved filament "
+"presets.\n"
+"Are you sure you want to continue?"
+msgstr ""
+"การซิงโครไนซ์ฟิลาเมนต์ AMS "
+"จะละทิ้งค่าที่ตั้งไว้ล่วงหน้าของฟิลาเมนต์ที่ได้รับการแก้ไขแต่ไม่ได้บันทึกไว้\n"
+"คุณแน่ใจหรือไม่ว่าต้องการดำเนินการต่อ?"
+
+msgctxt "Sync_AMS"
+msgid "Original"
+msgstr "ต้นฉบับ"
+
+msgid "After mapping"
+msgstr "หลังจากทำแผนที่แล้ว"
+
+msgid "After overwriting"
+msgstr "หลังจากเขียนทับแล้ว"
+
+msgctxt "Sync_AMS"
+msgid "Plate"
+msgstr "ฐานพิมพ์"
+
+msgid ""
+"The connected printer does not match the currently selected printer. Please "
+"change the selected printer."
+msgstr "เครื่องพิมพ์ที่เชื่อมต่อไม่ตรงกับเครื่องพิมพ์ที่เลือกในปัจจุบัน กรุณาเปลี่ยนเครื่องพิมพ์ที่เลือก"
+
+msgid "Mapping"
+msgstr "การทำแผนที่"
+
+msgid "Overwriting"
+msgstr "การเขียนทับ"
+
+msgid "Reset all filament mapping"
+msgstr "รีเซ็ตการแมปเส้นพลาสติกทั้งหมด"
+
+msgid "Left Extruder"
+msgstr "ชุดดันเส้นซ้าย"
+
+msgid "(Recommended filament)"
+msgstr "(เส้นพลาสติกแนะนำ)"
+
+msgid "Right Extruder"
+msgstr "ชุดดันเส้นขวา"
+
+msgid "Advanced Options"
+msgstr "ตัวเลือกขั้นสูง"
+
+msgid ""
+"Check heatbed flatness. Leveling makes extruded height uniform.\n"
+"*Automatic mode: Level first (about 10 seconds). Skip if surface is fine."
+msgstr ""
+"ตรวจสอบความเรียบของฐานพิมพ์ การปรับระดับทำให้ความสูงที่อัดออกมาสม่ำเสมอ\n"
+"*โหมดอัตโนมัติ: ระดับแรก (ประมาณ 10 วินาที) ข้ามไปหากพื้นผิวดี"
+
+msgid ""
+"Calibrate nozzle offsets to enhance print quality.\n"
+"*Automatic mode: Check for calibration before printing; skip if unnecessary."
+msgstr ""
+"ปรับเทียบออฟเซ็ตหัวฉีดเพื่อปรับปรุงคุณภาพการพิมพ์\n"
+"*โหมดอัตโนมัติ: ตรวจสอบการปรับเทียบก่อนพิมพ์ ข้ามหากไม่จำเป็น"
+
+msgid "Use AMS"
+msgstr "ใช้ AMS"
+
+msgid "Tip"
+msgstr "เคล็ดลับ"
+
+msgid ""
+"Only synchronize filament type and color, not including AMS slot information."
+msgstr "ซิงโครไนซ์ประเภทเส้นพลาสติกและสีเท่านั้น ไม่รวมข้อมูลสล็อต AMS"
+
+msgid ""
+"Replace the project filaments list sequentially based on printer filaments. "
+"And unused printer filaments will be automatically added to the end of the "
+"list."
+msgstr ""
+"แทนที่รายการเส้นพลาสติกของโครงการตามลำดับตามเส้นพลาสติกของเครื่องพิมพ์ "
+"และเส้นพลาสติกเครื่องพิมพ์ที่ไม่ได้ใช้จะถูกเพิ่มเข้าที่ส่วนท้ายของรายการโดยอัตโนมัติ"
+
+msgid "Advanced settings"
+msgstr "การตั้งค่าขั้นสูง"
+
+msgid "Add unused AMS filaments to filaments list."
+msgstr "เพิ่มเส้นพลาสติก AMS ที่ไม่ได้ใช้ลงในรายการเส้นพลาสติก"
+
+msgid "Automatically merge the same colors in the model after mapping."
+msgstr "ผสานสีเดียวกันในโมเดลโดยอัตโนมัติหลังจากการแมป"
+
+msgid "After being synced, this action cannot be undone."
+msgstr "หลังจากซิงค์แล้ว การดำเนินการนี้ไม่สามารถยกเลิกได้"
+
+msgid ""
+"After being synced, the project's filament presets and colors will be "
+"replaced with the mapped filament types and colors. This action cannot be "
+"undone."
+msgstr ""
+"หลังจากที่ซิงค์แล้ว "
+"ค่าที่ตั้งไว้ล่วงหน้าของเส้นพลาสติกและสีของโปรเจ็กต์จะถูกแทนที่ด้วยประเภทและสีของเส้นพลาสติกที่แมปไว้ "
+"การดำเนินการนี้ไม่สามารถยกเลิกได้"
+
+msgid "Are you sure to synchronize the filaments?"
+msgstr "คุณแน่ใจหรือว่าซิงโครไนซ์เส้นพลาสติก?"
+
+msgid "Synchronize now"
+msgstr "ซิงโครไนซ์ทันที"
+
+msgid "Synchronize Filament Information"
+msgstr "ประสานข้อมูลเส้นพลาสติก"
+
+msgid "Add unused filaments to filaments list."
+msgstr "เพิ่มเส้นพลาสติกที่ไม่ได้ใช้ลงในรายการเส้นพลาสติก"
+
+msgid ""
+"Only synchronize filament type and color, not including slot information."
+msgstr "ซิงโครไนซ์ประเภทเส้นพลาสติกและสีเท่านั้น ไม่รวมข้อมูลช่อง"
+
+msgid "Ext spool"
+msgstr "สปูลต่อ"
+
+msgid ""
+"Please check whether the nozzle type of the device is the same as the preset "
+"nozzle type."
+msgstr "โปรดตรวจสอบว่าประเภทหัวฉีดของอุปกรณ์เหมือนกับประเภทหัวฉีดที่ตั้งไว้ล่วงหน้าหรือไม่"
+
+msgid "Storage is not available or is in read-only mode."
+msgstr "พื้นที่เก็บข้อมูลไม่พร้อมใช้งานหรืออยู่ในโหมดอ่านอย่างเดียว"
+
+#, c-format, boost-format
+msgid ""
+"The selected printer (%s) is incompatible with the chosen printer profile in "
+"the slicer (%s)."
+msgstr "เครื่องพิมพ์ที่เลือก (%s) เข้ากันไม่ได้กับโปรไฟล์เครื่องพิมพ์ที่เลือกในตัวแบ่งส่วนข้อมูล (%s)"
+
+msgid ""
+"Timelapse is not supported because Print sequence is set to \"By object\"."
+msgstr "ไม่รองรับไทม์แลปส์เนื่องจากลำดับการพิมพ์ถูกตั้งค่าเป็น \"ตามวัตถุ\""
+
+msgid ""
+"You selected external and AMS filament at the same time in an extruder, you "
+"will need manually change external filament."
+msgstr ""
+"คุณเลือกเส้นพลาสติกภายนอกและเส้นพลาสติก AMS พร้อมกันในชุดดันเส้น "
+"คุณจะต้องเปลี่ยนเส้นพลาสติกภายนอกด้วยตนเอง"
+
+msgid "Successfully synchronized nozzle information."
+msgstr "ซิงโครไนซ์ข้อมูลหัวฉีดสำเร็จแล้ว"
+
+msgid "Successfully synchronized nozzle and AMS number information."
+msgstr "ซิงโครไนซ์ข้อมูลหัวฉีดและหมายเลข AMS เรียบร้อยแล้ว"
+
+msgid "Continue to sync filaments"
+msgstr "ทำการซิงค์ฟิลาเมนต์ต่อไป"
+
+msgctxt "Sync_Nozzle_AMS"
+msgid "Cancel"
+msgstr "ยกเลิก"
+
+msgid "Successfully synchronized filament color from printer."
+msgstr "ซิงโครไนซ์สีฟิลาเมนต์จากเครื่องพิมพ์สำเร็จแล้ว"
+
+msgid "Successfully synchronized color and type of filament from printer."
+msgstr "ซิงโครไนซ์สีและประเภทของฟิลาเมนท์จากเครื่องพิมพ์สำเร็จแล้ว"
+
+msgctxt "FinishSyncAms"
+msgid "OK"
+msgstr "ตกลง"
+
+msgid "Ramming customization"
+msgstr "การปรับแต่งการกระแทก"
+
+msgid ""
+"Ramming denotes the rapid extrusion just before a tool change in a single-"
+"extruder MM printer. Its purpose is to properly shape the end of the "
+"unloaded filament so it does not prevent insertion of the new filament and "
+"can itself be reinserted later. This phase is important and different "
+"materials can require different extrusion speeds to get the good shape. For "
+"this reason, the extrusion rates during ramming are adjustable.\n"
+"\n"
+"This is an expert-level setting, incorrect adjustment will likely lead to "
+"jams, extruder wheel grinding into filament etc."
+msgstr ""
+"การชนหมายถึงการอัดขึ้นรูปอย่างรวดเร็วก่อนการเปลี่ยนเครื่องมือในเครื่องพิมพ์ MM แบบชุดดันเส้นเดี่ยว "
+"จุดประสงค์คือเพื่อจัดรูปทรงส่วนปลายของเส้นพลาสติกที่ไม่ได้บรรจุอย่างเหมาะสม "
+"เพื่อไม่ให้ป้องกันการใส่เส้นพลาสติกใหม่และสามารถใส่กลับเข้าไปใหม่ได้ในภายหลัง "
+"ขั้นตอนนี้มีความสำคัญ "
+"และวัสดุที่แตกต่างกันอาจต้องใช้ความเร็วการอัดขึ้นรูปที่แตกต่างกันเพื่อให้ได้รูปร่างที่ดี ด้วยเหตุนี้ "
+"อัตราการอัดขึ้นรูประหว่างการชนจึงสามารถปรับได้\n"
+"\n"
+"นี่เป็นการตั้งค่าระดับผู้เชี่ยวชาญ การปรับที่ไม่ถูกต้องอาจทำให้เกิดการติดขัด "
+"ล้อชุดดันเส้นบดเป็นเส้นพลาสติก ฯลฯ"
+
+#, boost-format
+msgid "For constant flow rate, hold %1% while dragging."
+msgstr "สำหรับอัตราการไหลคงที่ ให้กด %1% ค้างไว้ขณะลาก"
+
+msgid "ms"
+msgstr "มิลลิวินาที"
+
+msgid "Total ramming"
+msgstr "การอัดกระแทกเส้นทั้งหมด"
+
+msgid "Volume"
+msgstr "ปริมาณ"
+
+msgid "Ramming line"
+msgstr "เส้นราม"
+
+msgid ""
+"Orca would re-calculate your flushing volumes everytime the filaments color "
+"changed or filaments changed. You could disable the auto-calculate in Orca "
+"Slicer > Preferences"
+msgstr ""
+"Orca จะคำนวณปริมาตรการไล่เส้นของคุณใหม่ทุกครั้งที่สีเส้นพลาสติกเปลี่ยนไปหรือเส้นพลาสติกเปลี่ยนไป "
+"คุณสามารถปิดการใช้งานการคำนวณอัตโนมัติใน Orca Slicer > การตั้งค่า"
+
+msgid "Flushing volume (mm³) for each filament pair."
+msgstr "ปริมาณการไล่เส้นชิ่ง (มม.) สำหรับคู่เส้นพลาสติกแต่ละคู่"
+
+#, c-format, boost-format
+msgid "Suggestion: Flushing Volume in range [%d, %d]"
+msgstr "คำแนะนำ: ปริมาณการไล่เส้นชิ่งในช่วง [%d, %d]"
+
+#, c-format, boost-format
+msgid "The multiplier should be in range [%.2f, %.2f]."
+msgstr "ตัวคูณควรอยู่ในช่วง [%.2f, %.2f]"
+
+msgid "Re-calculate"
+msgstr "คำนวณใหม่"
+
+msgid "Left extruder"
+msgstr "ชุดดันเส้นซ้าย"
+
+msgid "Right extruder"
+msgstr "ชุดดันเส้นขวา"
+
+msgid "Multiplier"
+msgstr "ตัวคูณ"
+
+msgid "Flushing volumes for filament change"
+msgstr "ปริมาณการไล่เส้นชิ่งสำหรับการเปลี่ยนเส้นพลาสติก"
+
+msgid "Please choose the filament colour"
+msgstr "กรุณาเลือกสีเส้นพลาสติก"
+
+msgid ""
+"Native Wayland liveview requires the GStreamer GTK video sink. Please "
+"install the gtksink plugin for GStreamer, then restart OrcaSlicer."
+msgstr ""
+"Native Wayland liveview ต้องใช้ GStreamer GTK video sink โปรดติดตั้งปลั๊กอิน gtksink "
+"สำหรับ GStreamer จากนั้นรีสตาร์ท OrcaSlicer"
+
+msgid ""
+"Failed to initialize the native Wayland GStreamer video sink. Please check "
+"your GStreamer GTK plugin installation."
+msgstr ""
+"ไม่สามารถเริ่มต้น sink วิดีโอ Wayland GStreamer ดั้งเดิมได้ โปรดตรวจสอบการติดตั้งปลั๊กอิน "
+"GStreamer GTK ของคุณ"
+
+msgid ""
+"Windows Media Player is required for this task! Do you want to enable "
+"'Windows Media Player' for your operation system?"
+msgstr ""
+"งานนี้ต้องใช้ Windows Media Player! คุณต้องการเปิดใช้งาน 'Windows Media Player' "
+"สำหรับระบบปฏิบัติการของคุณหรือไม่?"
+
+msgid ""
+"BambuSource has not correctly been registered for media playing! Press Yes "
+"to re-register it. You will be promoted twice"
+msgstr ""
+"BambuSource ยังไม่ได้รับการลงทะเบียนอย่างถูกต้องสำหรับการเล่นสื่อ! กดใช่เพื่อลงทะเบียนใหม่ "
+"คุณจะได้รับการเลื่อนตำแหน่งสองครั้ง"
+
+msgid ""
+"Missing BambuSource component registered for media playing! Please re-"
+"install OrcaSlicer or seek community help."
+msgstr ""
+"ไม่มีส่วนประกอบ BambuSource ที่ลงทะเบียนสำหรับการเล่นสื่อ! โปรดติดตั้ง OrcaSlicer "
+"ใหม่หรือขอความช่วยเหลือจากชุมชน"
+
+msgid ""
+"Using a BambuSource from a different install, video play may not work "
+"correctly! Press Yes to fix it."
+msgstr "การใช้ BambuSource จากการติดตั้งอื่น การเล่นวิดีโออาจทำงานไม่ถูกต้อง! กดใช่เพื่อแก้ไข"
+
+msgid ""
+"Your system is missing H.264 codecs for GStreamer, which are required to "
+"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-"
+"libav packages, then restart Orca Slicer?)"
+msgstr ""
+"ระบบของคุณไม่มีตัวแปลงสัญญาณ H.264 สำหรับ GStreamer ซึ่งจำเป็นในการเล่นวิดีโอ "
+"(ลองติดตั้งแพ็คเกจ gstreamer1.0-plugins-bad หรือ gstreamer1.0-libav จากนั้นรีสตาร์ท "
+"Orca Slicer หรือไม่)"
+
+msgid "Cloud agent is not available. Please restart OrcaSlicer and try again."
+msgstr "ตัวแทนระบบคลาวด์ไม่พร้อมใช้งาน โปรดรีสตาร์ท OrcaSlicer แล้วลองอีกครั้ง"
+
+msgid "Bambu Network plug-in not detected."
+msgstr "ตรวจไม่พบปลั๊กอิน Bambu Network"
+
+msgid "Click here to download it."
+msgstr "คลิกที่นี่เพื่อดาวน์โหลด"
+
+msgid "Login"
+msgstr "เข้าสู่ระบบ"
+
+msgid "Login failed. Please try again."
+msgstr "การเข้าสู่ระบบล้มเหลว โปรดลองอีกครั้ง"
+
+msgid "[Action Required] "
+msgstr "[ต้องดำเนินการ]"
+
+msgid "[Action Required]"
+msgstr "[ต้องดำเนินการ]"
+
+msgid "The configuration package is changed in previous Config Guide"
+msgstr "แพ็คเกจการกำหนดค่ามีการเปลี่ยนแปลงใน Config Guide ก่อนหน้า"
+
+msgid "Configuration package changed"
+msgstr "แพ็คเกจการกำหนดค่ามีการเปลี่ยนแปลง"
+
+msgid "Toolbar"
+msgstr "แถบเครื่องมือ"
+
+msgid "Objects list"
+msgstr "รายการวัตถุ"
+
+msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
+msgstr "นำเข้าข้อมูลเรขาคณิตจากไฟล์ STL/STEP/3MF/OBJ/AMF"
+
+msgid "Paste from clipboard"
+msgstr "วางจากคลิปบอร์ด"
+
+msgid "Show/Hide 3Dconnexion devices settings dialog"
+msgstr "แสดง/ซ่อนกล่องโต้ตอบการตั้งค่าอุปกรณ์ 3Dconnexion"
+
+msgid "Switch table page"
+msgstr "สลับหน้าตาราง"
+
+msgid "Show keyboard shortcuts list"
+msgstr "แสดงรายการแป้นพิมพ์ลัด"
+
+msgid "Global shortcuts"
+msgstr "ทางลัดทั่วโลก"
+
+msgid "Pan View"
+msgstr "แพนวิว"
+
+msgid "Rotate View"
+msgstr "หมุนมุมมอง"
+
+msgid "Middle mouse button"
+msgstr "ปุ่มกลางของเมาส์"
+
+msgid "Zoom View"
+msgstr "ซูมดู"
+
+msgid ""
+"Auto orients selected objects or all objects. If there are selected objects, "
+"it just orients the selected ones. Otherwise, it will orient all objects in "
+"the current project."
+msgstr ""
+"ปรับทิศทางวัตถุที่เลือกหรือวัตถุทั้งหมดโดยอัตโนมัติ หากมีวัตถุที่เลือกไว้ "
+"วัตถุนั้นจะปรับทิศทางวัตถุที่เลือกเท่านั้น มิฉะนั้นจะวางแนววัตถุทั้งหมดในโปรเจ็กต์ปัจจุบัน"
+
+msgid "Auto orients all objects on the active plate."
+msgstr "ปรับทิศทางวัตถุทั้งหมดบนเพลตที่ใช้งานอยู่โดยอัตโนมัติ"
+
+msgid "Collapse/Expand the sidebar"
+msgstr "ยุบ/ขยายแถบด้านข้าง"
+
+msgid "Any arrow"
+msgstr "ลูกศรอะไรก็ได้"
+
+msgid "Movement in camera space"
+msgstr "การเคลื่อนไหวในพื้นที่กล้อง"
+
+msgid "Select a part"
+msgstr "เลือกส่วนหนึ่ง"
+
+msgid "Select multiple objects"
+msgstr "เลือกหลายวัตถุ"
+
+msgid "Select objects by rectangle"
+msgstr "เลือกวัตถุตามสี่เหลี่ยม"
+
+msgid "Arrow Up"
+msgstr "ลูกศรขึ้น"
+
+msgid "Move selection 10 mm in positive Y direction"
+msgstr "เลื่อนส่วนที่เลือกไป 10 มม. ในทิศทางบวก Y"
+
+msgid "Arrow Down"
+msgstr "ลูกศรลง"
+
+msgid "Move selection 10 mm in negative Y direction"
+msgstr "ย้ายส่วนที่เลือกไป 10 มม. ในทิศทางลบ Y"
+
+msgid "Arrow Left"
+msgstr "ลูกศรซ้าย"
+
+msgid "Move selection 10 mm in negative X direction"
+msgstr "ย้ายส่วนที่เลือกไป 10 มม. ในทิศทาง X ลบ"
+
+msgid "Arrow Right"
+msgstr "ลูกศรขวา"
+
+msgid "Move selection 10 mm in positive X direction"
+msgstr "เลื่อนส่วนที่เลือกไป 10 มม. ในทิศทาง X บวก"
+
+msgid "Movement step set to 1 mm"
+msgstr "สเต็ปการเคลื่อนไหวตั้งไว้ที่ 1 มม"
+
+msgid "Keyboard 1-9: set filament for object/part"
+msgstr "แป้นพิมพ์ 1-9: ตั้งค่าเส้นพลาสติกสำหรับวัตถุ/ชิ้นส่วน"
+
+msgid "Camera view - Default"
+msgstr "มุมมองกล้อง - ค่าเริ่มต้น"
+
+msgid "Camera view - Top"
+msgstr "มุมมองกล้อง - ด้านบน"
+
+msgid "Camera view - Bottom"
+msgstr "มุมมองกล้อง - ด้านล่าง"
+
+msgid "Camera view - Front"
+msgstr "มุมมองกล้อง - ด้านหน้า"
+
+msgid "Camera view - Behind"
+msgstr "มุมมองกล้อง - ด้านหลัง"
+
+msgid "Camera Angle - Left side"
+msgstr "มุมกล้อง - ด้านซ้าย"
+
+msgid "Camera Angle - Right side"
+msgstr "มุมกล้อง - ด้านขวา"
+
+msgid "Select all objects"
+msgstr "เลือกวัตถุทั้งหมด"
+
+msgid "Gizmo move"
+msgstr "กิสโม่ย้าย"
+
+msgid "Gizmo rotate"
+msgstr "กิสโม่หมุน"
+
+msgid "Gizmo scale"
+msgstr "ขนาดกิสโม่"
+
+msgid "Gizmo place face on bed"
+msgstr "กิสโมวางหน้าบนฐานพิมพ์"
+
+msgid "Gizmo cut"
+msgstr "กิสโม่ตัด"
+
+msgid "Gizmo mesh boolean"
+msgstr "Gizmo mesh บูลีน"
+
+msgid "Gizmo FDM paint-on fuzzy skin"
+msgstr "Gizmo FDM เพ้นท์บนผิวที่คลุมเครือ"
+
+msgid "Gizmo SLA support points"
+msgstr "จุดส่วนรองรับ Gizmo SLA"
+
+msgid "Gizmo FDM paint-on seam"
+msgstr "รอยตะเข็บทาสี Gizmo FDM"
+
+msgid "Gizmo text emboss/engrave"
+msgstr "ข้อความ Gizmo นูน/แกะสลัก"
+
+msgid "Gizmo measure"
+msgstr "เครื่องวัดกิสโม่"
+
+msgid "Gizmo assemble"
+msgstr "กิสโมประกอบ"
+
+msgid "Gizmo brim ears"
+msgstr "กิสโม่ขอบหู"
+
+msgid "Zoom in"
+msgstr "ซูมเข้า"
+
+msgid "Zoom out"
+msgstr "ซูมออก"
+
+msgid "Toggle printable for object/part"
+msgstr "สลับการพิมพ์สำหรับวัตถุ/ชิ้นส่วน"
+
+msgid "Switch between Prepare/Preview"
+msgstr "สลับระหว่างการเตรียม/ดูตัวอย่าง"
+
+msgid "Plater"
+msgstr "เพลเตอร์"
+
+msgid "Move: press to snap by 1mm"
+msgstr "ย้าย: กดเพื่อสแน็ป 1 มม"
+
+msgid "Support/Color Painting: adjust pen radius"
+msgstr "ส่วนรองรับ / การวาดภาพสี: ปรับรัศมีปากกา"
+
+msgid "Support/Color Painting: adjust section position"
+msgstr "ส่วนรองรับ / การวาดภาพสี: ปรับตำแหน่งส่วน"
+
+msgid "Gizmo"
+msgstr "กิสโม่"
+
+msgid "Set extruder number for the objects and parts"
+msgstr "กำหนดหมายเลขชุดดันเส้นสำหรับวัตถุและชิ้นส่วน"
+
+msgid "Delete objects, parts, modifiers"
+msgstr "ลบวัตถุ ชิ้นส่วน ตัวดัดแปลง"
+
+msgid "Select the object/part and press space to change the name"
+msgstr "เลือกวัตถุ/ชิ้นส่วนแล้วกด Space เพื่อเปลี่ยนชื่อ"
+
+msgid "Mouse click"
+msgstr "คลิกเมาส์"
+
+msgid "Select the object/part and mouse click to change the name"
+msgstr "เลือกวัตถุ/ชิ้นส่วนแล้วคลิกเมาส์เพื่อเปลี่ยนชื่อ"
+
+msgid "Objects List"
+msgstr "รายการวัตถุ"
+
+msgid "Vertical slider - Move active thumb Up"
+msgstr "แถบเลื่อนแนวตั้ง - เลื่อนนิ้วโป้งที่ใช้งานอยู่ขึ้น"
+
+msgid "Vertical slider - Move active thumb Down"
+msgstr "แถบเลื่อนแนวตั้ง - เลื่อนนิ้วโป้งที่ใช้งานอยู่ลง"
+
+msgid "Horizontal slider - Move active thumb Left"
+msgstr "แถบเลื่อนแนวนอน - เลื่อนนิ้วหัวแม่มือที่ใช้งานไปทางซ้าย"
+
+msgid "Horizontal slider - Move active thumb Right"
+msgstr "แถบเลื่อนแนวนอน - เลื่อนนิ้วหัวแม่มือที่ใช้งานไปทางขวา"
+
+msgid "On/Off one layer mode of the vertical slider"
+msgstr "เปิด/ปิดโหมดเลเยอร์เดียวของแถบเลื่อนแนวตั้ง"
+
+msgid "On/Off G-code window"
+msgstr "เปิด/ปิดหน้าต่างรหัส G"
+
+msgid "Move slider 5x faster"
+msgstr "เลื่อนตัวเลื่อนเร็วขึ้น 5 เท่า"
+
+msgid "Horizontal slider - Move to start position"
+msgstr "แถบเลื่อนแนวนอน - เลื่อนไปยังตำแหน่งเริ่มต้น"
+
+msgid "Horizontal slider - Move to last position"
+msgstr "แถบเลื่อนแนวนอน - เลื่อนไปยังตำแหน่งสุดท้าย"
+
+msgid "Release Note"
+msgstr "บันทึกประจำรุ่น"
+
+#, c-format, boost-format
+msgid "version %s update information:"
+msgstr "ข้อมูลการอัปเดตเวอร์ชัน %s:"
+
+msgid "Network plug-in update"
+msgstr "การอัปเดตปลั๊กอินเครือข่าย"
+
+msgid ""
+"Click OK to update the Network plug-in when Orca Slicer launches next time."
+msgstr "คลิกตกลงเพื่ออัปเดตปลั๊กอินเครือข่ายเมื่อ Orca Slicer เปิดตัวในครั้งถัดไป"
+
+#, c-format, boost-format
+msgid "A new Network plug-in (%s) is available. Do you want to install it?"
+msgstr "มีปลั๊กอินเครือข่ายใหม่ (%s) พร้อมใช้งานแล้ว คุณต้องการติดตั้งหรือไม่?"
+
+msgid "New version of Orca Slicer"
+msgstr "Orca Slicer เวอร์ชันใหม่"
+
+msgid "Check on Github"
+msgstr "ตรวจสอบบน Github"
+
+msgid "Skip this Version"
+msgstr "ข้ามเวอร์ชันนี้"
+
+msgid "Confirm and Update Nozzle"
+msgstr "ยืนยันและอัปเดตหัวฉีด"
+
+msgid "Connect the printer using IP and access code"
+msgstr "เชื่อมต่อเครื่องพิมพ์โดยใช้ IP และรหัสการเข้าถึง"
+
+msgid ""
+"Try the following methods to update the connection parameters and reconnect "
+"to the printer."
+msgstr "ลองวิธีการต่อไปนี้เพื่ออัพเดตพารามิเตอร์การเชื่อมต่อและเชื่อมต่อกับเครื่องพิมพ์อีกครั้ง"
+
+msgid "1. Please confirm Orca Slicer and your printer are in the same LAN."
+msgstr "1. โปรดยืนยันว่า Orca Slicer และเครื่องพิมพ์ของคุณอยู่ใน LAN เดียวกัน"
+
+msgid ""
+"2. If the IP and Access Code below are different from the actual values on "
+"your printer, please correct them."
+msgstr ""
+"2. หาก IP และรหัสการเข้าถึงด้านล่างแตกต่างจากค่าจริงบนเครื่องพิมพ์ของคุณ โปรดแก้ไขให้ถูกต้อง"
+
+msgid ""
+"3. Please obtain the device SN from the printer side; it is usually found in "
+"the device information on the printer screen."
+msgstr "3. โปรดรับอุปกรณ์ SN จากฝั่งเครื่องพิมพ์ มักจะพบในข้อมูลอุปกรณ์บนหน้าจอเครื่องพิมพ์"
+
+msgid "IP"
+msgstr "ไอพี"
+
+msgid "Access Code"
+msgstr "รหัสการเข้าถึง"
+
+msgid "Printer model"
+msgstr "รุ่นเครื่องพิมพ์"
+
+msgid "Printer name"
+msgstr "ชื่อเครื่องพิมพ์"
+
+msgid "Where to find your printer's IP and Access Code?"
+msgstr "จะค้นหา IP และรหัสการเข้าถึงเครื่องพิมพ์ของคุณได้ที่ไหน"
+
+msgid "Connect"
+msgstr "เชื่อมต่อ"
+
+msgid "Manual Setup"
+msgstr "การตั้งค่าด้วยตนเอง"
+
+msgid "IP and Access Code Verified! You may close the window"
+msgstr "ตรวจสอบ IP และรหัสการเข้าถึงแล้ว! คุณสามารถปิดหน้าต่างได้"
+
+msgid "connecting..."
+msgstr "กำลังเชื่อมต่อ..."
+
+msgid "Failed to connect to printer."
+msgstr "ไม่สามารถเชื่อมต่อกับเครื่องพิมพ์ได้"
+
+msgid "Failed to publish login request."
+msgstr "ไม่สามารถเผยแพร่คำขอเข้าสู่ระบบได้"
+
+msgid "The printer has already been bound."
+msgstr "เครื่องพิมพ์ถูกผูกไว้แล้ว"
+
+msgid "The printer mode is incorrect, please switch to LAN Only."
+msgstr "โหมดเครื่องพิมพ์ไม่ถูกต้อง โปรดเปลี่ยนไปใช้ LAN เท่านั้น"
+
+msgid "Connecting to printer... The dialog will close later"
+msgstr "กำลังเชื่อมต่อกับเครื่องพิมพ์... กล่องโต้ตอบจะปิดในภายหลัง"
+
+msgid "Connection failed, please double check IP and Access Code"
+msgstr "การเชื่อมต่อล้มเหลว โปรดตรวจสอบ IP และรหัสการเข้าถึงอีกครั้ง"
+
+msgid ""
+"Connection failed! If your IP and Access Code is correct, \n"
+"please move to step 3 for troubleshooting network issues"
+msgstr ""
+"การเชื่อมต่อล้มเหลว! หาก IP และรหัสการเข้าถึงของคุณถูกต้อง \n"
+"โปรดย้ายไปยังขั้นตอนที่ 3 เพื่อแก้ไขปัญหาเครือข่าย"
+
+msgid "Connection failed! Please refer to the wiki page."
+msgstr "การเชื่อมต่อล้มเหลว! โปรดดูที่หน้าวิกิ"
+
+msgid "sending failed"
+msgstr "การส่งล้มเหลว"
+
+msgid ""
+"Failed to send. Click Retry to attempt sending again. If retrying does not "
+"work, please check the reason."
+msgstr ""
+"ไม่สามารถส่งได้ คลิกลองอีกครั้งเพื่อพยายามส่งอีกครั้ง หากการลองใหม่ไม่ได้ผล โปรดตรวจสอบสาเหตุ"
+
+msgid "reconnect"
+msgstr "เชื่อมต่อใหม่"
+
+msgid "Air Pump"
+msgstr "ปั๊มลม"
+
+msgid "Laser 10W"
+msgstr "เลเซอร์ 10W"
+
+msgid "Laser 40W"
+msgstr "เลเซอร์ 40W"
+
+msgid "Cutting Module"
+msgstr "โมดูลการตัด"
+
+msgid "Auto Fire Extinguishing System"
+msgstr "ระบบดับเพลิงอัตโนมัติ"
+
+msgid "Update firmware"
+msgstr "อัพเดตเฟิร์มแวร์"
+
+msgid "Beta version"
+msgstr "รุ่นเบต้า"
+
+msgid "Updating"
+msgstr "กำลังอัปเดต"
+
+msgid "Update failed"
+msgstr "การอัปเดตล้มเหลว"
+
+msgid "Update successful"
+msgstr "อัปเดตสำเร็จ"
+
+msgid ""
+"Are you sure you want to update? This will take about 10 minutes. Do not "
+"turn off the power while the printer is updating."
+msgstr ""
+"คุณแน่ใจหรือไม่ว่าต้องการอัปเดต การดำเนินการนี้จะใช้เวลาประมาณ 10 นาที "
+"อย่าปิดเครื่องในขณะที่เครื่องพิมพ์กำลังอัปเดต"
+
+msgid ""
+"An important update was detected and needs to be run before printing can "
+"continue. Do you want to update now? You can also update later from 'Upgrade "
+"firmware'."
+msgstr ""
+"ตรวจพบการอัปเดตที่สำคัญและจำเป็นต้องดำเนินการก่อนจึงจะสามารถพิมพ์ต่อได้ "
+"คุณต้องการอัปเดตตอนนี้หรือไม่? คุณสามารถอัปเดตภายหลังได้จาก 'อัปเกรดเฟิร์มแวร์'"
+
+msgid ""
+"The firmware version is abnormal. Repairing and updating are required before "
+"printing. Do you want to update now? You can also update later on printer or "
+"update next time starting Orca."
+msgstr ""
+"เวอร์ชันเฟิร์มแวร์ผิดปกติ จำเป็นต้องซ่อมแซมและอัปเดตก่อนพิมพ์ คุณต้องการอัปเดตตอนนี้หรือไม่? "
+"คุณยังสามารถอัปเดตในภายหลังบนเครื่องพิมพ์หรืออัปเดตในครั้งถัดไปโดยเริ่มตั้งแต่ Orca"
+
+msgid "Extension Board"
+msgstr "คณะกรรมการขยาย"
+
+#, boost-format
+msgid "Split into %1% parts"
+msgstr "แบ่งออกเป็น %1% ส่วน"
+
+msgid "Repair finished"
+msgstr "ซ่อมเสร็จแล้ว"
+
+msgid "Repair failed"
+msgstr "ซ่อมล้มเหลว"
+
+msgid "Repair canceled"
+msgstr "ยกเลิกการซ่อมแล้ว"
+
+#, boost-format
+msgid "Copying of file %1% to %2% failed: %3%"
+msgstr "การคัดลอกไฟล์ %1% ถึง %2% ล้มเหลว: %3%"
+
+msgid "Need to check the unsaved changes before configuration updates."
+msgstr "จำเป็นต้องตรวจสอบการเปลี่ยนแปลงที่ยังไม่ได้บันทึกก่อนอัปเดตการกำหนดค่า"
+
+msgid "Configuration package: "
+msgstr "แพคเกจการกำหนดค่า:"
+
+msgid " updated to "
+msgstr "อัปเดตเป็น"
+
+msgid "Open G-code file:"
+msgstr "เปิดไฟล์ G-code:"
+
+msgid ""
+"One object has an empty first layer and can't be printed. Please Cut the "
+"bottom or enable supports."
+msgstr "วัตถุหนึ่งมีชั้นแรกว่างเปล่าและไม่สามารถพิมพ์ได้ กรุณาตัดด้านล่างหรือเปิดใช้งานส่วนรองรับ"
+
+#, boost-format
+msgid "Object can't be printed for empty layer between %1% and %2%."
+msgstr "ไม่สามารถพิมพ์วัตถุสำหรับเลเยอร์ว่างระหว่าง %1% ถึง %2%"
+
+#, boost-format
+msgid "Object: %1%"
+msgstr "วัตถุ: %1%"
+
+msgid ""
+"Maybe parts of the object at these height are too thin, or the object has "
+"faulty mesh"
+msgstr "บางทีบางส่วนของวัตถุที่ความสูงเหล่านี้บางเกินไป หรือวัตถุนั้นมีตาข่ายที่ผิดพลาด"
+
+msgid "Process change extrusion role G-code"
+msgstr "กระบวนการเปลี่ยนบทบาทการอัดขึ้นรูป G-code"
+
+msgid "Filament change extrusion role G-code"
+msgstr "เส้นพลาสติกเปลี่ยนบทบาทการอัดขึ้นรูป G-code"
+
+msgid "No object can be printed. Maybe too small"
+msgstr "ไม่สามารถพิมพ์วัตถุได้ อาจจะเล็กเกินไป"
+
+msgid ""
+"Your print is very close to the priming regions. Make sure there is no "
+"collision."
+msgstr "งานพิมพ์ของคุณอยู่ใกล้กับบริเวณรองพื้นมาก ตรวจสอบให้แน่ใจว่าไม่มีการชนกัน"
+
+msgid ""
+"Failed to generate G-code for invalid custom G-code.\n"
+"\n"
+msgstr "ไม่สามารถสร้าง G-code สำหรับ G-code ที่กำหนดเองที่ไม่ถูกต้อง\n"
+
+msgid "Please check the custom G-code or use the default custom G-code."
+msgstr "โปรดตรวจสอบรหัส G ที่กำหนดเองหรือใช้รหัส G ที่กำหนดเองเริ่มต้น"
+
+#, boost-format
+msgid "Generating G-code: layer %1%"
+msgstr "กำลังสร้างรหัส G: เลเยอร์ %1%"
+
+msgid "Flush volumes matrix do not match to the correct size!"
+msgstr "เมทริกซ์ไล่เส้นวอลุ่มไม่ตรงกับขนาดที่ถูกต้อง!"
+
+msgid "set_accel_and_jerk() is only supported by Klipper"
+msgstr "set_accel_and_jerk() รองรับโดย Klipper เท่านั้น"
+
+msgid ""
+"Input shaping is not supported by Marlin < 2.1.2.\n"
+"Check your firmware version and update your G-code flavor to ´Marlin 2´"
+msgstr ""
+"Marlin < 2.1.2 ไม่รองรับการสร้างรูปร่างอินพุต\n"
+"ตรวจสอบเวอร์ชันเฟิร์มแวร์ของคุณและอัปเดตรสชาติ G-code ของคุณเป็น 'Marlin 2'"
+
+msgid "Input shaping is only supported by Klipper, RepRapFirmware and Marlin 2"
+msgstr "รูปร่างอินพุตรองรับเฉพาะ Klipper, RepRapFirmware และ Marlin 2 เท่านั้น"
+
+msgid "Grouping error: "
+msgstr "ข้อผิดพลาดในการจัดกลุ่ม:"
+
+msgid " can not be placed in the "
+msgstr "ไม่สามารถวางใน"
+
+msgid "Internal Bridge"
+msgstr "สะพานภายใน"
+
+#, boost-format
+msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" "
+msgstr "ไม่สามารถคำนวณความกว้างของเส้น %1% ไม่สามารถรับค่า \"%2%\""
+
+msgid ""
+"Invalid spacing supplied to Flow::with_spacing(), check your layer height "
+"and extrusion width"
+msgstr ""
+"การเว้นวรรคที่ให้กับ Flow::with_spacing() ไม่ถูกต้อง "
+"โปรดตรวจสอบความสูงของเลเยอร์และความกว้างของการอัดขึ้นรูป"
+
+msgid "undefined error"
+msgstr "ข้อผิดพลาดที่ไม่ได้กำหนด"
+
+msgid "too many files"
+msgstr "มีไฟล์มากเกินไป"
+
+msgid "file too large"
+msgstr "ไฟล์ใหญ่เกินไป"
+
+msgid "unsupported method"
+msgstr "วิธีการที่ไม่รองรับ"
+
+msgid "unsupported encryption"
+msgstr "การเข้ารหัสที่ไม่รองรับ"
+
+msgid "unsupported feature"
+msgstr "คุณสมบัติที่ไม่รองรับ"
+
+msgid "failed finding central directory"
+msgstr "ล้มเหลวในการค้นหาไดเรกทอรีกลาง"
+
+msgid "not a ZIP archive"
+msgstr "ไม่ใช่ไฟล์ ZIP"
+
+msgid "invalid header or corrupted"
+msgstr "ส่วนหัวไม่ถูกต้องหรือเสียหาย"
+
+msgid "unsupported multidisk"
+msgstr "มัลติดิสก์ที่ไม่รองรับ"
+
+msgid "decompression failed"
+msgstr "การบีบอัดล้มเหลว"
+
+msgid "compression failed"
+msgstr "การบีบอัดล้มเหลว"
+
+msgid "unexpected decompressed size"
+msgstr "ขนาดที่แตกไฟล์ที่ไม่คาดคิด"
+
+msgid "CRC check failed"
+msgstr "การตรวจสอบ CRC ล้มเหลว"
+
+msgid "unsupported central directory size"
+msgstr "ขนาดไดเรกทอรีกลางที่ไม่รองรับ"
+
+msgid "allocation failed"
+msgstr "การจัดสรรล้มเหลว"
+
+msgid "file open failed"
+msgstr "การเปิดไฟล์ล้มเหลว"
+
+msgid "file create failed"
+msgstr "การสร้างไฟล์ล้มเหลว"
+
+msgid "file write failed"
+msgstr "การเขียนไฟล์ล้มเหลว"
+
+msgid "file read failed"
+msgstr "การอ่านไฟล์ล้มเหลว"
+
+msgid "file close failed"
+msgstr "การปิดไฟล์ล้มเหลว"
+
+msgid "file seek failed"
+msgstr "การค้นหาไฟล์ล้มเหลว"
+
+msgid "file stat failed"
+msgstr "สถิติไฟล์ล้มเหลว"
+
+msgid "invalid parameter"
+msgstr "พารามิเตอร์ไม่ถูกต้อง"
+
+msgid "invalid filename"
+msgstr "ชื่อไฟล์ไม่ถูกต้อง"
+
+msgid "buffer too small"
+msgstr "บัฟเฟอร์เล็กเกินไป"
+
+msgid "internal error"
+msgstr "ข้อผิดพลาดภายใน"
+
+msgid "file not found"
+msgstr "ไม่พบไฟล์"
+
+msgid "archive too large"
+msgstr "ไฟล์เก็บถาวรมีขนาดใหญ่เกินไป"
+
+msgid "validation failed"
+msgstr "การตรวจสอบล้มเหลว"
+
+msgid "write callback failed"
+msgstr "การเขียนการโทรกลับล้มเหลว"
+
+#, boost-format
+msgid ""
+"%1% is too close to exclusion area, there may be collisions when printing."
+msgstr "%1% อยู่ใกล้พื้นที่แยกมากเกินไป อาจเกิดการชนกันเมื่อพิมพ์"
+
+#, boost-format
+msgid "%1% is too close to others, and collisions may be caused."
+msgstr "%1% อยู่ใกล้ผู้อื่นมากเกินไป และอาจเกิดการชนกันได้"
+
+#, boost-format
+msgid "%1% is too tall, and collisions will be caused."
+msgstr "%1% สูงเกินไป และจะเกิดการชนกัน"
+
+msgid " is too close to exclusion area, there may be collisions when printing."
+msgstr "อยู่ใกล้พื้นที่แยกมากเกินไป อาจเกิดการชนกันเมื่อพิมพ์"
+
+msgid ""
+" is too close to clumping detection area, there may be collisions when "
+"printing."
+msgstr "อยู่ใกล้พื้นที่การตรวจจับการจับตัวกันมากเกินไป อาจเกิดการชนกันเมื่อพิมพ์"
+
+msgid "Prime Tower"
+msgstr "ทาวเวอร์ไล่เส้น"
+
+msgid " is too close to others, and collisions may be caused.\n"
+msgstr "อยู่ใกล้ผู้อื่นมากเกินไปและอาจเกิดการชนได้\n"
+
+msgid " is too close to exclusion area, and collisions will be caused.\n"
+msgstr "อยู่ใกล้เขตหวงห้ามมากเกินไปจะเกิดการชนกัน\n"
+
+msgid ""
+" is too close to clumping detection area, and collisions will be caused.\n"
+msgstr "อยู่ใกล้พื้นที่การตรวจจับการจับตัวกันมากเกินไป และจะเกิดการชนกัน\n"
+
+msgid ""
+"Selected nozzle temperatures are incompatible. Each filament's nozzle "
+"temperature must fall within the recommended nozzle temperature range of the "
+"other filaments. Otherwise, nozzle clogging or printer damage may occur."
+msgstr ""
+"อุณหภูมิหัวฉีดที่เลือกเข้ากันไม่ได้ "
+"อุณหภูมิหัวฉีดของเส้นพลาสติกแต่ละเส้นต้องอยู่ในช่วงอุณหภูมิหัวฉีดที่แนะนำของเส้นพลาสติกอื่นๆ "
+"มิฉะนั้นอาจเกิดการอุดตันของหัวฉีดหรือเครื่องพิมพ์เสียหายได้"
+
+msgid ""
+"Invalid recommended nozzle temperature range. The lower bound must be lower "
+"than the upper bound."
+msgstr "ช่วงอุณหภูมิหัวฉีดที่แนะนำไม่ถูกต้อง ขอบเขตล่างจะต้องต่ำกว่าขอบเขตบน"
+
+msgid ""
+"If you still want to print, you can enable the option in Preferences / "
+"Control / Slicing / Remove mixed temperature restriction."
+msgstr ""
+"หากคุณยังต้องการพิมพ์ คุณสามารถเปิดใช้งานตัวเลือกในการตั้งค่า / การควบคุม / การตัด / "
+"ลบข้อจำกัดอุณหภูมิแบบผสมได้"
+
+msgid "No extrusions under current settings."
+msgstr "ไม่มีการอัดขึ้นรูปภายใต้การตั้งค่าปัจจุบัน"
+
+msgid ""
+"Smooth mode of timelapse is not supported when \"by object\" sequence is "
+"enabled."
+msgstr "ไม่รองรับโหมดไทม์แลปส์แบบราบรื่นเมื่อเปิดใช้งานลำดับ \"ตามวัตถุ\""
+
+msgid ""
+"Clumping detection is not supported when \"by object\" sequence is enabled."
+msgstr "ไม่รองรับการตรวจจับการจับกันเป็นก้อนเมื่อเปิดใช้งานลำดับ \"ตามวัตถุ\""
+
+msgid ""
+"Enabling both precise Z height and the prime tower may cause slicing errors."
+msgstr "การเปิดใช้งานทั้งความสูง Z ที่แม่นยำและหอคอยหลักอาจทำให้เกิดข้อผิดพลาดในการแบ่งส่วน"
+
+msgid ""
+"A prime tower is required for clumping detection; otherwise, there may be "
+"flaws on the model."
+msgstr "จำเป็นต้องใช้หอคอยหลักในการตรวจจับการจับกันเป็นก้อน มิฉะนั้นอาจมีข้อบกพร่องในแบบจำลอง"
+
+msgid ""
+"Please select \"By object\" print sequence to print multiple objects in "
+"spiral vase mode."
+msgstr "โปรดเลือกลำดับการพิมพ์ \"ตามวัตถุ\" เพื่อพิมพ์วัตถุหลายชิ้นในโหมดแจกันเกลียว"
+
+msgid ""
+"The spiral vase mode does not work when an object contains more than one "
+"materials."
+msgstr "โหมดแจกันเกลียวจะไม่ทำงานเมื่อวัตถุมีวัสดุมากกว่าหนึ่งชนิด"
+
+#, boost-format
+msgid ""
+"While the object %1% itself fits the build volume, it exceeds the maximum "
+"build volume height because of material shrinkage compensation."
+msgstr ""
+"แม้ว่าวัตถุ %1% จะพอดีกับปริมาตรการสร้าง "
+"แต่วัตถุนั้นเกินความสูงของปริมาตรการสร้างสูงสุดเนื่องจากการชดเชยการหดตัวของวัสดุ"
+
+#, boost-format
+msgid "The object %1% exceeds the maximum build volume height."
+msgstr "วัตถุ %1% เกินความสูงของปริมาตรบิลด์สูงสุด"
+
+#, boost-format
+msgid ""
+"While the object %1% itself fits the build volume, its last layer exceeds "
+"the maximum build volume height."
+msgstr ""
+"แม้ว่าออบเจ็กต์ %1% จะพอดีกับปริมาณการสร้าง "
+"แต่เลเยอร์สุดท้ายก็เกินความสูงของปริมาตรการสร้างสูงสุด"
+
+msgid ""
+"You might want to reduce the size of your model or change current print "
+"settings and retry."
+msgstr "คุณอาจต้องการลดขนาดแบบจำลองของคุณหรือเปลี่ยนการตั้งค่าการพิมพ์ปัจจุบันแล้วลองอีกครั้ง"
+
+msgid "Variable layer height is not supported with Organic supports."
+msgstr "ไม่รองรับความสูงของเลเยอร์ที่แปรผันได้ด้วยการรองรับแบบออร์แกนิก"
+
+msgid ""
+"Different nozzle diameters and different filament diameters may not work "
+"well when the prime tower is enabled. It's very experimental, so please "
+"proceed with caution."
+msgstr ""
+"เส้นผ่านศูนย์กลางของหัวฉีดที่แตกต่างกันและเส้นผ่านศูนย์กลางของเส้นพลาสติกที่แตกต่างกันอาจทำงานได้ไม่ดีนักเมื่อเปิดใช้งานไพรม์ทาวเวอร์ "
+"ยังเป็นการทดลองอยู่มาก ดังนั้นโปรดดำเนินการด้วยความระมัดระวัง"
+
+msgid ""
+"The Wipe Tower is currently only supported with the relative extruder "
+"addressing (use_relative_e_distances=1)."
+msgstr ""
+"ขณะนี้ Wipe Tower รองรับการกำหนดที่อยู่ของชุดดันเส้นแบบสัมพันธ์เท่านั้น "
+"(use_relative_e_distances=1)"
+
+msgid ""
+"Ooze prevention is only supported with the wipe tower when "
+"'single_extruder_multi_material' is off."
+msgstr "รองรับการป้องกันน้ำซึมด้วยหอเช็ดเมื่อปิด 'single_extruder_multi_material' เท่านั้น"
+
+msgid ""
+"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, "
+"RepRapFirmware and Repetier G-code flavors."
+msgstr ""
+"ขณะนี้ไพรม์ทาวเวอร์รองรับเฉพาะรสชาติ Marlin, RepRap/Sprinter, RepRapFirmware และ "
+"Repetier G-code เท่านั้น"
+
+msgid "The prime tower is not supported in \"By object\" print."
+msgstr "ไม่รองรับไพรม์ทาวเวอร์ในการพิมพ์ \"ตามวัตถุ\""
+
+msgid ""
+"The prime tower is not supported when adaptive layer height is on. It "
+"requires that all objects have the same layer height."
+msgstr ""
+"ไม่รองรับไพรม์ทาวเวอร์เมื่อเปิดความสูงของเลเยอร์แบบปรับได้ "
+"กำหนดให้วัตถุทั้งหมดมีความสูงของชั้นเท่ากัน"
+
+msgid ""
+"The prime tower requires \"support gap\" to be multiple of layer height."
+msgstr "หอคอยหลักต้องมี \"ช่องว่างรองรับ\" เพื่อให้มีความสูงหลายชั้น"
+
+msgid "The prime tower requires that all objects have the same layer heights."
+msgstr "หอคอยหลักกำหนดให้วัตถุทั้งหมดมีความสูงของชั้นเท่ากัน"
+
+msgid ""
+"The prime tower requires that all objects are printed over the same number "
+"of raft layers."
+msgstr "หอคอยหลักกำหนดให้วัตถุทั้งหมดพิมพ์บนชั้นฐานรองชิ้นงานจำนวนเท่ากัน"
+
+msgid ""
+"The prime tower is only supported for multiple objects if they are printed "
+"with the same support_top_z_distance."
+msgstr "ไพรม์ทาวเวอร์รองรับวัตถุหลายชิ้นเท่านั้นหากพิมพ์ด้วย support_top_z_distance เท่ากัน"
+
+msgid ""
+"The prime tower requires that all objects are sliced with the same layer "
+"heights."
+msgstr "หอคอยหลักกำหนดให้วัตถุทั้งหมดถูกสไลซ์ด้วยความสูงของชั้นเดียวกัน"
+
+msgid ""
+"The prime tower is only supported if all objects have the same variable "
+"layer height."
+msgstr "ไพรม์ทาวเวอร์ได้รับส่วนรองรับก็ต่อเมื่อวัตถุทั้งหมดมีความสูงของเลเยอร์ที่แปรผันเท่ากัน"
+
+msgid ""
+"One or more object were assigned an extruder that the printer does not have."
+msgstr "วัตถุอย่างน้อยหนึ่งชิ้นถูกกำหนดให้เป็นชุดดันเส้นที่เครื่องพิมพ์ไม่มี"
+
+msgid "Too small line width"
+msgstr "ความกว้างของเส้นเล็กเกินไป"
+
+msgid "Too large line width"
+msgstr "ความกว้างของเส้นใหญ่เกินไป"
+
+msgid ""
+"Printing with multiple extruders of differing nozzle diameters. If support "
+"is to be printed with the current filament (support_filament == 0 or "
+"support_interface_filament == 0), all nozzles have to be of the same "
+"diameter."
+msgstr ""
+"การพิมพ์ด้วยชุดดันเส้นหลายเครื่องที่มีเส้นผ่านศูนย์กลางหัวฉีดต่างกัน "
+"หากจะพิมพ์ส่วนรองรับด้วยฟิลาเมนต์ปัจจุบัน (support_filament == 0 หรือ "
+"support_interface_filament == 0) หัวฉีดทั้งหมดจะต้องมีเส้นผ่านศูนย์กลางเท่ากัน"
+
+msgid ""
+"The prime tower requires that support has the same layer height with object."
+msgstr "หอคอยหลักต้องการให้ส่วนรองรับมีความสูงของชั้นเดียวกันกับวัตถุ"
+
+msgid ""
+"For Organic supports, two walls are supported only with the Hollow/Default "
+"base pattern."
+msgstr ""
+"สำหรับการรองรับแบบออร์แกนิก ผนังทั้งสองได้รับการรองรับด้วยรูปแบบฐานกลวง/ค่าเริ่มต้นเท่านั้น"
+
+msgid ""
+"The Lightning base pattern is not supported by this support type; "
+"Rectilinear will be used instead."
+msgstr "รูปแบบฐาน Lightning ไม่ได้รับส่วนรองรับโดยประเภทส่วนรองรับนี้ จะใช้เส้นตรงแทน"
+
+msgid ""
+"Organic support tree tip diameter must not be smaller than support material "
+"extrusion width."
+msgstr "เส้นผ่านศูนย์กลางปลายของฐานรองรับแบบออร์แกนิกต้องไม่เล็กกว่าความกว้างของการอัดขึ้นรูปวัสดุรองรับ"
+
+msgid ""
+"Organic support branch diameter must not be smaller than 2x support material "
+"extrusion width."
+msgstr "เส้นผ่านศูนย์กลางกิ่งรองรับออร์แกนิกต้องไม่เล็กกว่า 2x ความกว้างของการอัดขึ้นรูปวัสดุรองรับ"
+
+msgid ""
+"Organic support branch diameter must not be smaller than support tree tip "
+"diameter."
+msgstr "เส้นผ่านศูนย์กลางกิ่งรองรับอินทรีย์ต้องไม่เล็กกว่าเส้นผ่านศูนย์กลางปลายต้นรองรับ"
+
+msgid ""
+"The Hollow base pattern is not supported by this support type; Rectilinear "
+"will be used instead."
+msgstr "รูปแบบฐานกลวงไม่รองรับประเภทการรองรับนี้ จะใช้เส้นตรงแทน"
+
+msgid ""
+"Support enforcers are used but support is not enabled. Please enable support."
+msgstr "มีการใช้กำหนดส่วนรองรับ แต่ไม่ได้เปิดใช้งานส่วนรองรับ กรุณาเปิดใช้งานส่วนรองรับ"
+
+msgid "Layer height cannot exceed nozzle diameter."
+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 ""
+"Relative extruder addressing requires resetting the extruder position at "
+"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
+"layer_gcode."
+msgstr ""
+"การระบุตำแหน่งชุดดันเส้นแบบสัมพันธ์จำเป็นต้องรีเซ็ตตำแหน่งชุดดันเส้นในแต่ละชั้น "
+"เพื่อป้องกันการสูญเสียความแม่นยำของจุดลอยตัว เพิ่ม \"G92 E0\" ลงใน layer_gcode"
+
+msgid ""
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
+msgstr ""
+
+msgid ""
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
+msgstr ""
+
+#, c-format, boost-format
+msgid "Plate %d: %s does not support filament %s"
+msgstr "ฐานพิมพ์ %d: %s ไม่รองรับเส้นพลาสติก %s"
+
+msgid ""
+"Setting the jerk speed too low could lead to artifacts on curved surfaces"
+msgstr "การตั้งค่าความเร็วกระตุกต่ำเกินไปอาจทำให้เกิดสิ่งแปลกปลอมบนพื้นผิวโค้งได้"
+
+msgid ""
+"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
+"machine_max_jerk_y).\n"
+"Orca will automatically cap the jerk speed to ensure it doesn't surpass the "
+"printer's capabilities.\n"
+"You can adjust the maximum jerk setting in your printer's configuration to "
+"get higher speeds."
+msgstr ""
+"การตั้งค่าการกระตุกเกินการกระตุกสูงสุดของเครื่องพิมพ์ (machine_max_jerk_x/"
+"machine_max_jerk_y)\n"
+"Orca จะจำกัดความเร็วการกระตุกโดยอัตโนมัติเพื่อให้แน่ใจว่าจะไม่เกินความสามารถของเครื่องพิมพ์\n"
+"คุณสามารถปรับการตั้งค่าการกระตุกสูงสุดในการกำหนดค่าเครื่องพิมพ์ของคุณเพื่อให้ได้ความเร็วที่สูงขึ้น"
+
+msgid ""
+"Junction deviation setting exceeds the printer's maximum value "
+"(machine_max_junction_deviation).\n"
+"Orca will automatically cap the junction deviation to ensure it doesn't "
+"surpass the printer's capabilities.\n"
+"You can adjust the machine_max_junction_deviation value in your printer's "
+"configuration to get higher limits."
+msgstr ""
+"การตั้งค่าส่วนเบี่ยงเบนของจุดเชื่อมต่อเกินค่าสูงสุดของเครื่องพิมพ์ "
+"(machine_max_junction_deviation)\n"
+"Orca "
+"จะจำกัดส่วนเบี่ยงเบนของจุดเชื่อมต่อโดยอัตโนมัติเพื่อให้แน่ใจว่าจะไม่เกินความสามารถของเครื่องพิมพ์\n"
+"คุณสามารถปรับค่า machine_max_junction_deviation "
+"ในการกำหนดค่าเครื่องพิมพ์ของคุณเพื่อให้ได้ขีดจำกัดที่สูงขึ้น"
+
+msgid ""
+"The acceleration setting exceeds the printer's maximum acceleration "
+"(machine_max_acceleration_extruding).\n"
+"Orca will automatically cap the acceleration speed to ensure it doesn't "
+"surpass the printer's capabilities.\n"
+"You can adjust the machine_max_acceleration_extruding value in your "
+"printer's configuration to get higher speeds."
+msgstr ""
+"การตั้งค่าความเร่งเกินความเร่งสูงสุดของเครื่องพิมพ์ "
+"(machine_max_acceleration_extruding)\n"
+"Orca "
+"จะจำกัดความเร็วการเร่งความเร็วโดยอัตโนมัติเพื่อให้แน่ใจว่าจะไม่เกินความสามารถของเครื่องพิมพ์\n"
+"คุณสามารถปรับค่า machine_max_acceleration_extruding "
+"ในการกำหนดค่าเครื่องพิมพ์ของคุณเพื่อให้ได้ความเร็วที่สูงขึ้น"
+
+msgid ""
+"The travel acceleration setting exceeds the printer's maximum travel "
+"acceleration (machine_max_acceleration_travel).\n"
+"Orca will automatically cap the travel acceleration speed to ensure it "
+"doesn't surpass the printer's capabilities.\n"
+"You can adjust the machine_max_acceleration_travel value in your printer's "
+"configuration to get higher speeds."
+msgstr ""
+"การตั้งค่าการเร่งความเร็วในการเดินทางเกินความเร็วการเคลื่อนที่สูงสุดของเครื่องพิมพ์ "
+"(machine_max_acceleration_travel)\n"
+"Orca "
+"จะจำกัดความเร็วในการเร่งความเร็วโดยอัตโนมัติเพื่อให้แน่ใจว่าจะไม่เกินความสามารถของเครื่องพิมพ์\n"
+"คุณสามารถปรับค่า machine_max_acceleration_travel "
+"ในการกำหนดค่าเครื่องพิมพ์ของคุณเพื่อให้ได้ความเร็วที่สูงขึ้น"
+
+msgid ""
+"The precise wall option will be ignored for outer-inner or inner-outer-inner "
+"wall sequences."
+msgstr "ตัวเลือกผนังที่แม่นยำจะถูกละเว้นสำหรับลำดับผนังด้านนอก-ด้านใน หรือด้านใน-ด้านนอก-ด้านใน"
+
+msgid ""
+"Filament shrinkage will not be used because filament shrinkage for the used "
+"filaments does not match."
+msgstr "การหดตัวของเส้นพลาสติกจะไม่ถูกนำมาใช้เนื่องจากการหดตัวของเส้นพลาสติกสำหรับเส้นพลาสติกที่ใช้ไม่ตรงกัน"
+
+msgid "Generating skirt & brim"
+msgstr "กำลังสร้าง เส้นล้อมชิ้นงาน และ ขอบยึดชิ้นงาน"
+
+msgid "Exporting G-code"
+msgstr "กำลังส่งออก G-code"
+
+msgid "Generating G-code"
+msgstr "กำลังสร้าง G-code"
+
+msgid "Failed processing of the filename_format template."
+msgstr "การประมวลผลเทมเพลต filename_format ล้มเหลว"
+
+msgid "Printer technology"
+msgstr "เทคโนโลยีเครื่องพิมพ์"
+
+msgid "Printable area"
+msgstr "พื้นที่ที่สามารถพิมพ์ได้"
+
+msgid "Extruder printable area"
+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"
+msgstr "ฐานพิมพ์ไม่รวมพื้นที่"
+
+msgid ""
+"Unprintable area in XY plane. For example, X1 Series printers use the front "
+"left corner to cut filament during filament change. The area is expressed as "
+"polygon by points in following format: \"XxY, XxY, ...\""
+msgstr ""
+"พื้นที่ที่ไม่สามารถพิมพ์ได้ในระนาบ XY ตัวอย่างเช่น เครื่องพิมพ์ X1 "
+"ซีรีส์ใช้มุมซ้ายด้านหน้าเพื่อตัดเส้นพลาสติกระหว่างการเปลี่ยนเส้นพลาสติก "
+"พื้นที่จะแสดงเป็นรูปหลายเหลี่ยมตามจุดในรูปแบบต่อไปนี้: \"XxY, XxY, ...\""
+
+msgid "Bed custom texture"
+msgstr "พื้นผิวแบบกำหนดเองของฐานพิมพ์"
+
+msgid "Bed custom model"
+msgstr "ฐานพิมพ์รุ่นสั่งทำพิเศษ"
+
+msgid "Elephant foot compensation"
+msgstr "การชดเชยอาการฐานบาน"
+
+msgid ""
+"Shrinks the first layer on build plate to compensate for elephant foot "
+"effect."
+msgstr "ย่อชั้นแรกบนฐานรองพิมพ์เพื่อชดเชยผลกระทบจากรอยอาการฐานบาน"
+
+msgid "Elephant foot compensation layers"
+msgstr "ชั้นชดเชยอาการฐานบาน"
+
+msgid ""
+"The number of layers on which the elephant foot compensation will be active. "
+"The first layer will be shrunk by the elephant foot compensation value, then "
+"the next layers will be linearly shrunk less, up to the layer indicated by "
+"this value."
+msgstr ""
+"จำนวนชั้นที่การชดเชยอาการฐานบานจะทำงาน ชั้นแรกจะหดตามค่าการชดเชยอาการฐานบาน "
+"จากนั้นชั้นถัดไปจะหดเป็นเส้นตรงน้อยลง จนถึงชั้นที่ระบุด้วยค่านี้"
+
+msgid "Elephant foot layers density"
+msgstr "ความหนาแน่นของชั้นอาการฐานบาน"
+
+msgid ""
+"Density of internal solid infill for Elephant foot layers compensation.\n"
+"The initial value for the second layer is set.\n"
+"Subsequent layers become linearly denser by the height specified in "
+"elefant_foot_compensation_layers."
+msgstr ""
+"ความหนาแน่นของวัสดุไส้ในแบบทึบภายในสำหรับการชดเชยชั้นอาการฐานบาน\n"
+"มีการตั้งค่าเริ่มต้นสำหรับเลเยอร์ที่สอง\n"
+"เลเยอร์ต่อมาจะมีความหนาแน่นเชิงเส้นมากขึ้นตามความสูงที่ระบุใน "
+"elefant_foot_compensation_layers"
+
+msgid ""
+"Slicing height for each layer. Smaller layer height means more accurate and "
+"more printing time."
+msgstr ""
+"ความสูงของการตัดแต่ละชั้น ความสูงของชั้นที่เล็กลงหมายถึงความแม่นยำและเวลาในการพิมพ์ที่มากขึ้น"
+
+msgid "Printable height"
+msgstr "ความสูงที่สามารถพิมพ์ได้"
+
+msgid "Maximum printable height which is limited by mechanism of printer."
+msgstr "ความสูงสูงสุดที่สามารถพิมพ์ได้ซึ่งถูกจำกัดโดยกลไกของเครื่องพิมพ์"
+
+msgid "Extruder printable height"
+msgstr "ความสูงที่สามารถพิมพ์ของชุดดันเส้นได้"
+
+msgid ""
+"Maximum printable height of this extruder which is limited by mechanism of "
+"printer."
+msgstr "ความสูงสูงสุดที่สามารถพิมพ์ได้ของชุดดันเส้นนี้ซึ่งถูกจำกัดโดยกลไกของเครื่องพิมพ์"
+
+msgid "Preferred orientation"
+msgstr "ปฐมนิเทศที่ต้องการ"
+
+msgid "Automatically orient STL files on the Z axis upon initial import."
+msgstr "วางแนวไฟล์ STL บนแกน Z โดยอัตโนมัติเมื่อนำเข้าครั้งแรก"
+
+msgid "Printer preset names"
+msgstr "ชื่อที่ตั้งไว้ล่วงหน้าของเครื่องพิมพ์"
+
+msgid "Use 3rd-party print host"
+msgstr "ใช้โฮสต์การพิมพ์ของบุคคลที่สาม"
+
+msgid "Allow controlling BambuLab's printer through 3rd party print hosts."
+msgstr "อนุญาตให้ควบคุมเครื่องพิมพ์ของ BambuLab ผ่านโฮสต์การพิมพ์ของบุคคลที่สาม"
+
+msgid "Printer Agent"
+msgstr "ตัวแทนเครื่องพิมพ์"
+
+msgid "Select the network agent implementation for printer communication."
+msgstr "เลือกการใช้งานตัวแทนเครือข่ายสำหรับการสื่อสารของเครื่องพิมพ์"
+
+msgid "Hostname, IP or URL"
+msgstr "ชื่อโฮสต์, IP หรือ URL"
+
+msgid ""
+"Orca Slicer can upload G-code files to a printer host. This field should "
+"contain the hostname, IP address or URL of the printer host instance. Print "
+"host behind HAProxy with basic auth enabled can be accessed by putting the "
+"user name and password into the URL in the following format: https://"
+"username:password@your-octopi-address/"
+msgstr ""
+"Orca Slicer สามารถอัปโหลดไฟล์ G-code ไปยังโฮสต์เครื่องพิมพ์ได้ ฟิลด์นี้ควรมีชื่อโฮสต์ ที่อยู่ IP "
+"หรือ URL ของอินสแตนซ์โฮสต์ของเครื่องพิมพ์ โฮสต์การพิมพ์ที่อยู่เบื้องหลัง HAProxy "
+"ที่เปิดใช้งานการรับรองความถูกต้องขั้นพื้นฐานสามารถเข้าถึงได้โดยการใส่ชื่อผู้ใช้และรหัสผ่านลงใน URL "
+"ในรูปแบบต่อไปนี้: https://username:password@your-octopi-address/"
+
+msgid "Device UI"
+msgstr "UI ของอุปกรณ์"
+
+msgid ""
+"Specify the URL of your device user interface if it's not same as print_host."
+msgstr "ระบุ URL ของอินเทอร์เฟซผู้ใช้อุปกรณ์ของคุณหากไม่เหมือนกับ print_host"
+
+msgid "API Key / Password"
+msgstr "คีย์ API / รหัสผ่าน"
+
+msgid ""
+"Orca Slicer can upload G-code files to a printer host. This field should "
+"contain the API Key or the password required for authentication."
+msgstr ""
+"Orca Slicer สามารถอัปโหลดไฟล์ G-code ไปยังโฮสต์เครื่องพิมพ์ได้ ฟิลด์นี้ควรมีคีย์ API "
+"หรือรหัสผ่านที่จำเป็นสำหรับการตรวจสอบสิทธิ์"
+
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
+msgid "Name of the printer."
+msgstr "ชื่อของเครื่องพิมพ์"
+
+msgid "HTTPS CA File"
+msgstr "ไฟล์ HTTPS CA"
+
+msgid ""
+"Custom CA certificate file can be specified for HTTPS OctoPrint connections, "
+"in crt/pem format. If left blank, the default OS CA certificate repository "
+"is used."
+msgstr ""
+"สามารถระบุไฟล์ใบรับรอง CA แบบกำหนดเองสำหรับการเชื่อมต่อ HTTPS OctoPrint ในรูปแบบ crt/"
+"pem หากเว้นว่างไว้ ระบบจะใช้ที่เก็บใบรับรอง OS CA เริ่มต้น"
+
+msgid "User"
+msgstr "ผู้ใช้"
+
+msgid "Password"
+msgstr "รหัสผ่าน"
+
+msgid "Ignore HTTPS certificate revocation checks"
+msgstr "ละเว้นการตรวจสอบการเพิกถอนใบรับรอง HTTPS"
+
+msgid ""
+"Ignore HTTPS certificate revocation checks in case of missing or offline "
+"distribution points. One may want to enable this option for self signed "
+"certificates if connection fails."
+msgstr ""
+"ละเว้นการตรวจสอบการเพิกถอนใบรับรอง HTTPS ในกรณีที่จุดแจกจ่ายหายไปหรือออฟไลน์ "
+"อาจต้องการเปิดใช้งานตัวเลือกนี้สำหรับใบรับรองที่ลงนามด้วยตนเองหากการเชื่อมต่อล้มเหลว"
+
+msgid "Names of presets related to the physical printer."
+msgstr "ชื่อของค่าที่ตั้งล่วงหน้าที่เกี่ยวข้องกับเครื่องพิมพ์จริง"
+
+msgid "Authorization Type"
+msgstr "ประเภทการอนุญาต"
+
+msgid "API key"
+msgstr "คีย์เอพีไอ"
+
+msgid "HTTP digest"
+msgstr "HTTP ไดเจสต์"
+
+msgid "Avoid crossing walls"
+msgstr "หลีกเลี่ยงการข้ามผนัง"
+
+msgid ""
+"Detour to avoid traveling across walls, which may cause blobs on the surface."
+msgstr "ทางอ้อมเพื่อหลีกเลี่ยงการเดินทางข้ามผนัง ซึ่งอาจทำให้เกิดหยดบนพื้นผิว"
+
+msgid "Avoid crossing walls - Max detour length"
+msgstr "หลีกเลี่ยงการข้ามผนัง - ความยาวทางเบี่ยงสูงสุด"
+
+msgid ""
+"Maximum detour distance for avoiding crossing wall. Don't detour if the "
+"detour distance is larger than this value. Detour length could be specified "
+"either as an absolute value or as percentage (for example 50%) of a direct "
+"travel path. Zero to disable."
+msgstr ""
+"ระยะทางเบี่ยงสูงสุดเพื่อหลีกเลี่ยงการข้ามผนัง อย่าอ้อมหากระยะทางเบี่ยงมากกว่าค่านี้ "
+"ความยาวทางเบี่ยงสามารถระบุเป็นค่าสัมบูรณ์หรือเป็นเปอร์เซ็นต์ (เช่น 50%) "
+"ของเส้นทางการเดินทางโดยตรง ศูนย์ที่จะปิดการใช้งาน"
+
+msgid "mm or %"
+msgstr "มม. หรือ %"
+
+msgid "Other layers"
+msgstr "ชั้นอื่นๆ"
+
+msgid ""
+"Bed temperature for layers except the initial one. A value of 0 means the "
+"filament does not support printing on the Cool Plate SuperTack."
+msgstr ""
+"อุณหภูมิฐานพิมพ์สำหรับชั้นต่างๆ ยกเว้นอุณหภูมิเริ่มต้น ค่า 0 "
+"หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บน Cool Plate SuperTack"
+
+msgid ""
+"Bed temperature for layers except the initial one. A value of 0 means the "
+"filament does not support printing on the Cool Plate."
+msgstr ""
+"อุณหภูมิฐานพิมพ์สำหรับชั้นต่างๆ ยกเว้นอุณหภูมิเริ่มต้น ค่า 0 "
+"หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บน Cool Plate"
+
+msgid ""
+"Bed temperature for layers except the initial one. A value of 0 means the "
+"filament does not support printing on the Textured Cool Plate."
+msgstr ""
+"อุณหภูมิฐานพิมพ์สำหรับชั้นต่างๆ ยกเว้นอุณหภูมิเริ่มต้น ค่า 0 "
+"หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บน Textured Cool Plate"
+
+msgid ""
+"Bed temperature for layers except the initial one. A value of 0 means the "
+"filament does not support printing on the Engineering Plate."
+msgstr ""
+"อุณหภูมิฐานพิมพ์สำหรับชั้นต่างๆ ยกเว้นอุณหภูมิเริ่มต้น ค่า 0 "
+"หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บน Engineering Plate"
+
+msgid ""
+"Bed temperature for layers except the initial one. A value of 0 means the "
+"filament does not support printing on the High Temp Plate."
+msgstr ""
+"อุณหภูมิฐานพิมพ์สำหรับชั้นต่างๆ ยกเว้นอุณหภูมิเริ่มต้น ค่า 0 "
+"หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บนแผ่นอุณหภูมิสูง"
+
+msgid ""
+"Bed temperature for layers except the initial one. A value of 0 means the "
+"filament does not support printing on the Textured PEI Plate."
+msgstr ""
+"อุณหภูมิฐานพิมพ์สำหรับชั้นต่างๆ ยกเว้นอุณหภูมิเริ่มต้น ค่า 0 "
+"หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บนเพลต PEI ที่มีพื้นผิว"
+
+msgid "First layer"
+msgstr "ชั้นแรก"
+
+msgid "First layer bed temperature"
+msgstr "อุณหภูมิฐานพิมพ์ชั้นแรก"
+
+msgid ""
+"Bed temperature of the first layer. A value of 0 means the filament does not "
+"support printing on the Cool Plate SuperTack."
+msgstr ""
+"อุณหภูมิฐานพิมพ์ชั้นแรก ค่า 0 หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บน Cool Plate SuperTack"
+
+msgid ""
+"Bed temperature of the first layer. A value of 0 means the filament does not "
+"support printing on the Cool Plate."
+msgstr "อุณหภูมิฐานพิมพ์ชั้นแรก ค่า 0 หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บน Cool Plate"
+
+msgid ""
+"Bed temperature of the first layer. A value of 0 means the filament does not "
+"support printing on the Textured Cool Plate."
+msgstr ""
+"อุณหภูมิฐานพิมพ์ชั้นแรก ค่า 0 หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บน Textured Cool Plate"
+
+msgid ""
+"Bed temperature of the first layer. A value of 0 means the filament does not "
+"support printing on the Engineering Plate."
+msgstr ""
+"อุณหภูมิฐานพิมพ์ชั้นแรก ค่า 0 หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บน Engineering Plate"
+
+msgid ""
+"Bed temperature of the first layer. A value of 0 means the filament does not "
+"support printing on the High Temp Plate."
+msgstr "อุณหภูมิฐานพิมพ์ชั้นแรก ค่า 0 หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บนแผ่นอุณหภูมิสูง"
+
+msgid ""
+"Bed temperature of the first layer. A value of 0 means the filament does not "
+"support printing on the Textured PEI Plate."
+msgstr ""
+"อุณหภูมิฐานพิมพ์ชั้นแรก ค่า 0 หมายความว่าเส้นพลาสติกไม่รองรับการพิมพ์บนเพลต PEI ที่มีพื้นผิว"
+
+msgid "Bed types supported by the printer."
+msgstr "ประเภทฐานพิมพ์ที่เครื่องพิมพ์รองรับ"
+
+msgid "Default bed type"
+msgstr "ประเภทฐานพิมพ์เริ่มต้น"
+
+msgid ""
+"Default bed type for the printer (supports both numeric and string format)."
+msgstr "ประเภทฐานฐานพิมพ์เริ่มต้นสำหรับเครื่องพิมพ์ (รองรับทั้งรูปแบบตัวเลขและสตริง)"
+
+msgid "First layer print sequence"
+msgstr "ลำดับการพิมพ์ชั้นแรก"
+
+msgid "Other layers print sequence"
+msgstr "ลำดับการพิมพ์เลเยอร์อื่นๆ"
+
+msgid "The number of other layers print sequence"
+msgstr "จำนวนลำดับการพิมพ์อื่นๆ"
+
+msgid "Other layers filament sequence"
+msgstr "ลำดับเส้นพลาสติกชั้นอื่นๆ"
+
+msgid "This G-code is inserted at every layer change before the Z lift."
+msgstr "G-code นี้จะถูกแทรกทุกครั้งที่เปลี่ยนเลเยอร์ก่อนการยก Z"
+
+msgid "Bottom shell layers"
+msgstr "เลเยอร์ผนังด้านล่าง"
+
+msgid ""
+"This is the number of solid layers of bottom shell, including the bottom "
+"surface layer. When the thickness calculated by this value is thinner than "
+"bottom shell thickness, the bottom shell layers will be increased."
+msgstr ""
+"นี่คือจำนวนชั้นทึบของเปลือกด้านล่าง รวมถึงชั้นล่างของพื้นผิวด้วย "
+"เมื่อความหนาที่คำนวณโดยค่านี้บางกว่าความหนาของเปลือกด้านล่าง ชั้นเปลือกด้านล่างจะเพิ่มขึ้น"
+
+msgid "Bottom shell thickness"
+msgstr "ความหนาผนังด้านล่าง"
+
+msgid ""
+"The number of bottom solid layers is increased when slicing if the thickness "
+"calculated by bottom shell layers is thinner than this value. This can avoid "
+"having too thin shell when layer height is small. 0 means that this setting "
+"is disabled and thickness of bottom shell is absolutely determined by bottom "
+"shell layers."
+msgstr ""
+"จำนวนชั้นทึบด้านล่างจะเพิ่มขึ้นเมื่อสไลซ์หากความหนาที่คำนวณโดยชั้นเปลือกด้านล่างบางกว่าค่านี้ "
+"วิธีนี้สามารถหลีกเลี่ยงไม่ให้เปลือกบางเกินไปเมื่อชั้นมีความสูงน้อย 0 "
+"หมายความว่าการตั้งค่านี้ถูกปิดใช้งาน "
+"และความหนาของเปลือกด้านล่างจะถูกกำหนดโดยชั้นเปลือกด้านล่างอย่างแน่นอน"
+
+msgid "Apply gap fill"
+msgstr "ใช้การเติมช่องว่าง"
+
+msgid ""
+"Enables gap fill for the selected solid surfaces. The minimum gap length "
+"that will be filled can be controlled from the filter out tiny gaps option "
+"below.\n"
+"\n"
+"Options:\n"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
+"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pinhole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas\n"
+"\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting.\n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999.\n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated."
+msgstr ""
+"เปิดใช้งานการเติมช่องว่างสำหรับพื้นผิวทึบที่เลือก "
+"ความยาวช่องว่างขั้นต่ำที่จะถูกอุดสามารถควบคุมได้จากตัวเลือกกรองช่องว่างเล็กๆ ด้านล่าง\n"
+"\n"
+"ตัวเลือก:\n"
+"1. ทุกที่: ใช้การเติมช่องว่างกับพื้นผิวแข็งด้านบน ด้านล่าง และภายในเพื่อความแข็งแรงสูงสุด\n"
+"2. พื้นผิวด้านบนและด้านล่าง: ใช้การเติมช่องว่างกับพื้นผิวด้านบนและด้านล่างเท่านั้น "
+"ปรับสมดุลความเร็วการพิมพ์ ลดโอกาสเกิดการอัดขึ้นรูปมากเกินไปเมื่อเติมช่องว่างในพื้นที่ทึบ "
+"และตรวจสอบให้แน่ใจว่าพื้นผิวด้านบนและด้านล่างไม่มีช่องว่างรูเข็ม\n"
+"3. ไม่มีที่ไหนเลย: ปิดใช้งานการเติมช่องว่างสำหรับพื้นที่ทึบทั้งหมด\n"
+"\n"
+"โปรดทราบว่าหากใช้เครื่องสร้างเส้นรอบวงแบบคลาสสิก "
+"การเติมช่องว่างอาจถูกสร้างขึ้นระหว่างเส้นรอบวงด้วย "
+"หากเส้นความกว้างเต็มไม่สามารถพอดีระหว่างเส้นรอบวงได้ "
+"การเติมช่องว่างขอบเขตนั้นไม่ได้ถูกควบคุมโดยการตั้งค่านี้\n"
+"\n"
+"หากคุณต้องการให้ลบการเติมช่องว่างทั้งหมด รวมถึงเส้นรอบวงแบบคลาสสิกที่สร้างไว้ "
+"ให้ตั้งค่าตัวกรองออกค่าช่องว่างเล็กๆ ให้เป็นตัวเลขจำนวนมาก เช่น 999999\n"
+"\n"
+"อย่างไรก็ตาม ไม่แนะนำให้ทำเช่นนี้ "
+"เนื่องจากการเติมช่องว่างระหว่างเส้นรอบวงมีส่วนทำให้โมเดลมีความแข็งแกร่ง "
+"สำหรับโมเดลที่มีการเติมช่องว่างมากเกินไประหว่างเส้นรอบวง "
+"ตัวเลือกที่ดีกว่าคือเปลี่ยนไปใช้เครื่องสร้างผนังแบบ Arachne "
+"และใช้ตัวเลือกนี้เพื่อควบคุมว่าจะสร้างการเติมช่องว่างบนพื้นผิวด้านบนและด้านล่างที่สวยงามหรือไม่"
+
+msgid "Everywhere"
+msgstr "ทุกที่"
+
+msgid "Top and bottom surfaces"
+msgstr "พื้นผิวด้านบนและด้านล่าง"
+
+msgid "Nowhere"
+msgstr "ไม่มีที่ไหนเลย"
+
+msgid "Force cooling for overhangs and bridges"
+msgstr "บังคับการระบายความร้อนสำหรับส่วนยื่นและสะพาน"
+
+msgid ""
+"Enable this option to allow adjustment of the part cooling fan speed for "
+"specifically for overhangs, internal and external bridges. Setting the fan "
+"speed specifically for these features can improve overall print quality and "
+"reduce warping."
+msgstr ""
+"เปิดใช้งานตัวเลือกนี้เพื่อให้สามารถปรับความเร็วพัดลมระบายความร้อนของชิ้นส่วนสำหรับส่วนยื่น "
+"บริดจ์ภายในและภายนอกโดยเฉพาะ "
+"การตั้งค่าความเร็วพัดลมสำหรับคุณสมบัติเหล่านี้โดยเฉพาะสามารถปรับปรุงคุณภาพการพิมพ์โดยรวมและลดการบิดเบี้ยวได้"
+
+msgid "Overhangs and external bridges fan speed"
+msgstr "ส่วนยื่นและความเร็วพัดลมของสะพานภายนอก"
+
+msgid ""
+"Use this part cooling fan speed when printing bridges or overhang walls with "
+"an overhang threshold that exceeds the value set in the 'Overhangs cooling "
+"threshold' parameter above. Increasing the cooling specifically for "
+"overhangs and bridges can improve the overall print quality of these "
+"features.\n"
+"\n"
+"Please note, this fan speed is clamped on the lower end by the minimum fan "
+"speed threshold set above. It is also adjusted upwards up to the maximum fan "
+"speed threshold when the minimum layer time threshold is not met."
+msgstr ""
+"ใช้ความเร็วพัดลมระบายความร้อนส่วนนี้เมื่อพิมพ์สะพานหรือผนังที่ยื่นออกมาโดยมีเกณฑ์ยื่นเกินค่าที่ตั้งไว้ในพารามิเตอร์ "
+"'เกณฑ์การระบายความร้อนที่ยื่นเกิน' ด้านบน "
+"การเพิ่มการระบายความร้อนโดยเฉพาะสำหรับส่วนยื่นและสะพานสามารถปรับปรุงคุณภาพการพิมพ์โดยรวมของคุณสมบัติเหล่านี้ได้\n"
+"\n"
+"โปรดทราบว่าความเร็วพัดลมนี้จะถูกยึดที่ปลายล่างตามเกณฑ์ความเร็วพัดลมขั้นต่ำที่ตั้งไว้ด้านบน "
+"นอกจากนี้ยังปรับขึ้นไปถึงขีดจำกัดความเร็วพัดลมสูงสุด เมื่อไม่ตรงตามเกณฑ์เวลาเลเยอร์ขั้นต่ำ"
+
+msgid "Overhang cooling activation threshold"
+msgstr "เกณฑ์การเปิดใช้งานการทำความเย็นเกิน"
+
+#, no-c-format, no-boost-format
+msgid ""
+"When the overhang exceeds this specified threshold, force the cooling fan to "
+"run at the 'Overhang Fan Speed' set below. This threshold is expressed as a "
+"percentage, indicating the portion of each line's width that is unsupported "
+"by the layer beneath it. Setting this value to 0% forces the cooling fan to "
+"run for all outer walls, regardless of the overhang degree."
+msgstr ""
+"เมื่อโอเวอร์แฮงค์เกินเกณฑ์ที่ระบุ ให้บังคับพัดลมระบายความร้อนให้ทำงานที่ "
+"'ความเร็วพัดลมโอเวอร์แฮง' ที่ตั้งไว้ด้านล่าง เกณฑ์นี้แสดงเป็นเปอร์เซ็นต์ "
+"ซึ่งระบุส่วนของความกว้างของแต่ละบรรทัดที่เลเยอร์ด้านล่างไม่รองรับ การตั้งค่านี้เป็น 0% "
+"จะบังคับให้พัดลมระบายความร้อนทำงานบนผนังด้านนอกทั้งหมด โดยไม่คำนึงถึงระดับของส่วนยื่น"
+
+msgid "External bridge infill direction"
+msgstr "ทิศทางไส้ในสะพานภายนอก"
+
+#, no-c-format, no-boost-format
+msgid ""
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
+
+msgid "Internal bridge infill direction"
+msgstr "ทิศทางไส้ในสะพานภายใน"
+
+msgid ""
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
+
+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 ""
+
+msgid "External bridge density"
+msgstr "ความหนาแน่นของสะพานภายนอก"
+
+msgid ""
+"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"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
+
+msgid "Internal bridge density"
+msgstr "ความหนาแน่นสะพานภายใน"
+
+msgid ""
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
+"\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
+"This option works particularly well when combined with the second internal "
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
+msgstr ""
+
+msgid "Bridge flow ratio"
+msgstr "อัตราส่วนการไหลสะพาน"
+
+msgid ""
+"This value governs the thickness of the external (visible) bridge layer.\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"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
+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"
+msgstr "อัตราส่วนการไหลสะพานภายใน"
+
+msgid ""
+"This value governs the thickness of the internal bridge layer. This is the "
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
+
+msgid "Top surface flow ratio"
+msgstr "อัตราส่วนการไหลผิวด้านบน"
+
+msgid ""
+"This factor affects the amount of material for top solid infill. You can "
+"decrease it slightly to have smooth surface finish.\n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
+"ปัจจัยนี้ส่งผลต่อปริมาณวัสดุสำหรับไส้ในของแข็งด้านบน คุณสามารถลดลงเล็กน้อยเพื่อให้พื้นผิวเรียบ\n"
+"\n"
+"การไหลของพื้นผิวด้านบนจริงที่ใช้คำนวณโดยการคูณค่านี้ด้วยอัตราส่วนการไหลของเส้นพลาสติก "
+"และหากตั้งค่าไว้ อัตราการไหลของวัตถุ"
+
+msgid "Bottom surface flow ratio"
+msgstr "อัตราส่วนการไหลผิวด้านล่าง"
+
+msgid ""
+"This factor affects the amount of material for bottom solid infill.\n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
+"ปัจจัยนี้ส่งผลต่อปริมาณวัสดุสำหรับไส้ในของแข็งด้านล่าง\n"
+"\n"
+"การไหล ไส้ใน ของแข็งด้านล่างจริงที่ใช้คำนวณโดยการคูณค่านี้ด้วยอัตราส่วนการไหลของเส้นพลาสติก "
+"และหากตั้งค่าไว้ อัตราการไหลของวัตถุ"
+
+msgid "Set other flow ratios"
+msgstr "ตั้งค่าอัตราส่วนการไหลอื่นๆ"
+
+msgid "Change flow ratios for other extrusion path types."
+msgstr "เปลี่ยนอัตราส่วนการไหลสำหรับเส้นทางการอัดขึ้นรูปประเภทอื่นๆ"
+
+msgid "First layer flow ratio"
+msgstr "อัตราการไหลของชั้นแรก"
+
+msgid ""
+"This factor affects the amount of material on the first layer for the "
+"extrusion path roles listed in this section.\n"
+"\n"
+"For the first layer, the actual flow ratio for each path role (does not "
+"affect brims and skirts) will be multiplied by this value."
+msgstr ""
+"ปัจจัยนี้ส่งผลต่อปริมาณวัสดุในชั้นแรกสำหรับบทบาทเส้นทางการอัดขึ้นรูปที่แสดงอยู่ในส่วนนี้\n"
+"\n"
+"สำหรับชั้นแรก อัตราการไหลตามจริงสำหรับแต่ละบทบาทของเส้นทาง "
+"(ไม่ส่งผลต่อขอบยึดชิ้นงานและเส้นล้อมชิ้นงาน) จะถูกคูณด้วยค่านี้"
+
+msgid "Outer wall flow ratio"
+msgstr "อัตราส่วนการไหลของผนังด้านนอก"
+
+msgid ""
+"This factor affects the amount of material for outer walls.\n"
+"\n"
+"The actual outer wall flow used is calculated by multiplying this value by "
+"the filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
+"ปัจจัยนี้ส่งผลต่อปริมาณวัสดุสำหรับผนังด้านนอก\n"
+"\n"
+"การไหลของผนังด้านนอกจริงที่ใช้คำนวณโดยการคูณค่านี้ด้วยอัตราส่วนการไหลของเส้นพลาสติก "
+"และหากตั้งค่าไว้ อัตราการไหลของวัตถุ"
+
+msgid "Inner wall flow ratio"
+msgstr "อัตราส่วนการไหลของผนังด้านใน"
+
+msgid ""
+"This factor affects the amount of material for inner walls.\n"
+"\n"
+"The actual inner wall flow used is calculated by multiplying this value by "
+"the filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
+"ปัจจัยนี้ส่งผลต่อปริมาณวัสดุสำหรับผนังด้านใน\n"
+"\n"
+"การไหลของผนังด้านในจริงที่ใช้คำนวณโดยการคูณค่านี้ด้วยอัตราส่วนการไหลของเส้นพลาสติก "
+"และหากตั้งค่าไว้ อัตราการไหลของวัตถุ"
+
+msgid "Overhang flow ratio"
+msgstr "อัตราส่วนการไหลของส่วนยื่น"
+
+msgid ""
+"This factor affects the amount of material for overhangs.\n"
+"\n"
+"The actual overhang flow used is calculated by multiplying this value by the "
+"filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
+"ปัจจัยนี้ส่งผลต่อปริมาณวัสดุสำหรับยื่น\n"
+"\n"
+"การไหลยื่นออกมาจริงที่ใช้คำนวณโดยการคูณค่านี้ด้วยอัตราส่วนการไหลของเส้นพลาสติก และหากตั้งค่าไว้ "
+"อัตราการไหลของวัตถุ"
+
+msgid "Sparse infill flow ratio"
+msgstr "อัตราส่วนการไหลไส้ในแบบโปร่ง"
+
+msgid ""
+"This factor affects the amount of material for sparse infill.\n"
+"\n"
+"The actual sparse infill flow used is calculated by multiplying this value "
+"by the filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
+"ปัจจัยนี้ส่งผลต่อปริมาณวัสดุสำหรับไส้ในแบบโปร่ง\n"
+"\n"
+"การไหล ไส้ใน แบบเบาบางจริงที่ใช้คำนวณโดยการคูณค่านี้ด้วยอัตราส่วนการไหลของเส้นพลาสติก "
+"และหากตั้งค่าไว้ อัตราการไหลของวัตถุ"
+
+msgid "Internal solid infill flow ratio"
+msgstr "อัตราส่วนการไหลไส้ในแบบทึบ"
+
+msgid ""
+"This factor affects the amount of material for internal solid infill.\n"
+"\n"
+"The actual internal solid infill flow used is calculated by multiplying this "
+"value by the filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
+"ปัจจัยนี้ส่งผลต่อปริมาณวัสดุสำหรับไส้ในของแข็งภายใน\n"
+"\n"
+"การไหล ไส้ใน ของแข็งภายในจริงที่ใช้คำนวณโดยการคูณค่านี้ด้วยอัตราส่วนการไหลของเส้นพลาสติก "
+"และหากตั้งค่าไว้ อัตราการไหลของวัตถุ"
+
+msgid "Gap fill flow ratio"
+msgstr "อัตราส่วนการไหลเติมช่องว่าง"
+
+msgid ""
+"This factor affects the amount of material for filling the gaps.\n"
+"\n"
+"The actual gap filling flow used is calculated by multiplying this value by "
+"the filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
+"ปัจจัยนี้ส่งผลต่อปริมาณวัสดุในการเติมช่องว่าง\n"
+"\n"
+"อัตราการเติมช่องว่างจริงที่ใช้คำนวณโดยการคูณค่านี้ด้วยอัตราส่วนการไหลของเส้นพลาสติก "
+"และหากตั้งค่าไว้ อัตราการไหลของวัตถุ"
+
+msgid "Support flow ratio"
+msgstr "อัตราส่วนการไหลส่วนรองรับ"
+
+msgid ""
+"This factor affects the amount of material for support.\n"
+"\n"
+"The actual support flow used is calculated by multiplying this value by the "
+"filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
+"ปัจจัยนี้ส่งผลต่อปริมาณวัสดุที่รองรับ\n"
+"\n"
+"กระแสรองรับจริงที่ใช้คำนวณโดยการคูณค่านี้ด้วยอัตราส่วนการไหลของเส้นพลาสติก และหากตั้งค่าไว้ "
+"อัตราการไหลของวัตถุ"
+
+msgid "Support interface flow ratio"
+msgstr "อัตราส่วนการไหลผิวสัมผัสส่วนรองรับ"
+
+msgid ""
+"This factor affects the amount of material for the support interface.\n"
+"\n"
+"The actual support interface flow used is calculated by multiplying this "
+"value by the filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
+"ปัจจัยนี้ส่งผลต่อปริมาณวัสดุสำหรับอินเทอร์เฟซส่วนรองรับ\n"
+"\n"
+"โฟลว์อินเทอร์เฟซส่วนรองรับจริงที่ใช้คำนวณโดยการคูณค่านี้ด้วยอัตราส่วนการไหลของเส้นพลาสติก "
+"และหากตั้งค่าไว้ อัตราการไหลของวัตถุ"
+
+msgid "Precise wall"
+msgstr "ผนังที่แม่นยำ"
+
+msgid ""
+"Improve shell precision by adjusting outer wall spacing. This also improves "
+"layer consistency. NOTE: This option will be ignored for outer-inner or "
+"inner-outer-inner wall sequences."
+msgstr ""
+"ปรับปรุงความแม่นยำของเปลือกโดยการปรับระยะห่างผนังด้านนอก "
+"นอกจากนี้ยังช่วยปรับปรุงความสม่ำเสมอของชั้นอีกด้วย หมายเหตุ: "
+"ตัวเลือกนี้จะถูกละเว้นสำหรับลำดับผนังด้านนอก-ด้านใน หรือด้านใน-ด้านนอก-ด้านใน"
+
+msgid "Only one wall on top surfaces"
+msgstr "มีเพียงผนังเดียวบนพื้นผิวด้านบน"
+
+msgid ""
+"Use only one wall on flat top surfaces, to give more space to the top infill "
+"pattern."
+msgstr "ใช้ผนังเพียงด้านเดียวบนพื้นผิวเรียบเพื่อเพิ่มพื้นที่ให้กับรูปแบบไส้ในด้านบน"
+
+msgid "One wall threshold"
+msgstr "เกณฑ์ผนังด้านหนึ่ง"
+
+#, no-c-format, no-boost-format
+msgid ""
+"If a top surface has to be printed and it's partially covered by another "
+"layer, it won't be considered at a top layer where its width is below this "
+"value. This can be useful to not let the 'one perimeter on top' trigger on "
+"surface that should be covered only by perimeters. This value can be a mm or "
+"a % of the perimeter extrusion width.\n"
+"Warning: If enabled, artifacts can be created if you have some thin features "
+"on the next layer, like letters. Set this setting to 0 to remove these "
+"artifacts."
+msgstr ""
+"หากต้องพิมพ์พื้นผิวด้านบนและปิดบางส่วนด้วยชั้นอื่น "
+"จะไม่ได้รับการพิจารณาที่ชั้นบนสุดซึ่งมีความกว้างต่ำกว่าค่านี้ วิธีนี้จะเป็นประโยชน์ในการไม่ปล่อยให้ "
+"'เส้นรอบวงด้านบนหนึ่งเส้น' ทริกเกอร์บนพื้นผิวที่ควรครอบคลุมเฉพาะเส้นรอบวงเท่านั้น "
+"ค่านี้อาจเป็นหน่วย มม. หรือ % ของความกว้างของการอัดขึ้นรูปเส้นรอบวง\n"
+"คำเตือน: หากเปิดใช้งาน สามารถสร้างสิ่งประดิษฐ์ได้หากคุณมีคุณสมบัติบางๆ ในเลเยอร์ถัดไป เช่น "
+"ตัวอักษร ตั้งค่านี้เป็น 0 เพื่อลบสิ่งประดิษฐ์เหล่านี้"
+
+msgid "Only one wall on first layer"
+msgstr "มีเพียงผนังเดียวในชั้นแรก"
+
+msgid ""
+"Use only one wall on first layer, to give more space to the bottom infill "
+"pattern."
+msgstr "ใช้ผนังเพียงชั้นเดียวในชั้นแรก เพื่อให้มีพื้นที่ด้านล่างมากขึ้น"
+
+msgid "Extra perimeters on overhangs"
+msgstr "เส้นรอบวงเพิ่มไส้ในบนส่วนยื่น"
+
+msgid ""
+"Create additional perimeter paths over steep overhangs and areas where "
+"bridges cannot be anchored."
+msgstr "สร้างเส้นทางรอบขอบเพิ่มไส้ในเหนือส่วนยื่นสูงชันและพื้นที่ที่ไม่สามารถทอดสมอสะพานได้"
+
+msgid "Reverse on even"
+msgstr "กลับด้านหน้าเลขคู่"
+
+msgid "Overhang reversal"
+msgstr "การกลับด้านส่วนยื่นออกมา"
+
+msgid ""
+"Extrude perimeters that have a part over an overhang in the reverse "
+"direction on even layers. This alternating pattern can drastically improve "
+"steep overhangs.\n"
+"\n"
+"This setting can also help reduce part warping due to the reduction of "
+"stresses in the part walls."
+msgstr ""
+"รีดเส้นรอบวงที่มีส่วนยื่นออกมาในทิศทางย้อนกลับบนชั้นคู่ "
+"รูปแบบการสลับนี้สามารถปรับปรุงระยะยื่นที่สูงชันได้อย่างมาก\n"
+"\n"
+"การตั้งค่านี้ยังช่วยลดการบิดงอของชิ้นส่วนเนื่องจากการลดความเค้นในผนังชิ้นส่วนอีกด้วย"
+
+msgid "Reverse only internal perimeters"
+msgstr "กลับด้านเฉพาะขอบเขตภายในเท่านั้น"
+
+msgid ""
+"Apply the reverse perimeters logic only on internal perimeters.\n"
+"\n"
+"This setting greatly reduces part stresses as they are now distributed in "
+"alternating directions. This should reduce part warping while also "
+"maintaining external wall quality. This feature can be very useful for warp "
+"prone material, like ABS/ASA, and also for elastic filaments, like TPU and "
+"Silk PLA. It can also help reduce warping on floating regions over "
+"supports.\n"
+"\n"
+"For this setting to be the most effective, it is recommended to set the "
+"Reverse Threshold to 0 so that all internal walls print in alternating "
+"directions on even layers irrespective of their overhang degree."
+msgstr ""
+"ใช้ตรรกะเส้นรอบวงย้อนกลับเฉพาะกับเส้นรอบวงภายในเท่านั้น\n"
+"\n"
+"การตั้งค่านี้ช่วยลดความเค้นของชิ้นส่วนได้อย่างมาก เนื่องจากมีการกระจายไปในทิศทางสลับกัน "
+"สิ่งนี้จะลดการบิดเบี้ยวของชิ้นส่วนในขณะที่ยังคงรักษาคุณภาพของผนังภายนอกไว้ด้วย "
+"คุณลักษณะนี้มีประโยชน์มากสำหรับวัสดุที่บิดงอง่าย เช่น ABS/ASA และสำหรับเส้นพลาสติกยืดหยุ่น เช่น "
+"TPU และ Silk PLA "
+"นอกจากนี้ยังสามารถช่วยลดการบิดเบี้ยวในบริเวณที่ลอยอยู่เหนือส่วนรองรับได้อีกด้วย\n"
+"\n"
+"เพื่อให้การตั้งค่านี้มีประสิทธิภาพสูงสุด ขอแนะนำให้ตั้งค่า Reverse Threshold เป็น 0 "
+"เพื่อให้ผนังภายในทั้งหมดพิมพ์ในทิศทางสลับกันบนเลเยอร์คู่ โดยไม่คำนึงถึงระดับส่วนยื่น"
+
+msgid "Bridge counterbore holes"
+msgstr "สะพานหลุมเจาะ"
+
+msgid ""
+"This option creates bridges for counterbore holes, allowing them to be "
+"printed without support. Available modes include:\n"
+"1. None: No bridge is created\n"
+"2. Partially Bridged: Only a part of the unsupported area will be bridged\n"
+"3. Sacrificial Layer: A full sacrificial bridge layer is created"
+msgstr ""
+"ตัวเลือกนี้จะสร้างสะพานเชื่อมสำหรับรูเจาะเคาน์เตอร์ ทำให้สามารถพิมพ์ได้โดยไม่ต้องมีส่วนรองรับ "
+"โหมดที่ใช้ได้ ได้แก่ :\n"
+"1. ไม่มี: ไม่มีการสร้างสะพาน\n"
+"2. เชื่อมโยงบางส่วน: เฉพาะส่วนหนึ่งของพื้นที่ที่ไม่ได้รับส่วนรองรับเท่านั้นที่จะถูกเชื่อมโยง\n"
+"3. Sacrificial Layer: ชั้นสะพานบูชายัญเต็มรูปแบบจะถูกสร้างขึ้น"
+
+msgid "Partially bridged"
+msgstr "มีสะพานเชื่อมบางส่วน"
+
+msgid "Sacrificial layer"
+msgstr "ชั้นบูชายัญ"
+
+msgid "Reverse threshold"
+msgstr "เกณฑ์การกลับด้าน"
+
+msgid "Overhang reversal threshold"
+msgstr "เกณฑ์การกลับรายการส่วนเกิน"
+
+#, no-c-format, no-boost-format
+msgid ""
+"Number of mm the overhang need to be for the reversal to be considered "
+"useful. Can be a % of the perimeter width.\n"
+"Value 0 enables reversal on every even layers regardless.\n"
+"When Detect overhang wall is not enabled, this option is ignored and "
+"reversal happens on every even layers regardless."
+msgstr ""
+"ระยะยื่นต้องมีจำนวน มม. เพื่อให้การกลับรายการถือว่ามีประโยชน์ อาจเป็น % "
+"ของความกว้างเส้นรอบวงได้\n"
+"ค่า 0 เปิดใช้งานการกลับรายการในทุกเลเยอร์คู่โดยไม่คำนึงถึง\n"
+"เมื่อไม่ได้เปิดใช้งาน Detect ส่วนยื่น wall "
+"ตัวเลือกนี้จะถูกละเว้นและการกลับรายการจะเกิดขึ้นในทุกเลเยอร์คู่โดยไม่คำนึงถึง"
+
+msgid "Slow down for overhang"
+msgstr "ลดความเร็วสำหรับส่วนยื่น"
+
+msgid "Enable this option to slow printing down for different overhang degree."
+msgstr "เปิดใช้งานตัวเลือกนี้เพื่อทำให้การพิมพ์ช้าลงสำหรับระดับระยะยื่นที่แตกต่างกัน"
+
+msgid "Slow down for curled perimeters"
+msgstr "ชะลอความเร็วลงสำหรับขอบเขตที่โค้งงอ"
+
+#, no-c-format, no-boost-format
+msgid ""
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
+"\n"
+"It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
+msgstr ""
+
+msgid "mm/s or %"
+msgstr "มิลลิเมตร/วินาที หรือ %"
+
+msgid ""
+"Speed of the externally visible bridge extrusions.\n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
+"ความเร็วของการอัดขึ้นรูปสะพานที่มองเห็นได้จากภายนอก\n"
+"\n"
+"นอกจากนี้ หากปิดใช้งานการชะลอความเร็วสำหรับขอบม้วนงอหรือเปิดใช้งานโหมดระยะยื่นแบบคลาสสิก "
+"มันจะเป็นความเร็วในการพิมพ์ของผนังส่วนยื่นที่รองรับน้อยกว่า 13% "
+"ไม่ว่าจะเป็นส่วนหนึ่งของสะพานหรือส่วนยื่นก็ตาม"
+
+msgid "Internal"
+msgstr "ภายใน"
+
+msgid ""
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
+msgstr ""
+"ความเร็วของสะพานภายใน หากค่าแสดงเป็นเปอร์เซ็นต์ ค่าดังกล่าวจะถูกคำนวณตาม bridge_speed "
+"ค่าเริ่มต้นคือ 150%"
+
+msgid "Brim width"
+msgstr "ความกว้าง ขอบยึดชิ้นงาน"
+
+msgid "Distance from model to the outermost brim line."
+msgstr "ระยะห่างจากแบบจำลองถึงเส้นขอบยึดชิ้นงานด้านนอกสุด"
+
+msgid "Brim type"
+msgstr "ชนิด ขอบยึดชิ้นงาน"
+
+msgid ""
+"This controls the generation of the brim at outer and/or inner side of "
+"models. Auto means the brim width is analyzed and calculated automatically."
+msgstr ""
+"วิธีนี้จะควบคุมการสร้างขอบยึดชิ้นงานที่ด้านนอกและ/หรือด้านในของรุ่น "
+"อัตโนมัติหมายถึงความกว้างของขอบยึดชิ้นงานได้รับการวิเคราะห์และคำนวณโดยอัตโนมัติ"
+
+msgid "Brim-object gap"
+msgstr "ช่องว่าง ขอบยึดชิ้นงาน กับชิ้นงาน"
+
+msgid ""
+"A gap between innermost brim line and object can make brim be removed more "
+"easily."
+msgstr "ช่องว่างระหว่างเส้นขอบยึดชิ้นงานด้านในสุดกับวัตถุสามารถทำให้ขอบยึดชิ้นงานหลุดออกได้ง่ายขึ้น"
+
+msgid "Brim flow ratio"
+msgstr "อัตราส่วนการไหล ขอบยึดชิ้นงาน"
+
+msgid ""
+"This factor affects the amount of material for brims.\n"
+"\n"
+"The actual brim flow used is calculated by multiplying this value by the "
+"filament flow ratio, and if set, the object's flow ratio.\n"
+"\n"
+"Note: The resulting value will not be affected by the first-layer flow ratio."
+msgstr ""
+"ปัจจัยนี้ส่งผลต่อปริมาณวัสดุสำหรับขอบยึดชิ้นงาน\n"
+"\n"
+"การไหลของขอบยึดชิ้นงานที่แท้จริงที่ใช้คำนวณโดยการคูณค่านี้ด้วยอัตราส่วนการไหลของเส้นพลาสติก "
+"และหากตั้งค่าไว้ อัตราการไหลของวัตถุ\n"
+"\n"
+"หมายเหตุ: ค่าผลลัพธ์จะไม่ได้รับผลกระทบจากอัตราส่วนการไหลของชั้นแรก"
+
+msgid "Brim follows compensated outline"
+msgstr "ขอบยึดชิ้นงาน ปฏิบัติตามโครงร่างที่ได้รับการชดเชย"
+
+msgid ""
+"When enabled, the brim is aligned with the first-layer perimeter geometry "
+"after Elephant Foot Compensation is applied.\n"
+"This option is intended for cases where Elephant Foot Compensation "
+"significantly alters the first-layer footprint.\n"
+"\n"
+"If your current setup already works well, enabling it may be unnecessary and "
+"can cause the brim to fuse with upper layers."
+msgstr ""
+"เมื่อเปิดใช้งาน "
+"ขอบยึดชิ้นงานจะจัดแนวกับรูปทรงเส้นรอบวงชั้นแรกหลังจากใช้การชดเชยอาการฐานบาน\n"
+"ตัวเลือกนี้มีไว้สำหรับกรณีที่การชดเชยอาการฐานบานเปลี่ยนแปลงรอยเท้าชั้นแรกอย่างมีนัยสำคัญ\n"
+"\n"
+"หากการตั้งค่าปัจจุบันของคุณทำงานได้ดีอยู่แล้ว "
+"การเปิดใช้งานอาจไม่จำเป็นและอาจทำให้ขอบยึดชิ้นงานหลอมรวมกับชั้นบนได้"
+
+msgid "Combine brims"
+msgstr "รวมขอบยึดชิ้นงาน"
+
+msgid ""
+"Combine multiple brims into one when they are close to each other. This can "
+"improve brim adhesion."
+msgstr ""
+"รวมขอบยึดชิ้นงานหลายอันเป็นอันเดียวเมื่ออยู่ใกล้กัน "
+"วิธีนี้สามารถปรับปรุงการยึดเกาะของขอบยึดชิ้นงานได้"
+
+msgid "Brim ears"
+msgstr "หู ขอบยึดชิ้นงาน"
+
+msgid "Only draw brim over the sharp edges of the model."
+msgstr "วาดขอบยึดชิ้นงานไว้เหนือขอบคมของนางแบบเท่านั้น"
+
+msgid "Brim ear max angle"
+msgstr "มุมสูงสุดของหูขอบยึดชิ้นงานนก"
+
+msgid ""
+"Maximum angle to let a brim ear appear.\n"
+"If set to 0, no brim will be created.\n"
+"If set to ~180, brim will be created on everything but straight sections."
+msgstr ""
+"มุมสูงสุดเพื่อให้หูมีขอบยึดชิ้นงานปรากฏ\n"
+"หากตั้งค่าเป็น 0 จะไม่มีการสร้างขอบยึดชิ้นงาน\n"
+"หากตั้งค่าเป็น ~180 ขอบยึดชิ้นงานจะถูกสร้างขึ้นบนทุกสิ่ง ยกเว้นส่วนที่เป็นเส้นตรง"
+
+msgid "Brim ear detection radius"
+msgstr "รัศมีการตรวจจับขอบหู"
+
+msgid ""
+"The geometry will be decimated before detecting sharp angles. This parameter "
+"indicates the minimum length of the deviation for the decimation.\n"
+"0 to deactivate."
+msgstr ""
+"รูปทรงจะถูกทำลายก่อนที่จะตรวจจับมุมแหลม "
+"พารามิเตอร์นี้ระบุความยาวขั้นต่ำของการเบี่ยงเบนสำหรับการทำลาย\n"
+"0 เพื่อปิดการใช้งาน"
+
+msgid "Select printers"
+msgstr "เลือกเครื่องพิมพ์"
+
+msgid "upward compatible machine"
+msgstr "เครื่องที่รองรับขึ้นไป"
+
+msgid "Condition"
+msgstr "เงื่อนไข"
+
+msgid ""
+"A boolean expression using the configuration values of an active printer "
+"profile. If this expression evaluates to true, this profile is considered "
+"compatible with the active printer profile."
+msgstr ""
+"นิพจน์บูลีนที่ใช้ค่าการกำหนดค่าของโปรไฟล์เครื่องพิมพ์ที่ใช้งานอยู่ หากนิพจน์นี้ประเมินว่าเป็นจริง "
+"โปรไฟล์นี้จะถือว่าเข้ากันได้กับโปรไฟล์เครื่องพิมพ์ที่ใช้งานอยู่"
+
+msgid "Select profiles"
+msgstr "โปรไฟล์เลือก"
+
+msgid ""
+"A boolean expression using the configuration values of an active print "
+"profile. If this expression evaluates to true, this profile is considered "
+"compatible with the active print profile."
+msgstr ""
+"นิพจน์บูลีนที่ใช้ค่าการกำหนดค่าของโปรไฟล์การพิมพ์ที่ใช้งานอยู่ หากนิพจน์นี้ประเมินว่าเป็นจริง "
+"โปรไฟล์นี้จะถือว่าเข้ากันได้กับโปรไฟล์การพิมพ์ที่ใช้งานอยู่"
+
+msgid "Print sequence, layer by layer or object by object."
+msgstr "ลำดับการพิมพ์ ทีละชั้น หรือวัตถุต่อวัตถุ"
+
+msgid "By layer"
+msgstr "ตามชั้น"
+
+msgid "By object"
+msgstr "ตามวัตถุ"
+
+msgid "Intra-layer order"
+msgstr "คำสั่งภายในชั้น"
+
+msgid "Print order within a single layer."
+msgstr "สั่งพิมพ์ภายในชั้นเดียว"
+
+msgid "As object list"
+msgstr "เป็นรายการวัตถุ"
+
+msgid "Slow printing down for better layer cooling"
+msgstr "ชะลอการพิมพ์ลงเพื่อการระบายความร้อนที่ดีขึ้น"
+
+msgid ""
+"Enable this option to slow printing speed down to make the final layer time "
+"not shorter than the layer time threshold in \"Max fan speed threshold\", so "
+"that layer can be cooled for longer time. This can improve the cooling "
+"quality for needle and small details."
+msgstr ""
+"เปิดใช้งานตัวเลือกนี้เพื่อลดความเร็วในการพิมพ์ลงเพื่อทำให้เวลาเลเยอร์สุดท้ายไม่สั้นกว่าเกณฑ์เวลาของเลเยอร์ใน "
+"\"ขีดจำกัดความเร็วพัดลมสูงสุด\" เพื่อให้เลเยอร์นั้นเย็นลงได้นานขึ้น "
+"สิ่งนี้สามารถปรับปรุงคุณภาพการระบายความร้อนสำหรับเข็มและรายละเอียดเล็กๆ ได้"
+
+msgid "Normal printing"
+msgstr "การพิมพ์ปกติ"
+
+msgid ""
+"The default acceleration of both normal printing and travel except initial "
+"layer."
+msgstr "การเร่งความเร็วเริ่มต้นของทั้งการพิมพ์และการเคลื่อนที่ตามปกติ ยกเว้นเลเยอร์เริ่มต้น"
+
+msgid "Default filament profile"
+msgstr "โปรไฟล์เส้นพลาสติกเริ่มต้น"
+
+msgid "Default filament profile when switching to this machine profile."
+msgstr "โปรไฟล์เส้นพลาสติกเริ่มต้นเมื่อสลับไปใช้โปรไฟล์เครื่องนี้"
+
+msgid "Default process profile"
+msgstr "โปรไฟล์กระบวนการเริ่มต้น"
+
+msgid "Default process profile when switching to this machine profile."
+msgstr "โปรไฟล์กระบวนการเริ่มต้นเมื่อสลับไปใช้โปรไฟล์เครื่องนี้"
+
+msgid "Activate air filtration"
+msgstr "เปิดใช้งานการกรองอากาศ"
+
+msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)"
+msgstr "เปิดใช้งานเพื่อการกรองอากาศที่ดีขึ้น คำสั่งรหัส G: M106 P3 S(0-255)"
+
+msgid ""
+"Enable this to override the fan speed set in custom G-code during print."
+msgstr "เปิดใช้งานสิ่งนี้เพื่อแทนที่ความเร็วพัดลมที่ตั้งไว้ใน G-code แบบกำหนดเองระหว่างการพิมพ์"
+
+msgid "On completion"
+msgstr "เมื่อเสร็จสิ้น"
+
+msgid ""
+"Enable this to override the fan speed set in custom G-code after print "
+"completion."
+msgstr "เปิดใช้งานสิ่งนี้เพื่อแทนที่ความเร็วพัดลมที่ตั้งไว้ใน G-code แบบกำหนดเองหลังจากพิมพ์เสร็จสิ้น"
+
+msgid ""
+"Speed of exhaust fan during printing. This speed will override the speed in "
+"filament custom G-code."
+msgstr ""
+"ความเร็วพัดลมดูดอากาศระหว่างการพิมพ์ ความเร็วนี้จะแทนที่ความเร็วใน G-code "
+"แบบกำหนดเองของฟิลาเมนต์"
+
+msgid "Speed of exhaust fan after printing completes."
+msgstr "ความเร็วของพัดลมดูดอากาศหลังการพิมพ์เสร็จสิ้น"
+
+msgid "No cooling for the first"
+msgstr "ไม่มีการระบายความร้อนในช่วงแรก"
+
+msgid ""
+"Turn off all cooling fans for the first few layers. This can be used to "
+"improve build plate adhesion."
+msgstr ""
+"ปิดพัดลมระบายความร้อนทั้งหมดในช่วงสองสามชั้นแรก สามารถใช้เพื่อปรับปรุงการยึดเกาะของแผ่นรองพื้น"
+
+msgid "Don't support bridges"
+msgstr "ไม่ส่วนรองรับสะพาน"
+
+msgid ""
+"Don't support the whole bridge area which make support very large. Bridges "
+"can usually be printed directly without support if not very long."
+msgstr ""
+"ไม่รองรับพื้นที่สะพานทั้งหมดซึ่งทำให้รองรับได้มาก "
+"โดยปกติแล้วบริดจ์สามารถพิมพ์ได้โดยตรงโดยไม่ต้องรองรับหากไม่นานมาก"
+
+msgid "Thick external bridges"
+msgstr "สะพานภายนอกหนา"
+
+msgid ""
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
+
+msgid "Thick internal bridges"
+msgstr "สะพานภายในหนา"
+
+msgid ""
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
+
+msgid "Extra bridge layers (beta)"
+msgstr "เลเยอร์บริดจ์พิเศษ (เบต้า)"
+
+msgid ""
+"This option enables the generation of an extra bridge layer over internal "
+"and/or external bridges.\n"
+"\n"
+"Extra bridge layers help improve bridge appearance and reliability, as the "
+"solid infill is better supported. This is especially useful in fast "
+"printers, where the bridge and solid infill speeds vary greatly. The extra "
+"bridge layer results in reduced pillowing on top surfaces, as well as "
+"reduced separation of the external bridge layer from its surrounding "
+"perimeters.\n"
+"\n"
+"It is generally recommended to set this to at least 'External bridge only', "
+"unless specific issues with the sliced model are found.\n"
+"\n"
+"Options:\n"
+"1. Disabled - does not generate second bridge layers. This is the default "
+"and is set for compatibility purposes\n"
+"2. External bridge only - generates second bridge layers for external-facing "
+"bridges only. Please note that small bridges that are shorter or narrower "
+"than the set number of perimeters will be skipped as they would not benefit "
+"from a second bridge layer. If generated, the second bridge layer will be "
+"extruded parallel to the first bridge layer to reinforce the bridge "
+"strength\n"
+"3. Internal bridge only - generates second bridge layers for internal "
+"bridges over sparse infill only. Please note that the internal bridges count "
+"towards the top shell layer count of your model. The second internal bridge "
+"layer will be extruded as close to perpendicular to the first as possible. "
+"If multiple regions in the same island, with varying bridge angles are "
+"present, the last region of that island will be selected as the angle "
+"reference\n"
+"4. Apply to all - generates second bridge layers for both internal and "
+"external-facing bridges\n"
+msgstr ""
+"ตัวเลือกนี้ช่วยให้สามารถสร้างเลเยอร์บริดจ์เพิ่มไส้ในบนบริดจ์ภายในและภายนอกได้\n"
+"\n"
+"ชั้นสะพานเพิ่มไส้ในช่วยปรับปรุงรูปลักษณ์และความน่าเชื่อถือของสะพาน "
+"เนื่องจากการรองรับแบบทึบนั้นดีกว่า สิ่งนี้มีประโยชน์อย่างยิ่งในเครื่องพิมพ์ที่รวดเร็ว "
+"ซึ่งความเร็วของบริดจ์และโซลิดอินฟิลจะแตกต่างกันมาก "
+"ชั้นสะพานที่เพิ่มขึ้นส่งผลให้การหมอนอิงบนพื้นผิวด้านบนลดลง "
+"เช่นเดียวกับการลดการแยกชั้นสะพานภายนอกออกจากปริมณฑลโดยรอบ\n"
+"\n"
+"โดยทั่วไปขอแนะนำให้ตั้งค่านี้เป็น 'บริดจ์ภายนอกเท่านั้น' เป็นอย่างน้อย "
+"เว้นแต่จะพบปัญหาเฉพาะกับโมเดลที่แบ่งส่วน\n"
+"\n"
+"ตัวเลือก:\n"
+"1. ปิดใช้งาน - ไม่สร้างเลเยอร์บริดจ์ที่สอง นี่เป็นค่าเริ่มต้นและตั้งค่าไว้เพื่อความเข้ากันได้\n"
+"2. สะพานภายนอกเท่านั้น - สร้างชั้นสะพานที่สองสำหรับสะพานที่หันหน้าไปทางภายนอกเท่านั้น "
+"โปรดทราบว่าสะพานขนาดเล็กที่สั้นกว่าหรือแคบกว่าจำนวนเส้นรอบวงที่ตั้งไว้จะถูกข้ามไป "
+"เนื่องจากจะไม่ได้รับประโยชน์จากสะพานชั้นที่สอง หากสร้างขึ้น "
+"ชั้นสะพานที่สองจะถูกอัดรีดขนานกับชั้นสะพานแรกเพื่อเสริมความแข็งแรงของสะพาน\n"
+"3. บริดจ์ภายในเท่านั้น - สร้างชั้นบริดจ์ที่สองสำหรับบริดจ์ภายในเหนือ ไส้ใน "
+"แบบกระจัดกระจายเท่านั้น "
+"โปรดทราบว่าบริดจ์ภายในนับรวมกับจำนวนชั้นเปลือกชั้นบนสุดของโมเดลของคุณ "
+"ชั้นสะพานภายในที่สองจะถูกอัดให้ใกล้เคียงกับตั้งฉากกับชั้นแรกมากที่สุด "
+"หากมีหลายภูมิภาคบนเกาะเดียวกันซึ่งมีมุมสะพานที่แตกต่างกัน "
+"พื้นที่สุดท้ายของเกาะนั้นจะถูกเลือกเป็นการอ้างอิงมุม\n"
+"4. ใช้กับทั้งหมด - สร้างชั้นสะพานที่สองสำหรับสะพานที่หันหน้าไปทางภายในและภายนอก\n"
+
+msgid "External bridge only"
+msgstr "สะพานภายนอกเท่านั้น"
+
+msgid "Internal bridge only"
+msgstr "สะพานภายในเท่านั้น"
+
+msgid "Apply to all"
+msgstr "นำไปใช้กับทั้งหมด"
+
+msgid "Filter out small internal bridges"
+msgstr "กรองบริดจ์ภายในขนาดเล็กออก"
+
+msgid ""
+"This option can help reduce pillowing on top surfaces in heavily slanted or "
+"curved models.\n"
+"By default, small internal bridges are filtered out and the internal solid "
+"infill is printed directly over the sparse infill. This works well in most "
+"cases, speeding up printing without too much compromise on top surface "
+"quality.\n"
+"However, in heavily slanted or curved models, especially where too low a "
+"sparse infill density is used, this may result in curling of the unsupported "
+"solid infill, causing pillowing.\n"
+"Enabling limited filtering or no filtering will print internal bridge layer "
+"over slightly unsupported internal solid infill. The options below control "
+"the sensitivity of the filtering, i.e. they control where internal bridges "
+"are created:\n"
+"1. Filter - enables this option. This is the default behavior and works well "
+"in most cases\n"
+"2. Limited filtering - creates internal bridges on heavily slanted surfaces "
+"while avoiding unnecessary bridges. This works well for most difficult "
+"models\n"
+"3. No filtering - creates internal bridges on every potential internal "
+"overhang. This option is useful for heavily slanted top surface models; "
+"however, in most cases, it creates too many unnecessary bridges."
+msgstr ""
+"ตัวเลือกนี้สามารถช่วยลดการหมอนอิงบนพื้นผิวด้านบนในรุ่นที่เอียงหรือโค้งมาก\n"
+"ตามค่าเริ่มต้น บริดจ์ภายในขนาดเล็กจะถูกกรองออก และ ไส้ใน แบบทึบภายในจะถูกพิมพ์โดยตรงบน "
+"ไส้ใน แบบกระจัดกระจาย วิธีนี้ใช้ได้ผลดีในกรณีส่วนใหญ่ "
+"โดยจะช่วยเร่งการพิมพ์โดยไม่กระทบต่อคุณภาพพื้นผิวด้านบนมากเกินไป\n"
+"อย่างไรก็ตาม ในรุ่นที่เอียงหรือโค้งมาก "
+"โดยเฉพาะอย่างยิ่งเมื่อใช้ความหนาแน่นของไส้ในที่เบาบางต่ำเกินไป "
+"อาจส่งผลให้ไส้ในที่เป็นของแข็งที่ไม่ได้รับส่วนรองรับโค้งงอ ทำให้เกิดการหมอนหนุน\n"
+"การเปิดใช้งานการกรองแบบจำกัดหรือไม่มีการกรองจะพิมพ์เลเยอร์บริดจ์ภายในทับไส้ในโซลิดภายในที่ไม่รองรับเล็กน้อย "
+"ตัวเลือกด้านล่างควบคุมความไวของการกรอง กล่าวคือ ควบคุมตำแหน่งที่สร้างบริดจ์ภายใน:\n"
+"1. ตัวกรอง - เปิดใช้งานตัวเลือกนี้ นี่เป็นพฤติกรรมเริ่มต้นและทำงานได้ดีในกรณีส่วนใหญ่\n"
+"2. การกรองแบบจำกัด - สร้างสะพานภายในบนพื้นผิวที่ลาดเอียงอย่างมาก "
+"ในขณะที่หลีกเลี่ยงสะพานที่ไม่จำเป็น วิธีนี้ใช้ได้ผลดีกับโมเดลที่ยากที่สุด\n"
+"3. ไม่มีการกรอง - สร้างสะพานภายในบนทุกส่วนยื่นภายในที่อาจเกิดขึ้น "
+"ตัวเลือกนี้มีประโยชน์สำหรับโมเดลพื้นผิวด้านบนที่เอียงมาก อย่างไรก็ตาม ในกรณีส่วนใหญ่ "
+"มันจะสร้างบริดจ์ที่ไม่จำเป็นมากเกินไป"
+
+msgid "Limited filtering"
+msgstr "การกรองที่จำกัด"
+
+msgid "No filtering"
+msgstr "ไม่มีการกรอง"
+
+msgid "Max bridge length"
+msgstr "ความยาวสะพานสูงสุด"
+
+msgid ""
+"Max length of bridges that don't need support. Set it to 0 if you want all "
+"bridges to be supported, and set it to a very large value if you don't want "
+"any bridges to be supported."
+msgstr ""
+"ความยาวสูงสุดของสะพานที่ไม่ต้องการการรองรับ ตั้งค่าเป็น 0 "
+"หากคุณต้องการให้บริดจ์ทั้งหมดได้รับส่วนรองรับ และตั้งค่าเป็นค่าที่สูงมากหากคุณไม่ต้องการให้บริดจ์ใดๆ "
+"ได้รับการรองรับ"
+
+msgid "End G-code"
+msgstr "จบ G-code"
+
+msgid "End G-code when finishing the entire print."
+msgstr "สิ้นสุด G-code เมื่อพิมพ์เสร็จทั้งหมด"
+
+msgid "Between Object G-code"
+msgstr "ระหว่างวัตถุ G-code"
+
+msgid ""
+"Insert G-code between objects. This parameter will only come into effect "
+"when you print your models object by object."
+msgstr "แทรกรหัส G ระหว่างวัตถุ พารามิเตอร์นี้จะมีผลเมื่อคุณพิมพ์โมเดลของคุณทีละวัตถุเท่านั้น"
+
+msgid "End G-code when finishing the printing of this filament."
+msgstr "สิ้นสุด G-code เมื่อเสร็จสิ้นการพิมพ์เส้นพลาสติกนี้"
+
+msgid "Ensure vertical shell thickness"
+msgstr "ตรวจสอบความหนาของเปลือกแนวตั้ง"
+
+msgid ""
+"Add solid infill near sloping surfaces to guarantee the vertical shell "
+"thickness (top+bottom solid layers)\n"
+"None: No solid infill will be added anywhere. Caution: Use this option "
+"carefully if your model has sloped surfaces\n"
+"Critical Only: Avoid adding solid infill for walls\n"
+"Moderate: Add solid infill for heavily sloping surfaces only\n"
+"All: Add solid infill for all suitable sloping surfaces\n"
+"Default value is All."
+msgstr ""
+"เพิ่มไส้ในแบบทึบใกล้กับพื้นผิวที่ลาดเอียงเพื่อรับประกันความหนาของเปลือกในแนวตั้ง (ชั้นแข็งบน + "
+"ล่าง)\n"
+"ไม่มี: จะไม่มีการเพิ่ม ไส้ใน แบบทึบที่ใดก็ได้ ข้อควรระวัง: "
+"ใช้ตัวเลือกนี้อย่างระมัดระวังหากโมเดลของคุณมีพื้นผิวลาดเอียง\n"
+"ที่สำคัญเท่านั้น: หลีกเลี่ยงไส้ในวัสดุแข็งให้กับผนัง\n"
+"ปานกลาง: ไส้ในวัสดุแข็งสำหรับพื้นผิวที่มีความลาดเอียงมากเท่านั้น\n"
+"ทั้งหมด: ไส้ในวัสดุแข็งสำหรับพื้นผิวลาดเอียงที่เหมาะสมทั้งหมด\n"
+"ค่าเริ่มต้นคือทั้งหมด"
+
+msgid "Critical Only"
+msgstr "สำคัญเท่านั้น"
+
+msgid "Moderate"
+msgstr "ปานกลาง"
+
+msgid "Top surface pattern"
+msgstr "รูปแบบผิวด้านบน"
+
+msgid "Line pattern of top surface infill."
+msgstr "ลายเส้นของไส้ในพื้นผิวด้านบน"
+
+msgid "Monotonic"
+msgstr "โมโนโทนิค"
+
+msgid "Monotonic line"
+msgstr "เส้นโมโนโทนิค"
+
+msgid "Rectilinear"
+msgstr "เป็นเส้นตรง"
+
+msgid "Aligned Rectilinear"
+msgstr "จัดแนวเป็นเส้นตรง"
+
+msgid "Concentric"
+msgstr "ศูนย์กลาง"
+
+msgid "Hilbert Curve"
+msgstr "ฮิลเบิร์ต เคิร์ฟ"
+
+msgid "Archimedean Chords"
+msgstr "คอร์ดอาร์คิมีดีน"
+
+msgid "Octagram Spiral"
+msgstr "เกลียวแปดเหลี่ยม"
+
+msgid "Bottom surface pattern"
+msgstr "รูปแบบผิวด้านล่าง"
+
+msgid "Line pattern of bottom surface infill, not bridge infill."
+msgstr "รูปแบบเส้นของไส้ในพื้นผิวด้านล่าง ไม่ใช่ไส้ในแบบบริดจ์"
+
+msgid "Internal solid infill pattern"
+msgstr "รูปแบบไส้ในของแข็งภายใน"
+
+msgid ""
+"Line pattern of internal solid infill. if the detect narrow internal solid "
+"infill be enabled, the concentric pattern will be used for the small area."
+msgstr ""
+"ลวดลายเส้นทึบภายใน หากเปิดใช้งานการตรวจจับไส้ในของแข็งภายในที่แคบ "
+"รูปแบบศูนย์กลางจะถูกใช้สำหรับพื้นที่ขนาดเล็ก"
+
+msgid ""
+"Line width of outer wall. If expressed as a %, it will be computed over the "
+"nozzle diameter."
+msgstr "ความกว้างของเส้นของผนังด้านนอก หากแสดงเป็น % จะคำนวณตามเส้นผ่านศูนย์กลางของหัวฉีด"
+
+msgid ""
+"Speed of outer wall which is outermost and visible. It's used to be slower "
+"than inner wall speed to get better quality."
+msgstr ""
+"ความเร็วของผนังด้านนอกซึ่งอยู่ด้านนอกสุดและมองเห็นได้ "
+"เคยช้ากว่าความเร็วผนังด้านในเพื่อให้ได้คุณภาพที่ดีขึ้น"
+
+msgid "Small perimeters"
+msgstr "เส้นรอบวงเล็ก"
+
+msgid ""
+"This separate setting will affect the speed of perimeters having radius <= "
+"small_perimeter_threshold (usually holes). If expressed as percentage (for "
+"example: 80%) it will be calculated on the outer wall speed setting above. "
+"Set to zero for auto."
+msgstr ""
+"การตั้งค่าแยกนี้จะส่งผลต่อความเร็วของเส้นรอบวงที่มีรัศมี <= small_perimeter_threshold "
+"(โดยปกติคือรู) หากแสดงเป็นเปอร์เซ็นต์ (เช่น 80%) "
+"ระบบจะคำนวณตามการตั้งค่าความเร็วผนังด้านนอกด้านบน ตั้งค่าเป็นศูนย์สำหรับรถยนต์"
+
+msgid "Small perimeters threshold"
+msgstr "เกณฑ์ขอบเขตขนาดเล็ก"
+
+msgid ""
+"This sets the threshold for small perimeter length. Default threshold is 0mm."
+msgstr "นี่เป็นการกำหนดเกณฑ์สำหรับความยาวเส้นรอบวงเล็กน้อย เกณฑ์เริ่มต้นคือ 0 มม."
+
+msgid "Walls printing order"
+msgstr "สั่งพิมพ์ผนัง"
+
+msgid ""
+"Print sequence of the internal (inner) and external (outer) walls.\n"
+"\n"
+"Use Inner/Outer for best overhangs. This is because the overhanging walls "
+"can adhere to a neighbouring perimeter while printing. However, this option "
+"results in slightly reduced surface quality as the external perimeter is "
+"deformed by being squashed to the internal perimeter.\n"
+"\n"
+"Use Inner/Outer/Inner for the best external surface finish and dimensional "
+"accuracy as the external wall is printed undisturbed from an internal "
+"perimeter. However, overhang performance will reduce as there is no internal "
+"perimeter to print the external wall against. This option requires a minimum "
+"of 3 walls to be effective as it prints the internal walls from the 3rd "
+"perimeter onwards first, then the external perimeter and, finally, the first "
+"internal perimeter. This option is recommended against the Outer/Inner "
+"option in most cases.\n"
+"\n"
+"Use Outer/Inner for the same external wall quality and dimensional accuracy "
+"benefits of Inner/Outer/Inner option. However, the Z seams will appear less "
+"consistent as the first extrusion of a new layer starts on a visible surface."
+msgstr ""
+"ลำดับการพิมพ์ของผนังภายใน (ด้านใน) และภายนอก (ด้านนอก)\n"
+"\n"
+"ใช้ด้านใน/ด้านนอกเพื่อให้ได้ระยะยื่นที่ดีที่สุด "
+"เนื่องจากผนังที่ยื่นออกมาสามารถยึดติดกับปริมณฑลใกล้เคียงขณะพิมพ์ได้ อย่างไรก็ตาม "
+"ตัวเลือกนี้ส่งผลให้คุณภาพพื้นผิวลดลงเล็กน้อย "
+"เนื่องจากเส้นรอบวงภายนอกเสียรูปเนื่องจากการถูกแบนไปยังเส้นรอบวงภายใน\n"
+"\n"
+"ใช้ด้านใน/ด้านนอก/ด้านในเพื่อให้ได้พื้นผิวภายนอกที่ดีที่สุดและความแม่นยำของขนาด "
+"เนื่องจากผนังภายนอกถูกพิมพ์โดยไม่ถูกรบกวนจากขอบเขตภายใน อย่างไรก็ตาม "
+"ประสิทธิภาพส่วนยื่นจะลดลงเนื่องจากไม่มีขอบเขตภายในให้พิมพ์ติดกับผนังภายนอก "
+"ตัวเลือกนี้ต้องใช้ผนังอย่างน้อย 3 แผ่นจึงจะมีประสิทธิภาพ เนื่องจากจะพิมพ์ผนังภายในจากปริมณฑลที่ 3 "
+"เป็นต้นไป จากนั้นจึงพิมพ์ปริมณฑลภายนอก และสุดท้ายคือปริมณฑลภายในแรก "
+"แนะนำให้ใช้ตัวเลือกนี้กับตัวเลือกด้านนอก/ด้านในในกรณีส่วนใหญ่\n"
+"\n"
+"ใช้ด้านนอก/"
+"ด้านในเพื่อคุณภาพผนังภายนอกที่เหมือนกันและประโยชน์ด้านความแม่นยำของมิติของตัวเลือกด้านใน/"
+"ด้านนอก/ด้านใน อย่างไรก็ตาม รอยตะเข็บ Z "
+"จะดูสม่ำเสมอน้อยลงเนื่องจากการอัดขึ้นรูปชั้นใหม่ครั้งแรกเริ่มต้นบนพื้นผิวที่มองเห็นได้"
+
+msgid "Inner/Outer"
+msgstr "ภายใน/ภายนอก"
+
+msgid "Outer/Inner"
+msgstr "ด้านนอก/ด้านใน"
+
+msgid "Inner/Outer/Inner"
+msgstr "ภายใน/ภายนอก/ภายใน"
+
+msgid "Print infill first"
+msgstr "พิมพ์ไส้ในก่อน"
+
+msgid ""
+"Order of wall/infill. When the tickbox is unchecked the walls are printed "
+"first, which works best in most cases.\n"
+"\n"
+"Printing infill first may help with extreme overhangs as the walls have the "
+"neighbouring infill to adhere to. However, the infill will slightly push out "
+"the printed walls where it is attached to them, resulting in a worse "
+"external surface finish. It can also cause the infill to shine through the "
+"external surfaces of the part."
+msgstr ""
+"ลำดับของผนัง/ไส้ใน เมื่อยกเลิกการเลือกช่องทำเครื่องหมาย ผนังจะถูกพิมพ์ก่อน "
+"ซึ่งใช้งานได้ดีที่สุดในกรณีส่วนใหญ่\n"
+"\n"
+"การพิมพ์แบบ ไส้ใน ก่อนอาจช่วยให้มีระยะยื่นมากเกินไป เนื่องจากผนังมี ไส้ใน ที่อยู่ใกล้เคียงให้ยึดติด "
+"อย่างไรก็ตาม ไส้ในจะดันผนังที่พิมพ์ออกมาเล็กน้อยซึ่งติดอยู่ ส่งผลให้พื้นผิวภายนอกที่ได้คุณภาพแย่ลง "
+"นอกจากนี้ยังสามารถทำให้ ไส้ใน ส่องผ่านพื้นผิวภายนอกของชิ้นส่วนได้"
+
+msgid "Wall loop direction"
+msgstr "ทิศทางของวงผนัง"
+
+msgid ""
+"The direction which the contour wall loops are extruded when looking down "
+"from the top.\n"
+"Holes are printed in the opposite direction to the contour to maintain "
+"alignment with layers whose contour polygons are incomplete and change "
+"direction, also partially forming the contour of a hole.\n"
+"\n"
+"This option will be disabled if spiral vase mode is enabled."
+msgstr ""
+"ทิศทางที่ลูปผนังรูปร่างถูกอัดออกมาเมื่อมองลงมาจากด้านบน\n"
+"รูจะถูกพิมพ์ในทิศทางตรงกันข้ามกับเส้นขอบเพื่อรักษาแนวเดียวกับชั้นที่มีรูปหลายเหลี่ยมเส้นขอบไม่สมบูรณ์และเปลี่ยนทิศทาง "
+"รวมถึงสร้างรูปร่างของรูบางส่วนด้วย\n"
+"\n"
+"ตัวเลือกนี้จะถูกปิดใช้งานหากเปิดใช้งานโหมดแจกันเกลียว"
+
+msgid "Counter clockwise"
+msgstr "ทวนเข็มนาฬิกา"
+
+msgid "Clockwise"
+msgstr "ตามเข็มนาฬิกา"
+
+msgid "Height to rod"
+msgstr "ความสูงถึงก้าน"
+
+msgid ""
+"Distance of the nozzle tip to the lower rod. Used for collision avoidance in "
+"by-object printing."
+msgstr "ระยะห่างของปลายหัวฉีดถึงแกนล่าง ใช้สำหรับการหลีกเลี่ยงการชนกันในการพิมพ์ตามวัตถุ"
+
+msgid "Height to lid"
+msgstr "ความสูงถึงฝา"
+
+msgid ""
+"Distance of the nozzle tip to the lid. Used for collision avoidance in by-"
+"object printing."
+msgstr "ระยะห่างของปลายหัวฉีดถึงฝา ใช้สำหรับการหลีกเลี่ยงการชนกันในการพิมพ์ตามวัตถุ"
+
+msgid ""
+"Clearance radius around extruder. Used for collision avoidance in by-object "
+"printing."
+msgstr "รัศมีระยะปลอดภัยรอบชุดดันเส้น ใช้สำหรับการหลีกเลี่ยงการชนกันในการพิมพ์ตามวัตถุ"
+
+msgid "Nozzle height"
+msgstr "ความสูงของหัวฉีด"
+
+msgid "The height of nozzle tip."
+msgstr "ความสูงของปลายหัวฉีด"
+
+msgid "Bed mesh min"
+msgstr "ตาข่ายฐานพิมพ์ขั้นต่ำ"
+
+msgid ""
+"This option sets the min point for the allowed bed mesh area. Due to the "
+"probe's XY offset, most printers are unable to probe the entire bed. To "
+"ensure the probe point does not go outside the bed area, the minimum and "
+"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
+"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
+"exceed these min/max points. This information can usually be obtained from "
+"your printer manufacturer. The default setting is (-99999, -99999), which "
+"means there are no limits, thus allowing probing across the entire bed."
+msgstr ""
+"ตัวเลือกนี้จะตั้งค่าจุดต่ำสุดสำหรับพื้นที่ตาข่ายเบดที่อนุญาต เนื่องจากออฟเซ็ต XY ของโพรบ "
+"เครื่องพิมพ์ส่วนใหญ่จึงไม่สามารถตรวจสอบทั้งเบดได้ "
+"เพื่อให้แน่ใจว่าจุดโพรบไม่ออกไปนอกบริเวณฐานพิมพ์ "
+"ควรตั้งค่าจุดต่ำสุดและสูงสุดของตาข่ายเบดอย่างเหมาะสม OrcaSlicer ช่วยให้มั่นใจได้ว่าค่าของ "
+"adaptive_bed_mesh_min/adaptive_bed_mesh_max จะต้องไม่เกินจุดต่ำสุด/สูงสุดเหล่านี้ "
+"โดยปกติข้อมูลนี้สามารถรับได้จากผู้ผลิตเครื่องพิมพ์ของคุณ การตั้งค่าเริ่มต้นคือ (-99999, -99999) "
+"ซึ่งหมายความว่าไม่มีขีดจำกัด จึงสามารถตรวจวัดทั่วทั้งฐานพิมพ์ได้"
+
+msgid "Bed mesh max"
+msgstr "ตาข่ายฐานพิมพ์สูงสุด"
+
+msgid ""
+"This option sets the max point for the allowed bed mesh area. Due to the "
+"probe's XY offset, most printers are unable to probe the entire bed. To "
+"ensure the probe point does not go outside the bed area, the minimum and "
+"maximum points of the bed mesh should be set appropriately. OrcaSlicer "
+"ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not "
+"exceed these min/max points. This information can usually be obtained from "
+"your printer manufacturer. The default setting is (99999, 99999), which "
+"means there are no limits, thus allowing probing across the entire bed."
+msgstr ""
+"ตัวเลือกนี้จะตั้งค่าจุดสูงสุดสำหรับพื้นที่ตาข่ายฐานพิมพ์ที่อนุญาต เนื่องจากออฟเซ็ต XY ของโพรบ "
+"เครื่องพิมพ์ส่วนใหญ่จึงไม่สามารถตรวจสอบทั้งเบดได้ "
+"เพื่อให้แน่ใจว่าจุดโพรบไม่ออกไปนอกบริเวณฐานพิมพ์ "
+"ควรตั้งค่าจุดต่ำสุดและสูงสุดของตาข่ายเบดอย่างเหมาะสม OrcaSlicer ช่วยให้มั่นใจได้ว่าค่าของ "
+"adaptive_bed_mesh_min/adaptive_bed_mesh_max จะต้องไม่เกินจุดต่ำสุด/สูงสุดเหล่านี้ "
+"โดยปกติข้อมูลนี้สามารถรับได้จากผู้ผลิตเครื่องพิมพ์ของคุณ การตั้งค่าเริ่มต้นคือ (99999, 99999) "
+"ซึ่งหมายความว่าไม่มีขีดจำกัด จึงสามารถตรวจวัดทั่วทั้งฐานพิมพ์ได้"
+
+msgid "Probe point distance"
+msgstr "ระยะทางจุดโพรบ"
+
+msgid ""
+"This option sets the preferred distance between probe points (grid size) for "
+"the X and Y directions, with the default being 50mm for both X and Y."
+msgstr ""
+"ตัวเลือกนี้จะตั้งค่าระยะห่างที่ต้องการระหว่างจุดโพรบ (ขนาดตาราง) สำหรับทิศทาง X และ Y "
+"โดยค่าเริ่มต้นคือ 50 มม. สำหรับทั้ง X และ Y"
+
+msgid "Mesh margin"
+msgstr "ขอบตาข่าย"
+
+msgid ""
+"This option determines the additional distance by which the adaptive bed "
+"mesh area should be expanded in the XY directions."
+msgstr "ตัวเลือกนี้จะกำหนดระยะห่างเพิ่มไส้ในที่ควรขยายพื้นที่ตาข่ายเบดแบบปรับได้ในทิศทาง XY"
+
+msgid "Grab length"
+msgstr "ความยาวคว้า"
+
+msgid "Extruder Color"
+msgstr "สีชุดดันเส้น"
+
+msgid "Only used as a visual help on UI."
+msgstr "ใช้เป็นภาพช่วยเหลือบน UI เท่านั้น"
+
+msgid "Extruder offset"
+msgstr "การชดเชยชุดดันเส้น"
+
+msgid ""
+"The material may have volumetric change after switching between molten and "
+"crystalline states. This setting changes all extrusion flow of this filament "
+"in G-code proportionally. The recommended value range is between 0.95 and "
+"1.05. You may be able to tune this value to get a nice flat surface if there "
+"is slight overflow or underflow."
+msgstr ""
+"วัสดุอาจมีการเปลี่ยนแปลงเชิงปริมาตรหลังจากสลับระหว่างสถานะหลอมเหลวและสถานะผลึก "
+"การตั้งค่านี้จะเปลี่ยนการไหลอัดรีดทั้งหมดของเส้นพลาสติกนี้ใน G-code ตามสัดส่วน "
+"ช่วงค่าที่แนะนำคือระหว่าง 0.95 ถึง 1.05 "
+"คุณอาจสามารถปรับค่านี้เพื่อให้ได้พื้นผิวที่เรียบสวยงามได้หากมีน้ำล้นหรืออันเดอร์โฟลว์เล็กน้อย"
+
+msgid ""
+"The material may have volumetric change after switching between molten and "
+"crystalline states. This setting changes all extrusion flow of this filament "
+"in G-code proportionally. The recommended value range is between 0.95 and "
+"1.05. You may be able to tune this value to get a nice flat surface if there "
+"is slight overflow or underflow.\n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+"วัสดุอาจมีการเปลี่ยนแปลงเชิงปริมาตรหลังจากสลับระหว่างสถานะหลอมเหลวและสถานะผลึก "
+"การตั้งค่านี้จะเปลี่ยนการไหลอัดรีดทั้งหมดของเส้นพลาสติกนี้ใน G-code ตามสัดส่วน "
+"ช่วงค่าที่แนะนำคือระหว่าง 0.95 ถึง 1.05 "
+"คุณอาจสามารถปรับค่านี้เพื่อให้ได้พื้นผิวที่เรียบสวยงามได้หากมีน้ำล้นหรืออันเดอร์โฟลว์เล็กน้อย\n"
+"\n"
+"อัตราการไหลของวัตถุขั้นสุดท้ายคือค่านี้คูณด้วยอัตราการไหลของเส้นพลาสติก"
+
+msgid "Enable pressure advance"
+msgstr "เปิดใช้งานPressure Advance"
+
+msgid ""
+"Enable pressure advance, auto calibration result will be overwritten once "
+"enabled."
+msgstr "เปิดใช้งานการเลื่อนแรงดัน ผลลัพธ์การสอบเทียบอัตโนมัติจะถูกเขียนทับเมื่อเปิดใช้งาน"
+
+msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)."
+msgstr ""
+"แรงดันล่วงหน้า (Pressure Advance) (Klipper) AKA Linear Advance Factor (Marlin)"
+
+msgid "Enable adaptive pressure advance (beta)"
+msgstr "เปิดใช้งานการปรับPressure Advance (เบต้า)"
+
+#, no-c-format, no-boost-format
+msgid ""
+"With increasing print speeds (and hence increasing volumetric flow through "
+"the nozzle) and increasing accelerations, it has been observed that the "
+"effective PA value typically decreases. This means that a single PA value is "
+"not always 100% optimal for all features and a compromise value is usually "
+"used that does not cause too much bulging on features with lower flow speed "
+"and accelerations while also not causing gaps on faster features.\n"
+"\n"
+"This feature aims to address this limitation by modeling the response of "
+"your printer's extrusion system depending on the volumetric flow speed and "
+"acceleration it is printing at. Internally, it generates a fitted model that "
+"can extrapolate the needed pressure advance for any given volumetric flow "
+"speed and acceleration, which is then emitted to the printer depending on "
+"the current print conditions.\n"
+"\n"
+"When enabled, the pressure advance value above is overridden. However, a "
+"reasonable default value above is strongly recommended to act as a fallback "
+"and for when tool changing.\n"
+"\n"
+msgstr ""
+"ด้วยความเร็วในการพิมพ์ที่เพิ่มขึ้น (และด้วยเหตุนี้จึงเพิ่มการไหลเชิงปริมาตรผ่านหัวฉีด) "
+"และการเร่งความเร็วที่เพิ่มขึ้น พบว่าค่า PA ที่มีประสิทธิผลโดยทั่วไปจะลดลง ซึ่งหมายความว่าค่า PA "
+"เดียวอาจไม่ได้เหมาะสมที่สุด 100% เสมอไปสำหรับคุณสมบัติทั้งหมด "
+"และโดยปกติแล้วจะใช้ค่าประนีประนอมที่ไม่ทำให้เกิดการปูดมากเกินไปในคุณสมบัติที่มีความเร็วการไหลและความเร่งต่ำ "
+"ขณะเดียวกันก็ไม่ทำให้เกิดช่องว่างในคุณสมบัติที่เร็วกว่า\n"
+"\n"
+"คุณลักษณะนี้มีจุดมุ่งหมายเพื่อแก้ไขข้อจำกัดนี้โดยการสร้างแบบจำลองการตอบสนองของระบบการอัดขึ้นรูปของเครื่องพิมพ์ของคุณ "
+"โดยขึ้นอยู่กับความเร็วการไหลตามปริมาตรและความเร่งที่เครื่องพิมพ์ทำการพิมพ์ ภายใน "
+"เครื่องพิมพ์จะสร้างแบบจำลองที่ติดตั้งไว้ซึ่งสามารถคาดเดาPressure "
+"Advanceที่จำเป็นสำหรับความเร็วและความเร่งในการไหลตามปริมาตรที่กำหนด "
+"ซึ่งจากนั้นจะปล่อยไปยังเครื่องพิมพ์โดยขึ้นอยู่กับสภาพการพิมพ์ในปัจจุบัน\n"
+"\n"
+"เมื่อเปิดใช้งาน ค่าล่วงหน้าของแรงดันด้านบนจะถูกแทนที่ อย่างไรก็ตาม "
+"แนะนำให้ใช้ค่าเริ่มต้นที่สมเหตุสมผลด้านบนเพื่อเป็นทางเลือกและเมื่อมีการเปลี่ยนเครื่องมือ\n"
+
+msgid "Adaptive pressure advance measurements (beta)"
+msgstr "การวัดล่วงหน้าด้วยแรงดันแบบปรับได้ (เบต้า)"
+
+#, no-c-format, no-boost-format
+msgid ""
+"Add sets of pressure advance (PA) values, the volumetric flow speeds and "
+"accelerations they were measured at, separated by a comma. One set of values "
+"per line. For example\n"
+"0.04,3.96,3000\n"
+"0.033,3.96,10000\n"
+"0.029,7.91,3000\n"
+"0.026,7.91,10000\n"
+"\n"
+"How to calibrate:\n"
+"1. Run the pressure advance test for at least 3 speeds per acceleration "
+"value. It is recommended that the test is run for at least the speed of the "
+"external perimeters, the speed of the internal perimeters and the fastest "
+"feature print speed in your profile (usually its the sparse or solid "
+"infill). Then run them for the same speeds for the slowest and fastest print "
+"accelerations, and no faster than the recommended maximum acceleration as "
+"given by the Klipper input shaper\n"
+"2. Take note of the optimal PA value for each volumetric flow speed and "
+"acceleration. You can find the flow number by selecting flow from the color "
+"scheme drop down and move the horizontal slider over the PA pattern lines. "
+"The number should be visible at the bottom of the page. The ideal PA value "
+"should be decreasing the higher the volumetric flow is. If it is not, "
+"confirm that your extruder is functioning correctly. The slower and with "
+"less acceleration you print, the larger the range of acceptable PA values. "
+"If no difference is visible, use the PA value from the faster test\n"
+"3. Enter the triplets of PA values, Flow and Accelerations in the text box "
+"here and save your filament profile."
+msgstr ""
+"เพิ่มชุดของค่าความดันล่วงหน้า (PA) ความเร็วการไหลเชิงปริมาตร "
+"และความเร่งที่วัดได้โดยคั่นด้วยเครื่องหมายจุลภาค หนึ่งชุดของค่าต่อบรรทัด ตัวอย่างเช่น\n"
+"0.04,3.96,3000\n"
+"0.033,3.96,10000\n"
+"0.029,7.91,3000\n"
+"0.026,7.91,10000\n"
+"\n"
+"วิธีปรับเทียบ:\n"
+"1. รันการทดสอบPressure Advanceอย่างน้อย 3 ความเร็วต่อค่าความเร่ง "
+"ขอแนะนำให้ทำการทดสอบความเร็วของเส้นรอบวงภายนอก ความเร็วของเส้นรอบวงภายใน "
+"และความเร็วการพิมพ์คุณลักษณะที่เร็วที่สุดในโปรไฟล์ของคุณเป็นอย่างน้อย "
+"(โดยปกติจะเป็นการกรอกข้อมูลแบบเบาบางหรือทึบ) "
+"จากนั้นรันด้วยความเร็วเท่ากันเพื่อการเร่งความเร็วการพิมพ์ที่ช้าที่สุดและเร็วที่สุด "
+"และไม่เร็วกว่าการเร่งความเร็วสูงสุดที่แนะนำตามที่กำหนดโดย Klipper input Shaper\n"
+"2. จดบันทึกค่า PA ที่เหมาะสมที่สุดสำหรับความเร็วการไหลและความเร่งตามปริมาตรแต่ละรายการ "
+"คุณสามารถค้นหาหมายเลขโฟลว์ได้โดยเลือกโฟลว์จากรายการสีแบบเลื่อนลง "
+"และเลื่อนแถบเลื่อนแนวนอนไปเหนือเส้นรูปแบบ PA หมายเลขควรปรากฏที่ด้านล่างของหน้า ค่า PA "
+"ในอุดมคติควรลดลงตามอัตราการไหลตามปริมาตรที่สูงขึ้น หากไม่เป็นเช่นนั้น "
+"ให้ยืนยันว่าชุดดันเส้นของคุณทำงานอย่างถูกต้อง ยิ่งคุณพิมพ์ช้าลงและเร่งความเร็วน้อยลง ช่วงของค่า PA "
+"ที่ยอมรับได้ก็จะยิ่งมากขึ้นเท่านั้น หากไม่เห็นความแตกต่าง ให้ใช้ค่า PA จากการทดสอบที่เร็วกว่า\n"
+"3. ป้อนค่า PA, การไหล และความเร่งสามเท่าในกล่องข้อความที่นี่ "
+"และบันทึกโปรไฟล์เส้นพลาสติกของคุณ"
+
+msgid "Enable adaptive pressure advance for overhangs (beta)"
+msgstr "เปิดใช้งานการปรับPressure Advanceสำหรับระยะยื่น (เบต้า)"
+
+msgid ""
+"Enable adaptive PA for overhangs as well as when flow changes within the "
+"same feature. This is an experimental option, as if the PA profile is not "
+"set accurately, it will cause uniformity issues on the external surfaces "
+"before and after overhangs.\n"
+msgstr ""
+"เปิดใช้งาน PA แบบปรับได้สำหรับส่วนยื่นและเมื่อโฟลว์เปลี่ยนแปลงภายในฟีเจอร์เดียวกัน "
+"นี่เป็นตัวเลือกทดลอง ราวกับว่าโปรไฟล์ PA ไม่ได้ตั้งค่าอย่างถูกต้อง "
+"ก็จะทำให้เกิดปัญหาความสม่ำเสมอบนพื้นผิวภายนอกก่อนและหลังระยะยื่น\n"
+
+msgid "Pressure advance for bridges"
+msgstr "แรงดันล่วงหน้า (Pressure Advance)สำหรับสะพาน"
+
+msgid ""
+"Pressure advance value for bridges. Set to 0 to disable.\n"
+"\n"
+"A lower PA value when printing bridges helps reduce the appearance of slight "
+"under extrusion immediately after bridges. This is caused by the pressure "
+"drop in the nozzle when printing in the air and a lower PA helps counteract "
+"this."
+msgstr ""
+"ค่าPressure Advanceสำหรับสะพาน ตั้งค่าเป็น 0 เพื่อปิดใช้งาน\n"
+"\n"
+"ค่า PA ที่ต่ำลงเมื่อพิมพ์บริดจ์จะช่วยลดลักษณะที่ปรากฏเล็กน้อยจากการอัดขึ้นรูปทันทีหลังจากบริดจ์ "
+"สาเหตุนี้เกิดจากแรงดันตกในหัวฉีดเมื่อพิมพ์ในอากาศ และค่า PA ที่ต่ำกว่าจะช่วยแก้ปัญหานี้ได้"
+
+msgid ""
+"Default line width if other line widths are set to 0. If expressed as a %, "
+"it will be computed over the nozzle diameter."
+msgstr ""
+"ความกว้างของเส้นเริ่มต้นหากความกว้างของเส้นอื่นตั้งค่าเป็น 0 หากแสดงเป็น % "
+"ระบบจะคำนวณตามเส้นผ่านศูนย์กลางของหัวฉีด"
+
+msgid "Keep fan always on"
+msgstr "เปิดพัดลมไว้ตลอดเวลา"
+
+msgid ""
+"Enabling this setting means that the part cooling fan will never stop "
+"completely and will run at least at minimum speed to reduce the frequency of "
+"starting and stopping."
+msgstr ""
+"การเปิดใช้งานการตั้งค่านี้หมายความว่าพัดลมระบายความร้อนของชิ้นส่วนจะไม่หยุดทำงานโดยสิ้นเชิง "
+"และจะทำงานที่ความเร็วขั้นต่ำเป็นอย่างน้อยเพื่อลดความถี่ในการสตาร์ทและหยุด"
+
+msgid "Don't slow down outer walls"
+msgstr "อย่าทำให้ผนังด้านนอกช้าลง"
+
+msgid ""
+"If enabled, this setting will ensure external perimeters are not slowed down "
+"to meet the minimum layer time. This is particularly helpful in the below "
+"scenarios:\n"
+"1. To avoid changes in shine when printing glossy filaments\n"
+"2. To avoid changes in external wall speed which may create slight wall "
+"artifacts that appear like Z banding\n"
+"3. To avoid printing at speeds which cause VFAs (fine artifacts) on the "
+"external walls"
+msgstr ""
+"หากเปิดใช้งาน "
+"การตั้งค่านี้จะช่วยให้แน่ใจว่าขอบเขตภายนอกจะไม่ช้าลงเพื่อให้ตรงตามเวลาขั้นต่ำของเลเยอร์ "
+"สิ่งนี้มีประโยชน์อย่างยิ่งในสถานการณ์ด้านล่าง:\n"
+"1. เพื่อหลีกเลี่ยงการเปลี่ยนแปลงความมันเงาเมื่อพิมพ์เส้นพลาสติกมัน\n"
+"2. "
+"เพื่อหลีกเลี่ยงการเปลี่ยนแปลงความเร็วของผนังภายนอกซึ่งอาจสร้างสิ่งรบกวนผนังเล็กน้อยที่ดูเหมือนแถบ "
+"Z\n"
+"3. เพื่อหลีกเลี่ยงการพิมพ์ด้วยความเร็วซึ่งทำให้เกิด VFA (สิ่งประดิษฐ์ที่ดี) บนผนังภายนอก"
+
+msgid "Layer time"
+msgstr "เวลาเลเยอร์"
+
+msgid ""
+"Part cooling fan will be enabled for layers of which estimated time is "
+"shorter than this value. Fan speed is interpolated between the minimum and "
+"maximum fan speeds according to layer printing time."
+msgstr ""
+"พัดลมระบายความร้อนบางส่วนจะถูกเปิดใช้งานสำหรับเลเยอร์ที่เวลาโดยประมาณสั้นกว่าค่านี้ "
+"ความเร็วพัดลมจะถูกประมาณค่าระหว่างความเร็วพัดลมขั้นต่ำและสูงสุดตามเวลาการพิมพ์เลเยอร์"
+
+msgid "s"
+msgstr "วินาที"
+
+msgid "Default color"
+msgstr "สีเริ่มต้น"
+
+msgid ""
+"Default filament color.\n"
+"Right click to reset value to system default."
+msgstr ""
+"สีเส้นพลาสติกเริ่มต้น\n"
+"คลิกขวาเพื่อรีเซ็ตค่าเป็นค่าเริ่มต้นของระบบ"
+
+msgid "Filament notes"
+msgstr "หมายเหตุเส้นพลาสติก"
+
+msgid "You can put your notes regarding the filament here."
+msgstr "คุณสามารถใส่บันทึกของคุณเกี่ยวกับเส้นพลาสติกได้ที่นี่"
+
+msgid "Required nozzle HRC"
+msgstr "หัวฉีด HRC ที่จำเป็น"
+
+msgid ""
+"Minimum HRC of nozzle required to print the filament. Zero means no checking "
+"of nozzle's HRC."
+msgstr ""
+"HRC ขั้นต่ำของหัวฉีดที่จำเป็นสำหรับการพิมพ์เส้นพลาสติก ศูนย์หมายถึงไม่มีการตรวจสอบ HRC ของหัวฉีด"
+
+msgid "Filament map to extruder"
+msgstr "แผนที่เส้นพลาสติกไปยังชุดดันเส้น"
+
+msgid "Filament map to extruder."
+msgstr "แผนที่เส้นพลาสติกไปยังชุดดันเส้น"
+
+msgid "Auto For Flush"
+msgstr "อัตโนมัติสำหรับไล่เส้น"
+
+msgid "Auto For Match"
+msgstr "อัตโนมัติสำหรับการแข่งขัน"
+
+msgid "Enable filament dynamic map"
+msgstr "เปิดใช้งานแผนที่ไดนามิกของเส้นพลาสติก"
+
+msgid "Enable dynamic filament mapping during print."
+msgstr "เปิดใช้งานการแมปเส้นพลาสติกแบบไดนามิกระหว่างการพิมพ์"
+
+msgid "Has filament switcher"
+msgstr "มีตัวสลับเส้นพลาสติก"
+
+msgid "Printer has a filament switcher hardware (e.g., AMS)."
+msgstr "เครื่องพิมพ์มีฮาร์ดแวร์ตัวสลับเส้นพลาสติก (เช่น AMS)"
+
+msgid "Flush temperature"
+msgstr "อุณหภูมิไล่เส้น"
+
+msgid ""
+"Temperature when flushing filament. 0 indicates the upper bound of the "
+"recommended nozzle temperature range."
+msgstr "อุณหภูมิเมื่อทำการล้างเส้นพลาสติก 0 หมายถึงขอบเขตบนของช่วงอุณหภูมิหัวฉีดที่แนะนำ"
+
+msgid "Flush volumetric speed"
+msgstr "ความเร็วเชิงปริมาตรไล่เส้น"
+
+msgid ""
+"Volumetric speed when flushing filament. 0 indicates the max volumetric "
+"speed."
+msgstr "ความเร็วตามปริมาตรเมื่อทำการล้างเส้นพลาสติก 0 หมายถึงความเร็วปริมาตรสูงสุด"
+
+msgid ""
+"This setting stands for how much volume of filament can be melted and "
+"extruded per second. Printing speed is limited by max volumetric speed, in "
+"case of too high and unreasonable speed setting. Can't be zero."
+msgstr ""
+"การตั้งค่านี้หมายถึงปริมาณเส้นพลาสติกที่สามารถหลอมและอัดขึ้นรูปต่อวินาทีได้ "
+"ความเร็วในการพิมพ์จะถูกจำกัดด้วยความเร็วปริมาตรสูงสุด "
+"ในกรณีที่ตั้งค่าความเร็วไว้สูงเกินไปและไม่เหมาะสม ไม่สามารถเป็นศูนย์ได้"
+
+msgid "Filament load time"
+msgstr "เวลาในการโหลดเส้นพลาสติก"
+
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only."
+msgstr ""
+"เวลาในการโหลดเส้นพลาสติกใหม่เมื่อเปลี่ยนเส้นพลาสติก "
+"โดยปกติแล้วจะใช้ได้กับเครื่องจักรที่ใช้วัสดุหลายชุดดันเส้นเดี่ยว "
+"สำหรับเครื่องเปลี่ยนเครื่องมือหรือเครื่องจักรหลายเครื่องมือ โดยทั่วไปจะเป็น 0 สำหรับสถิติเท่านั้น"
+
+msgid "Filament unload time"
+msgstr "เวลาขนถ่ายเส้นพลาสติก"
+
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only."
+msgstr ""
+"ถึงเวลาขนเส้นพลาสติกเก่าออกเมื่อเปลี่ยนเส้นพลาสติก "
+"โดยปกติแล้วจะใช้ได้กับเครื่องจักรที่ใช้วัสดุหลายชุดดันเส้นเดี่ยว "
+"สำหรับเครื่องเปลี่ยนเครื่องมือหรือเครื่องจักรหลายเครื่องมือ โดยทั่วไปจะเป็น 0 สำหรับสถิติเท่านั้น"
+
+msgid "Tool change time"
+msgstr "เวลาเปลี่ยนเครื่องมือ"
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only."
+msgstr ""
+"เวลาที่ใช้ในการเปลี่ยนเครื่องมือ "
+"โดยปกติแล้วจะใช้ได้กับเครื่องเปลี่ยนเครื่องมือหรือเครื่องจักรที่มีเครื่องมือหลายเครื่องมือ "
+"สำหรับเครื่องจักรที่ใช้วัสดุหลายชนิดโดยใช้ชุดดันเส้นเดี่ยว โดยทั่วไปจะเป็น 0 สำหรับสถิติเท่านั้น"
+
+msgid "Bed temperature type"
+msgstr "ประเภทอุณหภูมิฐานพิมพ์"
+
+msgid ""
+"This option determines how the bed temperature is set during slicing: based "
+"on the temperature of the first filament or the highest temperature of the "
+"printed filaments."
+msgstr ""
+"ตัวเลือกนี้จะกำหนดวิธีการตั้งค่าอุณหภูมิฐานในระหว่างการสไลซ์: "
+"ขึ้นอยู่กับอุณหภูมิของเส้นพลาสติกเส้นแรกหรืออุณหภูมิสูงสุดของเส้นพลาสติกที่พิมพ์"
+
+msgid "By First filament"
+msgstr "โดย เฟิร์ส ฟิลาเมนท์"
+
+msgid "By Highest Temp"
+msgstr "โดยอุณหภูมิสูงสุด"
+
+msgid ""
+"Filament diameter is used to calculate extrusion in G-code, so it is "
+"important and should be accurate."
+msgstr ""
+"เส้นผ่านศูนย์กลางของฟิลาเมนต์ใช้ในการคำนวณการอัดขึ้นรูปใน G-code "
+"ดังนั้นจึงมีความสำคัญและควรมีความแม่นยำ"
+
+msgid "Pellet flow coefficient"
+msgstr "ค่าสัมประสิทธิ์การไหลของเม็ด"
+
+msgid ""
+"Pellet flow coefficient is empirically derived and allows for volume "
+"calculation for pellet printers.\n"
+"\n"
+"Internally it is converted to filament_diameter. All other volume "
+"calculations remain the same.\n"
+"\n"
+"filament_diameter = sqrt( (4 * pellet_flow_coefficient) / PI )"
+msgstr ""
+"ค่าสัมประสิทธิ์การไหลของเม็ดได้มาจากการทดลอง "
+"และช่วยให้สามารถคำนวณปริมาตรสำหรับเครื่องพิมพ์เม็ดพลาสติกได้\n"
+"\n"
+"ภายในจะถูกแปลงเป็น fil_diameter การคำนวณปริมาณอื่นๆ ทั้งหมดยังคงเหมือนเดิม\n"
+"\n"
+"เส้นพลาสติก_เส้นผ่านศูนย์กลาง = sqrt( (4 * pellet_flow_coefficient) / PI )"
+
+msgid "Adaptive volumetric speed"
+msgstr "ความเร็วตามปริมาตรแบบปรับได้"
+
+msgid ""
+"When enabled, the extrusion flow is limited by the smaller of the fitted "
+"value (calculated from line width and layer height) and the user-defined "
+"maximum flow. When disabled, only the user-defined maximum flow is applied.\n"
+"\n"
+"Note: Experimental and incomplete feature imported from BBS. Functional for "
+"some profiles that already have the variable saved."
+msgstr ""
+"เมื่อเปิดใช้งาน การไหลของการอัดขึ้นรูปจะถูกจำกัดด้วยค่าที่น้อยกว่าของค่าที่ติดตั้ง "
+"(คำนวณจากความกว้างของเส้นและความสูงของชั้น) และการไหลสูงสุดที่ผู้ใช้กำหนด เมื่อปิดใช้งาน "
+"จะมีการใช้เฉพาะโฟลว์สูงสุดที่ผู้ใช้กำหนดเท่านั้น\n"
+"\n"
+"หมายเหตุ: คุณลักษณะทดลองและไม่สมบูรณ์นำเข้าจาก BBS "
+"ใช้งานได้กับบางโปรไฟล์ที่ได้บันทึกตัวแปรไว้แล้ว"
+
+msgid "Max volumetric speed multinomial coefficients"
+msgstr "ค่าสัมประสิทธิ์พหุนามความเร็วปริมาตรสูงสุด"
+
+msgid "Shrinkage (XY)"
+msgstr "การหดตัว (XY)"
+
+#, no-c-format, no-boost-format
+msgid ""
+"Enter the shrinkage percentage that the filament will get after cooling (94% "
+"if you measure 94mm instead of 100mm). The part will be scaled in XY to "
+"compensate. For multi-material prints, ensure filament shrinkage matches "
+"across all used filaments\n"
+"Be sure to allow enough space between objects, as this compensation is done "
+"after the checks."
+msgstr ""
+"ป้อนเปอร์เซ็นต์การหดตัวที่เส้นพลาสติกจะได้รับหลังจากการทำความเย็น (94% หากคุณวัด 94 มม. "
+"แทนที่จะเป็น 100 มม.) ชิ้นส่วนจะถูกปรับขนาดเป็น XY เพื่อชดเชย สำหรับการพิมพ์แบบหลายวัสดุ "
+"ตรวจสอบให้แน่ใจว่าการหดตัวของเส้นพลาสติกตรงกันกับเส้นพลาสติกที่ใช้ทั้งหมด\n"
+"ตรวจสอบให้แน่ใจว่าได้เว้นระยะห่างระหว่างวัตถุเพียงพอ "
+"เนื่องจากการชดเชยนี้เสร็จสิ้นหลังจากการตรวจสอบ"
+
+msgid "Shrinkage (Z)"
+msgstr "การหดตัว (Z)"
+
+#, no-c-format, no-boost-format
+msgid ""
+"Enter the shrinkage percentage that the filament will get after cooling (94% "
+"if you measure 94mm instead of 100mm). The part will be scaled in Z to "
+"compensate."
+msgstr ""
+"ป้อนเปอร์เซ็นต์การหดตัวที่เส้นพลาสติกจะได้รับหลังจากการทำความเย็น (94% หากคุณวัด 94 มม. "
+"แทนที่จะเป็น 100 มม.) ชิ้นส่วนจะถูกปรับขนาดเป็น Z เพื่อชดเชย"
+
+msgid "Adhesiveness Category"
+msgstr "หมวดหมู่การยึดเกาะ"
+
+msgid "Filament category."
+msgstr "หมวดเส้นพลาสติก"
+
+msgid "Loading speed"
+msgstr "ความเร็วกำลังโหลด"
+
+msgid "Speed used for loading the filament on the wipe tower."
+msgstr "ความเร็วที่ใช้ในการโหลดเส้นพลาสติกบนไวด์ทาวเวอร์"
+
+msgid "Loading speed at the start"
+msgstr "ความเร็วในการโหลดเมื่อเริ่มต้น"
+
+msgid "Speed used at the very beginning of loading phase."
+msgstr "ความเร็วที่ใช้ในช่วงเริ่มต้นของขั้นตอนการโหลด"
+
+msgid "Unloading speed"
+msgstr "ความเร็วในการขนถ่าย"
+
+msgid ""
+"Speed used for unloading the filament on the wipe tower (does not affect "
+"initial part of unloading just after ramming)."
+msgstr ""
+"ความเร็วที่ใช้ในการขนถ่ายเส้นพลาสติกบนไวด์ทาวเวอร์ "
+"(ไม่ส่งผลต่อส่วนเริ่มแรกของการขนถ่ายหลังจากการชน)"
+
+msgid "Unloading speed at the start"
+msgstr "ขนถ่ายความเร็วที่จุดเริ่มต้น"
+
+msgid ""
+"Speed used for unloading the tip of the filament immediately after ramming."
+msgstr "ความเร็วที่ใช้ในการขนถ่ายปลายเส้นพลาสติกทันทีหลังจากการชน"
+
+msgid "Delay after unloading"
+msgstr "ความล่าช้าหลังจากการขนถ่าย"
+
+msgid ""
+"Time to wait after the filament is unloaded. May help to get reliable tool "
+"changes with flexible materials that may need more time to shrink to "
+"original dimensions."
+msgstr ""
+"เวลาที่ต้องรอหลังจากขนเส้นพลาสติกออก "
+"อาจช่วยให้มีการเปลี่ยนเครื่องมือที่เชื่อถือได้ด้วยวัสดุที่ยืดหยุ่นซึ่งอาจต้องใช้เวลามากขึ้นในการย่อขนาดให้เป็นขนาดดั้งเดิม"
+
+msgid "Number of cooling moves"
+msgstr "จำนวนการเคลื่อนย้ายความเย็น"
+
+msgid ""
+"Filament is cooled by being moved back and forth in the cooling tubes. "
+"Specify desired number of these moves."
+msgstr ""
+"เส้นพลาสติกถูกทำให้เย็นลงโดยการเคลื่อนไปมาในท่อทำความเย็น ระบุจำนวนการเคลื่อนไหวที่ต้องการ"
+
+msgid "Stamping loading speed"
+msgstr "ความเร็วในการโหลดการประทับตรา"
+
+msgid "Speed used for stamping."
+msgstr "ความเร็วที่ใช้ในการประทับตรา"
+
+msgid "Stamping distance measured from the center of the cooling tube"
+msgstr "ระยะการตอกวัดจากศูนย์กลางของท่อทำความเย็น"
+
+msgid ""
+"If set to non-zero value, filament is moved toward the nozzle between the "
+"individual cooling moves (\"stamping\"). This option configures how long "
+"this movement should be before the filament is retracted again."
+msgstr ""
+"หากตั้งค่าเป็นค่าที่ไม่ใช่ศูนย์ เส้นพลาสติกจะถูกย้ายไปยังหัวฉีดระหว่างการระบายความร้อนแต่ละครั้ง "
+"(\"การประทับตรา\") "
+"ตัวเลือกนี้จะกำหนดระยะเวลาการเคลื่อนไหวนี้ก่อนที่เส้นพลาสติกจะถูกดึงกลับอีกครั้ง"
+
+msgid "Speed of the first cooling move"
+msgstr "ความเร็วของการทำความเย็นครั้งแรก"
+
+msgid "Cooling moves are gradually accelerating beginning at this speed."
+msgstr "การเคลื่อนไหวที่เย็นลงจะค่อยๆ เร่งขึ้น โดยเริ่มต้นที่ความเร็วนี้"
+
+msgid "Minimal purge on wipe tower"
+msgstr "การล้างข้อมูลบน Wipe Tower น้อยที่สุด"
+
+msgid ""
+"After a tool change, the exact position of the newly loaded filament inside "
+"the nozzle may not be known, and the filament pressure is likely not yet "
+"stable. Before purging the print head into an infill or a sacrificial "
+"object, Orca Slicer will always prime this amount of material into the wipe "
+"tower to produce successive infill or sacrificial object extrusions reliably."
+msgstr ""
+"หลังจากเปลี่ยนเครื่องมือ อาจไม่ทราบตำแหน่งที่แน่นอนของเส้นพลาสติกที่เพิ่งโหลดใหม่ภายในหัวฉีด "
+"และความดันเส้นพลาสติกก็มีแนวโน้มว่ายังไม่เสถียร ก่อนที่จะล้างหัวพิมพ์ลงในวัสดุไส้ในหรือวัตถุบูชายัญ "
+"Orca Slicer "
+"จะเตรียมวัสดุจำนวนนี้ลงในหอเช็ดเสมอเพื่อสร้างการอัดขึ้นรูปวัตถุแบบไส้ในหรือบูชายัญต่อเนื่องกันอย่างน่าเชื่อถือ"
+
+msgid "Wipe tower cooling"
+msgstr "เช็ดทาวเวอร์คูลลิ่ง"
+
+msgid "Temperature drop before entering filament tower"
+msgstr "อุณหภูมิลดลงก่อนเข้าหอใย"
+
+msgid "Interface layer pre-extrusion distance"
+msgstr "ระยะการอัดรีดชั้นอินเตอร์เฟซ"
+
+msgid ""
+"Pre-extrusion distance for prime tower interface layer (where different "
+"materials meet)."
+msgstr ""
+"ระยะก่อนการอัดขึ้นรูปสำหรับชั้นอินเทอร์เฟซของไพรม์ทาวเวอร์ (ที่วัสดุที่แตกต่างกันมาบรรจบกัน)"
+
+msgid "Interface layer pre-extrusion length"
+msgstr "ความยาวชั้นอินเตอร์เฟซก่อนการอัดขึ้นรูป"
+
+msgid ""
+"Pre-extrusion length for prime tower interface layer (where different "
+"materials meet)."
+msgstr ""
+"ความยาวก่อนการอัดขึ้นรูปสำหรับชั้นอินเทอร์เฟซของไพรม์ทาวเวอร์ (ที่วัสดุที่แตกต่างกันมาบรรจบกัน)"
+
+msgid "Tower ironing area"
+msgstr "พื้นที่รีดผิวแบบทาวเวอร์"
+
+msgid ""
+"Ironing area for prime tower interface layer (where different materials "
+"meet)."
+msgstr "พื้นที่รีดผิวสำหรับชั้นอินเทอร์เฟซของไพร์มทาวเวอร์ (บริเวณที่วัสดุต่างกันมาบรรจบกัน)"
+
+msgid "mm²"
+msgstr "มม.²"
+
+msgid "Interface layer purge length"
+msgstr "ความยาวการล้างเลเยอร์อินเทอร์เฟซ"
+
+msgid ""
+"Purge length for prime tower interface layer (where different materials "
+"meet)."
+msgstr "ความยาวในการไล่ล้างสำหรับชั้นอินเทอร์เฟซของไพรม์ทาวเวอร์ (เมื่อวัสดุต่างกันมาบรรจบกัน)"
+
+msgid "Interface layer print temperature"
+msgstr "อุณหภูมิการพิมพ์เลเยอร์อินเทอร์เฟซ"
+
+msgid ""
+"Print temperature for prime tower interface layer (where different materials "
+"meet). If set to -1, use max recommended nozzle temperature."
+msgstr ""
+"อุณหภูมิการพิมพ์สำหรับชั้นอินเทอร์เฟซของไพรม์ทาวเวอร์ (เมื่อวัสดุต่างกันมาบรรจบกัน) หากตั้งค่าเป็น "
+"-1 ให้ใช้อุณหภูมิหัวฉีดสูงสุดที่แนะนำ"
+
+msgid "Speed of the last cooling move"
+msgstr "ความเร็วของการทำความเย็นครั้งล่าสุด"
+
+msgid "Cooling moves are gradually accelerating towards this speed."
+msgstr "การเคลื่อนไหวที่เย็นลงจะค่อยๆ เร่งขึ้นสู่ความเร็วนี้"
+
+msgid "Ramming parameters"
+msgstr "พารามิเตอร์การกระแทก"
+
+msgid ""
+"This string is edited by RammingDialog and contains ramming specific "
+"parameters."
+msgstr "สตริงนี้ได้รับการแก้ไขโดย RammingDialog และมีพารามิเตอร์เฉพาะของการชน"
+
+msgid "Enable ramming for multi-tool setups"
+msgstr "เปิดใช้งานการกระแทกสำหรับการตั้งค่าหลายเครื่องมือ"
+
+msgid ""
+"Perform ramming when using multi-tool printer (i.e. when the 'Single "
+"Extruder Multimaterial' in Printer Settings is unchecked). When checked, a "
+"small amount of filament is rapidly extruded on the wipe tower just before "
+"the tool change. This option is only used when the wipe tower is enabled."
+msgstr ""
+"ทำการกระแทกเมื่อใช้เครื่องพิมพ์แบบหลายเครื่องมือ (เช่น เมื่อไม่ได้เลือก 'Single ชุดดันเส้น "
+"Multimaterial' ในการตั้งค่าเครื่องพิมพ์) เมื่อตรวจสอบแล้ว "
+"เส้นพลาสติกจำนวนเล็กน้อยจะถูกอัดรีดอย่างรวดเร็วบนไวด์ทาวเวอร์ก่อนที่จะเปลี่ยนเครื่องมือ "
+"ตัวเลือกนี้ใช้เฉพาะเมื่อเปิดใช้งาน Wipe Tower เท่านั้น"
+
+msgid "Multi-tool ramming volume"
+msgstr "ปริมาณการกระแทกหลายเครื่องมือ"
+
+msgid "The volume to be rammed before the tool change."
+msgstr "ปริมาตรที่ต้องกระแทกก่อนเปลี่ยนเครื่องมือ"
+
+msgid "Multi-tool ramming flow"
+msgstr "การไหลกระแทกหลายเครื่องมือ"
+
+msgid "Flow used for ramming the filament before the tool change."
+msgstr "การไหลที่ใช้สำหรับการกระแทกเส้นพลาสติกก่อนการเปลี่ยนเครื่องมือ"
+
+msgid "Density"
+msgstr "ความหนาแน่น"
+
+msgid "Filament density. For statistics only."
+msgstr "ความหนาแน่นของเส้นพลาสติก สำหรับสถิติเท่านั้น"
+
+msgid "g/cm³"
+msgstr "กรัม/ซม.³"
+
+msgid "The material type of filament."
+msgstr "ประเภทวัสดุของเส้นพลาสติก"
+
+msgid "Soluble material"
+msgstr "วัสดุที่ละลายน้ำได้"
+
+msgid ""
+"Soluble material is commonly used to print supports and support interfaces."
+msgstr "วัสดุที่ละลายน้ำได้มักใช้ในการพิมพ์ส่วนรองรับและส่วนต่อประสานรองรับ"
+
+msgid "Filament ramming length"
+msgstr "ความยาวการกระแทกของเส้นพลาสติก"
+
+msgid ""
+"When changing the extruder, it is recommended to extrude a certain length of "
+"filament from the original extruder. This helps minimize nozzle oozing."
+msgstr ""
+"เมื่อเปลี่ยนชุดดันเส้น แนะนำให้รีดเส้นพลาสติกที่มีความยาวจำนวนหนึ่งจากชุดดันเส้นเดิม "
+"ซึ่งจะช่วยลดการไหลของหัวฉีด"
+
+msgid "Support material"
+msgstr "วัสดุส่วนรองรับ"
+
+msgid ""
+"Support material is commonly used to print supports and support interfaces."
+msgstr "วัสดุรองรับมักใช้ในการพิมพ์ส่วนรองรับและอินเทอร์เฟซรองรับ"
+
+msgid "Filament printable"
+msgstr "พิมพ์เส้นพลาสติกได้"
+
+msgid "The filament is printable in extruder."
+msgstr "เส้นพลาสติกสามารถพิมพ์ได้ในชุดดันเส้น"
+
+msgid "Softening temperature"
+msgstr "อุณหภูมิอ่อนลง"
+
+msgid ""
+"The material softens at this temperature, so when the bed temperature is "
+"equal to or greater than this, it's highly recommended to open the front "
+"door and/or remove the upper glass to avoid clogging."
+msgstr ""
+"วัสดุจะอ่อนตัวลงที่อุณหภูมินี้ ดังนั้นเมื่ออุณหภูมิฐานพิมพ์เท่ากับหรือมากกว่านี้ "
+"ขอแนะนำอย่างยิ่งให้เปิดประตูหน้าและ/หรือถอดกระจกด้านบนออกเพื่อหลีกเลี่ยงการอุดตัน"
+
+msgid "Price"
+msgstr "ราคา"
+
+msgid "Filament price. For statistics only."
+msgstr "ราคาเส้นพลาสติก. สำหรับสถิติเท่านั้น"
+
+msgid "money/kg"
+msgstr "เงิน/กก."
+
+msgid "Vendor"
+msgstr "ผู้ขาย"
+
+msgid "Vendor of filament. For show only."
+msgstr "ผู้จำหน่ายเส้นพลาสติก. สำหรับการแสดงเท่านั้น"
+
+msgid "(Undefined)"
+msgstr "(ไม่ระบุ)"
+
+msgid "Sparse infill direction"
+msgstr "ทิศทางไส้ในแบบโปร่ง"
+
+msgid ""
+"Angle for sparse infill pattern, which controls the start or main direction "
+"of line."
+msgstr "มุมสำหรับรูปแบบไส้ในแบบกระจาย ซึ่งควบคุมจุดเริ่มต้นหรือทิศทางหลักของเส้น"
+
+msgid "Solid infill direction"
+msgstr "ทิศทางไส้ในแบบทึบ"
+
+msgid ""
+"Angle for solid infill pattern, which controls the start or main direction "
+"of line."
+msgstr "มุมสำหรับรูปแบบไส้ในแบบทึบ ซึ่งควบคุมจุดเริ่มต้นหรือทิศทางหลักของเส้น"
+
+msgid "Sparse infill density"
+msgstr "ความหนาแน่นไส้ในแบบโปร่ง"
+
+#, no-c-format, no-boost-format
+msgid ""
+"Density of internal sparse infill, 100% turns all sparse infill into solid "
+"infill and internal solid infill pattern will be used."
+msgstr ""
+"ความหนาแน่นของไส้ในแบบโปร่งภายใน 100% จะเปลี่ยนไส้ในแบบโปร่งทั้งหมดให้เป็นไส้ในแบบทึบ "
+"และจะใช้รูปแบบไส้ในแบบทึบภายใน"
+
+msgid "Align infill direction to model"
+msgstr "จัดทิศทาง ไส้ใน ให้ตรงกับโมเดล"
+
+msgid ""
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
+msgstr ""
+
+msgid "Insert solid layers"
+msgstr "แทรกชั้นทึบ"
+
+msgid ""
+"Insert solid infill at specific layers. Use N to insert every Nth layer, N#K "
+"to insert K consecutive solid layers every N layers (K is optional, e.g. "
+"'5#' equals '5#1'), or a comma-separated list (e.g. 1,7,9) to insert at "
+"explicit layers. Layers are 1-based."
+msgstr ""
+"แทรก ไส้ใน แบบทึบที่ชั้นเฉพาะ ใช้ N เพื่อแทรกทุกเลเยอร์ N, N#K เพื่อแทรก K "
+"เลเยอร์ทึบต่อเนื่องกันทุกๆ เลเยอร์ N (K เป็นทางเลือก เช่น '5#' เท่ากับ '5#1') "
+"หรือรายการที่คั่นด้วยเครื่องหมายจุลภาค (เช่น 1,7,9) เพื่อแทรกในเลเยอร์ที่ชัดเจน เลเยอร์เป็นแบบ "
+"1"
+
+msgid "Fill Multiline"
+msgstr "ไส้ในหลายบรรทัด"
+
+msgid ""
+"Using multiple lines for the infill pattern, if supported by infill pattern."
+msgstr "การใช้หลายบรรทัดสำหรับรูปแบบ ไส้ใน หากรองรับโดยรูปแบบ ไส้ใน"
+
+msgid "Z-buckling bias optimization (experimental)"
+msgstr "การเพิ่มประสิทธิภาพอคติ Z-buckling (ทดลอง)"
+
+#, fuzzy, c-format, boost-format
+msgid ""
+"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
+"to shorten the effective vertical column length and improve Z-axis "
+"compression buckling resistance. Filament use is preserved. No effect at "
+"~30% sparse infill density and above. Only applies when Sparse infill "
+"pattern is set to Gyroid."
+msgstr ""
+"กระชับคลื่นไจรอยด์ตามแนวแกน Z (แนวตั้ง) ที่ความหนาแน่นของไส้ในต่ำ "
+"เพื่อลดความยาวคอลัมน์แนวตั้งที่มีประสิทธิภาพให้สั้นลง "
+"และปรับปรุงความต้านทานการโก่งงอของการบีบอัดในแกน Z การใช้เส้นพลาสติกจะยังคงอยู่ "
+"ไม่มีผลกระทบที่ความหนาแน่นของไส้ในแบบโปร่งประมาณ ~30% และสูงกว่า "
+"ใช้เมื่อตั้งค่ารูปแบบไส้ในแบบกระจายเป็น Gyroid เท่านั้น"
+
+msgid "Sparse infill pattern"
+msgstr "รูปแบบไส้ในแบบโปร่ง"
+
+msgid "Line pattern for internal sparse infill."
+msgstr "รูปแบบเส้นสำหรับไส้ในแบบกระจัดกระจายภายใน"
+
+msgid "Zig Zag"
+msgstr "ซิกแซก"
+
+msgid "Cross Zag"
+msgstr "ข้ามแซก"
+
+msgid "Locked Zag"
+msgstr "ล็อคแซก"
+
+msgid "Line"
+msgstr "เส้น"
+
+msgid "Grid"
+msgstr "กริด"
+
+msgid "Tri-hexagon"
+msgstr "ไตรหกเหลี่ยม"
+
+msgid "Cubic"
+msgstr "คิวบิก"
+
+msgid "Adaptive Cubic"
+msgstr "ลูกบาศก์แบบปรับได้"
+
+msgid "Quarter Cubic"
+msgstr "ควอเตอร์ลูกบาศก์"
+
+msgid "Support Cubic"
+msgstr "รองรับคิวบิก"
+
+msgid "Lightning"
+msgstr "ฟ้าผ่า"
+
+msgid "Honeycomb"
+msgstr "รังผึ้ง"
+
+msgid "3D Honeycomb"
+msgstr "รังผึ้ง 3 มิติ"
+
+msgid "Lateral Honeycomb"
+msgstr "รังผึ้งด้านข้าง"
+
+msgid "Lateral Lattice"
+msgstr "ตาข่ายด้านข้าง"
+
+msgid "Cross Hatch"
+msgstr "ครอสแฮทช์"
+
+msgid "TPMS-D"
+msgstr "TPMS-D"
+
+msgid "TPMS-FK"
+msgstr "TPMS-FK"
+
+msgid "Gyroid"
+msgstr "ไจรอยด์"
+
+msgid "Lateral lattice angle 1"
+msgstr "มุมขัดแตะด้านข้าง 1"
+
+msgid ""
+"The angle of the first set of Lateral lattice elements in the Z direction. "
+"Zero is vertical."
+msgstr "มุมขององค์ประกอบขัดแตะด้านข้างชุดแรกในทิศทาง Z ศูนย์คือแนวตั้ง"
+
+msgid "Lateral lattice angle 2"
+msgstr "มุมขัดแตะด้านข้าง 2"
+
+msgid ""
+"The angle of the second set of Lateral lattice elements in the Z direction. "
+"Zero is vertical."
+msgstr "มุมขององค์ประกอบขัดแตะด้านข้างชุดที่สองในทิศทาง Z ศูนย์คือแนวตั้ง"
+
+msgid "Infill overhang angle"
+msgstr "ไส้ในมุมยื่น"
+
+msgid ""
+"The angle of the infill angled lines. 60° will result in a pure honeycomb."
+msgstr "มุมของเส้นมุมที่ไส้ในเข้าไป 60° ก็จะได้รังผึ้งที่บริสุทธิ์"
+
+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"
+msgstr "ความยาวสมอ ไส้ใน เบาบาง"
+
+msgid ""
+"Connect an infill line to an internal perimeter with a short segment of an "
+"additional perimeter. If expressed as percentage (example: 15%) it is "
+"calculated over infill extrusion width. Orca Slicer tries to connect two "
+"close infill lines to a short perimeter segment. If no such perimeter "
+"segment shorter than infill_anchor_max is found, the infill line is "
+"connected to a perimeter segment at just one side and the length of the "
+"perimeter segment taken is limited to this parameter, but no longer than "
+"anchor_length_max.\n"
+"Set this parameter to zero to disable anchoring perimeters connected to a "
+"single infill line."
+msgstr ""
+"เชื่อมต่อเส้นไส้ในเข้ากับเส้นรอบวงภายในด้วยส่วนสั้นของเส้นรอบวงเพิ่มไส้ใน หากแสดงเป็นเปอร์เซ็นต์ "
+"(ตัวอย่าง: 15%) ระบบจะคำนวณตามความกว้างของการอัดขึ้นรูปแบบไส้ใน Orca Slicer "
+"พยายามเชื่อมต่อเส้น ไส้ใน สองเส้นที่ปิดสนิทเข้ากับส่วนของเส้นรอบวงสั้นๆ "
+"หากไม่พบส่วนของเส้นรอบวงที่สั้นกว่า infill_anchor_max เส้น ไส้ใน "
+"จะเชื่อมต่อกับส่วนของเส้นรอบวงที่ด้านเดียว "
+"และความยาวของส่วนของเส้นรอบวงที่ใช้จะถูกจำกัดอยู่ที่พารามิเตอร์นี้ แต่ต้องไม่เกิน "
+"anchor_length_max\n"
+"ตั้งค่าพารามิเตอร์นี้เป็นศูนย์เพื่อปิดใช้งานขอบเขตการยึดที่เชื่อมต่อกับบรรทัดไส้ในบรรทัดเดียว"
+
+msgid "0 (no open anchors)"
+msgstr "0 (ไม่มีพุกเปิด)"
+
+msgid "1000 (unlimited)"
+msgstr "1,000 (ไม่จำกัด)"
+
+msgid "Maximum length of the infill anchor"
+msgstr "ความยาวสูงสุดของพุก ไส้ใน"
+
+msgid ""
+"Connect an infill line to an internal perimeter with a short segment of an "
+"additional perimeter. If expressed as percentage (example: 15%) it is "
+"calculated over infill extrusion width. Orca Slicer tries to connect two "
+"close infill lines to a short perimeter segment. If no such perimeter "
+"segment shorter than this parameter is found, the infill line is connected "
+"to a perimeter segment at just one side and the length of the perimeter "
+"segment taken is limited to infill_anchor, but no longer than this "
+"parameter.\n"
+"If set to 0, the old algorithm for infill connection will be used, it should "
+"create the same result as with 1000 & 0."
+msgstr ""
+"เชื่อมต่อเส้นไส้ในเข้ากับเส้นรอบวงภายในด้วยส่วนสั้นของเส้นรอบวงเพิ่มไส้ใน หากแสดงเป็นเปอร์เซ็นต์ "
+"(ตัวอย่าง: 15%) ระบบจะคำนวณตามความกว้างของการอัดขึ้นรูปแบบไส้ใน Orca Slicer "
+"พยายามเชื่อมต่อเส้น ไส้ใน สองเส้นที่ปิดสนิทเข้ากับส่วนของเส้นรอบวงสั้นๆ "
+"หากไม่พบส่วนของเส้นรอบวงที่สั้นกว่าพารามิเตอร์นี้ เส้น ไส้ใน "
+"จะเชื่อมต่อกับส่วนของเส้นรอบวงที่ด้านเดียว และความยาวของส่วนของเส้นรอบวงที่ใช้จะถูกจำกัดไว้ที่ "
+"infill_anchor แต่ไม่ยาวเกินกว่าพารามิเตอร์นี้\n"
+"หากตั้งค่าเป็น 0 จะใช้อัลกอริธึมเก่าสำหรับการเชื่อมต่อแบบ ไส้ใน ซึ่งควรสร้างผลลัพธ์เช่นเดียวกับ "
+"1,000 และ 0"
+
+msgid "0 (Simple connect)"
+msgstr "0 (เชื่อมต่อแบบง่าย)"
+
+msgid "Acceleration of inner walls."
+msgstr "การเร่งความเร็วของผนังด้านใน"
+
+msgid "Acceleration of travel moves."
+msgstr "การเร่งความเร็วของการเดินทาง"
+
+msgid ""
+"Acceleration of top surface infill. Using a lower value may improve top "
+"surface quality."
+msgstr "ความเร่งของไส้ในพื้นผิวด้านบน การใช้ค่าที่ต่ำกว่าอาจปรับปรุงคุณภาพพื้นผิวด้านบนได้"
+
+msgid "Acceleration of outer wall. Using a lower value can improve quality."
+msgstr "ความเร่งของผนังด้านนอก การใช้ค่าที่ต่ำกว่าสามารถปรับปรุงคุณภาพได้"
+
+msgid ""
+"Acceleration of bridges. If the value is expressed as a percentage (e.g. "
+"50%), it will be calculated based on the outer wall acceleration."
+msgstr ""
+"การเร่งความเร็วของสะพาน หากค่าแสดงเป็นเปอร์เซ็นต์ (เช่น 50%) "
+"ค่าดังกล่าวจะคำนวณตามความเร่งของผนังด้านนอก"
+
+msgid "mm/s² or %"
+msgstr "มม./วินาที² หรือ %"
+
+msgid ""
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
+msgstr ""
+"ความเร่งของไส้ในแบบโปร่ง หากค่าแสดงเป็นเปอร์เซ็นต์ (เช่น 100%) "
+"ค่านั้นจะถูกคำนวณตามความเร่งเริ่มต้น"
+
+msgid ""
+"Acceleration of internal solid infill. If the value is expressed as a "
+"percentage (e.g. 100%), it will be calculated based on the default "
+"acceleration."
+msgstr ""
+"ความเร่งของไส้ในของแข็งภายใน หากค่าแสดงเป็นเปอร์เซ็นต์ (เช่น 100%) "
+"ค่านั้นจะถูกคำนวณตามความเร่งเริ่มต้น"
+
+msgid ""
+"Acceleration of the first layer. Using a lower value can improve build plate "
+"adhesion."
+msgstr "ความเร่งของชั้นแรก การใช้ค่าที่ต่ำกว่าสามารถปรับปรุงการยึดเกาะของเพลตได้"
+
+msgid "First layer travel"
+msgstr "การเดินทางชั้นแรก"
+
+msgid ""
+"Travel acceleration of first layer.\n"
+"The percentage value is relative to Travel Acceleration."
+msgstr ""
+"ความเร่งการเคลื่อนที่ของชั้นแรก\n"
+"ค่าเปอร์เซ็นต์สัมพันธ์กับการเร่งความเร็วในการเดินทาง"
+
+msgid "Enable accel_to_decel"
+msgstr "เปิดใช้งาน accel_to_decel"
+
+msgid "Klipper's max_accel_to_decel will be adjusted automatically."
+msgstr "max_accel_to_decel ของ Klipper จะถูกปรับโดยอัตโนมัติ"
+
+msgid "accel_to_decel"
+msgstr "accel_to_decel"
+
+#, c-format, boost-format
+msgid ""
+"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration."
+msgstr "max_accel_to_decel ของ Klipper จะถูกปรับเป็น %% ของการเร่งความเร็วนี้"
+
+msgid "Default jerk."
+msgstr "กระตุกเริ่มต้น"
+
+msgid "Junction Deviation"
+msgstr "ส่วนเบี่ยงเบนทางแยก"
+
+msgid ""
+"Marlin Firmware Junction Deviation (replaces the traditional XY Jerk "
+"setting)."
+msgstr "Marlin Firmware Junction Deviation (แทนที่การตั้งค่า XY Jerk แบบดั้งเดิม)"
+
+msgid "Jerk of outer walls."
+msgstr "การกระตุกของผนังด้านนอก"
+
+msgid "Jerk of inner walls."
+msgstr "การกระตุกของผนังด้านใน"
+
+msgid "Jerk for top surface."
+msgstr "กระตุกสำหรับพื้นผิวด้านบน"
+
+msgid "Jerk for infill."
+msgstr "กระตุกเพื่อไส้ใน"
+
+msgid "Jerk for the first layer."
+msgstr "กระตุกสำหรับชั้นแรก"
+
+msgid "Jerk for travel."
+msgstr "กระตุกสำหรับการเดินทาง"
+
+msgid ""
+"Travel jerk of first layer.\n"
+"The percentage value is relative to Travel Jerk."
+msgstr ""
+"กระตุกการเดินทางของชั้นแรก\n"
+"ค่าเปอร์เซ็นต์สัมพันธ์กับ Travel Jerk"
+
+msgid ""
+"Line width of the first layer. If expressed as a %, it will be computed over "
+"the nozzle diameter."
+msgstr "ความกว้างของเส้นของชั้นแรก หากแสดงเป็น % จะคำนวณตามเส้นผ่านศูนย์กลางของหัวฉีด"
+
+msgid "First layer height"
+msgstr "ความสูงของชั้นแรก"
+
+msgid ""
+"Height of the first layer. Making the first layer height thicker can improve "
+"build plate adhesion."
+msgstr "ความสูงของชั้นแรก การทำให้ชั้นแรกหนาขึ้นสามารถปรับปรุงการยึดเกาะของแผ่นรองพื้นได้"
+
+msgid "Speed of the first layer except the solid infill part."
+msgstr "ความเร็วของชั้นแรก ยกเว้นส่วน ไส้ใน ที่เป็นของแข็ง"
+
+msgid "First layer infill"
+msgstr "ไส้ในชั้นแรก"
+
+msgid "Speed of solid infill part of the first layer."
+msgstr "ความเร็วของส่วน ไส้ใน ที่เป็นของแข็งของชั้นแรก"
+
+msgid "First layer travel speed"
+msgstr "ความเร็วในการเดินทางชั้นแรก"
+
+msgid "Travel speed of the first layer."
+msgstr "ความเร็วเดินหัวเปล่าของเลเยอร์แรก"
+
+msgid "Number of slow layers"
+msgstr "จำนวนชั้นที่ช้า"
+
+msgid ""
+"The first few layers are printed slower than normal. The speed is gradually "
+"increased in a linear fashion over the specified number of layers."
+msgstr ""
+"สองสามชั้นแรกจะพิมพ์ช้ากว่าปกติ ความเร็วจะค่อยๆ เพิ่มขึ้นในลักษณะเชิงเส้นตามจำนวนเลเยอร์ที่ระบุ"
+
+msgid "First layer nozzle temperature"
+msgstr "อุณหภูมิหัวฉีดชั้นแรก"
+
+msgid ""
+"Nozzle temperature for printing the first layer when using this filament."
+msgstr "อุณหภูมิหัวฉีดสำหรับการพิมพ์ชั้นแรกเมื่อใช้ฟิลาเมนต์นี้"
+
+msgid "Full fan speed at layer"
+msgstr "ความเร็วพัดลมเต็มชั้น"
+
+msgid ""
+"Fan speed will be ramped up linearly from zero at layer "
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+msgstr ""
+"ความเร็วพัดลมจะเพิ่มขึ้นเชิงเส้นจากศูนย์ที่เลเยอร์ \"close_fan_the_first_x_layers\" "
+"ไปจนถึงสูงสุดที่เลเยอร์ \"full_fan_speed_layer\" \"full_fan_speed_layer\" "
+"จะถูกละเว้นหากต่ำกว่า \"close_fan_the_first_x_layers\" ซึ่งในกรณีนี้ "
+"พัดลมจะทำงานด้วยความเร็วสูงสุดที่อนุญาตที่เลเยอร์ \"close_fan_the_first_x_layers\" + 1"
+
+msgid "layer"
+msgstr "ชั้น"
+
+msgid "Support interface fan speed"
+msgstr "ความเร็วพัดลมผิวสัมผัสส่วนรองรับ"
+
+msgid ""
+"This part cooling fan speed is applied when printing support interfaces. "
+"Setting this parameter to a higher than regular speed reduces the layer "
+"binding strength between supports and the supported part, making them easier "
+"to separate.\n"
+"Set to -1 to disable it.\n"
+"This setting is overridden by disable_fan_first_layers."
+msgstr ""
+"ความเร็วพัดลมระบายความร้อนในส่วนนี้จะถูกนำไปใช้เมื่อพิมพ์อินเทอร์เฟซที่รองรับ "
+"การตั้งค่าพารามิเตอร์นี้ให้สูงกว่าความเร็วปกติจะช่วยลดความแข็งแรงในการผูกเลเยอร์ระหว่างส่วนรองรับและส่วนที่รองรับ "
+"ทำให้แยกออกจากกันได้ง่ายขึ้น\n"
+"ตั้งค่าเป็น -1 เพื่อปิดใช้งาน\n"
+"การตั้งค่านี้ถูกแทนที่โดย Disable_fan_first_layers"
+
+msgid "Internal bridges fan speed"
+msgstr "ความเร็วพัดลมภายในสะพาน"
+
+msgid ""
+"The part cooling fan speed used for all internal bridges. Set to -1 to use "
+"the overhang fan speed settings instead.\n"
+"\n"
+"Reducing the internal bridges fan speed, compared to your regular fan speed, "
+"can help reduce part warping due to excessive cooling applied over a large "
+"surface for a prolonged period of time."
+msgstr ""
+"ความเร็วพัดลมระบายความร้อนชิ้นส่วนที่ใช้สำหรับบริดจ์ภายในทั้งหมด ตั้งค่าเป็น -1 "
+"เพื่อใช้การตั้งค่าความเร็วพัดลมที่ยื่นออกมาแทน\n"
+"\n"
+"การลดความเร็วพัดลมบริดจ์ภายในเมื่อเปรียบเทียบกับความเร็วพัดลมปกติ "
+"สามารถช่วยลดการบิดงอของชิ้นส่วนเนื่องจากการระบายความร้อนที่มากเกินไปบนพื้นผิวขนาดใหญ่เป็นระยะเวลานาน"
+
+msgid "Ironing fan speed"
+msgstr "ความเร็วพัดลมรีดผิว"
+
+msgid ""
+"This part cooling fan speed is applied when ironing. Setting this parameter "
+"to a lower than regular speed reduces possible nozzle clogging due to the "
+"low volumetric flow rate, making the interface smoother.\n"
+"Set to -1 to disable it."
+msgstr ""
+"ความเร็วพัดลมระบายความร้อนส่วนนี้ใช้กับการรีดผิว "
+"การตั้งค่าพารามิเตอร์นี้ให้ต่ำกว่าความเร็วปกติจะช่วยลดปัญหาการอุดตันของหัวฉีดที่อาจเกิดขึ้นได้เนื่องจากอัตราการไหลของปริมาตรต่ำ "
+"ทำให้อินเทอร์เฟซราบรื่นยิ่งขึ้น\n"
+"ตั้งค่าเป็น -1 เพื่อปิดใช้งาน"
+
+msgid "Ironing flow"
+msgstr "รีดผิวไหล"
+
+msgid ""
+"Filament-specific override for ironing flow. This allows you to customize "
+"the ironing flow for each filament type. Too high value results in "
+"overextrusion on the surface."
+msgstr ""
+"การแทนที่เส้นพลาสติกเฉพาะสำหรับกระแสการรีดผิว "
+"ซึ่งช่วยให้คุณปรับแต่งกระแสการรีดผิวสำหรับเส้นพลาสติกแต่ละประเภทได้ "
+"ค่าที่สูงเกินไปส่งผลให้เกิดการอัดขึ้นรูปมากเกินไปบนพื้นผิว"
+
+msgid "Ironing line spacing"
+msgstr "ระยะห่างระหว่างสายรีดผิว"
+
+msgid ""
+"Filament-specific override for ironing line spacing. This allows you to "
+"customize the spacing between ironing lines for each filament type."
+msgstr ""
+"การแทนที่เส้นพลาสติกเฉพาะสำหรับระยะห่างระหว่างรีดผิว "
+"ซึ่งช่วยให้คุณปรับแต่งระยะห่างระหว่างเส้นรีดผิวสำหรับเส้นพลาสติกแต่ละประเภทได้"
+
+msgid "Ironing inset"
+msgstr "อุปกรณ์รีดผิว"
+
+msgid ""
+"Filament-specific override for ironing inset. This allows you to customize "
+"the distance to keep from the edges when ironing for each filament type."
+msgstr ""
+"การแทนที่เส้นพลาสติกเฉพาะสำหรับส่วนเสริมการรีดผิว "
+"ซึ่งช่วยให้คุณปรับแต่งระยะห่างจากขอบเมื่อรีดผิวสำหรับเส้นพลาสติกแต่ละประเภทได้"
+
+msgid "Ironing speed"
+msgstr "ความเร็วรีดผิว"
+
+msgid ""
+"Filament-specific override for ironing speed. This allows you to customize "
+"the print speed of ironing lines for each filament type."
+msgstr ""
+"การแทนที่เส้นพลาสติกเฉพาะเพื่อความเร็วในการรีดผิว "
+"ซึ่งช่วยให้คุณปรับแต่งความเร็วในการพิมพ์ของเส้นรีดผิวสำหรับเส้นพลาสติกแต่ละประเภทได้"
+
+msgid ""
+"Randomly jitter while printing the wall, so that the surface has a rough "
+"look. This setting controls the fuzzy position."
+msgstr "สุ่มกระวนกระวายใจขณะพิมพ์ผนังเพื่อให้พื้นผิวดูหยาบกร้าน การตั้งค่านี้ควบคุมตำแหน่งที่ไม่ชัดเจน"
+
+msgid "Painted only"
+msgstr "ทาสีเท่านั้น"
+
+msgid "Contour"
+msgstr "คอนทัวร์"
+
+msgid "Hole"
+msgstr "รู"
+
+msgid "Contour and hole"
+msgstr "รูปร่างและรู"
+
+msgid "All walls"
+msgstr "ผนังทั้งหมด"
+
+msgid "Fuzzy skin thickness"
+msgstr "ความหนาผิวฟัซซี"
+
+msgid ""
+"The width within which to jitter. It's advised to be below outer wall line "
+"width."
+msgstr "ความกว้างภายในที่จะกระวนกระวายใจ แนะนำให้อยู่ต่ำกว่าความกว้างของเส้นผนังด้านนอก"
+
+msgid "Fuzzy skin point distance"
+msgstr "ระยะจุดผิวฟัซซี"
+
+msgid ""
+"The average distance between the random points introduced on each line "
+"segment."
+msgstr "ระยะห่างเฉลี่ยระหว่างจุดสุ่มที่แนะนำในแต่ละส่วนของเส้น"
+
+msgid "Apply fuzzy skin to first layer"
+msgstr "ทาผิวที่คลุมเครือเป็นชั้นแรก"
+
+msgid "Whether to apply fuzzy skin on the first layer."
+msgstr "ไม่ว่าจะทาผิวฟุ้งๆในชั้นแรกหรือไม่"
+
+msgid "Fuzzy skin generator mode"
+msgstr "โหมดสร้างผิวฟัซซี"
+
+#, c-format, boost-format
+msgid ""
+"Fuzzy skin generation mode. Works only with Arachne!\n"
+"Displacement: Сlassic mode when the pattern is formed by shifting the nozzle "
+"sideways from the original path.\n"
+"Extrusion: The mode when the pattern formed by the amount of extruded "
+"plastic. This is the fast and straight algorithm without unnecessary nozzle "
+"shake that gives a smooth pattern. But it is more useful for forming loose "
+"walls in the entire they array.\n"
+"Combined: Joint mode [Displacement] + [Extrusion]. The appearance of the "
+"walls is similar to [Displacement] Mode, but it leaves no pores between the "
+"perimeters.\n"
+"\n"
+"Attention! The [Extrusion] and [Combined] modes works only the "
+"fuzzy_skin_thickness parameter not more than the thickness of printed loop. "
+"At the same time, the width of the extrusion for a particular layer should "
+"also not be below a certain level. It is usually equal 15-25%% of a layer "
+"height. Therefore, the maximum fuzzy skin thickness with a perimeter width "
+"of 0.4 mm and a layer height of 0.2 mm will be 0.4-(0.2*0.25)=±0.35mm! If "
+"you enter a higher parameter than this, the error Flow::spacing() will "
+"displayed, and the model will not be sliced. You can choose this number "
+"until this error is repeated."
+msgstr ""
+"โหมดการสร้างผิวฟัซซี ใช้ได้กับ Arachne เท่านั้น!\n"
+"การกระจัด: โหมดคลาสสิกเมื่อรูปแบบถูกสร้างขึ้นโดยการเลื่อนหัวฉีดไปด้านข้างจากเส้นทางเดิม\n"
+"การอัดขึ้นรูป: โหมดเมื่อรูปแบบเกิดขึ้นจากปริมาณของพลาสติกที่อัดขึ้นรูป "
+"นี่เป็นอัลกอริธึมที่รวดเร็วและตรงไปตรงมา โดยไม่มีการเขย่าหัวฉีดโดยไม่จำเป็นซึ่งให้รูปแบบที่ราบรื่น "
+"แต่จะมีประโยชน์มากกว่าสำหรับการสร้างผนังที่หลวมทั่วทั้งบริเวณ\n"
+"รวม: โหมดข้อต่อ [การแทนที่] + [การอัดขึ้นรูป] ลักษณะของผนังจะคล้ายกับโหมด [Displacement] "
+"แต่ไม่มีรูพรุนระหว่างเส้นรอบวง\n"
+"\n"
+"ความสนใจ! โหมด [การอัดขึ้นรูป] และ [รวม] ใช้งานได้เฉพาะพารามิเตอร์ "
+"fuzzy_skin_thickness ซึ่งไม่เกินความหนาของลูปที่พิมพ์ ในขณะเดียวกัน "
+"ความกว้างของการอัดขึ้นรูปสำหรับชั้นใดชั้นหนึ่งก็ไม่ควรต่ำกว่าระดับที่กำหนดด้วย โดยปกติจะเท่ากับ "
+"15-25%% ของความสูงของชั้น ดังนั้น ความหนาของผิวฟัซซีสูงสุดที่มีความกว้างเส้นรอบวง 0.4 มม. "
+"และความสูงของชั้น 0.2 มม. จะเป็น 0.4-(0.2*0.25)=±0.35 มม.! "
+"หากคุณป้อนพารามิเตอร์ที่สูงกว่านี้ ข้อผิดพลาด Flow::spacing() จะปรากฏขึ้น "
+"และโมเดลจะไม่ถูกแบ่งส่วน คุณสามารถเลือกหมายเลขนี้ได้จนกว่าข้อผิดพลาดนี้จะเกิดขึ้นซ้ำ"
+
+msgid "Displacement"
+msgstr "การกระจัด"
+
+msgid "Extrusion"
+msgstr "การอัดขึ้นรูป"
+
+msgid "Combined"
+msgstr "รวม"
+
+msgid "Fuzzy skin noise type"
+msgstr "ประเภทเสียงผิวเลือน"
+
+msgid ""
+"Noise type to use for fuzzy skin generation:\n"
+"Classic: Classic uniform random noise.\n"
+"Perlin: Perlin noise, which gives a more consistent texture.\n"
+"Billow: Similar to perlin noise, but clumpier.\n"
+"Ridged Multifractal: Ridged noise with sharp, jagged features. Creates "
+"marble-like textures.\n"
+"Voronoi: Divides the surface into voronoi cells, and displaces each one by a "
+"random amount. Creates a patchwork texture.\n"
+"Ripple: Uniform ripple pattern that ripples left and right of the original "
+"path. Repeating pattern, woven appearance."
+msgstr ""
+"ประเภทเสียงรบกวนที่ใช้สำหรับการสร้างผิวที่คลุมเครือ:\n"
+"คลาสสิก: เสียงสุ่มเครื่องแบบคลาสสิก\n"
+"Perlin: เสียง Perlin ซึ่งให้เนื้อสัมผัสที่สม่ำเสมอยิ่งขึ้น\n"
+"Billow: คล้ายกับเสียงเพอร์ลิน แต่เป็นกลุ่มมากกว่า\n"
+"Ridged Multifractal: สัญญาณรบกวนที่คมชัดพร้อมคุณสมบัติหยัก สร้างพื้นผิวเหมือนหินอ่อน\n"
+"โวโรนอย: แบ่งพื้นผิวออกเป็นเซลล์โวโรนอย และแทนที่แต่ละเซลล์ด้วยจำนวนสุ่ม "
+"สร้างพื้นผิวแบบเย็บปะติดปะต่อกัน\n"
+"ระลอกคลื่น: รูปแบบระลอกคลื่นสม่ำเสมอที่กระเพื่อมไปทางซ้ายและขวาของเส้นทางเดิม ลายซ้ำ "
+"ลักษณะการทอ."
+
+msgid "Classic"
+msgstr "คลาสสิค"
+
+msgid "Perlin"
+msgstr "เพอร์ลิน"
+
+msgid "Billow"
+msgstr "บิลโลว์"
+
+msgid "Ridged Multifractal"
+msgstr "Multifractal แบบสัน"
+
+msgid "Voronoi"
+msgstr "โวโรน้อย"
+
+msgid "Ripple"
+msgstr "ระลอกคลื่น"
+
+msgid "Fuzzy skin feature size"
+msgstr "ขนาดลักษณะผิวฟัซซี"
+
+msgid ""
+"The base size of the coherent noise features, in mm. Higher values will "
+"result in larger features."
+msgstr ""
+"ขนาดฐานของคุณสมบัติเสียงที่สอดคล้องกัน หน่วยเป็น มม. ค่าที่สูงกว่าจะส่งผลให้มีคุณลักษณะที่ใหญ่ขึ้น"
+
+msgid "Fuzzy Skin Noise Octaves"
+msgstr "อ็อกเทฟเสียงผิวฟัซซี"
+
+msgid ""
+"The number of octaves of coherent noise to use. Higher values increase the "
+"detail of the noise, but also increase computation time."
+msgstr ""
+"จำนวนอ็อกเทฟของสัญญาณรบกวนที่สอดคล้องกันที่จะใช้ ค่าที่สูงกว่าจะเพิ่มรายละเอียดของสัญญาณรบกวน "
+"แต่ยังเพิ่มเวลาในการคำนวณด้วย"
+
+msgid "Fuzzy skin noise persistence"
+msgstr "ความคงอยู่ของเสียงผิวเลือน"
+
+msgid ""
+"The decay rate for higher octaves of the coherent noise. Lower values will "
+"result in smoother noise."
+msgstr ""
+"อัตราการสลายตัวของอ็อกเทฟที่สูงขึ้นของสัญญาณรบกวนที่สอดคล้องกัน "
+"ค่าที่ต่ำกว่าจะส่งผลให้มีสัญญาณรบกวนที่นุ่มนวลขึ้น"
+
+msgid "Number of ripples per layer"
+msgstr "จำนวนระลอกคลื่นต่อชั้น"
+
+msgid "Controls how many full cycles of ripples will be added per layer."
+msgstr "ควบคุมจำนวนระลอกคลื่นเต็มที่จะเพิ่มต่อเลเยอร์"
+
+msgid "Ripple offset"
+msgstr "ระลอกชดเชย"
+
+msgid ""
+"Shifts the ripple phase forward along the print path by the specified "
+"percentage of a wavelength each layer period.\n"
+"- 0% keeps every layer identical.\n"
+"- 50% shifts the pattern by half a wavelength, effectively inverting the "
+"phase.\n"
+"- 100% shifts the pattern by a full wavelength, returning to the original "
+"phase.\n"
+"\n"
+"The shift is applied once every number of layers set by Layers between "
+"ripple offset, so layers within the same group are printed identically."
+msgstr ""
+"เลื่อนระยะระลอกคลื่นไปข้างหน้าตามเส้นทางการพิมพ์ตามเปอร์เซ็นต์ที่ระบุของความยาวคลื่นในแต่ละช่วงของเลเยอร์\n"
+"- 0% ทำให้ทุกชั้นเหมือนกัน\n"
+"- 50% เลื่อนรูปแบบลงครึ่งหนึ่งของความยาวคลื่น จึงสามารถกลับเฟสได้อย่างมีประสิทธิภาพ\n"
+"- 100% เลื่อนรูปแบบตามความยาวคลื่นเต็ม และกลับสู่เฟสเดิม\n"
+"\n"
+"การเปลี่ยนแปลงจะใช้ทุกๆ จำนวนเลเยอร์ที่กำหนดโดยเลเยอร์ระหว่างออฟเซ็ตระลอกคลื่น "
+"ดังนั้นเลเยอร์ภายในกลุ่มเดียวกันจึงถูกพิมพ์เหมือนกัน"
+
+msgid "Layers between ripple offset"
+msgstr "เลเยอร์ระหว่างการชดเชยระลอกคลื่น"
+
+msgid ""
+"Specifies how many consecutive layers share the same ripple phase before the "
+"offset is applied.\n"
+"For example:\n"
+"- 1 = Layer 1 is printed with the base ripple pattern, then layer 2 is "
+"shifted by the configured offset, then layer 3 returns to the base pattern, "
+"and so on.\n"
+"- 3 = Layers 1 to 3 are printed with the base ripple pattern, then layers 4 "
+"to 6 are shifted by the configured offset, then layers 7 to 9 return to the "
+"base pattern, etc."
+msgstr ""
+"ระบุจำนวนเลเยอร์ที่ต่อเนื่องกันที่ใช้เฟสระลอกคลื่นเดียวกันก่อนที่จะใช้ออฟเซ็ต\n"
+"ตัวอย่างเช่น:\n"
+"- 1 = เลเยอร์ 1 ถูกพิมพ์ด้วยรูปแบบระลอกคลื่นฐาน จากนั้นเลเยอร์ 2 "
+"จะถูกเลื่อนโดยออฟเซ็ตที่กำหนดค่าไว้ จากนั้นเลเยอร์ 3 จะกลับสู่รูปแบบฐาน และอื่นๆ\n"
+"- 3 = เลเยอร์ 1 ถึง 3 จะถูกพิมพ์ด้วยรูปแบบระลอกฐาน จากนั้นเลเยอร์ 4 ถึง 6 "
+"จะถูกเลื่อนโดยออฟเซ็ตที่กำหนดค่าไว้ จากนั้นเลเยอร์ 7 ถึง 9 จะกลับสู่รูปแบบพื้นฐาน เป็นต้น"
+
+msgid "Filter out tiny gaps"
+msgstr "กรองช่องว่างเล็กๆ ออกไป"
+
+msgid "Layers and Perimeters"
+msgstr "ชั้นและปริมณฑล"
+
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill."
+msgstr ""
+"อย่าพิมพ์การเติมช่องว่างโดยมีความยาวน้อยกว่าเกณฑ์ที่ระบุ (เป็นมม.) "
+"การตั้งค่านี้ใช้กับการเติมช่องว่างด้านบน ด้านล่าง และทึบ "
+"และหากใช้เครื่องกำเนิดเส้นรอบวงแบบคลาสสิก ก็สามารถทำการเติมช่องว่างที่ผนังได้"
+
+msgid ""
+"Speed of gap infill. Gap usually has irregular line width and should be "
+"printed more slowly."
+msgstr ""
+"ความเร็วของการเติมช่องว่าง Gap มักจะมีความกว้างของเส้นไม่สม่ำเสมอ และควรพิมพ์ให้ช้าลง"
+
+msgid "Precise Z height"
+msgstr "ความสูง Z ที่แม่นยำ"
+
+msgid ""
+"Enable this to get precise Z height of object after slicing. It will get the "
+"precise object height by fine-tuning the layer heights of the last few "
+"layers. Note that this is an experimental parameter."
+msgstr ""
+"เปิดใช้งานสิ่งนี้เพื่อรับความสูง Z ของวัตถุที่แม่นยำหลังจากการแบ่งส่วน "
+"มันจะได้ความสูงของวัตถุที่แม่นยำโดยการปรับความสูงของเลเยอร์ของสองสามเลเยอร์สุดท้ายอย่างละเอียด "
+"โปรดทราบว่านี่เป็นพารามิเตอร์ทดลอง"
+
+msgid "Arc fitting"
+msgstr "ข้อต่อส่วนโค้ง"
+
+msgid ""
+"Enable this to get a G-code file which has G2 and G3 moves. The fitting "
+"tolerance is same as the resolution.\n"
+"\n"
+"Note: For Klipper machines, this option is recommended to be disabled. "
+"Klipper does not benefit from arc commands as these are split again into "
+"line segments by the firmware. This results in a reduction in surface "
+"quality as line segments are converted to arcs by the slicer and then back "
+"to line segments by the firmware."
+msgstr ""
+"เปิดใช้งานสิ่งนี้เพื่อรับไฟล์ G-code ซึ่งมีการเคลื่อนไหว G2 และ G3 "
+"ความคลาดเคลื่อนในการติดตั้งจะเหมือนกับความละเอียด\n"
+"\n"
+"หมายเหตุ: สำหรับเครื่อง Klipper แนะนำให้ปิดการใช้งานตัวเลือกนี้ Klipper "
+"ไม่ได้รับประโยชน์จากคำสั่ง arc "
+"เนื่องจากคำสั่งเหล่านี้จะถูกแบ่งออกเป็นส่วนของบรรทัดอีกครั้งโดยเฟิร์มแวร์ "
+"ซึ่งส่งผลให้คุณภาพพื้นผิวลดลง เนื่องจากส่วนของเส้นถูกแปลงเป็นส่วนโค้งโดยตัวแบ่งส่วนข้อมูล "
+"จากนั้นเฟิร์มแวร์จะแปลงกลับไปยังส่วนของเส้นตรง"
+
+msgid "Add line number"
+msgstr "เพิ่มหมายเลขบรรทัด"
+
+msgid ""
+"Enable this to add line number(Nx) at the beginning of each G-code line."
+msgstr "เปิดใช้งานสิ่งนี้เพื่อเพิ่มหมายเลขบรรทัด (Nx) ที่จุดเริ่มต้นของบรรทัด G-code แต่ละบรรทัด"
+
+msgid "Scan first layer"
+msgstr "สแกนชั้นแรก"
+
+msgid ""
+"Enable this to enable the camera on printer to check the quality of first "
+"layer."
+msgstr "เปิดใช้งานสิ่งนี้เพื่อให้กล้องบนเครื่องพิมพ์สามารถตรวจสอบคุณภาพของเลเยอร์แรกได้"
+
+msgid "Power Loss Recovery"
+msgstr "การกู้คืนการสูญเสียพลังงาน"
+
+msgid ""
+"Choose how to control power loss recovery. When set to Printer "
+"configuration, the slicer will not emit power loss recovery G-code and will "
+"leave the printer's configuration unchanged. Applicable to Bambu Lab or "
+"Marlin 2 firmware based printers."
+msgstr ""
+"เลือกวิธีควบคุมการกู้คืนพลังงานที่สูญเสียไป เมื่อตั้งค่าเป็นการกำหนดค่าเครื่องพิมพ์ "
+"ตัวแบ่งส่วนข้อมูลจะไม่ปล่อย G-code การกู้คืนการสูญเสียพลังงาน "
+"และจะปล่อยให้การกำหนดค่าของเครื่องพิมพ์ไม่เปลี่ยนแปลง ใช้ได้กับเครื่องพิมพ์ที่ใช้เฟิร์มแวร์ Bambu "
+"Lab หรือ Marlin 2"
+
+msgid "Printer configuration"
+msgstr "การกำหนดค่าเครื่องพิมพ์"
+
+msgid "Nozzle type"
+msgstr "ชนิดหัวฉีด"
+
+msgid ""
+"The metallic material of nozzle. This determines the abrasive resistance of "
+"nozzle, and what kind of filament can be printed."
+msgstr ""
+"วัสดุโลหะของหัวฉีด สิ่งนี้จะกำหนดความต้านทานต่อการขัดถูของหัวฉีด "
+"และชนิดของฟิลาเมนท์ที่สามารถพิมพ์ได้"
+
+msgid "Undefine"
+msgstr "ไม่กำหนด"
+
+msgid "Hardened steel"
+msgstr "เหล็กชุบแข็ง"
+
+msgid "Stainless steel"
+msgstr "สแตนเลส"
+
+msgid "Tungsten carbide"
+msgstr "ทังสเตนคาร์ไบด์"
+
+msgid "Nozzle HRC"
+msgstr "หัวฉีด HRC"
+
+msgid ""
+"The nozzle's hardness. Zero means no checking for nozzle's hardness during "
+"slicing."
+msgstr "ความแข็งของหัวฉีด ค่าศูนย์หมายถึงไม่ต้องตรวจสอบความแข็งของหัวฉีดระหว่างการตัด"
+
+msgid "HRC"
+msgstr "เหล็กแผ่นรีดร้อน"
+
+msgid "Printer structure"
+msgstr "โครงสร้างเครื่องพิมพ์"
+
+msgid "The physical arrangement and components of a printing device."
+msgstr "การจัดเรียงทางกายภาพและส่วนประกอบของอุปกรณ์การพิมพ์"
+
+msgid "CoreXY"
+msgstr "CoreXY"
+
+msgid "I3"
+msgstr "I3"
+
+msgid "Hbot"
+msgstr "ฮอทบอต"
+
+msgid "Delta"
+msgstr "เดลต้า"
+
+msgid "Best object position"
+msgstr "ตำแหน่งวัตถุที่ดีที่สุด"
+
+msgid "Best auto arranging position in range [0,1] w.r.t. bed shape."
+msgstr "ตำแหน่งการจัดเรียงอัตโนมัติที่ดีที่สุดในช่วง [0,1] w.r.t. รูปร่างฐานพิมพ์"
+
+msgid ""
+"Enable this option if machine has auxiliary part cooling fan. G-code "
+"command: M106 P2 S(0-255)."
+msgstr ""
+"เปิดใช้งานตัวเลือกนี้หากเครื่องมีพัดลมระบายความร้อนชิ้นส่วนเสริม คำสั่งรหัส G: M106 P2 S(0-255)"
+
+msgid ""
+"Start the fan this number of seconds earlier than its target start time (you "
+"can use fractional seconds). It assumes infinite acceleration for this time "
+"estimation, and will only take into account G1 and G0 moves (arc fitting is "
+"unsupported).\n"
+"It won't move fan commands from custom G-code (they act as a sort of "
+"'barrier').\n"
+"It won't move fan commands into the start G-code if the 'only custom start G-"
+"code' is activated.\n"
+"Use 0 to deactivate."
+msgstr ""
+"เริ่มพัดลมตามจำนวนวินาทีนี้เร็วกว่าเวลาเริ่มต้นเป้าหมาย (คุณสามารถใช้เศษส่วนวินาทีได้) "
+"โดยจะใช้ความเร่งอนันต์สำหรับการประมาณเวลานี้ และจะพิจารณาเฉพาะการเคลื่อนที่ของ G1 และ G0 "
+"เท่านั้น (ไม่รองรับการปรับส่วนโค้ง)\n"
+"มันจะไม่ย้ายคำสั่งพัดลมจาก G-code ที่กำหนดเอง (คำสั่งเหล่านั้นทำหน้าที่เป็น 'อุปสรรค')\n"
+"มันจะไม่ย้ายคำสั่งพัดลมไปที่รหัส G เริ่มต้นหากเปิดใช้งาน 'รหัส G-รหัสเริ่มต้นแบบกำหนดเองเท่านั้น'\n"
+"ใช้ 0 เพื่อปิดใช้งาน"
+
+msgid "Only overhangs"
+msgstr "มีเพียงส่วนยื่นเท่านั้น"
+
+msgid "Will only take into account the delay for the cooling of overhangs."
+msgstr "จะคำนึงถึงความล่าช้าในการระบายความร้อนของส่วนยื่นเท่านั้น"
+
+msgid "Fan kick-start time"
+msgstr "เวลาเริ่มเตะพัดลม"
+
+msgid ""
+"Emit a max fan speed command for this amount of seconds before reducing to "
+"target speed to kick-start the cooling fan.\n"
+"This is useful for fans where a low PWM/power may be insufficient to get the "
+"fan started spinning from a stop, or to get the fan up to speed faster.\n"
+"Set to 0 to deactivate."
+msgstr ""
+"ปล่อยคำสั่งความเร็วพัดลมสูงสุดเป็นเวลาไม่กี่วินาทีก่อนที่จะลดความเร็วลงตามเป้าหมายเพื่อสตาร์ทพัดลมระบายความร้อน\n"
+"สิ่งนี้มีประโยชน์สำหรับพัดลมที่ความเร็ว/PWM ต่ำอาจไม่เพียงพอที่จะทำให้พัดลมเริ่มหมุนจากจุดหยุด "
+"หรือเพื่อให้พัดลมทำงานเร็วขึ้น\n"
+"ตั้งค่าเป็น 0 เพื่อปิดใช้งาน"
+
+msgid "Minimum non-zero part cooling fan speed"
+msgstr "ความเร็วพัดลมระบายความร้อนชิ้นส่วนขั้นต่ำที่ไม่เป็นศูนย์"
+
+msgid ""
+"Some part-cooling fans cannot start spinning when commanded below a certain "
+"PWM duty cycle. When set above 0, any non-zero part-cooling fan command will "
+"be raised to at least this percentage so the fan reliably starts. A fan "
+"command of 0 (fan off) is always honoured exactly. This clamp is applied "
+"after every other fan calculation (first-layer ramp, layer-time "
+"interpolation, overhang/bridge/support-interface/ironing overrides), so "
+"scaling still operates within the range [this value, 100%].\n"
+"If your firmware already disables the fan below a threshold (for example "
+"Klipper's [fan] off_below: 0.10 shuts the fan off whenever the commanded "
+"duty cycle is below 10%), this option and the firmware threshold should "
+"ideally be set to the same value. Matching them (e.g. off_below: 0.10 in "
+"Klipper and 10% here) guarantees the slicer never emits a non-zero value "
+"that the firmware would silently drop, and the fan never receives a value "
+"below the one you know it can actually spool at.\n"
+"Set to 0 to deactivate."
+msgstr ""
+"พัดลมระบายความร้อนบางส่วนไม่สามารถเริ่มหมุนได้เมื่อได้รับคำสั่งให้ต่ำกว่ารอบการทำงานของ PWM "
+"ที่กำหนด เมื่อตั้งค่าสูงกว่า 0 "
+"คำสั่งพัดลมระบายความร้อนที่ไม่เป็นศูนย์จะเพิ่มขึ้นเป็นเปอร์เซ็นต์เป็นอย่างน้อย "
+"เพื่อให้พัดลมเริ่มทำงานได้อย่างน่าเชื่อถือ คำสั่งพัดลมเป็น 0 (ปิดพัดลม) จะได้รับเกียรติเสมอ "
+"แคลมป์นี้จะถูกนำไปใช้หลังจากการคำนวณพัดลมอื่นๆ ทุกครั้ง (การลาดชั้นแรก การแก้ไขเลเยอร์ไทม์ "
+"ส่วนยื่น/บริดจ์/ส่วนรองรับ/การแทนที่การรีดผิว) ดังนั้นการปรับขนาดยังคงทำงานภายในช่วง [ค่านี้ "
+"100%]\n"
+"หากเฟิร์มแวร์ของคุณปิดใช้งานพัดลมที่ต่ำกว่าเกณฑ์อยู่แล้ว (เช่น [พัดลม] off_below ของ Klipper: "
+"0.10 จะปิดพัดลมเมื่อใดก็ตามที่รอบการทำงานที่ได้รับคำสั่งต่ำกว่า 10%) "
+"ตัวเลือกนี้และเกณฑ์ของเฟิร์มแวร์ควรได้รับการตั้งค่าตามอุดมคติให้เป็นค่าเดียวกัน การจับคู่พวกมัน (เช่น "
+"off_below: 0.10 ใน Klipper และ 10% ที่นี่) "
+"รับประกันว่าตัวแบ่งส่วนข้อมูลจะไม่ปล่อยค่าที่ไม่ใช่ศูนย์ซึ่งเฟิร์มแวร์จะดรอปอย่างเงียบๆ "
+"และพัดลมจะไม่ได้รับค่าที่ต่ำกว่าค่าที่คุณรู้ว่าสามารถสปูลได้จริง\n"
+"ตั้งค่าเป็น 0 เพื่อปิดใช้งาน"
+
+msgid "%"
+msgstr "%"
+
+msgid "Time cost"
+msgstr "ต้นทุนเวลา"
+
+msgid "The printer cost per hour."
+msgstr "ต้นทุนเครื่องพิมพ์ต่อชั่วโมง"
+
+msgid "money/h"
+msgstr "เงิน/ชม."
+
+msgid "Support control chamber temperature"
+msgstr "รองรับการควบคุมอุณหภูมิห้องควบคุม"
+
+msgid ""
+"This option is enabled if machine support controlling chamber temperature\n"
+"G-code command: M141 S(0-255)"
+msgstr ""
+"ตัวเลือกนี้จะเปิดใช้งานหากเครื่องรองรับการควบคุมอุณหภูมิห้องเพาะเลี้ยง\n"
+"คำสั่งรหัส G: M141 S(0-255)"
+
+msgid "Support air filtration"
+msgstr "รองรับการกรองอากาศ"
+
+msgid ""
+"Enable this if printer support air filtration\n"
+"G-code command: M106 P3 S(0-255)"
+msgstr ""
+"เปิดใช้งานสิ่งนี้หากเครื่องพิมพ์รองรับการกรองอากาศ\n"
+"คำสั่งรหัส G: M106 P3 S(0-255)"
+
+msgid "G-code flavor"
+msgstr "รสจีโค้ด"
+
+msgid "What kind of G-code the printer is compatible with."
+msgstr "เครื่องพิมพ์ G-code ชนิดใดที่เข้ากันได้กับ"
+
+msgid "Klipper"
+msgstr "คลิปเปอร์"
+
+msgid "Pellet Modded Printer"
+msgstr "เครื่องพิมพ์ Modded เม็ด"
+
+msgid "Enable this option if your printer uses pellets instead of filaments."
+msgstr "เปิดใช้งานตัวเลือกนี้หากเครื่องพิมพ์ของคุณใช้เม็ดแทนเส้นพลาสติก"
+
+msgid "Support multi bed types"
+msgstr "รองรับฐานพิมพ์หลายประเภท"
+
+msgid "Enable this option if you want to use multiple bed types."
+msgstr "เปิดใช้งานตัวเลือกนี้หากคุณต้องการใช้ฐานพิมพ์หลายประเภท"
+
+msgid "Label objects"
+msgstr "ติดป้ายกำกับวัตถุ"
+
+msgid ""
+"Enable this to add comments into the G-code labeling print moves with what "
+"object they belong to, which is useful for the Octoprint CancelObject plug-"
+"in. This setting is NOT compatible with Single Extruder Multi Material setup "
+"and Wipe into Object / Wipe into Infill."
+msgstr ""
+"เปิดใช้งานสิ่งนี้เพื่อเพิ่มความคิดเห็นลงในการพิมพ์การติดฉลาก G-code ด้วยวัตถุที่อยู่ในนั้น "
+"ซึ่งมีประโยชน์สำหรับปลั๊กอิน Octoprint CancelObject การตั้งค่านี้เข้ากันไม่ได้กับการตั้งค่า "
+"Single ชุดดันเส้น Multi Material และ Wipe into Object / Wipe into ไส้ใน"
+
+msgid "Exclude objects"
+msgstr "ไม่รวมวัตถุ"
+
+msgid "Enable this option to add EXCLUDE OBJECT command in G-code."
+msgstr "เปิดใช้งานตัวเลือกนี้เพื่อเพิ่มคำสั่ง EXCLUDE OBJECT ใน G-code"
+
+msgid "Verbose G-code"
+msgstr "G-code แบบละเอียด"
+
+msgid ""
+"Enable this to get a commented G-code file, with each line explained by a "
+"descriptive text. If you print from SD card, the additional weight of the "
+"file could make your firmware slow down."
+msgstr ""
+"เปิดใช้งานสิ่งนี้เพื่อรับไฟล์ G-code ที่มีความคิดเห็น โดยแต่ละบรรทัดจะอธิบายด้วยข้อความอธิบาย "
+"หากคุณพิมพ์จากการ์ด SD น้ำหนักที่เพิ่มขึ้นของไฟล์อาจทำให้เฟิร์มแวร์ของคุณช้าลง"
+
+msgid "Infill combination"
+msgstr "ไส้ในชุดค่าผสม"
+
+msgid ""
+"Automatically Combine sparse infill of several layers to print together to "
+"reduce time. Wall is still printed with original layer height."
+msgstr ""
+"รวมไส้ในแบบโปร่งของหลายชั้นโดยอัตโนมัติเพื่อพิมพ์เข้าด้วยกันเพื่อลดเวลา "
+"ผนังยังคงพิมพ์ด้วยความสูงชั้นเดิม"
+
+msgid "Infill shift step"
+msgstr "ขั้นตอนไส้ในกะ"
+
+msgid ""
+"This parameter adds a slight displacement to each layer of infill to create "
+"a cross texture."
+msgstr "พารามิเตอร์นี้จะเพิ่มการกระจัดเล็กน้อยในแต่ละชั้นของ ไส้ใน เพื่อสร้างพื้นผิวแบบกากบาท"
+
+msgid "Sparse infill rotation template"
+msgstr "เทมเพลตการหมุน ไส้ใน แบบกระจัดกระจาย"
+
+msgid ""
+"Rotate the sparse infill direction per layer using a template of angles. "
+"Enter comma-separated degrees (e.g., '0,30,60,90'). Angles are applied in "
+"order by layer and repeat when the list ends. Advanced syntax is supported: "
+"'+5' rotates +5° every layer; '+5#5' rotates +5° every 5 layers. See the "
+"Wiki for details. When a template is set, the standard infill direction "
+"setting is ignored. Note: some infill patterns (e.g., Gyroid) control "
+"rotation themselves; use with care."
+msgstr ""
+"หมุนทิศทางไส้ในแบบโปร่งต่อเลเยอร์โดยใช้เทมเพลตมุม ป้อนองศาที่คั่นด้วยเครื่องหมายจุลภาค (เช่น "
+"'0,30,60,90') มุมจะถูกนำไปใช้ตามลำดับชั้นและทำซ้ำเมื่อรายการสิ้นสุด รองรับไวยากรณ์ขั้นสูง: "
+"'+5' หมุน +5° ทุกเลเยอร์; '+5#5' หมุน +5° ทุกๆ 5 เลเยอร์ ดูวิกิสำหรับรายละเอียด "
+"เมื่อตั้งค่าเทมเพลต การตั้งค่าทิศทางไส้ในมาตรฐานจะถูกละเว้น หมายเหตุ: รูปแบบไส้ในบางรูปแบบ "
+"(เช่น ไจรอยด์) จะควบคุมการหมุนด้วยตัวเอง ใช้ด้วยความระมัดระวัง"
+
+msgid "Solid infill rotation template"
+msgstr "เทมเพลตการหมุน ไส้ใน ที่เป็นของแข็ง"
+
+msgid ""
+"This parameter adds a rotation of solid infill direction to each layer "
+"according to the specified template. The template is a comma-separated list "
+"of angles in degrees, e.g. '0,90'. The first angle is applied to the first "
+"layer, the second angle to the second layer, and so on. If there are more "
+"layers than angles, the angles will be repeated. Note that not all solid "
+"infill patterns support rotation."
+msgstr ""
+"พารามิเตอร์นี้จะเพิ่มการหมุนของทิศทางไส้ในแบบทึบลงในแต่ละชั้นตามเทมเพลตที่ระบุ "
+"เทมเพลตคือรายการมุมในหน่วยองศาที่คั่นด้วยเครื่องหมายจุลภาค เช่น '0,90'. "
+"มุมแรกใช้กับเลเยอร์แรก มุมที่สองกับเลเยอร์ที่สอง และอื่นๆ หากมีชั้นมากกว่ามุม มุมจะเกิดซ้ำ "
+"โปรดทราบว่ารูปแบบไส้ในแบบทึบบางรูปแบบไม่รองรับการหมุน"
+
+msgid "Skeleton infill density"
+msgstr "ความหนาแน่นของโครงกระดูก"
+
+msgid ""
+"The remaining part of the model contour after removing a certain depth from "
+"the surface is called the skeleton. This parameter is used to adjust the "
+"density of this section. When two regions have the same sparse infill "
+"settings but different skeleton densities, their skeleton areas will develop "
+"overlapping sections. Default is as same as infill density."
+msgstr ""
+"ส่วนที่เหลือของรูปร่างของแบบจำลองหลังจากลบความลึกบางส่วนออกจากพื้นผิวแล้วเรียกว่าโครงกระดูก "
+"พารามิเตอร์นี้ใช้เพื่อปรับความหนาแน่นของส่วนนี้ เมื่อสองภูมิภาคมีการตั้งค่าไส้ในแบบโปร่งเหมือนกัน "
+"แต่มีความหนาแน่นของโครงกระดูกต่างกัน พื้นที่โครงกระดูกของพวกมันจะพัฒนาส่วนที่ทับซ้อนกัน "
+"ค่าเริ่มต้นจะเหมือนกับความหนาแน่นของ ไส้ใน"
+
+msgid "Skin infill density"
+msgstr "ไส้ในความหนาแน่นของผิวหนัง"
+
+msgid ""
+"The portion of the model's outer surface within a certain depth range is "
+"called the skin. This parameter is used to adjust the density of this "
+"section. When two regions have the same sparse infill settings but different "
+"skin densities, this area will not be split into two separate regions. "
+"Default is as same as infill density."
+msgstr ""
+"ส่วนของพื้นผิวด้านนอกของแบบจำลองภายในช่วงความลึกที่กำหนดเรียกว่าผิวหนัง "
+"พารามิเตอร์นี้ใช้เพื่อปรับความหนาแน่นของส่วนนี้ เมื่อสองภูมิภาคมีการตั้งค่าไส้ในแบบโปร่งเหมือนกัน "
+"แต่มีความหนาแน่นของผิวหนังต่างกัน พื้นที่นี้จะไม่ถูกแบ่งออกเป็นสองภูมิภาคที่แยกจากกัน "
+"ค่าเริ่มต้นจะเหมือนกับความหนาแน่นของ ไส้ใน"
+
+msgid "Skin infill depth"
+msgstr "ไส้ในความลึกให้กับผิว"
+
+msgid "The parameter sets the depth of skin."
+msgstr "พารามิเตอร์จะกำหนดความลึกของผิวหนัง"
+
+msgid "Infill lock depth"
+msgstr "ไส้ในความลึกในการล็อค"
+
+msgid "The parameter sets the overlapping depth between the interior and skin."
+msgstr "พารามิเตอร์จะตั้งค่าความลึกที่ทับซ้อนกันระหว่างภายในและผิวหนัง"
+
+msgid "Skin line width"
+msgstr "ความกว้างของเส้นผิวหนัง"
+
+msgid "Adjust the line width of the selected skin paths."
+msgstr "ปรับความกว้างของเส้นของเส้นทางสกินที่เลือก"
+
+msgid "Skeleton line width"
+msgstr "ความกว้างของเส้นโครงกระดูก"
+
+msgid "Adjust the line width of the selected skeleton paths."
+msgstr "ปรับความกว้างของเส้นของเส้นทางโครงกระดูกที่เลือก"
+
+msgid "Symmetric infill Y axis"
+msgstr "แกน Y ไส้ในแบบสมมาตร"
+
+msgid ""
+"If the model has two parts that are symmetric about the Y axis, and you want "
+"these parts to have symmetric textures, please click this option on one of "
+"the parts."
+msgstr ""
+"หากแบบจำลองมีสองส่วนที่สมมาตรเกี่ยวกับแกน Y และคุณต้องการให้ส่วนเหล่านี้มีพื้นผิวที่สมมาตร "
+"โปรดคลิกตัวเลือกนี้บนส่วนใดส่วนหนึ่ง"
+
+msgid "Infill combination - Max layer height"
+msgstr "ชุดค่าผสม ไส้ใน - ความสูงของชั้นสูงสุด"
+
+msgid ""
+"Maximum layer height for the combined sparse infill.\n"
+"\n"
+"Set it to 0 or 100% to use the nozzle diameter (for maximum reduction in "
+"print time) or a value of ~80% to maximize sparse infill strength.\n"
+"\n"
+"The number of layers over which infill is combined is derived by dividing "
+"this value with the layer height and rounded down to the nearest decimal.\n"
+"\n"
+"Use either absolute mm values (eg. 0.32mm for a 0.4mm nozzle) or % values "
+"(eg 80%). This value must not be larger than the nozzle diameter."
+msgstr ""
+"ความสูงสูงสุดของชั้นสำหรับไส้ในแบบกระจายแบบรวม\n"
+"\n"
+"ตั้งค่าเป็น 0 หรือ 100% เพื่อใช้เส้นผ่านศูนย์กลางหัวฉีด (เพื่อลดเวลาการพิมพ์สูงสุด) หรือค่า ~80% "
+"เพื่อเพิ่มความแข็งแรงของวัสดุไส้ในแบบโปร่งให้สูงสุด\n"
+"\n"
+"จำนวนเลเยอร์ที่รวม ไส้ใน "
+"ได้มาโดยการหารค่านี้ด้วยความสูงของเลเยอร์และปัดเศษลงให้เป็นทศนิยมที่ใกล้ที่สุด\n"
+"\n"
+"ใช้ค่าสัมบูรณ์ มม. (เช่น 0.32 มม. สำหรับหัวฉีด 0.4 มม.) หรือค่า % (เช่น 80%) "
+"ค่านี้ต้องไม่ใหญ่กว่าเส้นผ่านศูนย์กลางของหัวฉีด"
+
+msgid "Enable clumping detection"
+msgstr "เปิดใช้งานการตรวจจับการจับกันเป็นก้อน"
+
+msgid "Clumping detection layers"
+msgstr "ชั้นตรวจจับการจับกันเป็นก้อน"
+
+msgid "Clumping detection layers."
+msgstr "ชั้นตรวจจับการจับกันเป็นก้อน"
+
+msgid "Probing exclude area of clumping"
+msgstr "การตรวจวัดไม่รวมพื้นที่จับตัวเป็นก้อน"
+
+msgid "Probing exclude area of clumping."
+msgstr "การตรวจวัดไม่รวมพื้นที่จับตัวเป็นก้อน"
+
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
+
+msgid ""
+"Line width of internal sparse infill. If expressed as a %, it will be "
+"computed over the nozzle diameter."
+msgstr ""
+"ความกว้างของเส้นของไส้ในแบบกระจัดกระจายภายใน หากแสดงเป็น % "
+"จะคำนวณตามเส้นผ่านศูนย์กลางของหัวฉีด"
+
+msgid "Infill/Wall overlap"
+msgstr "ไส้ในซ้อนทับผนัง"
+
+#, no-c-format, no-boost-format
+msgid ""
+"Infill area is enlarged slightly to overlap with wall for better bonding. "
+"The percentage value is relative to line width of sparse infill. Set this "
+"value to ~10-15% to minimize potential over extrusion and accumulation of "
+"material resulting in rough top surfaces."
+msgstr ""
+"พื้นที่ไส้ในจะขยายใหญ่ขึ้นเล็กน้อยเพื่อให้ทับซ้อนกับผนังเพื่อการยึดเกาะที่ดีขึ้น "
+"ค่าเปอร์เซ็นต์สัมพันธ์กับความกว้างของเส้นของไส้ในแบบกระจัดกระจาย ตั้งค่านี้เป็น ~10-15% "
+"เพื่อลดโอกาสเกิดการอัดขึ้นรูปและการสะสมของวัสดุ ส่งผลให้พื้นผิวด้านบนขรุขระ"
+
+msgid "Top/Bottom solid infill/wall overlap"
+msgstr "ด้านบน/ด้านล่างของช่องทึบ/ผนังทับซ้อนกัน"
+
+#, no-c-format, no-boost-format
+msgid ""
+"Top solid infill area is enlarged slightly to overlap with wall for better "
+"bonding and to minimize the appearance of pinholes where the top infill "
+"meets the walls. A value of 25-30% is a good starting point, minimizing the "
+"appearance of pinholes. The percentage value is relative to line width of "
+"sparse infill."
+msgstr ""
+"พื้นที่ไส้ในของแข็งด้านบนจะถูกขยายให้ใหญ่ขึ้นเล็กน้อยเพื่อให้ทับซ้อนกับผนังเพื่อการยึดเกาะที่ดีขึ้น "
+"และเพื่อลดการเกิดรูเข็มที่ซึ่งอินฟิลด้านบนบรรจบกับผนัง ค่า 25-30% ถือเป็นจุดเริ่มต้นที่ดี "
+"โดยช่วยลดการเกิดรูเข็มให้เหลือน้อยที่สุด "
+"ค่าเปอร์เซ็นต์สัมพันธ์กับความกว้างของเส้นของไส้ในแบบกระจัดกระจาย"
+
+msgid "Speed of internal sparse infill."
+msgstr "ความเร็วของ ไส้ใน เบาบางภายใน"
+
+msgid "Inherits profile"
+msgstr "สืบทอดโปรไฟล์"
+
+msgid "Name of parent profile."
+msgstr "ชื่อของโปรไฟล์ผู้ปกครอง"
+
+msgid "Interface shells"
+msgstr "เชลล์อินเตอร์เฟส"
+
+msgid ""
+"Force the generation of solid shells between adjacent materials/volumes. "
+"Useful for multi-extruder prints with translucent materials or manual "
+"soluble support material."
+msgstr ""
+"บังคับการสร้างเปลือกแข็งระหว่างวัสดุ/ปริมาตรที่อยู่ติดกัน "
+"มีประโยชน์สำหรับการพิมพ์แบบหลายชุดดันเส้นด้วยวัสดุโปร่งแสงหรือวัสดุรองรับที่ละลายน้ำได้ด้วยตนเอง"
+
+msgid "Maximum width of a segmented region"
+msgstr "ความกว้างสูงสุดของขอบเขตที่แบ่งส่วน"
+
+msgid "Maximum width of a segmented region. Zero disables this feature."
+msgstr "ความกว้างสูงสุดของขอบเขตที่แบ่งส่วน ศูนย์ปิดใช้งานคุณลักษณะนี้"
+
+msgid "Interlocking depth of a segmented region"
+msgstr "ความลึกที่ประสานกันของภูมิภาคที่แบ่งส่วน"
+
+msgid ""
+"Interlocking depth of a segmented region. It will be ignored if "
+"\"mmu_segmented_region_max_width\" is zero or if "
+"\"mmu_segmented_region_interlocking_depth\" is bigger than "
+"\"mmu_segmented_region_max_width\". Zero disables this feature."
+msgstr ""
+"ความลึกที่ประสานกันของภูมิภาคที่แบ่งส่วน ระบบจะไม่สนใจหาก "
+"\"mmu_segmented_region_max_width\" เป็นศูนย์ หรือหาก "
+"\"mmu_segmented_region_interlocking_detail\" ใหญ่กว่า "
+"\"mmu_segmented_region_max_width\" ศูนย์ปิดใช้งานคุณลักษณะนี้"
+
+msgid "Use beam interlocking"
+msgstr "ใช้การประสานลำแสง"
+
+msgid ""
+"Generate interlocking beam structure at the locations where different "
+"filaments touch. This improves the adhesion between filaments, especially "
+"models printed in different materials."
+msgstr ""
+"สร้างโครงสร้างลำแสงที่เชื่อมต่อกันในตำแหน่งที่เส้นพลาสติกต่างๆ สัมผัสกัน "
+"ซึ่งจะช่วยปรับปรุงการยึดเกาะระหว่างเส้นพลาสติก โดยเฉพาะรุ่นที่พิมพ์ด้วยวัสดุที่แตกต่างกัน"
+
+msgid "Interlocking beam width"
+msgstr "ความกว้างของลำแสงที่เชื่อมต่อกัน"
+
+msgid "The width of the interlocking structure beams."
+msgstr "ความกว้างของคานโครงสร้างที่เชื่อมต่อกัน"
+
+msgid "Interlocking direction"
+msgstr "ทิศทางที่เชื่อมต่อกัน"
+
+msgid "Orientation of interlock beams."
+msgstr "การวางแนวของคานลูกโซ่"
+
+msgid "Interlocking beam layers"
+msgstr "ชั้นลำแสงที่เชื่อมต่อกัน"
+
+msgid ""
+"The height of the beams of the interlocking structure, measured in number of "
+"layers. Less layers is stronger, but more prone to defects."
+msgstr ""
+"ความสูงของคานของโครงสร้างที่เชื่อมต่อกัน วัดเป็นจำนวนชั้น ชั้นที่น้อยลงจะแข็งแกร่งขึ้น "
+"แต่มีแนวโน้มที่จะเกิดข้อบกพร่องมากขึ้น"
+
+msgid "Interlocking depth"
+msgstr "ความลึกที่ประสานกัน"
+
+msgid ""
+"The distance from the boundary between filaments to generate interlocking "
+"structure, measured in cells. Too few cells will result in poor adhesion."
+msgstr ""
+"ระยะห่างจากขอบเขตระหว่างเส้นพลาสติกเพื่อสร้างโครงสร้างที่เชื่อมต่อกัน วัดในเซลล์ "
+"จำนวนเซลล์ที่มากเกินไปจะทำให้การยึดเกาะไม่ดี"
+
+msgid "Interlocking boundary avoidance"
+msgstr "การหลีกเลี่ยงขอบเขตที่ประสานกัน"
+
+msgid ""
+"The distance from the outside of a model where interlocking structures will "
+"not be generated, measured in cells."
+msgstr "ระยะห่างจากด้านนอกของแบบจำลองซึ่งจะไม่สร้างโครงสร้างที่เชื่อมต่อกัน โดยวัดเป็นเซลล์"
+
+msgid "Ironing Type"
+msgstr "ชนิดการรีดผิว"
+
+msgid ""
+"Ironing is using small flow to print on same height of surface again to make "
+"flat surface more smooth. This setting controls which layer being ironed."
+msgstr ""
+"การรีดผิวคือการใช้การไหลเล็กน้อยเพื่อพิมพ์บนพื้นผิวที่มีความสูงเท่ากันอีกครั้งเพื่อให้พื้นผิวเรียบเรียบยิ่งขึ้น "
+"การตั้งค่านี้ควบคุมว่าชั้นใดที่จะรีด"
+
+msgid "No ironing"
+msgstr "ไม่รีดผิว"
+
+msgid "Top surfaces"
+msgstr "ผิวด้านบน"
+
+msgid "Topmost surface"
+msgstr "ผิวบนสุด"
+
+msgid "All solid layers"
+msgstr "เลเยอร์ทึบทั้งหมด"
+
+msgid "Ironing Pattern"
+msgstr "รูปแบบการรีดผิว"
+
+msgid "The pattern that will be used when ironing."
+msgstr "รูปแบบที่จะใช้ในการรีด"
+
+msgid ""
+"The amount of material to extrude during ironing. Relative to flow of normal "
+"layer height. Too high value results in overextrusion on the surface."
+msgstr ""
+"ปริมาณวัสดุที่จะพ่นออกมาระหว่างรีดผิว สัมพันธ์กับการไหลของความสูงของชั้นปกติ "
+"ค่าที่สูงเกินไปส่งผลให้เกิดการอัดขึ้นรูปมากเกินไปบนพื้นผิว"
+
+msgid "The distance between the lines of ironing."
+msgstr "ระยะห่างระหว่างเส้นรีดผิว"
+
+msgid ""
+"The distance to keep from the edges. A value of 0 sets this to half of the "
+"nozzle diameter."
+msgstr "ระยะห่างที่ต้องเก็บจากขอบ ค่า 0 ตั้งค่านี้เป็นครึ่งหนึ่งของเส้นผ่านศูนย์กลางหัวฉีด"
+
+msgid "Print speed of ironing lines."
+msgstr "ความเร็วในการพิมพ์รีดผิว"
+
+msgid "Ironing angle offset"
+msgstr "ชดเชยมุมรีดผิว"
+
+msgid "The angle of ironing lines offset from the top surface."
+msgstr "มุมของรีดผิวจะชดเชยจากพื้นผิวด้านบน"
+
+msgid "Fixed ironing angle"
+msgstr "มุมรีดผิวคงที่"
+
+msgid "Use a fixed absolute angle for ironing."
+msgstr "ใช้มุมสัมบูรณ์คงที่ในการรีดผิว"
+
+msgid "Ironing expansion"
+msgstr "การขยายตัวของการรีดผิว"
+
+msgid "Expand or contract the ironing area."
+msgstr "ขยายหรือหดพื้นที่รีดผิว"
+
+msgid "Z contouring enabled"
+msgstr "เปิดใช้งานเส้นขอบ Z"
+
+msgid "Enable Z-layer contouring (aka Z-layer anti-aliasing)."
+msgstr "เปิดใช้งานคอนทัวร์เลเยอร์ Z (หรือที่เรียกว่าการป้องกันนามแฝงของเลเยอร์ Z)"
+
+msgid "Minimize wall height angle"
+msgstr "ลดมุมความสูงของผนังให้เล็กที่สุด"
+
+msgid ""
+"Reduce the height of top-surface perimeters to match the model edge height.\n"
+"Affects perimeters with a slope less than this angle (degrees).\n"
+"A reasonable value is 35. Set to 0 to disable."
+msgstr ""
+"ลดความสูงของเส้นรอบวงพื้นผิวด้านบนเพื่อให้ตรงกับความสูงของขอบโมเดล\n"
+"ส่งผลต่อเส้นรอบวงที่มีความชันน้อยกว่ามุมนี้ (องศา)\n"
+"ค่าที่เหมาะสมคือ 35 ตั้งค่าเป็น 0 เพื่อปิดใช้งาน"
+
+msgid "°"
+msgstr "°"
+
+msgid "Don't alternate fill direction"
+msgstr "อย่าสลับทิศทางไส้ใน"
+
+msgid "Disable alternating fill direction when using Z contouring."
+msgstr "ปิดใช้งานการสลับทิศทางไส้ในเมื่อใช้โครงร่าง Z"
+
+msgid "Minimum z height"
+msgstr "ความสูงขั้นต่ำ z"
+
+msgid ""
+"Minimum Z-layer height.\n"
+"Also controls the slicing plane."
+msgstr ""
+"ความสูงขั้นต่ำของชั้น Z\n"
+"ควบคุมระนาบการแบ่งส่วนด้วย"
+
+msgid "This G-code is inserted at every layer change after the Z lift."
+msgstr "G-code นี้จะถูกแทรกทุกครั้งที่เปลี่ยนเลเยอร์หลังจากการยก Z"
+
+msgid "Clumping detection G-code"
+msgstr "G-code การตรวจจับการจับตัวเป็นก้อน"
+
+msgid "Supports silent mode"
+msgstr "รองรับโหมดเงียบ"
+
+msgid ""
+"Whether the machine supports silent mode in which machine use lower "
+"acceleration to print."
+msgstr "เครื่องรองรับโหมดเงียบซึ่งเครื่องใช้ความเร่งในการพิมพ์ต่ำกว่าหรือไม่"
+
+msgid "Emit limits to G-code"
+msgstr "ปล่อยขีดจำกัดให้กับ G-code"
+
+msgid "Machine limits"
+msgstr "ขีดจำกัดของเครื่อง"
+
+msgid ""
+"If enabled, the machine limits will be emitted to G-code file.\n"
+"This option will be ignored if the G-code flavor is set to Klipper."
+msgstr ""
+"หากเปิดใช้งาน ขีดจำกัดของเครื่องจะถูกส่งไปยังไฟล์ G-code\n"
+"ตัวเลือกนี้จะถูกละเว้นหากตั้งค่ารสชาติ G-code เป็น Klipper"
+
+msgid ""
+"This G-code will be used as a code for the pause print. Users can insert "
+"pause G-code in the G-code viewer."
+msgstr ""
+"G-code นี้จะใช้เป็นรหัสสำหรับการหยุดการพิมพ์ชั่วคราว ผู้ใช้สามารถแทรก G-code "
+"หยุดชั่วคราวในโปรแกรมดู G-code"
+
+msgid "This G-code will be used as a custom code."
+msgstr "รหัส G นี้จะใช้เป็นรหัสที่กำหนดเอง"
+
+msgid "Small area flow compensation (beta)"
+msgstr "การชดเชยการไหลของพื้นที่ขนาดเล็ก (เบต้า)"
+
+msgid "Enable flow compensation for small infill areas."
+msgstr "เปิดใช้งานการชดเชยการไหลสำหรับพื้นที่ไส้ในขนาดเล็ก"
+
+msgid "Flow Compensation Model"
+msgstr "แบบจำลองการชดเชยการไหล"
+
+msgid ""
+"Flow Compensation Model, used to adjust the flow for small infill areas. The "
+"model is expressed as a comma separated pair of values for extrusion length "
+"and flow correction factor. Each pair is on a separate line, followed by a "
+"semicolon, in the following format: \"1.234, 5.678;\""
+msgstr ""
+"Flow Compensation Model ใช้เพื่อปรับการไหลสำหรับพื้นที่ไส้ในขนาดเล็ก "
+"แบบจำลองนี้จะแสดงเป็นคู่ของค่าที่คั่นด้วยเครื่องหมายจุลภาคสำหรับความยาวการอัดขึ้นรูปและปัจจัยการแก้ไขการไหล "
+"แต่ละคู่อยู่บนบรรทัดแยกกัน ตามด้วยอัฒภาค ในรูปแบบต่อไปนี้: \"1.234, 5.678;\""
+
+msgid "Maximum speed X"
+msgstr "ความเร็วสูงสุด X"
+
+msgid "Maximum speed Y"
+msgstr "ความเร็วสูงสุด Y"
+
+msgid "Maximum speed Z"
+msgstr "ความเร็วสูงสุด Z"
+
+msgid "Maximum speed E"
+msgstr "ความเร็วสูงสุด E"
+
+msgid "Maximum X speed"
+msgstr "ความเร็ว X สูงสุด"
+
+msgid "Maximum Y speed"
+msgstr "ความเร็ว Y สูงสุด"
+
+msgid "Maximum Z speed"
+msgstr "ความเร็ว Z สูงสุด"
+
+msgid "Maximum E speed"
+msgstr "ความเร็ว E สูงสุด"
+
+msgid "Maximum acceleration X"
+msgstr "อัตราเร่งสูงสุด X"
+
+msgid "Maximum acceleration Y"
+msgstr "อัตราเร่งสูงสุด Y"
+
+msgid "Maximum acceleration Z"
+msgstr "อัตราเร่งสูงสุด Z"
+
+msgid "Maximum acceleration E"
+msgstr "อัตราเร่งสูงสุด E"
+
+msgid "Maximum acceleration of the X axis"
+msgstr "ความเร่งสูงสุดของแกน X"
+
+msgid "Maximum acceleration of the Y axis"
+msgstr "ความเร่งสูงสุดของแกน Y"
+
+msgid "Maximum acceleration of the Z axis"
+msgstr "ความเร่งสูงสุดของแกน Z"
+
+msgid "Maximum acceleration of the E axis"
+msgstr "ความเร่งสูงสุดของแกน E"
+
+msgid "Maximum jerk X"
+msgstr "การกระตุกสูงสุด X"
+
+msgid "Maximum jerk Y"
+msgstr "กระตุกสูงสุด Y"
+
+msgid "Maximum jerk Z"
+msgstr "การกระตุกสูงสุด Z"
+
+msgid "Maximum jerk E"
+msgstr "กระตุกสูงสุด E"
+
+msgid "Maximum jerk of the X axis"
+msgstr "การกระตุกสูงสุดของแกน X"
+
+msgid "Maximum jerk of the Y axis"
+msgstr "การกระตุกสูงสุดของแกน Y"
+
+msgid "Maximum jerk of the Z axis"
+msgstr "การกระตุกสูงสุดของแกน Z"
+
+msgid "Maximum jerk of the E axis"
+msgstr "การกระตุกสูงสุดของแกน E"
+
+msgid "Maximum Junction Deviation"
+msgstr "ส่วนเบี่ยงเบนทางแยกสูงสุด"
+
+msgid ""
+"Maximum junction deviation (M205 J, only apply if JD > 0 for Marlin "
+"Firmware\n"
+"If your Marlin 2 printer uses Classic Jerk set this value to 0.)"
+msgstr ""
+"ค่าเบี่ยงเบนจุดเชื่อมต่อสูงสุด (M205 J ใช้เฉพาะเมื่อ JD > 0 สำหรับเฟิร์มแวร์ Marlin\n"
+"หากเครื่องพิมพ์ Marlin 2 ของคุณใช้ Classic Jerk ให้ตั้งค่านี้เป็น 0)"
+
+msgid "Minimum speed for extruding"
+msgstr "ความเร็วขั้นต่ำสำหรับการอัดขึ้นรูป"
+
+msgid "Minimum speed for extruding (M205 S)"
+msgstr "ความเร็วขั้นต่ำสำหรับการอัดรีด (M205 S)"
+
+msgid "Minimum travel speed"
+msgstr "ความเร็วในการเดินทางขั้นต่ำ"
+
+msgid "Minimum travel speed (M205 T)"
+msgstr "ความเร็วในการเดินทางขั้นต่ำ (M205 T)"
+
+msgid "Maximum acceleration for extruding"
+msgstr "ความเร่งสูงสุดสำหรับการอัดขึ้นรูป"
+
+msgid "Maximum acceleration for extruding (M204 P)"
+msgstr "ความเร่งสูงสุดในการอัดรีด (M204 P)"
+
+msgid "Maximum acceleration for retracting"
+msgstr "ความเร่งสูงสุดสำหรับการถอยกลับ"
+
+msgid "Maximum acceleration for retracting (M204 R)"
+msgstr "อัตราเร่งสูงสุดในการถอยกลับ (M204 R)"
+
+msgid "Maximum acceleration for travel"
+msgstr "อัตราเร่งสูงสุดสำหรับการเดินทาง"
+
+msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2."
+msgstr "อัตราเร่งสูงสุดสำหรับการเดินทาง (M204 T) ใช้กับ Marlin 2 เท่านั้น"
+
+msgid "Resonance avoidance"
+msgstr "การหลีกเลี่ยงการสั่นพ้อง"
+
+msgid ""
+"By reducing the speed of the outer wall to avoid the resonance zone of the "
+"printer, ringing on the surface of the model are avoided.\n"
+"Please turn this option off when testing ringing."
+msgstr ""
+"โดยการลดความเร็วของผนังด้านนอกเพื่อหลีกเลี่ยงโซนสั่นพ้องของเครื่องพิมพ์ "
+"หลีกเลี่ยงรอยคลื่นบนพื้นผิวของโมเดล\n"
+"โปรดปิดตัวเลือกนี้เมื่อทดสอบการสั่นพ้อง"
+
+msgid "Min"
+msgstr "นาที"
+
+msgid "Minimum speed of resonance avoidance."
+msgstr "ความเร็วขั้นต่ำของการหลีกเลี่ยงเสียงการสั่นพ้อง"
+
+msgid "Max"
+msgstr "สูงสุด"
+
+msgid "Maximum speed of resonance avoidance."
+msgstr "ความเร็วสูงสุดของการหลีกเลี่ยงการสั่นพ้อง"
+
+msgid "Emit input shaping"
+msgstr "ปล่อยรูปร่างอินพุต"
+
+msgid ""
+"Override firmware input shaping settings.\n"
+"If disabled, firmware settings are used."
+msgstr ""
+"แทนที่การตั้งค่าการสร้างอินพุตเฟิร์มแวร์\n"
+"หากปิดใช้งาน ระบบจะใช้การตั้งค่าเฟิร์มแวร์"
+
+msgid "Input shaper type"
+msgstr "ประเภทเชปเปอร์อินพุต"
+
+msgid ""
+"Choose the input shaper algorithm.\n"
+"Default uses the firmware default settings.\n"
+"Disable turns off input shaping in the firmware."
+msgstr ""
+"เลือกอัลกอริธึมตัวจัดรูปแบบอินพุต\n"
+"ค่าเริ่มต้นใช้การตั้งค่าเริ่มต้นของเฟิร์มแวร์\n"
+"ปิดใช้งานจะปิดการสร้างอินพุตในเฟิร์มแวร์"
+
+msgid "MZV"
+msgstr "เอ็มแซฟ"
+
+msgid "ZV"
+msgstr "ซีวี"
+
+msgid "ZVD"
+msgstr "ซีวีดี"
+
+msgid "ZVDD"
+msgstr "ซวีดีดี"
+
+msgid "ZVDDD"
+msgstr "ซวีดีดี"
+
+msgid "EI"
+msgstr "อีไอ"
+
+msgid "EI2"
+msgstr "EI2"
+
+msgid "2HUMP_EI"
+msgstr "2HUMP_EI"
+
+msgid "EI3"
+msgstr "EI3"
+
+msgid "3HUMP_EI"
+msgstr "3HUMP_EI"
+
+msgid "DAA"
+msgstr "อปท"
+
+msgid "X"
+msgstr "X"
+
+msgid ""
+"Resonant frequency for the X axis input shaper.\n"
+"Zero will use the firmware frequency.\n"
+"To disable input shaping, use the Disable type.\n"
+"RRF: X and Y values are equal."
+msgstr ""
+"ความถี่เรโซแนนซ์สำหรับอินพุตเชปเปอร์แกน X\n"
+"ศูนย์จะใช้ความถี่เฟิร์มแวร์\n"
+"หากต้องการปิดใช้งานการสร้างอินพุต ให้ใช้ประเภทปิดใช้งาน\n"
+"RRF: ค่า X และ Y เท่ากัน"
+
+msgid "Y"
+msgstr "Y"
+
+msgid ""
+"Resonant frequency for the Y axis input shaper.\n"
+"Zero will use the firmware frequency.\n"
+"To disable input shaping, use the Disable type."
+msgstr ""
+"ความถี่เรโซแนนซ์สำหรับอินพุตเชปเปอร์แกน Y\n"
+"ศูนย์จะใช้ความถี่เฟิร์มแวร์\n"
+"หากต้องการปิดใช้งานการสร้างอินพุต ให้ใช้ประเภทปิดใช้งาน"
+
+msgid ""
+"Damping ratio for the X axis input shaper.\n"
+"Zero will use the firmware damping ratio.\n"
+"To disable input shaping, use the Disable type.\n"
+"RRF: X and Y values are equal."
+msgstr ""
+"อัตราส่วนการหน่วงสำหรับอินพุตเชปเปอร์แกน X\n"
+"ศูนย์จะใช้อัตราส่วนการทำให้หมาด ๆ ของเฟิร์มแวร์\n"
+"หากต้องการปิดใช้งานการสร้างอินพุต ให้ใช้ประเภทปิดใช้งาน\n"
+"RRF: ค่า X และ Y เท่ากัน"
+
+msgid ""
+"Damping ratio for the Y axis input shaper.\n"
+"Zero will use the firmware damping ratio.\n"
+"To disable input shaping, use the Disable type."
+msgstr ""
+"อัตราส่วนการหน่วงสำหรับอินพุตเชปเปอร์แกน Y\n"
+"ศูนย์จะใช้อัตราส่วนการทำให้หมาด ๆ ของเฟิร์มแวร์\n"
+"หากต้องการปิดใช้งานการสร้างอินพุต ให้ใช้ประเภทปิดใช้งาน"
+
+msgid ""
+"Part cooling fan speed may be increased when auto cooling is enabled. This "
+"is the maximum speed for the part cooling fan."
+msgstr ""
+"ความเร็วพัดลมระบายความร้อนบางส่วนอาจเพิ่มขึ้นเมื่อเปิดใช้งานการระบายความร้อนอัตโนมัติ "
+"นี่คือความเร็วสูงสุดสำหรับพัดลมระบายความร้อนของชิ้นส่วน"
+
+msgid ""
+"The highest printable layer height for the extruder. Used to limit the "
+"maximum layer height when enable adaptive layer height."
+msgstr ""
+"ความสูงของชั้นสูงสุดที่สามารถพิมพ์ได้สำหรับชุดดันเส้น "
+"ใช้เพื่อจำกัดความสูงของเลเยอร์สูงสุดเมื่อเปิดใช้งานความสูงของเลเยอร์แบบปรับได้"
+
+msgid "Extrusion rate smoothing"
+msgstr "อัตราการอัดรีดให้เรียบ"
+
+msgid ""
+"This parameter smooths out sudden extrusion rate changes that happen when "
+"the printer transitions from printing a high flow (high speed/larger width) "
+"extrusion to a lower flow (lower speed/smaller width) extrusion and vice "
+"versa.\n"
+"\n"
+"It defines the maximum rate by which the extruded volumetric flow in mm³/s "
+"can change over time. Higher values mean higher extrusion rate changes are "
+"allowed, resulting in faster speed transitions.\n"
+"\n"
+"A value of 0 disables the feature.\n"
+"\n"
+"For a high speed, high flow direct drive printer (like the Bambu lab or "
+"Voron) this value is usually not needed. However it can provide some "
+"marginal benefit in certain cases where feature speeds vary greatly. For "
+"example, when there are aggressive slowdowns due to overhangs. In these "
+"cases a high value of around 300-350 mm³/s² is recommended as this allows "
+"for just enough smoothing to assist pressure advance achieve a smoother flow "
+"transition.\n"
+"\n"
+"For slower printers without pressure advance, the value should be set much "
+"lower. A value of 10-15 mm³/s² is a good starting point for direct drive "
+"extruders and 5-10 mm³/s² for Bowden style.\n"
+"\n"
+"This feature is known as Pressure Equalizer in Prusa slicer.\n"
+"\n"
+"Note: this parameter disables arc fitting."
+msgstr ""
+"พารามิเตอร์นี้จะทำให้การเปลี่ยนแปลงอัตราการอัดขึ้นรูปกะทันหันที่เกิดขึ้นเมื่อเครื่องพิมพ์เปลี่ยนจากการพิมพ์ที่มีอัตราการไหลสูง "
+"(ความเร็วสูง/ความกว้างมากขึ้น) ไปเป็นการไหลที่ต่ำกว่า (ความเร็วต่ำ/ความกว้างน้อยลง) "
+"และในทางกลับกัน\n"
+"\n"
+"โดยจะกำหนดอัตราสูงสุดที่การไหลเชิงปริมาตรที่อัดออกมาในหน่วย mm³/s "
+"สามารถเปลี่ยนแปลงได้ตลอดเวลา "
+"ค่าที่สูงกว่าหมายถึงอนุญาตให้มีการเปลี่ยนแปลงอัตราการอัดขึ้นรูปที่สูงขึ้น "
+"ส่งผลให้การเปลี่ยนความเร็วเร็วขึ้น\n"
+"\n"
+"ค่า 0 จะปิดใช้งานคุณลักษณะนี้\n"
+"\n"
+"สำหรับเครื่องพิมพ์แบบขับเคลื่อนโดยตรงความเร็วสูงที่มีอัตราการไหลสูง (เช่น ห้องปฏิบัติการ Bambu "
+"หรือ Voron) โดยปกติไม่จำเป็นต้องใช้ค่านี้ อย่างไรก็ตาม "
+"มันสามารถให้ประโยชน์เล็กน้อยในบางกรณีที่ความเร็วของคุณสมบัติแตกต่างกันมาก ตัวอย่างเช่น "
+"เมื่อมีการชะลอตัวอย่างรุนแรงเนื่องจากการโอเวอร์แฮงค์ ในกรณีเหล่านี้ แนะนำให้ใช้ค่าที่สูงประมาณ "
+"300-350 mm³/s² เนื่องจากจะทำให้มีการปรับให้เรียบเพียงพอเพื่อช่วยให้Pressure "
+"Advanceบรรลุการเปลี่ยนแปลงการไหลที่ราบรื่นยิ่งขึ้น\n"
+"\n"
+"สำหรับเครื่องพิมพ์ที่ช้ากว่าซึ่งไม่มีการดันล่วงหน้า ควรตั้งค่าให้ต่ำลงมาก ค่า 10-15 มม./วินาที² "
+"เป็นจุดเริ่มต้นที่ดีสำหรับชุดดันเส้นแบบขับเคลื่อนโดยตรง และ 5-10 มม./วินาที² สำหรับรูปแบบ "
+"Bowden\n"
+"\n"
+"คุณลักษณะนี้เรียกว่า Pressure Equalizer ในตัวแบ่งส่วนข้อมูล Prusa\n"
+"\n"
+"หมายเหตุ: พารามิเตอร์นี้ปิดใช้งานการปรับส่วนโค้ง"
+
+msgid "mm³/s²"
+msgstr "มิลลิเมตร³/วินาที²"
+
+msgid "Smoothing segment length"
+msgstr "ความยาวส่วนที่เรียบ"
+
+msgid ""
+"A lower value results in smoother extrusion rate transitions. However, this "
+"results in a significantly larger G-code file and more instructions for the "
+"printer to process.\n"
+"\n"
+"Default value of 3 works well for most cases. If your printer is stuttering, "
+"increase this value to reduce the number of adjustments made.\n"
+"\n"
+"Allowed values: 0.5-5"
+msgstr ""
+"ค่าที่ต่ำกว่าส่งผลให้อัตราการอัดรีดเรียบขึ้น อย่างไรก็ตาม สิ่งนี้ส่งผลให้ไฟล์ G-code "
+"มีขนาดใหญ่ขึ้นอย่างเห็นได้ชัดและมีคำแนะนำเพิ่มไส้ในสำหรับเครื่องพิมพ์ในการประมวลผล\n"
+"\n"
+"ค่าเริ่มต้นของ 3 ทำงานได้ดีในกรณีส่วนใหญ่ หากเครื่องพิมพ์ของคุณกระตุก "
+"ให้เพิ่มค่านี้เพื่อลดจำนวนการปรับเปลี่ยน\n"
+"\n"
+"ค่าที่อนุญาต: 0.5-5"
+
+msgid "Apply only on external features"
+msgstr "ใช้กับคุณสมบัติภายนอกเท่านั้น"
+
+msgid ""
+"Applies extrusion rate smoothing only on external perimeters and overhangs. "
+"This can help reduce artefacts due to sharp speed transitions on externally "
+"visible overhangs without impacting the print speed of features that will "
+"not be visible to the user."
+msgstr ""
+"ใช้การปรับให้เรียบด้วยอัตราการอัดขึ้นรูปเฉพาะกับขอบด้านนอกและส่วนยื่นเท่านั้น "
+"วิธีนี้สามารถช่วยลดสิ่งแปลกปลอมเนื่องจากการเปลี่ยนความเร็วที่คมชัดบนส่วนยื่นซึ่งมองเห็นได้จากภายนอก "
+"โดยไม่ส่งผลกระทบต่อความเร็วในการพิมพ์ของคุณลักษณะที่ผู้ใช้จะมองไม่เห็น"
+
+msgid "Minimum speed for part cooling fan."
+msgstr "ความเร็วขั้นต่ำสำหรับพัดลมระบายความร้อนชิ้นส่วน"
+
+msgid ""
+"Speed of auxiliary part cooling fan. Auxiliary fan will run at this speed "
+"during printing except the first several layers which is defined by no "
+"cooling layers.\n"
+"Please enable auxiliary_fan in printer settings to use this feature. G-code "
+"command: M106 P2 S(0-255)"
+msgstr ""
+"ความเร็วของพัดลมระบายความร้อนชิ้นส่วนเสริม พัดลมเสริมจะทำงานที่ความเร็วนี้ในระหว่างการพิมพ์ "
+"ยกเว้นหลายชั้นแรกซึ่งถูกกำหนดโดยไม่มีชั้นระบายความร้อน\n"
+"โปรดเปิดใช้งาน auxiliary_fan ในการตั้งค่าเครื่องพิมพ์เพื่อใช้คุณสมบัตินี้ คำสั่งรหัส G: M106 P2 "
+"S(0-255)"
+
+msgid "For the first"
+msgstr "สำหรับครั้งแรก"
+
+msgid "Set special auxiliary cooling fan for the first certain layers."
+msgstr "ตั้งพัดลมระบายความร้อนเสริมพิเศษสำหรับบางชั้นแรก"
+
+msgid ""
+"Auxiliary fan speed will be ramped up linearly from layer \"For the first\" "
+"to maximum at layer \"Full fan speed at layer\".\n"
+"\"Full fan speed at layer\" will be ignored if lower than \"For the first\", "
+"in which case the fan will run at maximum allowed speed at layer \"For the "
+"first\" + 1."
+msgstr ""
+"ความเร็วพัดลมเสริมจะเพิ่มขึ้นเชิงเส้นจากเลเยอร์ \"สำหรับอันแรก\" ไปจนถึงสูงสุดที่เลเยอร์ "
+"\"ความเร็วพัดลมเต็มในเลเยอร์\"\n"
+"\"ความเร็วพัดลมเต็มที่เลเยอร์\" จะถูกละเว้นหากต่ำกว่า \"สำหรับครั้งแรก\" ซึ่งในกรณีนี้ "
+"พัดลมจะทำงานที่ความเร็วสูงสุดที่อนุญาตที่เลเยอร์ \"สำหรับครั้งแรก\" + 1"
+
+msgid ""
+"Special auxiliary cooling fan speed, effective only for the first x layers."
+msgstr "ความเร็วพัดลมระบายความร้อนเสริมพิเศษ มีผลเฉพาะ x เลเยอร์แรกเท่านั้น"
+
+msgid ""
+"The lowest printable layer height for the extruder. Used to limit the "
+"minimum layer height when enable adaptive layer height."
+msgstr ""
+"ความสูงของชั้นต่ำสุดที่สามารถพิมพ์ได้สำหรับชุดดันเส้น "
+"ใช้เพื่อจำกัดความสูงของเลเยอร์ขั้นต่ำเมื่อเปิดใช้งานความสูงของเลเยอร์แบบปรับได้"
+
+msgid "Min print speed"
+msgstr "ความเร็วในการพิมพ์ขั้นต่ำ"
+
+msgid ""
+"The minimum print speed to which the printer slows down to maintain the "
+"minimum layer time defined above when the slowdown for better layer cooling "
+"is enabled."
+msgstr ""
+"ความเร็วการพิมพ์ขั้นต่ำที่เครื่องพิมพ์ช้าลง เพื่อรักษาเวลาเลเยอร์ขั้นต่ำที่กำหนดไว้ข้างต้น "
+"เมื่อเปิดใช้งานการชะลอตัวเพื่อการระบายความร้อนของเลเยอร์ที่ดีขึ้น"
+
+msgid "The diameter of nozzle."
+msgstr "เส้นผ่านศูนย์กลางของหัวฉีด"
+
+msgid "Configuration notes"
+msgstr "บันทึกการกำหนดค่า"
+
+msgid ""
+"You can put here your personal notes. This text will be added to the G-code "
+"header comments."
+msgstr ""
+"คุณสามารถใส่บันทึกส่วนตัวของคุณได้ที่นี่ ข้อความนี้จะถูกเพิ่มลงในความคิดเห็นส่วนหัวของ G-code"
+
+msgid "Host Type"
+msgstr "ประเภทโฮสต์"
+
+msgid ""
+"Orca Slicer can upload G-code files to a printer host. This field must "
+"contain the kind of the host."
+msgstr ""
+"Orca Slicer สามารถอัปโหลดไฟล์ G-code ไปยังโฮสต์เครื่องพิมพ์ได้ ฟิลด์นี้จะต้องมีประเภทของโฮสต์"
+
+msgid "Nozzle volume"
+msgstr "ปริมาณหัวฉีด"
+
+msgid "Volume of nozzle between the cutter and the end of nozzle."
+msgstr "ปริมาตรของหัวฉีดระหว่างเครื่องตัดกับปลายหัวฉีด"
+
+msgid "Cooling tube position"
+msgstr "ตำแหน่งท่อทำความเย็น"
+
+msgid "Distance of the center-point of the cooling tube from the extruder tip."
+msgstr "ระยะห่างของจุดศูนย์กลางของท่อทำความเย็นจากปลายชุดดันเส้น"
+
+msgid "Cooling tube length"
+msgstr "ความยาวท่อทำความเย็น"
+
+msgid "Length of the cooling tube to limit space for cooling moves inside it."
+msgstr "ความยาวของท่อระบายความร้อนเพื่อจำกัดพื้นที่ในการระบายความร้อนภายใน"
+
+msgid "High extruder current on filament swap"
+msgstr "กระแสไฟของชุดดันเส้นสูงในการเปลี่ยนเส้นพลาสติก"
+
+msgid ""
+"It may be beneficial to increase the extruder motor current during the "
+"filament exchange sequence to allow for rapid ramming feed rates and to "
+"overcome resistance when loading a filament with an ugly shaped tip."
+msgstr ""
+"อาจเป็นประโยชน์ในการเพิ่มกระแสมอเตอร์ของชุดดันเส้นในระหว่างลำดับการแลกเปลี่ยนเส้นพลาสติกเพื่อให้อัตราการป้อนชนอย่างรวดเร็ว "
+"และเอาชนะความต้านทานเมื่อโหลดเส้นพลาสติกด้วยปลายที่มีรูปร่างน่าเกลียด"
+
+msgid "Filament parking position"
+msgstr "ตำแหน่งจอดฟิลาเมนต์"
+
+msgid ""
+"Distance of the extruder tip from the position where the filament is parked "
+"when unloaded. This should match the value in printer firmware."
+msgstr ""
+"ระยะห่างของปลายชุดดันเส้นจากตำแหน่งที่เส้นพลาสติกจอดอยู่เมื่อขนถ่ายออก "
+"ซึ่งควรตรงกับค่าในเฟิร์มแวร์เครื่องพิมพ์"
+
+msgid "Extra loading distance"
+msgstr "ระยะการบรรทุกเพิ่มไส้ใน"
+
+msgid ""
+"When set to zero, the distance the filament is moved from parking position "
+"during load is exactly the same as it was moved back during unload. When "
+"positive, it is loaded further, if negative, the loading move is shorter "
+"than unloading."
+msgstr ""
+"เมื่อตั้งค่าเป็นศูนย์ "
+"ระยะห่างที่เส้นพลาสติกถูกย้ายจากตำแหน่งจอดระหว่างการบรรทุกจะเท่ากันทุกประการกับการย้ายกลับในระหว่างการขนถ่าย "
+"เมื่อเป็นบวก จะมีการโหลดต่อไป หากเป็นลบ การเคลื่อนย้ายจะสั้นกว่าการขนถ่าย"
+
+msgid "Start end points"
+msgstr "เริ่มต้นจุดสิ้นสุด"
+
+msgid "The start and end points which is from cutter area to garbage can."
+msgstr "จุดเริ่มต้นและจุดสิ้นสุดตั้งแต่บริเวณเครื่องตัดถึงถังขยะ"
+
+msgid "Reduce infill retraction"
+msgstr "ลดการหดตัวของ ไส้ใน"
+
+msgid ""
+"Don't retract when the travel is entirely within an infill area. That means "
+"the oozing can't been seen. This can reduce times of retraction for complex "
+"model and save printing time, but make slicing and G-code generating slower. "
+"Note that z-hop is also not performed in areas where retraction is skipped."
+msgstr ""
+"อย่าถอยกลับเมื่อการเดินทางอยู่ภายในพื้นที่ที่ไส้ในเข้าไปทั้งหมด "
+"นั่นหมายความว่าไม่สามารถมองเห็นการรั่วไหลได้ "
+"วิธีนี้จะช่วยลดเวลาในการดึงกลับสำหรับโมเดลที่ซับซ้อนและประหยัดเวลาในการพิมพ์ "
+"แต่จะทำให้การแบ่งส่วนและการสร้าง G-code ช้าลง โปรดทราบว่า z-hop "
+"จะไม่ดำเนินการในพื้นที่ที่มีการข้ามการถอนกลับ"
+
+msgid ""
+"This option will drop the temperature of the inactive extruders to prevent "
+"oozing."
+msgstr "ตัวเลือกนี้จะทำให้อุณหภูมิของชุดดันเส้นที่ไม่ใช้งานลดลงเพื่อป้องกันการไหลซึม"
+
+msgid "Filename format"
+msgstr "รูปแบบชื่อไฟล์"
+
+msgid "Users can define the project file name when exporting."
+msgstr "ผู้ใช้สามารถกำหนดชื่อไฟล์โครงการเมื่อส่งออก"
+
+msgid "Make overhangs printable"
+msgstr "ทำให้ส่วนยื่นสามารถพิมพ์ได้"
+
+msgid "Modify the geometry to print overhangs without support material."
+msgstr "ปรับเปลี่ยนรูปทรงเพื่อพิมพ์ส่วนยื่นโดยไม่ต้องใช้วัสดุรองรับ"
+
+msgid "Make overhangs printable - Maximum angle"
+msgstr "ทำให้ส่วนยื่นสามารถพิมพ์ได้ - มุมสูงสุด"
+
+msgid ""
+"Maximum angle of overhangs to allow after making more steep overhangs "
+"printable.90° will not change the model at all and allow any overhang, while "
+"0 will replace all overhangs with conical material."
+msgstr ""
+"มุมยื่นสูงสุดของระยะยื่นที่อนุญาตหลังจากพิมพ์ระยะยื่นที่ชันมากขึ้นแล้ว 90° "
+"จะไม่เปลี่ยนโมเดลเลยและยอมให้มีระยะยื่นใดๆ ในขณะที่ 0 จะแทนที่ระยะยื่นทั้งหมดด้วยวัสดุทรงกรวย"
+
+msgid "Make overhangs printable - Hole area"
+msgstr "ทำให้ส่วนยื่นสามารถพิมพ์ได้ - พื้นที่รู"
+
+msgid ""
+"Maximum area of a hole in the base of the model before it's filled by "
+"conical material. A value of 0 will fill all the holes in the model base."
+msgstr ""
+"พื้นที่สูงสุดของรูที่ฐานของแบบจำลองก่อนที่จะไส้ในด้วยวัสดุทรงกรวย ค่า 0 จะไส้ในเต็มทุกรูในฐานโมเดล"
+
+msgid "Detect overhang walls"
+msgstr "ตรวจจับผนังส่วนยื่น"
+
+#, c-format, boost-format
+msgid ""
+"Detect the overhang percentage relative to line width and use different "
+"speed to print. For 100%% overhang, bridge speed is used."
+msgstr ""
+"ตรวจจับเปอร์เซ็นต์ระยะยื่นที่สัมพันธ์กับความกว้างของเส้น และใช้ความเร็วที่แตกต่างกันในการพิมพ์ "
+"สำหรับระยะยื่น 100%% จะใช้ความเร็วบริดจ์"
+
+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 ""
+
+msgid ""
+"Line width of inner wall. If expressed as a %, it will be computed over the "
+"nozzle diameter."
+msgstr "ความกว้างของเส้นของผนังด้านใน หากแสดงเป็น % จะคำนวณตามเส้นผ่านศูนย์กลางของหัวฉีด"
+
+msgid "Speed of inner wall."
+msgstr "ความเร็วของผนังด้านใน"
+
+msgid "Number of walls of every layer."
+msgstr "จำนวนผนังทุกชั้น"
+
+msgid "Alternate extra wall"
+msgstr "ผนังเสริมสำรอง"
+
+msgid ""
+"This setting adds an extra wall to every other layer. This way the infill "
+"gets wedged vertically between the walls, resulting in stronger prints.\n"
+"\n"
+"When this option is enabled, the ensure vertical shell thickness option "
+"needs to be disabled.\n"
+"\n"
+"Using lightning infill together with this option is not recommended as there "
+"is limited infill to anchor the extra perimeters to."
+msgstr ""
+"การตั้งค่านี้จะเพิ่มผนังพิเศษให้กับทุกเลเยอร์ วิธีนี้จะทำให้ส่วนที่ไส้ในเข้าไปติดกันในแนวตั้งระหว่างผนัง "
+"ส่งผลให้งานพิมพ์แข็งแรงขึ้น\n"
+"\n"
+"เมื่อเปิดใช้งานตัวเลือกนี้ จะต้องปิดใช้งานตัวเลือกให้แน่ใจว่าความหนาของเปลือกแนวตั้ง\n"
+"\n"
+"ไม่แนะนำให้ใช้ไส้ในแบบสายฟ้าร่วมกับตัวเลือกนี้ เนื่องจากมีข้อจำกัดในไส้ในเพื่อยึดขอบเพิ่มไส้ใน"
+
+msgid ""
+"If you want to process the output G-code through custom scripts, just list "
+"their absolute paths here. Separate multiple scripts with a semicolon. "
+"Scripts will be passed the absolute path to the G-code file as the first "
+"argument, and they can access the Orca Slicer config settings by reading "
+"environment variables."
+msgstr ""
+"หากคุณต้องการประมวลผลเอาต์พุต G-code ผ่านสคริปต์ที่กำหนดเอง "
+"เพียงระบุเส้นทางสัมบูรณ์ของสคริปต์ไว้ที่นี่ แยกสคริปต์หลายรายการด้วยเครื่องหมายอัฒภาค "
+"สคริปต์จะถูกส่งผ่านเส้นทางสัมบูรณ์ไปยังไฟล์ G-code เป็นอาร์กิวเมนต์แรก "
+"และสคริปต์เหล่านี้สามารถเข้าถึงการตั้งค่าการกำหนดค่า Orca Slicer "
+"ได้โดยการอ่านตัวแปรสภาพแวดล้อม"
+
+msgid "Change extrusion role G-code (process)"
+msgstr "เปลี่ยนบทบาทการอัดขึ้นรูป G-code (กระบวนการ)"
+
+msgid ""
+"This G-code is inserted when the extrusion role is changed. It runs after "
+"the machine and filament extrusion role G-code."
+msgstr ""
+"G-code นี้จะถูกแทรกเมื่อบทบาทการอัดขึ้นรูปมีการเปลี่ยนแปลง "
+"มันทำงานหลังจากบทบาทการอัดขึ้นรูปของเครื่องจักรและการอัดขึ้นรูปเส้นพลาสติก G-code"
+
+msgid "Printer type"
+msgstr "ประเภทเครื่องพิมพ์"
+
+msgid "Type of the printer."
+msgstr "ประเภทของเครื่องพิมพ์"
+
+msgid "Printer notes"
+msgstr "หมายเหตุเครื่องพิมพ์"
+
+msgid "You can put your notes regarding the printer here."
+msgstr "คุณสามารถใส่บันทึกย่อเกี่ยวกับเครื่องพิมพ์ได้ที่นี่"
+
+msgid "Printer variant"
+msgstr "ตัวแปรเครื่องพิมพ์"
+
+msgid "Raft contact Z distance"
+msgstr "ระยะสัมผัสฐานรองชิ้นงาน Z"
+
+msgid ""
+"Z gap between raft and object. If Support Top Z Distance is 0, this value is "
+"ignored and the object is printed in direct contact with the raft (no gap)."
+msgstr ""
+"ช่องว่าง Z ระหว่างฐานรองชิ้นงานกับวัตถุ หากระยะ Z สูงสุดที่รองรับคือ 0 ค่านี้จะถูกละเว้น "
+"และวัตถุจะถูกพิมพ์โดยสัมผัสโดยตรงกับฐานรองชิ้นงาน (ไม่มีช่องว่าง)"
+
+msgid "Raft expansion"
+msgstr "การขยาย ฐานรองชิ้นงาน"
+
+msgid "Expand all raft layers in XY plane."
+msgstr "ขยายชั้นฐานรองชิ้นงานทั้งหมดในระนาบ XY"
+
+msgid "First layer density"
+msgstr "ความหนาแน่นของชั้นแรก"
+
+msgid "Density of the first raft or support layer."
+msgstr "ความหนาแน่นของฐานรองชิ้นงานแรกหรือชั้นรองรับ"
+
+msgid "First layer expansion"
+msgstr "การขยายชั้นแรก"
+
+msgid "Expand the first raft or support layer to improve bed plate adhesion."
+msgstr "ขยายฐานรองชิ้นงานหรือชั้นรองรับชั้นแรกเพื่อปรับปรุงการยึดเกาะของแผ่นฐานพิมพ์"
+
+msgid "Raft layers"
+msgstr "จำนวนชั้น ฐานรองชิ้นงาน"
+
+msgid ""
+"Object will be raised by this number of support layers. Use this function to "
+"avoid warping when printing ABS."
+msgstr "วัตถุจะถูกยกขึ้นตามจำนวนชั้นรองรับนี้ ใช้ฟังก์ชันนี้เพื่อหลีกเลี่ยงการบิดงอเมื่อพิมพ์ ABS"
+
+msgid ""
+"The G-code path is generated after simplifying the contour of models to "
+"avoid too many points and G-code lines. Smaller value means higher "
+"resolution and more time to slice."
+msgstr ""
+"เส้นทาง G-code ถูกสร้างขึ้นหลังจากลดความซับซ้อนของรูปร่างของโมเดล เพื่อหลีกเลี่ยงจุดและเส้น G-"
+"code ที่มากเกินไป ค่าที่น้อยลงหมายถึงความละเอียดสูงขึ้นและมีเวลามากขึ้นในการตัด"
+
+msgid "Travel distance threshold"
+msgstr "เกณฑ์ระยะทางการเดินทาง"
+
+msgid ""
+"Only trigger retraction when the travel distance is longer than this "
+"threshold."
+msgstr "ทริกเกอร์การถอนกลับเมื่อระยะการเดินทางยาวกว่าเกณฑ์นี้เท่านั้น"
+
+msgid "Retract amount before wipe"
+msgstr "ถอนจำนวนก่อนเช็ด"
+
+msgid ""
+"The length of fast retraction before wipe, relative to retraction length."
+msgstr "ความยาวของการดึงกลับอย่างรวดเร็วก่อนเช็ด สัมพันธ์กับความยาวการดึงกลับ"
+
+msgid "Retract when change layer"
+msgstr "ถอนออกเมื่อเปลี่ยนเลเยอร์"
+
+msgid "Force a retraction when changes layer."
+msgstr "บังคับให้ถอนกลับเมื่อเปลี่ยนเลเยอร์"
+
+msgid "Retraction Length"
+msgstr "ระยะดึงกลับ"
+
+msgid ""
+"Some amount of material in extruder is pulled back to avoid ooze during long "
+"travel. Set zero to disable retraction."
+msgstr ""
+"วัสดุบางส่วนในชุดดันเส้นถูกดึงกลับเพื่อหลีกเลี่ยงไม่ให้ซึ่มในระหว่างการเดินทางระยะไกล "
+"ตั้งค่าเป็นศูนย์เพื่อปิดใช้งานการเพิกถอน"
+
+msgid "Long retraction when cut (beta)"
+msgstr "การถอยกลับยาวเมื่อตัด (เบต้า)"
+
+msgid ""
+"Experimental feature: Retracting and cutting off the filament at a longer "
+"distance during changes to minimize purge. While this reduces flush "
+"significantly, it may also raise the risk of nozzle clogs or other printing "
+"problems."
+msgstr ""
+"คุณลักษณะการทดลอง: "
+"การดึงกลับและตัดเส้นพลาสติกออกในระยะไกลระหว่างการเปลี่ยนแปลงเพื่อลดการไล่เส้น "
+"แม้ว่าวิธีนี้จะช่วยลดไล่เส้นได้อย่างมาก แต่ก็อาจเพิ่มความเสี่ยงที่หัวฉีดอุดตันหรือปัญหาการพิมพ์อื่นๆ อีกด้วย"
+
+msgid "Retraction distance when cut"
+msgstr "ระยะการดึงกลับเมื่อตัด"
+
+msgid ""
+"Experimental feature: Retraction length before cutting off during filament "
+"change."
+msgstr "คุณลักษณะการทดลอง: ความยาวการดึงกลับก่อนตัดออกระหว่างการเปลี่ยนเส้นพลาสติก"
+
+msgid "Long retraction when extruder change"
+msgstr "การถอยกลับนานเมื่อเปลี่ยนชุดดันเส้น"
+
+msgid "Retraction distance when extruder change"
+msgstr "ระยะการดึงกลับเมื่อชุดดันเส้นเปลี่ยน"
+
+msgid "Z-hop height"
+msgstr "ความสูงยกแกน Z"
+
+msgid ""
+"Whenever the retraction is done, the nozzle is lifted a little to create "
+"clearance between nozzle and the print. It prevents nozzle from hitting the "
+"print when travel move. Using spiral lines to lift Z can prevent stringing."
+msgstr ""
+"เมื่อใดก็ตามที่การดึงกลับเสร็จสิ้น หัวฉีดจะถูกยกขึ้นเล็กน้อยเพื่อสร้างระยะห่างระหว่างหัวฉีดและงานพิมพ์ "
+"ป้องกันไม่ให้หัวฉีดชนกับงานพิมพ์ขณะเคลื่อนตัว การใช้เส้นเกลียวเพื่อยก Z สามารถป้องกันการร้อยสายได้"
+
+msgid "Z-hop lower boundary"
+msgstr "ขอบเขตล่างของ Z-hop"
+
+msgid ""
+"Z-hop will only come into effect when Z is above this value and is below the "
+"parameter: \"Z-hop upper boundary\"."
+msgstr ""
+"Z-hop จะมีผลเฉพาะเมื่อ Z อยู่เหนือค่านี้และต่ำกว่าพารามิเตอร์: \"Z-hop upper boundary\""
+
+msgid "Z-hop upper boundary"
+msgstr "ขอบเขตบนของ Z-hop"
+
+msgid ""
+"If this value is positive, Z-hop will only come into effect when Z is above "
+"the parameter: \"Z-hop lower boundary\" and is below this value."
+msgstr ""
+"หากค่านี้เป็นค่าบวก Z-hop จะมีผลเฉพาะเมื่อ Z อยู่เหนือพารามิเตอร์: \"Z-hop lower boundary"
+"\" และอยู่ต่ำกว่าค่านี้"
+
+msgid "Z-hop type"
+msgstr "ประเภท Z-hop"
+
+msgid "Type of Z-hop."
+msgstr "ประเภทของ Z-hop"
+
+msgid "Slope"
+msgstr "ความลาดชัน"
+
+msgid "Spiral"
+msgstr "เกลียว"
+
+msgid "Traveling angle"
+msgstr "มุมการเดินทาง"
+
+msgid ""
+"Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results "
+"in Normal Lift."
+msgstr ""
+"มุมการเคลื่อนที่สำหรับประเภท Slope และ Spiral Z-hop การตั้งค่าเป็น 90° จะทำให้ได้ Normal "
+"Lift"
+
+msgid "Only lift Z above"
+msgstr "ยก Z ขึ้นด้านบนเท่านั้น"
+
+msgid ""
+"If you set this to a positive value, Z lift will only take place above the "
+"specified absolute Z."
+msgstr "หากคุณตั้งค่านี้เป็นค่าบวก การยก Z จะเกิดขึ้นเหนือค่า Z สัมบูรณ์ที่ระบุเท่านั้น"
+
+msgid "Only lift Z below"
+msgstr "ยก Z ด้านล่างเท่านั้น"
+
+msgid ""
+"If you set this to a positive value, Z lift will only take place below the "
+"specified absolute Z."
+msgstr "หากคุณตั้งค่านี้เป็นค่าบวก การยก Z จะเกิดขึ้นต่ำกว่าค่า Z สัมบูรณ์ที่ระบุเท่านั้น"
+
+msgid "On surfaces"
+msgstr "บนพื้นผิว"
+
+msgid ""
+"Enforce Z-Hop behavior. This setting is impacted by the above settings (Only "
+"lift Z above/below)."
+msgstr ""
+"บังคับใช้พฤติกรรม Z-Hop การตั้งค่านี้ได้รับผลกระทบจากการตั้งค่าด้านบน (เฉพาะการยก Z ด้านบน/"
+"ล่างเท่านั้น)"
+
+msgid "All Surfaces"
+msgstr "พื้นผิวทั้งหมด"
+
+msgid "Top Only"
+msgstr "ด้านบนเท่านั้น"
+
+msgid "Bottom Only"
+msgstr "ด้านล่างเท่านั้น"
+
+msgid "Top and Bottom"
+msgstr "บนและล่าง"
+
+msgid "Direct Drive"
+msgstr "ขับตรง"
+
+msgid "Bowden"
+msgstr "โบว์เดน"
+
+msgid "Extra length on restart"
+msgstr "ความยาวพิเศษเมื่อรีสตาร์ท"
+
+msgid ""
+"When the retraction is compensated after the travel move, the extruder will "
+"push this additional amount of filament. This setting is rarely needed."
+msgstr ""
+"เมื่อการหดตัวได้รับการชดเชยหลังการเคลื่อนที่แบบเคลื่อนที่ "
+"ชุดดันเส้นจะดันเส้นพลาสติกเพิ่มไส้ในจำนวนนี้ การตั้งค่านี้ไม่ค่อยจำเป็น"
+
+msgid ""
+"When the retraction is compensated after changing tool, the extruder will "
+"push this additional amount of filament."
+msgstr ""
+"เมื่อการดึงกลับได้รับการชดเชยหลังจากเปลี่ยนเครื่องมือ ชุดดันเส้นจะดันเส้นพลาสติกเพิ่มไส้ในจำนวนนี้"
+
+msgid "Retraction Speed"
+msgstr "ความเร็วดึงกลับ"
+
+msgid "Speed for retracting filament from the nozzle."
+msgstr "ความเร็วในการดึงเส้นพลาสติกออกจากหัวฉีด"
+
+msgid "De-retraction Speed"
+msgstr "ความเร็วในการถอนกลับ"
+
+msgid ""
+"Speed for reloading filament into the nozzle. Zero means same speed of "
+"retraction."
+msgstr "ความเร็วในการบรรจุเส้นพลาสติกลงในหัวฉีด ศูนย์หมายถึงความเร็วการถอยกลับเท่ากัน"
+
+msgid "Use firmware retraction"
+msgstr "ใช้การเพิกถอนเฟิร์มแวร์"
+
+msgid ""
+"This experimental setting uses G10 and G11 commands to have the firmware "
+"handle the retraction. This is only supported in recent Marlin."
+msgstr ""
+"การตั้งค่าทดลองนี้ใช้คำสั่ง G10 และ G11 เพื่อให้เฟิร์มแวร์จัดการกับการเพิกถอน สิ่งนี้รองรับใน "
+"Marlin ล่าสุดเท่านั้น"
+
+msgid "Show auto-calibration marks"
+msgstr "แสดงเครื่องหมายปรับเทียบอัตโนมัติ"
+
+msgid "Disable set remaining print time"
+msgstr "ปิดใช้งานการตั้งค่าเวลาการพิมพ์ที่เหลืออยู่"
+
+msgid ""
+"Disable generating of the M73: Set remaining print time in the final G-code."
+msgstr "ปิดการใช้งานการสร้าง M73: ตั้งเวลาการพิมพ์ที่เหลืออยู่ใน G-code สุดท้าย"
+
+msgid "Seam position"
+msgstr "ตำแหน่งรอยตะเข็บ"
+
+msgid "The start position to print each part of outer wall."
+msgstr "ตำแหน่งเริ่มต้นในการพิมพ์แต่ละส่วนของผนังด้านนอก"
+
+msgid "Nearest"
+msgstr "ใกล้ที่สุด"
+
+msgid "Aligned"
+msgstr "จัดตำแหน่ง"
+
+msgid "Aligned back"
+msgstr "จัดแนวกลับ"
+
+msgid "Random"
+msgstr "สุ่ม"
+
+msgid "Staggered inner seams"
+msgstr "รอยตะเข็บด้านในเซ"
+
+msgid ""
+"This option causes the inner seams to be shifted backwards based on their "
+"depth, forming a zigzag pattern."
+msgstr "ตัวเลือกนี้จะทำให้รอยตะเข็บด้านในเลื่อนไปข้างหลังตามความลึก ทำให้เกิดลวดลายซิกแซก"
+
+msgid "Seam gap"
+msgstr "ช่องว่างรอยตะเข็บ"
+
+msgid ""
+"In order to reduce the visibility of the seam in a closed loop extrusion, "
+"the loop is interrupted and shortened by a specified amount.\n"
+"This amount can be specified in millimeters or as a percentage of the "
+"current extruder diameter. The default value for this parameter is 10%."
+msgstr ""
+"เพื่อลดการมองเห็นรอยตะเข็บในการอัดขึ้นรูปแบบวงปิด "
+"วงจะถูกขัดจังหวะและทำให้สั้นลงตามจำนวนที่ระบุ\n"
+"ปริมาณนี้สามารถระบุได้ในหน่วยมิลลิเมตรหรือเป็นเปอร์เซ็นต์ของเส้นผ่านศูนย์กลางของชุดดันเส้นในปัจจุบัน "
+"ค่าเริ่มต้นสำหรับพารามิเตอร์นี้คือ 10%"
+
+msgid "Scarf joint seam (beta)"
+msgstr "รอยต่อผ้าพันคอ (เบต้า)"
+
+msgid "Use scarf joint to minimize seam visibility and increase seam strength."
+msgstr "ใช้ข้อต่อผ้าพันคอเพื่อลดการมองเห็นรอยตะเข็บและเพิ่มความแข็งแรงของรอยตะเข็บ"
+
+msgid "Conditional scarf joint"
+msgstr "ข้อต่อผ้าพันคอแบบมีเงื่อนไข"
+
+msgid ""
+"Apply scarf joints only to smooth perimeters where traditional seams do not "
+"conceal the seams at sharp corners effectively."
+msgstr ""
+"ใช้ข้อต่อผ้าพันคอกับขอบเรียบเท่านั้น "
+"โดยที่รอยตะเข็บแบบเดิมไม่สามารถปกปิดรอยตะเข็บที่มุมแหลมคมได้อย่างมีประสิทธิภาพ"
+
+msgid "Conditional angle threshold"
+msgstr "เกณฑ์มุมแบบมีเงื่อนไข"
+
+msgid ""
+"This option sets the threshold angle for applying a conditional scarf joint "
+"seam.\n"
+"If the maximum angle within the perimeter loop exceeds this value "
+"(indicating the absence of sharp corners), a scarf joint seam will be used. "
+"The default value is 155°."
+msgstr ""
+"ตัวเลือกนี้จะกำหนดมุมเกณฑ์สำหรับการใช้รอยตะเข็บข้อต่อผ้าพันคอแบบมีเงื่อนไข\n"
+"หากมุมสูงสุดภายในวงรอบปริมณฑลเกินค่านี้ (แสดงว่าไม่มีมุมแหลมคม) จะใช้รอยตะเข็บข้อต่อผ้าพันคอ "
+"ค่าเริ่มต้นคือ 155°"
+
+msgid "Conditional overhang threshold"
+msgstr "เกณฑ์ระยะยื่นแบบมีเงื่อนไข"
+
+#, no-c-format, no-boost-format
+msgid ""
+"This option determines the overhang threshold for the application of scarf "
+"joint seams. If the unsupported portion of the perimeter is less than this "
+"threshold, scarf joint seams will be applied. The default threshold is set "
+"at 40% of the external wall's width. Due to performance considerations, the "
+"degree of overhang is estimated."
+msgstr ""
+"ตัวเลือกนี้จะกำหนดเกณฑ์ส่วนยื่นสำหรับการใช้รอยตะเข็บข้อต่อผ้าพันคอ "
+"หากส่วนที่ไม่ได้รับส่วนรองรับของเส้นรอบวงน้อยกว่าเกณฑ์นี้ จะมีการเย็บรอยตะเข็บผ้าพันคอ "
+"เกณฑ์เริ่มต้นตั้งไว้ที่ 40% ของความกว้างของผนังภายนอก เมื่อพิจารณาถึงประสิทธิภาพแล้ว "
+"ระดับของระยะยื่นจึงถูกประมาณไว้"
+
+msgid "Scarf joint speed"
+msgstr "ความเร็วของข้อต่อผ้าพันคอ"
+
+msgid ""
+"This option sets the printing speed for scarf joints. It is recommended to "
+"print scarf joints at a slow speed (less than 100 mm/s). It's also advisable "
+"to enable 'Extrusion rate smoothing' if the set speed varies significantly "
+"from the speed of the outer or inner walls. If the speed specified here is "
+"higher than the speed of the outer or inner walls, the printer will default "
+"to the slower of the two speeds. When specified as a percentage (e.g., 80%), "
+"the speed is calculated based on the respective outer or inner wall speed. "
+"The default value is set to 100%."
+msgstr ""
+"ตัวเลือกนี้จะตั้งค่าความเร็วในการพิมพ์สำหรับข้อต่อผ้าพันคอ "
+"ขอแนะนำให้พิมพ์ข้อต่อผ้าพันคอด้วยความเร็วต่ำ (น้อยกว่า 100 มม./วินาที) ขอแนะนำให้เปิดใช้งาน "
+"'การปรับอัตราการอัดรีดให้เรียบ' "
+"หากความเร็วที่ตั้งไว้แตกต่างอย่างมากจากความเร็วของผนังด้านนอกหรือด้านใน "
+"หากความเร็วที่ระบุที่นี่สูงกว่าความเร็วของผนังด้านนอกหรือด้านใน "
+"เครื่องพิมพ์จะตั้งค่าเริ่มต้นไว้ที่ความเร็วที่ช้ากว่าทั้งสอง เมื่อระบุเป็นเปอร์เซ็นต์ (เช่น 80%) "
+"ความเร็วจะคำนวณตามความเร็วผนังด้านนอกหรือด้านในตามลำดับ ค่าเริ่มต้นตั้งไว้ที่ 100%"
+
+msgid "Scarf joint flow ratio"
+msgstr "อัตราการไหลของข้อต่อผ้าพันคอ"
+
+msgid "This factor affects the amount of material for scarf joints."
+msgstr "ปัจจัยนี้ส่งผลต่อปริมาณวัสดุสำหรับข้อต่อผ้าพันคอ"
+
+msgid "Scarf start height"
+msgstr "ความสูงเริ่มต้นของผ้าพันคอ"
+
+msgid ""
+"Start height of the scarf.\n"
+"This amount can be specified in millimeters or as a percentage of the "
+"current layer height. The default value for this parameter is 0."
+msgstr ""
+"เริ่มต้นความสูงของผ้าพันคอ\n"
+"จำนวนนี้สามารถระบุได้ในหน่วยมิลลิเมตรหรือเป็นเปอร์เซ็นต์ของความสูงของเลเยอร์ปัจจุบัน "
+"ค่าเริ่มต้นสำหรับพารามิเตอร์นี้คือ 0"
+
+msgid "Scarf around entire wall"
+msgstr "ผ้าพันคอพันรอบผนังทั้งหมด"
+
+msgid "The scarf extends to the entire length of the wall."
+msgstr "ผ้าพันคอยาวตลอดความยาวของผนัง"
+
+msgid "Scarf length"
+msgstr "ความยาวผ้าพันคอ"
+
+msgid ""
+"Length of the scarf. Setting this parameter to zero effectively disables the "
+"scarf."
+msgstr "ความยาวของผ้าพันคอ. การตั้งค่าพารามิเตอร์นี้เป็นศูนย์จะปิดใช้ผ้าพันคออย่างมีประสิทธิภาพ"
+
+msgid "Scarf steps"
+msgstr "ขั้นตอนผ้าพันคอ"
+
+msgid "Minimum number of segments of each scarf."
+msgstr "จำนวนขั้นต่ำของส่วนผ้าพันคอแต่ละอัน"
+
+msgid "Scarf joint for inner walls"
+msgstr "ข้อต่อผ้าพันคอสำหรับผนังด้านใน"
+
+msgid "Use scarf joint for inner walls as well."
+msgstr "ใช้ข้อต่อผ้าพันคอสำหรับผนังด้านในด้วย"
+
+msgid "Role base wipe speed"
+msgstr "ความเร็วในการล้างฐานบทบาท"
+
+msgid ""
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
+"wipe action."
+msgstr ""
+"ความเร็วในการเช็ดถูกกำหนดโดยความเร็วของบทบาทการอัดขึ้นรูปในปัจจุบัน เช่น "
+"หากการดำเนินการเช็ดถูกดำเนินการทันทีหลังจากการอัดขึ้นรูปผนังด้านนอก "
+"ความเร็วของการอัดขึ้นรูปผนังด้านนอกจะถูกใช้สำหรับการดำเนินการเช็ด"
+
+msgid "Wipe on loops"
+msgstr "เช็ดบนลูป"
+
+msgid ""
+"To minimize the visibility of the seam in a closed loop extrusion, a small "
+"inward movement is executed before the extruder leaves the loop."
+msgstr ""
+"เพื่อลดการมองเห็นรอยต่อในการอัดรีดแบบวงปิด "
+"จะมีการเคลื่อนตัวเข้าด้านในเล็กน้อยก่อนที่ชุดดันเส้นจะออกจากวง"
+
+msgid "Wipe before external loop"
+msgstr "เช็ดก่อนวนรอบภายนอก"
+
+msgid ""
+"To minimize visibility of potential overextrusion at the start of an "
+"external perimeter when printing with Outer/Inner or Inner/Outer/Inner wall "
+"print order, the de-retraction is performed slightly on the inside from the "
+"start of the external perimeter. That way any potential over extrusion is "
+"hidden from the outside surface.\n"
+"\n"
+"This is useful when printing with Outer/Inner or Inner/Outer/Inner wall "
+"print order as in these modes it is more likely an external perimeter is "
+"printed immediately after a de-retraction move."
+msgstr ""
+"เพื่อลดการมองเห็นการอัดขึ้นรูปมากเกินไปที่อาจเกิดขึ้นที่จุดเริ่มต้นของขอบเขตภายนอกเมื่อพิมพ์ด้วยลำดับการพิมพ์ด้านนอก/"
+"ด้านในหรือด้านใน/ด้านนอก/ด้านใน "
+"การยกเลิกการดึงกลับจะดำเนินการเล็กน้อยจากด้านในจากจุดเริ่มต้นของขอบเขตภายนอก "
+"ด้วยวิธีนี้ศักยภาพในการอัดขึ้นรูปจะถูกซ่อนจากพื้นผิวด้านนอก\n"
+"\n"
+"สิ่งนี้มีประโยชน์เมื่อพิมพ์ด้วยลำดับการพิมพ์ด้านนอก/ด้านในหรือด้านใน/ด้านนอก/ด้านใน "
+"เนื่องจากในโหมดเหล่านี้ มีแนวโน้มว่าปริมณฑลภายนอกจะถูกพิมพ์ทันทีหลังจากการยกเลิกการถอยกลับ"
+
+msgid "Wipe speed"
+msgstr "ความเร็วเช็ดหัวฉีด"
+
+msgid ""
+"The wipe speed is determined by the speed setting specified in this "
+"configuration. If the value is expressed as a percentage (e.g. 80%), it will "
+"be calculated based on the travel speed setting above. The default value for "
+"this parameter is 80%."
+msgstr ""
+"ความเร็วในการเช็ดถูกกำหนดโดยการตั้งค่าความเร็วที่ระบุในการกำหนดค่านี้ "
+"หากค่าแสดงเป็นเปอร์เซ็นต์ (เช่น 80%) ระบบจะคำนวณตามการตั้งค่าความเร็วการเดินทางด้านบน "
+"ค่าเริ่มต้นสำหรับพารามิเตอร์นี้คือ 80%"
+
+msgid "Skirt distance"
+msgstr "ระยะห่างของเส้นล้อมชิ้นงาน"
+
+msgid "The distance from the skirt to the brim or the object."
+msgstr "ระยะห่างจากเส้นล้อมชิ้นงานถึงขอบยึดชิ้นงานหรือวัตถุ"
+
+msgid "Skirt start point"
+msgstr "จุดเริ่มต้นเส้นล้อมชิ้นงาน"
+
+msgid ""
+"Angle from the object center to skirt start point. Zero is the most right "
+"position, counter clockwise is positive angle."
+msgstr "มุมจากศูนย์กลางวัตถุถึงจุดเริ่มต้นสเกิร์ต ศูนย์คือตำแหน่งที่ถูกต้องที่สุด ทวนเข็มนาฬิกาคือมุมบวก"
+
+msgid "Skirt height"
+msgstr "ความสูงของเส้นล้อมชิ้นงาน"
+
+msgid "How many layers of skirt. Usually only one layer."
+msgstr "เส้นล้อมชิ้นงานกี่ชั้น.. โดยปกติจะมีเพียงชั้นเดียวเท่านั้น"
+
+msgid "Single loop after first layer"
+msgstr "วนรอบเดียวหลังจากชั้นแรก"
+
+msgid ""
+"Limits the skirt/draft shield loops to one wall after the first layer. This "
+"is useful, on occasion, to conserve filament but may cause the draft shield/"
+"skirt to warp / crack."
+msgstr ""
+"จำกัดห่วงสเกิร์ต/โล่ครอบไว้ที่ผนังด้านหนึ่งหลังจากชั้นแรก "
+"สิ่งนี้มีประโยชน์ในบางครั้งเพื่ออนุรักษ์เส้นพลาสติก แต่อาจทำให้โครง/เส้นล้อมชิ้นงานบิดเบี้ยว/แตกร้าวได้"
+
+msgid "Draft shield"
+msgstr "โล่ร่าง"
+
+msgid ""
+"A draft shield is useful to protect an ABS or ASA print from warping and "
+"detaching from print bed due to wind draft. It is usually needed only with "
+"open frame printers, i.e. without an enclosure.\n"
+"\n"
+"Enabled = skirt is as tall as the highest printed object. Otherwise 'Skirt "
+"height' is used.\n"
+"Note: With the draft shield active, the skirt will be printed at skirt "
+"distance from the object. Therefore, if brims are active it may intersect "
+"with them. To avoid this, increase the skirt distance value.\n"
+msgstr ""
+"แผงครอบมีประโยชน์ในการปกป้องงานพิมพ์ ABS หรือ ASA "
+"จากการบิดงอและการหลุดออกจากฐานพิมพ์เนื่องจากกระแสลม "
+"โดยทั่วไปจำเป็นต้องใช้กับเครื่องพิมพ์แบบเปิดเฟรมเท่านั้น กล่าวคือ ไม่มีกล่องหุ้ม\n"
+"\n"
+"Enabled = เส้นล้อมชิ้นงานสูงเท่ากับวัตถุที่พิมพ์สูงสุด มิฉะนั้น จะใช้ 'ความสูงของเส้นล้อมชิ้นงาน'\n"
+"หมายเหตุ: เมื่อใช้งานดราฟชีลด์ เส้นล้อมชิ้นงานจะถูกพิมพ์ที่ระยะห่างจากเส้นล้อมชิ้นงานจากวัตถุ "
+"ดังนั้นหากขอบยึดชิ้นงานยังทำงานอยู่ ขอบยึดชิ้นงานอาจตัดกัน เพื่อหลีกเลี่ยงปัญหานี้ "
+"ให้เพิ่มค่าระยะห่างของเส้นล้อมชิ้นงาน\n"
+
+msgid "Enabled"
+msgstr "เปิดใช้"
+
+msgid "Skirt type"
+msgstr "ประเภทเส้นล้อมชิ้นงาน"
+
+msgid ""
+"Combined - single skirt for all objects, Per object - individual object "
+"skirt."
+msgstr "รวม - เส้นล้อมชิ้นงานเดี่ยวสำหรับวัตถุทั้งหมด ต่อวัตถุ - เส้นล้อมชิ้นงานวัตถุแต่ละรายการ"
+
+msgid "Per object"
+msgstr "ต่อวัตถุ"
+
+msgid "Skirt loops"
+msgstr "ห่วงเส้นล้อมชิ้นงาน"
+
+msgid "Number of loops for the skirt. Zero means disabling skirt."
+msgstr "จำนวนห่วงสำหรับเส้นล้อมชิ้นงาน ศูนย์หมายถึงปิดการใช้งานเส้นล้อมชิ้นงาน"
+
+msgid "Skirt speed"
+msgstr "ความเร็ว เส้นล้อมชิ้นงาน"
+
+msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed."
+msgstr ""
+"ความเร็วของเส้นล้อมชิ้นงาน มีหน่วยเป็น mm/s ศูนย์หมายถึงใช้ความเร็วการอัดรีดเลเยอร์เริ่มต้น"
+
+msgid "Skirt minimum extrusion length"
+msgstr "ความยาวการอัดรีดขั้นต่ำของเส้นล้อมชิ้นงาน"
+
+msgid ""
+"Minimum filament extrusion length in mm when printing the skirt. Zero means "
+"this feature is disabled.\n"
+"\n"
+"Using a non-zero value is useful if the printer is set up to print without a "
+"prime line.\n"
+"Final number of loops is not taking into account while arranging or "
+"validating objects distance. Increase loop number in such case."
+msgstr ""
+"ความยาวการอัดขึ้นรูปเส้นพลาสติกขั้นต่ำเป็นมม. เมื่อพิมพ์เส้นล้อมชิ้นงาน "
+"ศูนย์หมายความว่าคุณลักษณะนี้ถูกปิดใช้งาน\n"
+"\n"
+"การใช้ค่าที่ไม่ใช่ศูนย์จะมีประโยชน์หากเครื่องพิมพ์ได้รับการตั้งค่าให้พิมพ์โดยไม่มีเส้นสำคัญ\n"
+"จำนวนลูปสุดท้ายไม่ได้คำนึงถึงขณะจัดเรียงหรือตรวจสอบระยะห่างของวัตถุ เพิ่มจำนวนลูปในกรณีเช่นนี้"
+
+msgid ""
+"The printing speed in exported G-code will be slowed down when the estimated "
+"layer time is shorter than this value in order to get better cooling for "
+"these layers."
+msgstr ""
+"ความเร็วในการพิมพ์ใน G-code ที่ส่งออกจะลดลงเมื่อเวลาเลเยอร์โดยประมาณสั้นกว่าค่านี้ "
+"เพื่อให้เลเยอร์เหล่านี้เย็นลงได้ดีขึ้น"
+
+msgid "Minimum sparse infill threshold"
+msgstr "เกณฑ์ไส้ในแบบกระจัดกระจายขั้นต่ำ"
+
+msgid ""
+"Sparse infill areas smaller than this threshold value are replaced by "
+"internal solid infill."
+msgstr "พื้นที่ไส้ในแบบกระจัดกระจายที่เล็กกว่าค่าเกณฑ์นี้จะถูกแทนที่ด้วยไส้ในแบบทึบภายใน"
+
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
+
+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 ""
+
+msgid ""
+"Line width of internal solid infill. If expressed as a %, it will be "
+"computed over the nozzle diameter."
+msgstr ""
+"ความกว้างของเส้นของ ไส้ใน ทึบภายใน หากแสดงเป็น % จะคำนวณตามเส้นผ่านศูนย์กลางของหัวฉีด"
+
+msgid "Speed of internal solid infill, not the top and bottom surface."
+msgstr "ความเร็วของไส้ในของแข็งภายใน ไม่ใช่พื้นผิวด้านบนและด้านล่าง"
+
+msgid ""
+"Spiralize smooths out the Z moves of the outer contour. And turns a solid "
+"model into a single walled print with solid bottom layers. The final "
+"generated model has no seam."
+msgstr ""
+"Spiralize จะทำให้การเคลื่อนที่ Z ของเส้นขอบด้านนอกเรียบเนียนขึ้น "
+"และเปลี่ยนโมเดลทึบให้เป็นภาพพิมพ์ผนังเดี่ยวพร้อมชั้นล่างสุดทึบ โมเดลที่สร้างขึ้นขั้นสุดท้ายไม่มีรอยตะเข็บ"
+
+msgid "Smooth Spiral"
+msgstr "เกลียวเรียบ"
+
+msgid ""
+"Smooth Spiral smooths out X and Y moves as well, resulting in no visible "
+"seam at all, even in the XY directions on walls that are not vertical."
+msgstr ""
+"Smooth Spiral ช่วยให้การเคลื่อนที่ของ X และ Y เป็นไปอย่างราบรื่น "
+"ส่งผลให้มองไม่เห็นรอยตะเข็บเลย แม้แต่ในทิศทาง XY บนผนังที่ไม่ใช่แนวตั้งก็ตาม"
+
+msgid "Max XY Smoothing"
+msgstr "การปรับให้เรียบสูงสุด XY"
+
+#, no-c-format, no-boost-format
+msgid ""
+"Maximum distance to move points in XY to try to achieve a smooth spiral. If "
+"expressed as a %, it will be computed over nozzle diameter."
+msgstr ""
+"ระยะทางสูงสุดเพื่อย้ายจุดใน XY เพื่อพยายามให้ได้เกลียวเรียบ หากแสดงเป็น % "
+"จะคำนวณตามเส้นผ่านศูนย์กลางของหัวฉีด"
+
+msgid "Spiral starting flow ratio"
+msgstr "อัตราการไหลเริ่มต้นของเกลียว"
+
+#, no-c-format, no-boost-format
+msgid ""
+"Sets the starting flow ratio while transitioning from the last bottom layer "
+"to the spiral. Normally the spiral transition scales the flow ratio from 0% "
+"to 100% during the first loop which can in some cases lead to under "
+"extrusion at the start of the spiral."
+msgstr ""
+"ตั้งค่าอัตราส่วนการไหลเริ่มต้นขณะเปลี่ยนจากชั้นล่างสุดสุดท้ายเป็นเกลียว "
+"โดยปกติการเปลี่ยนผ่านของเกลียวจะปรับขนาดอัตราส่วนการไหลจาก 0% เป็น 100% ในระหว่างลูปแรก "
+"ซึ่งในบางกรณีอาจนำไปสู่การรีดขึ้นรูปที่จุดเริ่มต้นของเกลียว"
+
+msgid "Spiral finishing flow ratio"
+msgstr "อัตราการไหลการตกแต่งเกลียว"
+
+#, no-c-format, no-boost-format
+msgid ""
+"Sets the finishing flow ratio while ending the spiral. Normally the spiral "
+"transition scales the flow ratio from 100% to 0% during the last loop which "
+"can in some cases lead to under extrusion at the end of the spiral."
+msgstr ""
+"ตั้งค่าอัตราส่วนการไหลขั้นสุดท้ายขณะสิ้นสุดเกลียว "
+"โดยปกติการเปลี่ยนผ่านของเกลียวจะปรับขนาดอัตราส่วนการไหลจาก 100% เป็น 0% "
+"ในระหว่างลูปสุดท้าย ซึ่งในบางกรณีอาจนำไปสู่การรีดขึ้นรูปที่ปลายเกลียว"
+
+msgid ""
+"If smooth or traditional mode is selected, a timelapse video will be "
+"generated for each print. After each layer is printed, a snapshot is taken "
+"with the chamber camera. All of these snapshots are composed into a "
+"timelapse video when printing completes. If smooth mode is selected, the "
+"toolhead will move to the excess chute after each layer is printed and then "
+"take a snapshot. Since the melt filament may leak from the nozzle during the "
+"process of taking a snapshot, a prime tower is required for smooth mode to "
+"wipe nozzle."
+msgstr ""
+"หากเลือกโหมดเรียบหรือโหมดดั้งเดิม วิดีโอไทม์แลปส์จะถูกสร้างขึ้นสำหรับการพิมพ์แต่ละครั้ง "
+"หลังจากพิมพ์แต่ละชั้นแล้ว กล้องจะถ่ายภาพสแนปช็อตด้วยกล้องแชมเบอร์ "
+"สแน็ปช็อตทั้งหมดนี้จะถูกประกอบเป็นวิดีโอไทม์แลปส์เมื่อการพิมพ์เสร็จสิ้น หากเลือกโหมดเรียบ "
+"หัวเครื่องมือจะย้ายไปยังรางส่วนเกินหลังจากพิมพ์แต่ละเลเยอร์แล้วจึงถ่ายภาพสแน็ปช็อต "
+"เนื่องจากเส้นพลาสติกที่หลอมละลายอาจรั่วไหลออกจากหัวฉีดในระหว่างขั้นตอนการถ่ายภาพ "
+"จึงจำเป็นต้องมีไพรม์ทาวเวอร์เพื่อให้โหมดราบรื่นในการเช็ดหัวฉีด"
+
+msgid "Traditional"
+msgstr "แบบดั้งเดิม"
+
+msgid "Temperature variation"
+msgstr "การเปลี่ยนแปลงของอุณหภูมิ"
+
+#. TRN PrintSettings : "Ooze prevention" > "Temperature variation"
+msgid ""
+"Temperature difference to be applied when an extruder is not active. The "
+"value is not used when 'idle_temperature' in filament settings is set to non-"
+"zero value."
+msgstr ""
+"ความแตกต่างของอุณหภูมิที่จะใช้เมื่อชุดดันเส้นไม่ทำงาน ค่าจะไม่ถูกใช้เมื่อตั้งค่า "
+"'idle_temperature' ในการตั้งค่าเส้นพลาสติกเป็นค่าที่ไม่ใช่ศูนย์"
+
+msgid "∆℃"
+msgstr "∆℃"
+
+msgid "Preheat time"
+msgstr "เวลาอุ่นเครื่อง"
+
+msgid ""
+"To reduce the waiting time after tool change, Orca can preheat the next tool "
+"while the current tool is still in use. This setting specifies the time in "
+"seconds to preheat the next tool. Orca will insert a M104 command to preheat "
+"the tool in advance."
+msgstr ""
+"เพื่อลดเวลารอหลังจากเปลี่ยนเครื่องมือ Orca "
+"สามารถอุ่นเครื่องมือถัดไปในขณะที่เครื่องมือปัจจุบันยังคงใช้งานอยู่ "
+"การตั้งค่านี้ระบุเวลาเป็นวินาทีเพื่ออุ่นเครื่องมือถัดไป Orca จะแทรกคำสั่ง M104 เพื่ออุ่นเครื่องล่วงหน้า"
+
+msgid "Preheat steps"
+msgstr "อุ่นเครื่องตามขั้นตอน"
+
+msgid ""
+"Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. "
+"For other printers, please set it to 1."
+msgstr ""
+"ใส่คำสั่งอุ่นล่วงหน้าหลายคำสั่ง (เช่น M104.1) มีประโยชน์สำหรับ Prusa XL เท่านั้น "
+"สำหรับเครื่องพิมพ์อื่นๆ โปรดตั้งค่าเป็น 1"
+
+msgid ""
+"G-code written at the very top of the output file, before any other content. "
+"Useful for adding metadata that printer firmware reads from the first lines "
+"of the file (e.g. estimated print time, filament usage). Supports "
+"placeholders like {print_time_sec} and {used_filament_length}."
+msgstr ""
+"G-code เขียนไว้ที่ด้านบนสุดของไฟล์เอาต์พุต ก่อนเนื้อหาอื่นๆ "
+"มีประโยชน์สำหรับการเพิ่มข้อมูลเมตาที่เฟิร์มแวร์เครื่องพิมพ์อ่านจากบรรทัดแรกของไฟล์ (เช่น "
+"เวลาในการพิมพ์โดยประมาณ การใช้เส้นพลาสติก) รองรับตัวยึดตำแหน่ง เช่น {print_time_sec} "
+"และ {used_filament_length}"
+
+msgid "Start G-code"
+msgstr "เริ่ม G-code"
+
+msgid "Start G-code when starting the entire print."
+msgstr "เริ่ม G-code เมื่อเริ่มพิมพ์ทั้งหมด"
+
+msgid "Start G-code when starting the printing of this filament."
+msgstr "เริ่ม G-code เมื่อเริ่มพิมพ์เส้นพลาสติกนี้"
+
+msgid "Single Extruder Multi Material"
+msgstr "ชุดดันเส้นเดี่ยวหลายวัสดุ"
+
+msgid "Use single nozzle to print multi filament."
+msgstr "ใช้หัวฉีดเดี่ยวเพื่อพิมพ์เส้นพลาสติกหลายเส้น"
+
+msgid "Manual Filament Change"
+msgstr "การเปลี่ยนเส้นพลาสติกด้วยตนเอง"
+
+msgid ""
+"Enable this option to omit the custom Change filament G-code only at the "
+"beginning of the print. The tool change command (e.g., T0) will be skipped "
+"throughout the entire print. This is useful for manual multi-material "
+"printing, where we use M600/PAUSE to trigger the manual filament change "
+"action."
+msgstr ""
+"เปิดใช้งานตัวเลือกนี้เพื่อละเว้น G-code "
+"เปลี่ยนฟิลาเมนต์แบบกำหนดเองเฉพาะตอนเริ่มต้นการพิมพ์เท่านั้น คำสั่งเปลี่ยนเครื่องมือ (เช่น T0) "
+"จะถูกข้ามไปตลอดการพิมพ์ทั้งหมด สิ่งนี้มีประโยชน์สำหรับการพิมพ์หลายวัสดุด้วยตนเอง โดยที่เราใช้ "
+"M600/PAUSE เพื่อกระตุ้นการดำเนินการเปลี่ยนเส้นพลาสติกด้วยตนเอง"
+
+msgid "Wipe tower type"
+msgstr "ชนิดทาวเวอร์เช็ด"
+
+msgid ""
+"Choose the wipe tower implementation for multi-material prints. Type 1 is "
+"recommended for Bambu and Qidi printers with a filament cutter. Type 2 "
+"offers better compatibility with multi-tool and MMU printers and provide "
+"overall better compatibility."
+msgstr ""
+"เลือกการใช้งานไวด์ทาวเวอร์สำหรับการพิมพ์แบบหลายวัสดุ แนะนำให้ใช้ประเภท 1 สำหรับเครื่องพิมพ์ "
+"Bambu และ Qidi ที่มีเครื่องตัดเส้นพลาสติก Type 2 "
+"ให้ความเข้ากันได้ที่ดีกว่ากับเครื่องพิมพ์หลายเครื่องมือและ MMU และให้ความเข้ากันได้โดยรวมดีขึ้น"
+
+msgid "Type 1"
+msgstr "ประเภทที่ 1"
+
+msgid "Type 2"
+msgstr "ประเภทที่ 2"
+
+msgid "Purge in prime tower"
+msgstr "ระยะเว้นในไพร์มทาวเวอร์"
+
+msgid "Purge remaining filament into prime tower."
+msgstr "ล้างเส้นพลาสติกที่เหลือลงในไพร์มทาวเวอร์"
+
+msgid "Enable filament ramming"
+msgstr "เปิดใช้งานการอัดกระแทกเส้นเส้นพลาสติก"
+
+msgid "Tool change on wipe tower"
+msgstr "การเปลี่ยนเครื่องมือบนไวด์ทาวเวอร์"
+
+msgid ""
+"Force the toolhead to travel to the wipe tower before issuing the tool "
+"change command (Tx). Only relevant for multi-extruder (multi-toolhead) "
+"printers using a Type 2 wipe tower. By default Orca skips the travel on "
+"multi-toolhead machines because the firmware handles the head swap, which "
+"can result in the Tx command being issued above the printed part. Enable "
+"this option if you want the tool change to always be issued above the wipe "
+"tower instead."
+msgstr ""
+"บังคับให้หัวเครื่องมือเคลื่อนที่ไปที่หอเช็ดก่อนที่จะออกคำสั่งเปลี่ยนเครื่องมือ (Tx) "
+"เกี่ยวข้องเฉพาะกับเครื่องพิมพ์ที่มีชุดดันเส้นหลายเครื่อง (หลายหัวเครื่องมือ) ที่ใช้แผ่นเช็ดแบบ Type 2 "
+"ตามค่าเริ่มต้น Orca "
+"จะข้ามการเดินทางบนเครื่องที่มีหัวเครื่องมือหลายหัวเนื่องจากเฟิร์มแวร์จัดการการสลับหัว "
+"ซึ่งอาจส่งผลให้มีการออกคำสั่ง Tx เหนือส่วนที่พิมพ์ "
+"เปิดใช้งานตัวเลือกนี้หากคุณต้องการให้ทำการเปลี่ยนแปลงเครื่องมือเหนือหอเช็ดแทนเสมอ"
+
+msgid "No sparse layers (beta)"
+msgstr "ไม่มีชั้นกระจัดกระจาย (เบต้า)"
+
+msgid ""
+"If enabled, the wipe tower will not be printed on layers with no tool "
+"changes. On layers with a tool change, extruder will travel downward to "
+"print the wipe tower. User is responsible for ensuring there is no collision "
+"with the print."
+msgstr ""
+"หากเปิดใช้งาน หอเช็ดจะไม่ถูกพิมพ์บนเลเยอร์โดยไม่มีการเปลี่ยนแปลงเครื่องมือ "
+"บนเลเยอร์ที่มีการเปลี่ยนเครื่องมือ ชุดดันเส้นจะเคลื่อนลงด้านล่างเพื่อพิมพ์ไวด์ทาวเวอร์ "
+"ผู้ใช้มีหน้าที่รับผิดชอบในการตรวจสอบให้แน่ใจว่าไม่มีการชนกันกับงานพิมพ์"
+
+msgid "Prime all printing extruders"
+msgstr "ใช้ชุดดันเส้นการพิมพ์ทั้งหมด"
+
+msgid ""
+"If enabled, all printing extruders will be primed at the front edge of the "
+"print bed at the start of the print."
+msgstr ""
+"หากเปิดใช้งาน ชุดดันเส้นการพิมพ์ทั้งหมดจะถูกลงสีพื้นที่ขอบด้านหน้าของฐานพิมพ์เมื่อเริ่มต้นการพิมพ์"
+
+msgid "Slice gap closing radius"
+msgstr "รัศมีการปิดช่องว่างของ Slice"
+
+msgid ""
+"Cracks smaller than 2x gap closing radius are being filled during the "
+"triangle mesh slicing. The gap closing operation may reduce the final print "
+"resolution, therefore it is advisable to keep the value reasonably low."
+msgstr ""
+"รอยแตกร้าวที่มีขนาดเล็กกว่า 2 "
+"เท่าของรัศมีการปิดช่องว่างจะถูกไส้ในเต็มระหว่างการตัดตาข่ายสามเหลี่ยม "
+"การดำเนินการปิดช่องว่างอาจลดความละเอียดในการพิมพ์ขั้นสุดท้าย "
+"ดังนั้นจึงแนะนำให้รักษาค่าให้ต่ำพอสมควร"
+
+msgid "Slicing Mode"
+msgstr "โหมดการแบ่งส่วน"
+
+msgid ""
+"Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to "
+"close all holes in the model."
+msgstr "ใช้ \"เลขคู่\" สำหรับโมเดลเครื่องบิน 3DLabPrint ใช้ \"ปิดรู\" เพื่อปิดรูทั้งหมดในโมเดล"
+
+msgid "Regular"
+msgstr "ปกติ"
+
+msgid "Even-odd"
+msgstr "คู่-คี่"
+
+msgid "Close holes"
+msgstr "ปิดรู"
+
+msgid "Z offset"
+msgstr "ออฟเซ็ต Z"
+
+msgid ""
+"This value will be added (or subtracted) from all the Z coordinates in the "
+"output G-code. It is used to compensate for bad Z endstop position: for "
+"example, if your endstop zero actually leaves the nozzle 0.3mm far from the "
+"print bed, set this to -0.3 (or fix your endstop)."
+msgstr ""
+"ค่านี้จะถูกบวก (หรือลบ) จากพิกัด Z ทั้งหมดใน G-code เอาท์พุต ใช้เพื่อชดเชยตำแหน่งปลาย Z "
+"ที่ไม่ดี: ตัวอย่างเช่น หากศูนย์ปลายสุดของคุณปล่อยหัวฉีดให้ห่างจากฐานพิมพ์ 0.3 มม. ให้ตั้งค่านี้เป็น "
+"-0.3 (หรือแก้ไขจุดปลายสุดของคุณ)"
+
+msgid "Enable support"
+msgstr "เปิดใช้ส่วนรองรับ"
+
+msgid "Enable support generation."
+msgstr "เปิดใช้การสร้างส่วนรองรับ"
+
+msgid ""
+"Normal (auto) and Tree (auto) are used to generate support automatically. If "
+"Normal (manual) or Tree (manual) is selected, only support enforcers are "
+"generated."
+msgstr ""
+"ปกติ (อัตโนมัติ) และ Tree (อัตโนมัติ) ใช้เพื่อสร้างส่วนรองรับโดยอัตโนมัติ หากเลือก ปกติ "
+"(ด้วยตนเอง) หรือ ต้นไม้ (ด้วยตนเอง) จะมีการสร้างเฉพาะกำหนดส่วนรองรับเท่านั้น"
+
+msgid "Normal (auto)"
+msgstr "ปกติ (อัตโนมัติ)"
+
+msgid "Tree (auto)"
+msgstr "ต้นไม้ (อัตโนมัติ)"
+
+msgid "Normal (manual)"
+msgstr "ปกติ (ด้วยตนเอง)"
+
+msgid "Tree (manual)"
+msgstr "ต้นไม้ (คู่มือ)"
+
+msgid "Support/object XY distance"
+msgstr "ส่วนรองรับ/วัตถุ ระยะ XY"
+
+msgid "XY separation between an object and its support."
+msgstr "การแยก XY ระหว่างวัตถุและส่วนรองรับ"
+
+msgid "Support/object first layer gap"
+msgstr "ส่วนรองรับ/วัตถุช่องว่างชั้นแรก"
+
+msgid "XY separation between an object and its support at the first layer."
+msgstr "การแยก XY ระหว่างวัตถุและส่วนรองรับที่ชั้นแรก"
+
+msgid "Pattern angle"
+msgstr "มุมรูปแบบ"
+
+msgid "Use this setting to rotate the support pattern on the horizontal plane."
+msgstr "ใช้การตั้งค่านี้เพื่อหมุนรูปแบบการรองรับบนระนาบแนวนอน"
+
+msgid "On build plate only"
+msgstr "บนแผ่นฐานเท่านั้น"
+
+msgid "Don't create support on model surface, only on build plate."
+msgstr "อย่าสร้างส่วนรองรับบนพื้นผิวของโมเดล เฉพาะบนฐานรองพิมพ์เท่านั้น"
+
+msgid "Support critical regions only"
+msgstr "รองรับภูมิภาคที่สำคัญเท่านั้น"
+
+msgid ""
+"Only create support for critical regions including sharp tail, cantilever, "
+"etc."
+msgstr "สร้างการรองรับเฉพาะบริเวณที่สำคัญเท่านั้น เช่น หางแหลม คานยื่น เป็นต้น"
+
+msgid "Ignore small overhangs"
+msgstr "ละเว้นส่วนยื่นเล็กๆ"
+
+msgid "Ignore small overhangs that possibly don't require support."
+msgstr "ไม่ต้องสนใจส่วนยื่นเล็กๆ ที่อาจไม่จำเป็นต้องมีส่วนรองรับ"
+
+msgid "Top Z distance"
+msgstr "ระยะทาง Z สูงสุด"
+
+msgid "Z gap between the support's top and object."
+msgstr "ช่องว่าง Z ระหว่างด้านบนของส่วนรองรับและวัตถุ"
+
+msgid "Bottom Z distance"
+msgstr "ระยะ Z ล่าง"
+
+msgid ""
+"Z gap between the object and the support bottom. If Support Top Z Distance "
+"is 0 and the bottom has interface layers, this value is ignored and the "
+"support is printed in direct contact with the object (no gap)."
+msgstr ""
+"ช่องว่าง Z ระหว่างวัตถุและฐานรองรับ หากระยะ Z สูงสุดที่รองรับคือ 0 "
+"และด้านล่างมีเลเยอร์อินเทอร์เฟซ ค่านี้จะถูกละเว้น และส่วนรองรับจะถูกพิมพ์โดยสัมผัสโดยตรงกับวัตถุ "
+"(ไม่มีช่องว่าง)"
+
+msgid "Support/raft base"
+msgstr "ส่วนรองรับ/ฐานฐานรองชิ้นงาน"
+
+msgid ""
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
+msgstr ""
+
+msgid "Avoid interface filament for base"
+msgstr "หลีกเลี่ยงเส้นพลาสติกอินเทอร์เฟซสำหรับฐาน"
+
+msgid ""
+"Avoid using support interface filament to print support base if possible."
+msgstr "หลีกเลี่ยงการใช้เส้นพลาสติกส่วนต่อประสานเพื่อพิมพ์ฐานรองรับหากเป็นไปได้"
+
+msgid ""
+"Line width of support. If expressed as a %, it will be computed over the "
+"nozzle diameter."
+msgstr "ความกว้างของเส้นรองรับ หากแสดงเป็น % จะคำนวณตามเส้นผ่านศูนย์กลางของหัวฉีด"
+
+msgid "Interface use loop pattern"
+msgstr "รูปแบบการใช้อินเทอร์เฟซแบบวนซ้ำ"
+
+msgid ""
+"Cover the top contact layer of the supports with loops. Disabled by default."
+msgstr "ครอบคลุมชั้นสัมผัสด้านบนของส่วนรองรับด้วยลูป ปิดใช้งานตามค่าเริ่มต้น"
+
+msgid "Support/raft interface"
+msgstr "ส่วนต่อประสานส่วนรองรับ / ฐานรองชิ้นงาน"
+
+msgid ""
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
+msgstr ""
+
+msgid "Top interface layers"
+msgstr "เลเยอร์อินเทอร์เฟซบนสุด"
+
+msgid "Number of top interface layers."
+msgstr "จำนวนเลเยอร์อินเทอร์เฟซบนสุด"
+
+msgid "Bottom interface layers"
+msgstr "เลเยอร์อินเทอร์เฟซด้านล่าง"
+
+msgid "Number of bottom interface layers."
+msgstr "จำนวนเลเยอร์อินเทอร์เฟซด้านล่าง"
+
+msgid "Same as top"
+msgstr "เช่นเดียวกับด้านบน"
+
+msgid "Top interface spacing"
+msgstr "ระยะห่างของอินเทอร์เฟซด้านบน"
+
+msgid ""
+"Spacing of interface lines. Zero means solid interface.\n"
+"Force using solid interface when support ironing is enabled."
+msgstr ""
+"ระยะห่างของบรรทัดอินเทอร์เฟซ ศูนย์หมายถึงอินเทอร์เฟซที่มั่นคง\n"
+"บังคับใช้อินเทอร์เฟซแบบทึบเมื่อเปิดใช้งานการรีดผิวที่รองรับ"
+
+msgid "Bottom interface spacing"
+msgstr "ระยะห่างของอินเทอร์เฟซด้านล่าง"
+
+msgid "Spacing of bottom interface lines. Zero means solid interface."
+msgstr "ระยะห่างของบรรทัดอินเทอร์เฟซด้านล่าง ศูนย์หมายถึงอินเทอร์เฟซที่มั่นคง"
+
+msgid "Speed of support interface."
+msgstr "ความเร็วของอินเทอร์เฟซส่วนรองรับ"
+
+msgid "Base pattern"
+msgstr "รูปแบบฐาน"
+
+msgid ""
+"Line pattern of support.\n"
+"\n"
+"The Default option for Tree supports is Hollow, which means no base pattern. "
+"For other support types, the Default option is the Rectilinear pattern.\n"
+"\n"
+"NOTE: For Organic supports, the two walls are supported only with the Hollow/"
+"Default base pattern. The Lightning base pattern is supported only by Tree "
+"Slim/Strong/Hybrid supports. For the other support types, the Rectilinear "
+"will be used instead of Lightning."
+msgstr ""
+"รูปแบบเส้นของส่วนรองรับ\n"
+"\n"
+"ตัวเลือกเริ่มต้นสำหรับส่วนรองรับ Tree คือ Hollow ซึ่งหมายความว่าไม่มีรูปแบบพื้นฐาน "
+"สำหรับส่วนรองรับประเภทอื่นๆ ตัวเลือกเริ่มต้นคือรูปแบบเส้นตรง\n"
+"\n"
+"หมายเหตุ: สำหรับส่วนรองรับทั่วไป ผนังทั้งสองได้รับการรองรับเฉพาะรูปแบบฐานกลวง/"
+"ค่าเริ่มต้นเท่านั้น รูปแบบฐาน Lightning รองรับเฉพาะ Tree Slim/Strong/Hybrid เท่านั้น "
+"สำหรับส่วนรองรับประเภทอื่นๆ Rectilinear จะถูกใช้แทน Lightning"
+
+msgid "Rectilinear grid"
+msgstr "ตารางเป็นเส้นตรง"
+
+msgid "Hollow"
+msgstr "กลวง"
+
+msgid "Interface pattern"
+msgstr "รูปแบบอินเทอร์เฟซ"
+
+msgid ""
+"Line pattern of support interface. Default pattern for non-soluble support "
+"interface is Rectilinear, while default pattern for soluble support "
+"interface is Concentric."
+msgstr ""
+"รูปแบบเส้นของอินเทอร์เฟซส่วนรองรับ รูปแบบเริ่มต้นสำหรับอินเทอร์เฟซส่วนรองรับที่ไม่ละลายน้ำคือ "
+"Rectilinear ในขณะที่รูปแบบเริ่มต้นสำหรับอินเทอร์เฟซส่วนรองรับที่ละลายน้ำได้คือ Concentric"
+
+msgid "Rectilinear Interlaced"
+msgstr "เป็นเส้นตรงอินเทอร์เลซ"
+
+msgid "Base pattern spacing"
+msgstr "ระยะห่างของรูปแบบฐาน"
+
+msgid "Spacing between support lines."
+msgstr "ระยะห่างระหว่างเส้นรองรับ"
+
+msgid "Normal Support expansion"
+msgstr "การขยายส่วนรองรับปกติ"
+
+msgid "Expand (+) or shrink (-) the horizontal span of normal support."
+msgstr "ขยาย (+) หรือย่อ (-) ช่วงแนวนอนของแนวรับปกติ"
+
+msgid "Speed of support."
+msgstr "ความเร็วของส่วนรองรับ"
+
+msgid ""
+"Style and shape of the support. For normal support, projecting the supports "
+"into a regular grid will create more stable supports (default), while snug "
+"support towers will save material and reduce object scarring.\n"
+"For tree support, slim and organic style will merge branches more "
+"aggressively and save a lot of material (default organic), while hybrid "
+"style will create similar structure to normal support under large flat "
+"overhangs."
+msgstr ""
+"สไตล์และรูปทรงของส่วนรองรับ สำหรับการรองรับตามปกติ "
+"การฉายส่วนรองรับลงในตารางปกติจะสร้างการรองรับที่มีความเสถียรมากขึ้น (ค่าเริ่มต้น) "
+"ในขณะที่เสารองรับที่สบายจะช่วยประหยัดวัสดุและลดการเกิดแผลเป็นของวัตถุ\n"
+"สำหรับการรองรับแบบต้นไม้ รูปแบบที่เพรียวบางและออร์แกนิกจะผสานกิ่งก้านเข้าด้วยกันอย่างดุดันยิ่งขึ้น "
+"และประหยัดวัสดุได้มาก (ค่าเริ่มต้นแบบออร์แกนิก) "
+"ในขณะที่รูปแบบไฮบริดจะสร้างโครงสร้างที่คล้ายกันกับการรองรับปกติภายใต้ส่วนยื่นแบนขนาดใหญ่"
+
+msgid "Default (Grid/Organic)"
+msgstr "ค่าเริ่มต้น (กริด/ออร์แกนิก)"
+
+msgid "Snug"
+msgstr "สบาย"
+
+msgid "Organic"
+msgstr "ออร์แกนิก"
+
+msgid "Tree Slim"
+msgstr "ทรี สลิม"
+
+msgid "Tree Strong"
+msgstr "ต้นไม้แข็งแกร่ง"
+
+msgid "Tree Hybrid"
+msgstr "ต้นไม้ไฮบริด"
+
+msgid "Independent support layer height"
+msgstr "ความสูงของชั้นรองรับอิสระ"
+
+msgid ""
+"Support layer uses layer height independent with object layer. This is to "
+"support customizing Z-gap and save print time. This option will be invalid "
+"when the prime tower is enabled."
+msgstr ""
+"เลเยอร์ส่วนรองรับใช้ความสูงของเลเยอร์ที่เป็นอิสระจากเลเยอร์วัตถุ เพื่อรองรับการปรับแต่ง Z-gap "
+"และประหยัดเวลาในการพิมพ์ ตัวเลือกนี้จะไม่ถูกต้องเมื่อเปิดใช้งานไพรม์ทาวเวอร์"
+
+msgid "Threshold angle"
+msgstr "มุมเกณฑ์"
+
+msgid ""
+"Support will be generated for overhangs whose slope angle is below the "
+"threshold. The smaller this value is, the steeper the overhang that can be "
+"printed without support.\n"
+"Note: If set to 0, normal supports use the Threshold overlap instead, while "
+"tree supports fall back to a default value of 30."
+msgstr ""
+"ส่วนรองรับจะถูกสร้างขึ้นสำหรับส่วนยื่นที่มีมุมลาดต่ำกว่าเกณฑ์ ยิ่งค่านี้น้อยลง "
+"ระยะยื่นที่สามารถพิมพ์โดยไม่ต้องรองรับก็จะยิ่งชันมากขึ้น\n"
+"หมายเหตุ: หากตั้งค่าเป็น 0 ส่วนรองรับปกติจะใช้ Threshold ทับซ้อนกันแทน "
+"ในขณะที่ส่วนรองรับแบบทรีถอยกลับไปเป็นค่าเริ่มต้นที่ 30"
+
+msgid "Threshold overlap"
+msgstr "การทับซ้อนกันของเกณฑ์"
+
+msgid ""
+"If threshold angle is zero, support will be generated for overhangs whose "
+"overlap is below the threshold. The smaller this value is, the steeper the "
+"overhang that can be printed without support."
+msgstr ""
+"หากมุมเกณฑ์เป็นศูนย์ ระบบจะสร้างส่วนรองรับสำหรับส่วนยื่นที่มีการทับซ้อนกันต่ำกว่าเกณฑ์ ยิ่งค่านี้น้อยลง "
+"ระยะยื่นที่สามารถพิมพ์โดยไม่ต้องรองรับก็จะยิ่งชันมากขึ้น"
+
+msgid "Tree support branch angle"
+msgstr "มุมกิ่งกิ่งรองรับต้นไม้"
+
+msgid ""
+"This setting determines the maximum overhang angle that the branches of tree "
+"support are allowed to make. If the angle is increased, the branches can be "
+"printed more horizontally, allowing them to reach farther."
+msgstr ""
+"การตั้งค่านี้จะกำหนดมุมยื่นสูงสุดที่อนุญาตให้กิ่งก้านของต้นไม้รองรับได้ หากมุมเพิ่มขึ้น "
+"กิ่งก้านสามารถพิมพ์ในแนวนอนได้มากขึ้น เพื่อให้สามารถขยายได้ไกลขึ้น"
+
+msgid "Preferred Branch Angle"
+msgstr "มุมสาขาที่ต้องการ"
+
+#. TRN PrintSettings: "Organic supports" > "Preferred Branch Angle"
+msgid ""
+"The preferred angle of the branches, when they do not have to avoid the "
+"model. Use a lower angle to make them more vertical and more stable. Use a "
+"higher angle for branches to merge faster."
+msgstr ""
+"มุมที่ต้องการของกิ่งก้านเมื่อไม่จำเป็นต้องหลีกเลี่ยงโมเดล "
+"ใช้มุมที่ต่ำกว่าเพื่อทำให้เป็นแนวตั้งมากขึ้นและมั่นคงยิ่งขึ้น ใช้มุมที่สูงขึ้นเพื่อให้กิ่งก้านผสานเร็วขึ้น"
+
+msgid "Tree support branch distance"
+msgstr "ต้นไม้รองรับระยะห่างกิ่งก้าน"
+
+msgid ""
+"This setting determines the distance between neighboring tree support nodes."
+msgstr "การตั้งค่านี้กำหนดระยะห่างระหว่างโหนดส่วนรองรับทรีที่อยู่ใกล้เคียง"
+
+msgid "Branch Density"
+msgstr "ความหนาแน่นของสาขา"
+
+#. TRN PrintSettings: "Organic supports" > "Branch Density"
+msgid ""
+"Adjusts the density of the support structure used to generate the tips of "
+"the branches. A higher value results in better overhangs but the supports "
+"are harder to remove, thus it is recommended to enable top support "
+"interfaces instead of a high branch density value if dense interfaces are "
+"needed."
+msgstr ""
+"ปรับความหนาแน่นของโครงสร้างรองรับที่ใช้สร้างส่วนปลายของกิ่งก้าน "
+"ค่าที่สูงกว่าส่งผลให้มีระยะยื่นที่ดีกว่า แต่ส่วนรองรับจะถอดออกได้ยาก "
+"ดังนั้นจึงแนะนำให้เปิดใช้งานอินเทอร์เฟซส่วนรองรับด้านบนแทนค่าความหนาแน่นของสาขาที่สูง "
+"หากจำเป็นต้องใช้อินเทอร์เฟซที่หนาแน่น"
+
+msgid "Auto brim width"
+msgstr "ความกว้างขอบยึดชิ้นงานอัตโนมัติ"
+
+msgid ""
+"Enabling this option means the width of the brim for tree support will be "
+"automatically calculated."
+msgstr "การเปิดใช้งานตัวเลือกนี้หมายความว่าความกว้างของขอบเพื่อรองรับต้นไม้จะถูกคำนวณโดยอัตโนมัติ"
+
+msgid "Tree support brim width"
+msgstr "ต้นไม้รองรับความกว้างของขอบยึดชิ้นงาน"
+
+msgid "Distance from tree branch to the outermost brim line."
+msgstr "ระยะห่างจากกิ่งไม้ถึงแนวขอบนอกสุด"
+
+msgid "Tip Diameter"
+msgstr "เส้นผ่านศูนย์กลางปลาย"
+
+#. TRN PrintSettings: "Organic supports" > "Tip Diameter"
+msgid "Branch tip diameter for organic supports."
+msgstr "เส้นผ่านศูนย์กลางปลายกิ่งสำหรับรองรับแบบออร์แกนิก"
+
+msgid "Tree support branch diameter"
+msgstr "เส้นผ่านศูนย์กลางกิ่งรองรับต้นไม้"
+
+msgid "This setting determines the initial diameter of support nodes."
+msgstr "การตั้งค่านี้จะกำหนดเส้นผ่านศูนย์กลางเริ่มต้นของโหนดรองรับ"
+
+#. TRN PrintSettings: #lmFIXME
+msgid "Branch Diameter Angle"
+msgstr "มุมเส้นผ่านศูนย์กลางสาขา"
+
+#. TRN PrintSettings: "Organic supports" > "Branch Diameter Angle"
+msgid ""
+"The angle of the branches' diameter as they gradually become thicker towards "
+"the bottom. An angle of 0 will cause the branches to have uniform thickness "
+"over their length. A bit of an angle can increase stability of the organic "
+"support."
+msgstr ""
+"มุมของเส้นผ่านศูนย์กลางกิ่งจะค่อยๆหนาขึ้นจนถึงด้านล่าง มุม 0 "
+"จะทำให้กิ่งมีความหนาสม่ำเสมอตลอดความยาว "
+"มุมเล็กน้อยสามารถเพิ่มความเสถียรของส่วนรองรับแบบออร์แกนิกได้"
+
+msgid "Support wall loops"
+msgstr "รองรับห่วงติดผนัง"
+
+msgid ""
+"This setting specifies the count of support walls in the range of [0,2]. 0 "
+"means auto."
+msgstr "การตั้งค่านี้ระบุจำนวนผนังรองรับในช่วง [0,2] 0 หมายถึงอัตโนมัติ"
+
+msgid "Tree support with infill"
+msgstr "ส่วนรองรับต้นไม้พร้อมไส้ใน"
+
+msgid ""
+"This setting specifies whether to add infill inside large hollows of tree "
+"support."
+msgstr "การตั้งค่านี้ระบุว่าจะเพิ่มไส้ในภายในโพรงต้นไม้ขนาดใหญ่หรือไม่"
+
+msgid "Ironing Support Interface"
+msgstr "อินเทอร์เฟซรองรับการรีดผิว"
+
+msgid ""
+"Ironing is using small flow to print on same height of support interface "
+"again to make it more smooth. This setting controls whether support "
+"interface being ironed. When enabled, support interface will be extruded as "
+"solid too."
+msgstr ""
+"การรีดผิวใช้การไหลเพียงเล็กน้อยเพื่อพิมพ์บนส่วนรองรับที่มีความสูงเท่ากันอีกครั้งเพื่อให้เรียบยิ่งขึ้น "
+"การตั้งค่านี้ควบคุมว่าจะรีดอินเทอร์เฟซส่วนรองรับหรือไม่ เมื่อเปิดใช้งาน "
+"อินเทอร์เฟซส่วนรองรับจะถูกอัดออกมาเป็นของแข็งเช่นกัน"
+
+msgid "Support Ironing Pattern"
+msgstr "รองรับรูปแบบการรีดผิว"
+
+msgid "Support Ironing flow"
+msgstr "รองรับกระแสการรีด"
+
+msgid ""
+"The amount of material to extrude during ironing. Relative to flow of normal "
+"support interface layer height. Too high value results in overextrusion on "
+"the surface."
+msgstr ""
+"ปริมาณวัสดุที่จะพ่นออกมาระหว่างรีดผิว "
+"สัมพันธ์กับโฟลว์ของความสูงของเลเยอร์อินเทอร์เฟซส่วนรองรับปกติ "
+"ค่าที่สูงเกินไปส่งผลให้เกิดการอัดขึ้นรูปมากเกินไปบนพื้นผิว"
+
+msgid "Support Ironing line spacing"
+msgstr "รองรับระยะห่างระหว่างสายรีดผิว"
+
+msgid "Activate temperature control"
+msgstr "เปิดใช้งานการควบคุมอุณหภูมิ"
+
+msgid ""
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
+" 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 "
+"chamber heater, if present.\n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
+msgstr ""
+"เปิดใช้งานตัวเลือกนี้สำหรับการควบคุมอุณหภูมิห้องอัตโนมัติ ตัวเลือกนี้จะเปิดใช้งานการส่งคำสั่ง M191 "
+"ก่อน \"machine_start_gcode\"\n"
+" ซึ่งจะตั้งอุณหภูมิห้องอบและรอจนกว่าจะถึงอุณหภูมิห้อง นอกจากนี้ ยังส่งคำสั่ง M141 "
+"เมื่อสิ้นสุดการพิมพ์เพื่อปิดเครื่องทำความร้อนในห้อง (หากมี)\n"
+"\n"
+"ตัวเลือกนี้ขึ้นอยู่กับเฟิร์มแวร์ที่รองรับคำสั่ง M191 และ M141 ไม่ว่าจะผ่านทางมาโครหรือแบบเนทิฟ "
+"และโดยปกติจะใช้เมื่อมีการติดตั้งเครื่องทำความร้อนในห้องแบบแอคทีฟ"
+
+msgid "Chamber temperature"
+msgstr "อุณหภูมิห้องพิมพ์"
+
+msgid ""
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA.\n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a G-code variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
+msgstr ""
+"สำหรับวัสดุที่มีอุณหภูมิสูง เช่น ABS, ASA, PC และ PA "
+"อุณหภูมิห้องที่สูงขึ้นสามารถช่วยลดหรือลดการบิดงอ "
+"และอาจนำไปสู่ความแข็งแรงการยึดเกาะระหว่างชั้นที่สูงขึ้น อย่างไรก็ตาม ในเวลาเดียวกัน "
+"อุณหภูมิห้องที่สูงขึ้นจะลดประสิทธิภาพการกรองอากาศสำหรับ ABS และ ASA\n"
+"\n"
+"สำหรับ PLA, PETG, TPU, PVA และวัสดุที่มีอุณหภูมิต่ำอื่นๆ ควรปิดใช้งานตัวเลือกนี้ (ตั้งค่าเป็น 0) "
+"เนื่องจากอุณหภูมิห้องควรต่ำเพื่อหลีกเลี่ยงการอุดตันของชุดดันเส้นที่เกิดจากวัสดุอ่อนตัวเมื่อความร้อนแตก\n"
+"\n"
+"หากเปิดใช้งาน พารามิเตอร์นี้จะตั้งค่าตัวแปร G-code ชื่อ Chamber_temperature "
+"ซึ่งสามารถใช้เพื่อส่งอุณหภูมิห้องเพาะเลี้ยงที่ต้องการไปยังมาโครเริ่มการพิมพ์ของคุณ "
+"หรือมาโครความร้อนแช่เช่นนี้: PRINT_START (ตัวแปรอื่นๆ) "
+"CHAMBER_TEMP=[chamber_temperature] "
+"วิธีนี้อาจเป็นประโยชน์หากเครื่องพิมพ์ของคุณไม่รองรับคำสั่ง M141/M191 "
+"หรือหากคุณต้องการจัดการกับความร้อนที่แช่อยู่ในมาโครเริ่มการพิมพ์ "
+"หากไม่มีการติดตั้งเครื่องทำความร้อนในห้องที่ใช้งานอยู่"
+
+msgid "Nozzle temperature for layers after the initial one."
+msgstr "อุณหภูมิหัวฉีดสำหรับชั้นหลังจากอันแรก"
+
+msgid "Detect thin walls"
+msgstr "ตรวจจับผนังบาง"
+
+msgid ""
+"Detect thin walls which can't contain two line widths, and use single line "
+"to print. Maybe not printed very well, because it's not a closed loop."
+msgstr ""
+"ตรวจจับผนังบางๆ ที่ไม่สามารถมีความกว้างสองบรรทัดได้ และใช้บรรทัดเดียวในการพิมพ์ "
+"อาจจะพิมพ์ได้ไม่ดีนักเพราะไม่ใช่วงปิด"
+
+msgid ""
+"This G-code is inserted when filament is changed, including T commands to "
+"trigger tool change."
+msgstr ""
+"รหัส G นี้จะถูกแทรกเมื่อมีการเปลี่ยนเส้นพลาสติก รวมถึงคำสั่ง T เพื่อกระตุ้นการเปลี่ยนเครื่องมือ"
+
+msgid "This G-code is inserted when the extrusion role is changed."
+msgstr "G-code นี้จะถูกแทรกเมื่อบทบาทการอัดขึ้นรูปมีการเปลี่ยนแปลง"
+
+msgid "Change extrusion role G-code (filament)"
+msgstr "เปลี่ยนบทบาทการอัดขึ้นรูป G-code (เส้นพลาสติก)"
+
+msgid ""
+"This G-code is inserted when the extrusion role is changed for the active "
+"filament."
+msgstr "รหัส G นี้จะถูกแทรกเมื่อมีการเปลี่ยนบทบาทการอัดขึ้นรูปสำหรับเส้นพลาสติกที่ใช้งานอยู่"
+
+msgid ""
+"Line width for top surfaces. If expressed as a %, it will be computed over "
+"the nozzle diameter."
+msgstr ""
+"ความกว้างของเส้นสำหรับพื้นผิวด้านบน หากแสดงเป็น % จะคำนวณตามเส้นผ่านศูนย์กลางของหัวฉีด"
+
+msgid "Speed of top surface infill which is solid."
+msgstr "ความเร็วของไส้ในพื้นผิวด้านบนซึ่งเป็นของแข็ง"
+
+msgid "Top shell layers"
+msgstr "เลเยอร์ผนังด้านบน"
+
+msgid ""
+"This is the number of solid layers of top shell, including the top surface "
+"layer. When the thickness calculated by this value is thinner than top shell "
+"thickness, the top shell layers will be increased."
+msgstr ""
+"นี่คือจำนวนชั้นทึบของเปลือกด้านบน รวมถึงชั้นผิวด้านบนด้วย "
+"เมื่อความหนาที่คำนวณโดยค่านี้บางกว่าความหนาของเปลือกด้านบน ชั้นเปลือกด้านบนจะเพิ่มขึ้น"
+
+msgid "Top solid layers"
+msgstr "ชั้นแข็งด้านบน"
+
+msgid "Top shell thickness"
+msgstr "ความหนาผนังด้านบน"
+
+msgid ""
+"The number of top solid layers is increased when slicing if the thickness "
+"calculated by top shell layers is thinner than this value. This can avoid "
+"having too thin shell when layer height is small. 0 means that this setting "
+"is disabled and thickness of top shell is absolutely determined by top shell "
+"layers."
+msgstr ""
+"จำนวนชั้นทึบด้านบนจะเพิ่มขึ้นเมื่อสไลซ์หากความหนาที่คำนวณโดยชั้นเปลือกด้านบนบางกว่าค่านี้ "
+"วิธีนี้สามารถหลีกเลี่ยงไม่ให้เปลือกบางเกินไปเมื่อชั้นมีความสูงน้อย 0 "
+"หมายความว่าการตั้งค่านี้ถูกปิดใช้งาน "
+"และความหนาของเปลือกด้านบนถูกกำหนดโดยชั้นเปลือกด้านบนอย่างแน่นอน"
+
+msgid "Top surface density"
+msgstr "ความหนาแน่นผิวด้านบน"
+
+msgid ""
+"Density of top surface layer. A value of 100% creates a fully solid, smooth "
+"top layer. Reducing this value results in a textured top surface, according "
+"to the chosen top surface pattern. A value of 0% will result in only the "
+"walls on the top layer being created. Intended for aesthetic or functional "
+"purposes, not to fix issues such as over-extrusion."
+msgstr ""
+"ความหนาแน่นของชั้นผิวด้านบน ค่า 100% จะสร้างชั้นบนสุดที่เรียบและแข็งเต็มที่ "
+"การลดค่านี้ส่งผลให้พื้นผิวด้านบนมีพื้นผิวตามรูปแบบพื้นผิวด้านบนที่เลือก ค่า 0% "
+"จะส่งผลให้มีการสร้างเฉพาะผนังชั้นบนสุดเท่านั้น มีวัตถุประสงค์เพื่อความสวยงามหรือการใช้งาน "
+"ไม่ใช่เพื่อแก้ไขปัญหา เช่น การอัดขึ้นรูปมากเกินไป"
+
+msgid "Bottom surface density"
+msgstr "ความหนาแน่นผิวด้านล่าง"
+
+msgid ""
+"Density of the bottom surface layer. Intended for aesthetic or functional "
+"purposes, not to fix issues such as over-extrusion.\n"
+"WARNING: Lowering this value may negatively affect bed adhesion."
+msgstr ""
+"ความหนาแน่นของชั้นผิวด้านล่าง มีวัตถุประสงค์เพื่อความสวยงามหรือการใช้งาน ไม่ใช่เพื่อแก้ไขปัญหา "
+"เช่น การอัดขึ้นรูปมากเกินไป\n"
+"คำเตือน: การลดค่านี้อาจส่งผลเสียต่อการยึดเกาะของฐานพิมพ์"
+
+msgid "Speed of travel which is faster and without extrusion."
+msgstr "ความเร็วในการเดินทางที่เร็วกว่าและไม่มีการอัดขึ้นรูป"
+
+msgid "Wipe while retracting"
+msgstr "เช็ดขณะดึงกลับ"
+
+msgid ""
+"Move nozzle along the last extrusion path when retracting to clean any "
+"leaked material on the nozzle. This can minimize blobs when printing a new "
+"part after traveling."
+msgstr ""
+"เลื่อนหัวฉีดไปตามเส้นทางการอัดขึ้นรูปสุดท้ายเมื่อถอยกลับเพื่อทำความสะอาดวัสดุที่รั่วไหลบนหัวฉีด "
+"วิธีนี้จะช่วยลดรอยหยดเมื่อพิมพ์ชิ้นส่วนใหม่หลังการเดินทาง"
+
+msgid "Wipe Distance"
+msgstr "ระยะเช็ดหัวฉีด"
+
+msgid ""
+"Describe how long the nozzle will move along the last path when retracting.\n"
+"\n"
+"Depending on how long the wipe operation lasts, how fast and long the "
+"extruder/filament retraction settings are, a retraction move may be needed "
+"to retract the remaining filament.\n"
+"\n"
+"Setting a value in the retract amount before wipe setting below will perform "
+"any excess retraction before the wipe, else it will be performed after."
+msgstr ""
+"อธิบายว่าหัวฉีดจะเคลื่อนที่ไปตามเส้นทางสุดท้ายเมื่อหดกลับนานแค่ไหน\n"
+"\n"
+"ขึ้นอยู่กับระยะเวลาของการเช็ด การตั้งค่าการดึงกลับของเส้นพลาสติก/"
+"เส้นพลาสติกจะเร็วและนานเพียงใด อาจจำเป็นต้องดึงเส้นพลาสติกกลับเพื่อดึงเส้นพลาสติกที่เหลืออยู่\n"
+"\n"
+"การตั้งค่าในจำนวนการถอนก่อนการล้างการตั้งค่าด้านล่างจะทำการถอนส่วนที่เกินก่อนการล้าง "
+"มิฉะนั้นจะดำเนินการหลังจากนั้น"
+
+msgid ""
+"The wiping tower can be used to clean up the residue on the nozzle and "
+"stabilize the chamber pressure inside the nozzle, in order to avoid "
+"appearance defects when printing objects."
+msgstr ""
+"หอเช็ดสามารถใช้เพื่อทำความสะอาดสิ่งตกค้างบนหัวฉีด และทำให้แรงดันในห้องภายในหัวฉีดคงที่ "
+"เพื่อหลีกเลี่ยงข้อบกพร่องในลักษณะที่ปรากฏเมื่อพิมพ์วัตถุ"
+
+msgid "Internal ribs"
+msgstr "ซี่โครงภายใน"
+
+msgid "Enable internal ribs to increase the stability of the prime tower."
+msgstr "เปิดใช้งานซี่โครงภายในเพื่อเพิ่มความมั่นคงของหอคอยหลัก"
+
+msgid "Purging volumes"
+msgstr "ปริมาตรการไล่เส้น"
+
+msgid "Flush multiplier"
+msgstr "ตัวคูณการไล่เส้น"
+
+msgid ""
+"The actual flushing volumes is equal to the flush multiplier multiplied by "
+"the flushing volumes in the table."
+msgstr "ปริมาตรการไล่เส้นตามจริงจะเท่ากับตัวคูณการไล่เส้นคูณด้วยปริมาตรการไล่เส้นในตาราง"
+
+msgid "Prime volume"
+msgstr "ปริมาณเฉพาะ"
+
+msgid "The volume of material to prime extruder on tower."
+msgstr "ปริมาตรของวัสดุที่จะนำไปอัดรีดชั้นดีบนทาวเวอร์"
+
+msgid "Width of the prime tower."
+msgstr "ความกว้างของหอคอยหลัก"
+
+msgid "Wipe tower rotation angle"
+msgstr "เช็ดมุมการหมุนของทาวเวอร์"
+
+msgid "Wipe tower rotation angle with respect to X axis."
+msgstr "เช็ดมุมการหมุนของทาวเวอร์ตามแกน X"
+
+msgid ""
+"Brim width of prime tower, negative number means auto calculated width based "
+"on the height of prime tower."
+msgstr ""
+"ความกว้างขอบของหอคอยหลัก "
+"ตัวเลขติดลบหมายถึงความกว้างที่คำนวณโดยอัตโนมัติตามความสูงของหอคอยหลัก"
+
+msgid "Stabilization cone apex angle"
+msgstr "มุมเอเพ็กซ์ของกรวยป้องกันการสั่นไหว"
+
+msgid ""
+"Angle at the apex of the cone that is used to stabilize the wipe tower. "
+"Larger angle means wider base."
+msgstr "มุมที่ปลายกรวยที่ใช้เพื่อรักษาเสถียรภาพของหอเช็ด มุมที่ใหญ่ขึ้นหมายถึงฐานที่กว้างขึ้น"
+
+msgid "Maximum wipe tower print speed"
+msgstr "ความเร็วการพิมพ์ไวต์ทาวเวอร์สูงสุด"
+
+msgid ""
+"The maximum print speed when purging in the wipe tower and printing the wipe "
+"tower sparse layers. When purging, if the sparse infill speed or calculated "
+"speed from the filament max volumetric speed is lower, the lowest will be "
+"used instead.\n"
+"\n"
+"When printing the sparse layers, if the internal perimeter speed or "
+"calculated speed from the filament max volumetric speed is lower, the lowest "
+"will be used instead.\n"
+"\n"
+"Increasing this speed may affect the tower's stability as well as increase "
+"the force with which the nozzle collides with any blobs that may have formed "
+"on the wipe tower.\n"
+"\n"
+"Before increasing this parameter beyond the default of 90 mm/s, make sure "
+"your printer can reliably bridge at the increased speeds and that ooze when "
+"tool changing is well controlled.\n"
+"\n"
+"For the wipe tower external perimeters the internal perimeter speed is used "
+"regardless of this setting."
+msgstr ""
+"ความเร็วในการพิมพ์สูงสุดเมื่อทำการล้างข้อมูลใน Wipe Tower และการพิมพ์ Wipe Tower "
+"บางเลเยอร์ เมื่อทำการไล่ล้าง "
+"หากความเร็วไส้ในแบบโปร่งหรือความเร็วที่คำนวณจากความเร็วปริมาตรสูงสุดของเส้นพลาสติกต่ำกว่า "
+"ความเร็วต่ำสุดจะถูกนำมาใช้แทน\n"
+"\n"
+"เมื่อพิมพ์ชั้นเบาบาง "
+"หากความเร็วเส้นรอบวงภายในหรือความเร็วที่คำนวณจากความเร็วปริมาตรสูงสุดของเส้นพลาสติกต่ำกว่า "
+"ความเร็วต่ำสุดจะถูกนำมาใช้แทน\n"
+"\n"
+"การเพิ่มความเร็วนี้อาจส่งผลต่อเสถียรภาพของทาวเวอร์ รวมทั้งเพิ่มแรงที่หัวฉีดชนกับหยดใดๆ "
+"ที่อาจก่อตัวบนทาวเวอร์เช็ด\n"
+"\n"
+"ก่อนที่จะเพิ่มพารามิเตอร์นี้เกินกว่าค่าเริ่มต้นที่ 90 มม./วินาที "
+"ตรวจสอบให้แน่ใจว่าเครื่องพิมพ์ของคุณสามารถเชื่อมต่อที่ความเร็วที่เพิ่มขึ้นได้อย่างน่าเชื่อถือ "
+"และจะมีการควบคุมอย่างดีเมื่อเปลี่ยนเครื่องมือ\n"
+"\n"
+"สำหรับปริมณฑลภายนอกของไวต์ทาวเวอร์ ความเร็วของปริมณฑลภายในจะถูกใช้โดยไม่คำนึงถึงการตั้งค่านี้"
+
+msgid "Wall type"
+msgstr "ชนิดติดผนัง"
+
+msgid ""
+"Wipe tower outer wall type.\n"
+"1. Rectangle: The default wall type, a rectangle with fixed width and "
+"height.\n"
+"2. Cone: A cone with a fillet at the bottom to help stabilize the wipe "
+"tower.\n"
+"3. Rib: Adds four ribs to the tower wall for enhanced stability."
+msgstr ""
+"เช็ดทาวเวอร์ชนิดผนังด้านนอก\n"
+"1. สี่เหลี่ยมผืนผ้า: ประเภทผนังเริ่มต้น ซึ่งเป็นสี่เหลี่ยมผืนผ้าที่มีความกว้างและความสูงคงที่\n"
+"2. กรวย: กรวยที่มีเนื้ออยู่ด้านล่างเพื่อช่วยรักษาเสถียรภาพของหอเช็ด\n"
+"3. ซี่โครง: เพิ่มสี่ซี่โครงเข้ากับผนังหอคอยเพื่อเพิ่มความมั่นคง"
+
+msgid "Rectangle"
+msgstr "สี่เหลี่ยมผืนผ้า"
+
+msgid "Rib"
+msgstr "ซี่โครง"
+
+msgid "Extra rib length"
+msgstr "ความยาวซี่โครงพิเศษ"
+
+msgid ""
+"Positive values can increase the size of the rib wall, while negative values "
+"can reduce the size. However, the size of the rib wall can not be smaller "
+"than that determined by the cleaning volume."
+msgstr ""
+"ค่าบวกสามารถเพิ่มขนาดของผนังซี่โครงได้ ในขณะที่ค่าลบสามารถลดขนาดได้ อย่างไรก็ตาม "
+"ขนาดของผนังซี่โครงต้องไม่เล็กกว่าที่กำหนดโดยปริมาตรการทำความสะอาด"
+
+msgid "Rib width"
+msgstr "ความกว้างของซี่โครง"
+
+msgid "Rib width is always less than half the prime tower side length."
+msgstr "ความกว้างของซี่โครงจะน้อยกว่าครึ่งหนึ่งของความยาวด้านของไพรม์ทาวเวอร์เสมอ"
+
+msgid "Fillet wall"
+msgstr "ผนังเนื้อ"
+
+msgid "The wall of prime tower will fillet."
+msgstr "ผนังของไพร์มทาวเวอร์จะแล่เป็นเนื้อเดียวกัน"
+
+msgid ""
+"The extruder to use when printing perimeter of the wipe tower. Set to 0 to "
+"use the one that is available (non-soluble would be preferred)."
+msgstr ""
+"ชุดดันเส้นที่จะใช้ในการพิมพ์ปริมณฑลของหอเช็ด ตั้งค่าเป็น 0 เพื่อใช้อันที่มีอยู่ "
+"(แนะนำให้ใช้แบบไม่ละลายน้ำ)"
+
+msgid "Purging volumes - load/unload volumes"
+msgstr "การล้างไดรฟ์ข้อมูล - โหลด/ยกเลิกการโหลดไดรฟ์ข้อมูล"
+
+msgid ""
+"This vector saves required volumes to change from/to each tool used on the "
+"wipe tower. These values are used to simplify creation of the full purging "
+"volumes below."
+msgstr ""
+"เวกเตอร์นี้จะบันทึกปริมาณที่ต้องการเพื่อเปลี่ยนจาก/ไปยังแต่ละเครื่องมือที่ใช้บนไวด์ทาวเวอร์ "
+"ค่าเหล่านี้ใช้เพื่อทำให้การสร้างวอลุ่มการล้างข้อมูลทั้งหมดด้านล่างง่ายขึ้น"
+
+msgid "Skip points"
+msgstr "ข้ามจุด"
+
+msgid "The wall of prime tower will skip the start points of wipe path."
+msgstr "ผนังของไพร์มทาวเวอร์จะข้ามจุดเริ่มต้นของเส้นทางการเช็ด"
+
+msgid "Enable tower interface features"
+msgstr "เปิดใช้งานคุณสมบัติอินเทอร์เฟซแบบทาวเวอร์"
+
+msgid ""
+"Enable optimized prime tower interface behavior when different materials "
+"meet."
+msgstr "เปิดใช้งานพฤติกรรมอินเทอร์เฟซของไพรม์ทาวเวอร์ที่ได้รับการปรับให้เหมาะสมเมื่อวัสดุที่แตกต่างกันมาบรรจบกัน"
+
+msgid "Cool down from interface boost during prime tower"
+msgstr "เย็นลงจากการเพิ่มอินเทอร์เฟซระหว่างหอคอยหลัก"
+
+msgid ""
+"When interface-layer temperature boost is active, set the nozzle back to "
+"print temperature at the start of the prime tower so it cools down during "
+"the tower."
+msgstr ""
+"เมื่อเปิดใช้งานการเพิ่มอุณหภูมิของชั้นอินเทอร์เฟซ "
+"ให้ตั้งค่าหัวฉีดกลับไปเป็นอุณหภูมิการพิมพ์ที่จุดเริ่มต้นของไพรม์ทาวเวอร์ เพื่อให้เย็นลงระหว่างทาวเวอร์"
+
+msgid "Infill gap"
+msgstr "การเติมช่องว่าง"
+
+msgid "Infill gap."
+msgstr "การเติมช่องว่าง."
+
+msgid ""
+"Purging after filament change will be done inside objects' infills. This may "
+"lower the amount of waste and decrease the print time. If the walls are "
+"printed with transparent filament, the mixed color infill will be seen "
+"outside. It will not take effect, unless the prime tower is enabled."
+msgstr ""
+"การล้างหลังจากเปลี่ยนเส้นพลาสติกจะดำเนินการภายในส่วนไส้ในของวัตถุ "
+"สิ่งนี้อาจลดปริมาณขยะและลดเวลาในการพิมพ์ หากผนังพิมพ์ด้วยเส้นพลาสติกโปร่งใส "
+"จะเห็นไส้ในสีผสมไว้ด้านนอก มันจะไม่มีผลเว้นแต่จะเปิดใช้งานไพรม์ทาวเวอร์"
+
+msgid ""
+"Purging after filament change will be done inside objects' support. This may "
+"lower the amount of waste and decrease the print time. It will not take "
+"effect, unless the prime tower is enabled."
+msgstr ""
+"การล้างข้อมูลหลังจากเปลี่ยนเส้นพลาสติกจะดำเนินการภายในส่วนรองรับของวัตถุ "
+"สิ่งนี้อาจลดปริมาณขยะและลดเวลาในการพิมพ์ มันจะไม่มีผลเว้นแต่จะเปิดใช้งานไพรม์ทาวเวอร์"
+
+msgid ""
+"This object will be used to purge the nozzle after a filament change to save "
+"filament and decrease the print time. Colors of the objects will be mixed as "
+"a result. It will not take effect unless the prime tower is enabled."
+msgstr ""
+"วัตถุนี้จะใช้ในการล้างหัวฉีดหลังจากเปลี่ยนเส้นพลาสติกเพื่อประหยัดเส้นพลาสติกและลดเวลาในการพิมพ์ "
+"สีของวัตถุจะผสมกัน มันจะไม่มีผลเว้นแต่จะเปิดใช้งานไพรม์ทาวเวอร์"
+
+msgid "Maximal bridging distance"
+msgstr "ระยะเชื่อมต่อสูงสุด"
+
+msgid "Maximal distance between supports on sparse infill sections."
+msgstr "ระยะห่างสูงสุดระหว่างส่วนรองรับในส่วน ไส้ใน แบบกระจัดกระจาย"
+
+msgid "Wipe tower purge lines spacing"
+msgstr "เช็ดระยะห่างบรรทัดล้างทาวเวอร์"
+
+msgid "Spacing of purge lines on the wipe tower."
+msgstr "ระยะห่างของเส้นไล่ล้างบนหอเช็ด"
+
+msgid "Extra flow for purging"
+msgstr "กระแสพิเศษสำหรับการล้าง"
+
+msgid ""
+"Extra flow used for the purging lines on the wipe tower. This makes the "
+"purging lines thicker or narrower than they normally would be. The spacing "
+"is adjusted automatically."
+msgstr ""
+"การไหลพิเศษที่ใช้สำหรับท่อไล่ล้างบนหอเช็ด ซึ่งจะทำให้เส้นการล้างหนาหรือแคบกว่าปกติ "
+"ระยะห่างจะถูกปรับโดยอัตโนมัติ"
+
+msgid "Idle temperature"
+msgstr "อุณหภูมิว่าง"
+
+msgid ""
+"Nozzle temperature when the tool is currently not used in multi-tool setups. "
+"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
+"0 to disable."
+msgstr ""
+"อุณหภูมิหัวฉีดเมื่อไม่ได้ใช้เครื่องมือในการตั้งค่าหลายเครื่องมือ ใช้เฉพาะเมื่อมีการเปิดใช้งาน "
+"'การป้องกันน้ำซึม' ในการตั้งค่าการพิมพ์ ตั้งค่าเป็น 0 เพื่อปิดใช้งาน"
+
+msgid "X-Y hole compensation"
+msgstr "การชดเชยรู X-Y"
+
+msgid ""
+"Holes in objects will expand or contract in the XY plane by the configured "
+"value. Positive values make holes bigger, negative values make holes "
+"smaller. This function is used to adjust sizes slightly when the objects "
+"have assembling issues."
+msgstr ""
+"รูในวัตถุจะขยายหรือหดตัวในระนาบ XY ตามค่าที่กำหนดค่าไว้ ค่าบวกจะทำให้รูมีขนาดใหญ่ขึ้น "
+"ค่าลบจะทำให้รูเล็กลง ฟังก์ชันนี้ใช้เพื่อปรับขนาดเล็กน้อยเมื่อวัตถุมีปัญหาในการประกอบ"
+
+msgid "X-Y contour compensation"
+msgstr "การชดเชยรูปร่าง X-Y"
+
+msgid ""
+"Contours of objects will expand or contract in the XY plane by the "
+"configured value. Positive values make contours bigger, negative values make "
+"contours smaller. This function is used to adjust sizes slightly when the "
+"objects have assembling issues."
+msgstr ""
+"รูปทรงของวัตถุจะขยายหรือหดตัวในระนาบ XY ตามค่าที่กำหนดค่าไว้ "
+"ค่าบวกจะทำให้เส้นขอบมีขนาดใหญ่ขึ้น ค่าลบจะทำให้เส้นขอบมีขนาดเล็กลง "
+"ฟังก์ชันนี้ใช้เพื่อปรับขนาดเล็กน้อยเมื่อวัตถุมีปัญหาในการประกอบ"
+
+msgid "Convert holes to polyholes"
+msgstr "แปลงรูเป็นโพลีโฮล"
+
+msgid ""
+"Search for almost-circular holes that span more than one layer and convert "
+"the geometry to polyholes. Use the nozzle size and the (biggest) diameter to "
+"compute the polyhole.\n"
+"See http://hydraraptor.blogspot.com/2011/02/polyholes.html"
+msgstr ""
+"ค้นหารูเกือบเป็นวงกลมที่ขยายมากกว่าหนึ่งชั้น และแปลงรูปทรงเป็นโพลีโฮล "
+"ใช้ขนาดหัวฉีดและเส้นผ่านศูนย์กลาง (ใหญ่ที่สุด) เพื่อคำนวณรูโพลี\n"
+"ดูhttp://hydraraptor.blogspot.com/2011/02/polyholes.html"
+
+msgid "Polyhole detection margin"
+msgstr "ขอบการตรวจจับโพลีโฮล"
+
+#, no-c-format, no-boost-format
+msgid ""
+"Maximum defection of a point to the estimated radius of the circle.\n"
+"As cylinders are often exported as triangles of varying size, points may not "
+"be on the circle circumference. This setting allows you some leeway to "
+"broaden the detection.\n"
+"In mm or in % of the radius."
+msgstr ""
+"การเบี่ยงเบนสูงสุดของจุดจนถึงรัศมีโดยประมาณของวงกลม\n"
+"เนื่องจากทรงกระบอกมักถูกส่งออกเป็นรูปสามเหลี่ยมที่มีขนาดต่างกัน จุดต่างๆ "
+"อาจไม่อยู่บนเส้นรอบวงของวงกลม การตั้งค่านี้ช่วยให้คุณมีเวลามากขึ้นในการขยายการตรวจจับ\n"
+"เป็นมิลลิเมตรหรือเป็น % ของรัศมี"
+
+msgid "Polyhole twist"
+msgstr "บิดรูหลายรู"
+
+msgid "Rotate the polyhole every layer."
+msgstr "หมุนโพลีโฮลทุกชั้น"
+
+msgid "G-code thumbnails"
+msgstr "ภาพขนาดย่อ G-code"
+
+msgid ""
+"Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the "
+"following format: \"XxY, XxY, ...\""
+msgstr ""
+"ขนาดรูปภาพที่จะจัดเก็บไว้ในไฟล์ .gcode และ .sl1 / .sl1s ในรูปแบบต่อไปนี้: \"XxY, "
+"XxY, ...\""
+
+msgid "Format of G-code thumbnails"
+msgstr "รูปแบบของภาพขนาดย่อ G-code"
+
+msgid ""
+"Format of G-code thumbnails: PNG for best quality, JPG for smallest size, "
+"QOI for low memory firmware."
+msgstr ""
+"รูปแบบของภาพขนาดย่อ G-code: PNG สำหรับคุณภาพที่ดีที่สุด, JPG สำหรับขนาดที่เล็กที่สุด, QOI "
+"สำหรับเฟิร์มแวร์หน่วยความจำเหลือน้อย"
+
+msgid "Use relative E distances"
+msgstr "ใช้ระยะห่าง E สัมพัทธ์"
+
+msgid ""
+"Relative extrusion is recommended when using \"label_objects\" option. Some "
+"extruders work better with this option unchecked (absolute extrusion mode). "
+"Wipe tower is only compatible with relative mode. It is recommended on most "
+"printers. Default is checked."
+msgstr ""
+"แนะนำให้ใช้การอัดขึ้นรูปแบบสัมพัทธ์เมื่อใช้ตัวเลือก \"label_objects\" "
+"ชุดดันเส้นบางชนิดทำงานได้ดีกว่าหากไม่ได้เลือกตัวเลือกนี้ (โหมดการอัดขึ้นรูปสัมบูรณ์) Wipe Tower "
+"ใช้งานได้กับโหมดสัมพัทธ์เท่านั้น แนะนำให้ใช้กับเครื่องพิมพ์ส่วนใหญ่ เลือกค่าเริ่มต้นแล้ว"
+
+msgid ""
+"Classic wall generator produces walls with constant extrusion width and for "
+"very thin areas is used gap-fill. Arachne engine produces walls with "
+"variable extrusion width."
+msgstr ""
+"เครื่องกำเนิดผนังแบบคลาสสิกสร้างผนังที่มีความกว้างของการอัดขึ้นรูปคงที่ "
+"และสำหรับพื้นที่ที่บางมากจะใช้การเติมช่องว่าง เครื่องยนต์ Arachne "
+"สร้างผนังที่มีความกว้างของการอัดขึ้นรูปที่หลากหลาย"
+
+msgid "Arachne"
+msgstr "อารัคเน่"
+
+msgid "Wall transition length"
+msgstr "ความยาวการเปลี่ยนผนัง"
+
+msgid ""
+"When transitioning between different numbers of walls as the part becomes "
+"thinner, a certain amount of space is allotted to split or join the wall "
+"segments. It's expressed as a percentage over nozzle diameter."
+msgstr ""
+"เมื่อเปลี่ยนระหว่างผนังจำนวนต่างๆ เมื่อชิ้นส่วนบางลง "
+"จะมีการแบ่งพื้นที่จำนวนหนึ่งเพื่อแยกหรือรวมส่วนของผนัง "
+"โดยแสดงเป็นเปอร์เซ็นต์ของเส้นผ่านศูนย์กลางของหัวฉีด"
+
+msgid "Wall transitioning filter margin"
+msgstr "ขอบตัวกรองการเปลี่ยนผนัง"
+
+msgid ""
+"Prevent transitioning back and forth between one extra wall and one less. "
+"This margin extends the range of extrusion widths which follow to [Minimum "
+"wall width - margin, 2 * Minimum wall width + margin]. Increasing this "
+"margin reduces the number of transitions, which reduces the number of "
+"extrusion starts/stops and travel time. However, large extrusion width "
+"variation can lead to under- or overextrusion problems. It's expressed as a "
+"percentage over nozzle diameter."
+msgstr ""
+"ป้องกันการเปลี่ยนไปมาระหว่างผนังพิเศษหนึ่งอันและน้อยกว่าหนึ่งอัน "
+"ขอบนี้จะขยายช่วงความกว้างของการอัดขึ้นรูปซึ่งเป็นไปตาม [ความกว้างของผนังขั้นต่ำ - ขอบ 2 * "
+"ความกว้างของผนังขั้นต่ำ + ขอบ] การเพิ่มระยะขอบนี้จะลดจำนวนการเปลี่ยน ซึ่งจะลดจำนวนการเริ่ม/"
+"หยุดการอัดขึ้นรูปและเวลาการเดินทาง อย่างไรก็ตาม "
+"ความกว้างของการอัดขึ้นรูปที่หลากหลายอาจทำให้เกิดปัญหาการอัดขึ้นรูปน้อยเกินไปหรือมากเกินไปได้ "
+"โดยแสดงเป็นเปอร์เซ็นต์ของเส้นผ่านศูนย์กลางของหัวฉีด"
+
+msgid "Wall transitioning threshold angle"
+msgstr "มุมการเปลี่ยนผ่านของผนัง"
+
+msgid ""
+"When to create transitions between even and odd numbers of walls. A wedge "
+"shape with an angle greater than this setting will not have transitions and "
+"no walls will be printed in the center to fill the remaining space. Reducing "
+"this setting reduces the number and length of these center walls, but may "
+"leave gaps or overextrude."
+msgstr ""
+"เมื่อใดควรสร้างการเปลี่ยนระหว่างผนังเลขคู่และเลขคี่ รูปร่างลิ่มที่มีมุมมากกว่าการตั้งค่านี้ "
+"จะไม่มีการเปลี่ยน และจะไม่มีการพิมพ์ผนังตรงกลางเพื่อไส้ในเต็มพื้นที่ที่เหลือ "
+"การลดการตั้งค่านี้จะช่วยลดจำนวนและความยาวของผนังตรงกลาง "
+"แต่อาจทำให้เกิดช่องว่างหรืออัดแน่นเกินไป"
+
+msgid "Wall distribution count"
+msgstr "จำนวนการกระจายผนัง"
+
+msgid ""
+"The number of walls, counted from the center, over which the variation needs "
+"to be spread. Lower values mean that the outer walls don't change in width."
+msgstr ""
+"จำนวนผนัง นับจากจุดศูนย์กลาง ซึ่งต้องกระจายรูปแบบออกไป "
+"ค่าที่ต่ำกว่าหมายความว่าผนังด้านนอกไม่เปลี่ยนความกว้าง"
+
+msgid "Minimum feature size"
+msgstr "ขนาดคุณสมบัติขั้นต่ำ"
+
+msgid ""
+"Minimum thickness of thin features. Model features that are thinner than "
+"this value will not be printed, while features thicker than than this value "
+"will be widened to the minimum wall width. It's expressed as a percentage "
+"over nozzle diameter."
+msgstr ""
+"ความหนาขั้นต่ำของคุณสมบัติบาง คุณลักษณะของโมเดลที่บางกว่าค่านี้จะไม่ถูกพิมพ์ "
+"ในขณะที่คุณลักษณะที่หนากว่าค่านี้จะถูกขยายให้เป็นความกว้างของผนังขั้นต่ำ "
+"โดยแสดงเป็นเปอร์เซ็นต์ของเส้นผ่านศูนย์กลางของหัวฉีด"
+
+msgid "Minimum wall length"
+msgstr "ความยาวผนังขั้นต่ำ"
+
+msgid ""
+"Adjust this value to prevent short, unclosed walls from being printed, which "
+"could increase print time. Higher values remove more and longer walls.\n"
+"\n"
+"NOTE: Bottom and top surfaces will not be affected by this value to prevent "
+"visual gaps on the outside of the model. Adjust 'One wall threshold' in the "
+"Advanced settings below to adjust the sensitivity of what is considered a "
+"top-surface. 'One wall threshold' is only visible if this setting is set "
+"above the default value of 0.5, or if single-wall top surfaces is enabled."
+msgstr ""
+"ปรับค่านี้เพื่อป้องกันการพิมพ์ผนังที่สั้นและไม่ปิด ซึ่งอาจเพิ่มเวลาในการพิมพ์ "
+"ค่าที่สูงกว่าจะลบผนังที่ยาวขึ้นเรื่อยๆ\n"
+"\n"
+"หมายเหตุ: พื้นผิวด้านล่างและด้านบนจะไม่ได้รับผลกระทบจากค่านี้ "
+"เพื่อป้องกันช่องว่างการมองเห็นด้านนอกของแบบจำลอง ปรับ 'เกณฑ์ผนังด้านเดียว' "
+"ในการตั้งค่าขั้นสูงด้านล่างเพื่อปรับความไวของสิ่งที่ถือเป็นพื้นผิวด้านบน 'เกณฑ์ผนังด้านเดียว' "
+"จะมองเห็นได้ก็ต่อเมื่อการตั้งค่านี้ตั้งไว้สูงกว่าค่าเริ่มต้นที่ 0.5 "
+"หรือหากเปิดใช้งานพื้นผิวด้านบนแบบผนังเดียว"
+
+msgid "Maximum wall resolution"
+msgstr "ความละเอียดผนังสูงสุด"
+
+msgid ""
+"This value determines the smallest wall line segment length in mm. The "
+"smaller you set this value, the more accurate and precise the walls will be."
+msgstr ""
+"ค่านี้กำหนดความยาวส่วนของเส้นผนังที่เล็กที่สุดเป็นหน่วยมม. ยิ่งคุณตั้งค่านี้น้อย "
+"ผนังก็จะยิ่งแม่นยำและแม่นยำมากขึ้นเท่านั้น"
+
+msgid "Maximum wall deviation"
+msgstr "ส่วนเบี่ยงเบนของผนังสูงสุด"
+
+msgid ""
+"The maximum deviation allowed when reducing the resolution for the 'Maximum "
+"wall resolution' setting. If you increase this, the print will be less "
+"accurate, but the G-Code will be smaller. 'Maximum wall deviation' limits "
+"'Maximum wall resolution', so if the two conflict, 'Maximum wall deviation' "
+"takes precedence."
+msgstr ""
+"ค่าเบี่ยงเบนสูงสุดที่อนุญาตเมื่อลดความละเอียดสำหรับการตั้งค่า 'ความละเอียดสูงสุดของผนัง' "
+"หากเพิ่มค่านี้ การพิมพ์จะแม่นยำน้อยลง แต่ G-Code จะน้อยลง 'ค่าเบี่ยงเบนของผนังสูงสุด' จะจำกัด "
+"'ความละเอียดของผนังสูงสุด' ดังนั้นหากทั้งสองข้อขัดแย้งกัน 'ค่าเบี่ยงเบนของผนังสูงสุด' "
+"จะมีความสำคัญเหนือกว่า"
+
+msgid "First layer minimum wall width"
+msgstr "ความกว้างขั้นต่ำของผนังชั้นแรก"
+
+msgid ""
+"The minimum wall width that should be used for the first layer is "
+"recommended to be set to the same size as the nozzle. This adjustment is "
+"expected to enhance adhesion."
+msgstr ""
+"แนะนำให้กำหนดความกว้างของผนังขั้นต่ำที่ควรใช้สำหรับชั้นแรกให้เป็นขนาดเดียวกับหัวฉีด "
+"การปรับนี้คาดว่าจะช่วยเพิ่มการยึดเกาะ"
+
+msgid "Minimum wall width"
+msgstr "ความกว้างของผนังขั้นต่ำ"
+
+msgid ""
+"Width of the wall that will replace thin features (according to the Minimum "
+"feature size) of the model. If the Minimum wall width is thinner than the "
+"thickness of the feature, the wall will become as thick as the feature "
+"itself. It's expressed as a percentage over nozzle diameter."
+msgstr ""
+"ความกว้างของผนังที่จะมาแทนที่คุณสมบัติบาง (ตามขนาดคุณสมบัติขั้นต่ำ) ของแบบจำลอง "
+"หากความกว้างของผนังขั้นต่ำบางกว่าความหนาของคุณสมบัติ ผนังจะหนาเท่ากับคุณสมบัตินั้นเอง "
+"โดยแสดงเป็นเปอร์เซ็นต์ของเส้นผ่านศูนย์กลางของหัวฉีด"
+
+msgid "Detect narrow internal solid infills"
+msgstr "ตรวจจับไส้ในของแข็งภายในที่แคบ"
+
+msgid ""
+"This option will auto-detect narrow internal solid infill areas. If enabled, "
+"the concentric pattern will be used for the area to speed up printing. "
+"Otherwise, the rectilinear pattern will be used by default."
+msgstr ""
+"ตัวเลือกนี้จะตรวจจับพื้นที่ไส้ในของแข็งภายในที่แคบโดยอัตโนมัติ หากเปิดใช้งาน "
+"ระบบจะใช้รูปแบบศูนย์กลางสำหรับพื้นที่เพื่อเพิ่มความเร็วในการพิมพ์ มิฉะนั้น "
+"ระบบจะใช้รูปแบบเส้นตรงเป็นค่าเริ่มต้น"
+
+msgid "invalid value "
+msgstr "ค่าไม่ถูกต้อง"
+
+msgid "Invalid value when spiral vase mode is enabled: "
+msgstr "ค่าไม่ถูกต้องเมื่อเปิดใช้งานโหมดแจกันเกลียว:"
+
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
+msgid "too large line width "
+msgstr "ความกว้างของเส้นใหญ่เกินไป"
+
+msgid " not in range "
+msgstr "ไม่อยู่ในช่วง"
+
+msgid "Export 3MF"
+msgstr "ส่งออก 3MF"
+
+msgid "Export project as 3MF."
+msgstr "ส่งออกโครงการเป็น 3MF"
+
+msgid "Export slicing data"
+msgstr "ส่งออกข้อมูลการแบ่งส่วน"
+
+msgid "Export slicing data to a folder."
+msgstr "ส่งออกข้อมูลการแบ่งส่วนไปยังโฟลเดอร์"
+
+msgid "Load slicing data"
+msgstr "โหลดข้อมูลการแบ่งส่วน"
+
+msgid "Load cached slicing data from directory."
+msgstr "โหลดข้อมูลการแบ่งส่วนแคชจากไดเรกทอรี"
+
+msgid "Export STL"
+msgstr "ส่งออก STL"
+
+msgid "Export the objects as single STL."
+msgstr "ส่งออกวัตถุเป็น STL เดี่ยว"
+
+msgid "Export multiple STLs"
+msgstr "ส่งออก STL หลายรายการ"
+
+msgid "Export the objects as multiple STLs to directory."
+msgstr "ส่งออกวัตถุเป็น STL หลายรายการไปยังไดเร็กทอรี"
+
+msgid "Slice"
+msgstr "สไลซ์"
+
+msgid "Slice the plates: 0-all plates, i-plate i, others-invalid"
+msgstr "แบ่งเพลต: 0-เพลตทั้งหมด, i-เพลท i, อื่นๆ-ไม่ถูกต้อง"
+
+msgid "Show command help."
+msgstr "แสดงคำสั่งช่วยเหลือ"
+
+msgid "UpToDate"
+msgstr "เป็นเวอร์ชันล่าสุด"
+
+msgid "Update the config values of 3MF to latest."
+msgstr "อัปเดตค่าการกำหนดค่าของ 3MF เป็นค่าล่าสุด"
+
+msgid "Load default filaments"
+msgstr "โหลดฟิลาเมนต์เริ่มต้น"
+
+msgid "Load first filament as default for those not loaded."
+msgstr "โหลดเส้นพลาสติกแรกเป็นค่าเริ่มต้นสำหรับผู้ที่ไม่ได้โหลด"
+
+msgid "Minimum save"
+msgstr "ประหยัดขั้นต่ำ"
+
+msgid "Export 3MF with minimum size."
+msgstr "ส่งออก 3MF ด้วยขนาดขั้นต่ำ"
+
+msgid "mtcpp"
+msgstr "mtcpp"
+
+msgid "max triangle count per plate for slicing."
+msgstr "จำนวนสามเหลี่ยมสูงสุดต่อแผ่นสำหรับการสไลซ์"
+
+msgid "mstpp"
+msgstr "mstpp"
+
+msgid "max slicing time per plate in seconds."
+msgstr "เวลาสไลซ์สูงสุดต่อจานในหน่วยวินาที"
+
+msgid "No check"
+msgstr "ไม่มีเช็ค"
+
+msgid "Do not run any validity checks, such as G-code path conflicts check."
+msgstr "อย่าทำการตรวจสอบความถูกต้องใดๆ เช่น การตรวจสอบข้อขัดแย้งของเส้นทาง G-code"
+
+msgid "Normative check"
+msgstr "การตรวจสอบเชิงบรรทัดฐาน"
+
+msgid "Check the normative items."
+msgstr "ตรวจสอบรายการเชิงบรรทัดฐาน"
+
+msgid "Output Model Info"
+msgstr "ข้อมูลรุ่นเอาท์พุต"
+
+msgid "Output the model's information."
+msgstr "ส่งออกข้อมูลของโมเดล"
+
+msgid "Export Settings"
+msgstr "ส่งออกการตั้งค่า"
+
+msgid "Export settings to a file."
+msgstr "ส่งออกการตั้งค่าไปยังไฟล์"
+
+msgid "Send progress to pipe"
+msgstr "ส่งความคืบหน้าไปป์"
+
+msgid "Send progress to pipe."
+msgstr "ส่งความคืบหน้าไปป์"
+
+msgid "Arrange Options"
+msgstr "ตัวเลือกจัดเรียง"
+
+msgid "Arrange options: 0-disable, 1-enable, others-auto"
+msgstr "จัดเรียงตัวเลือก: 0-ปิดใช้งาน, 1-เปิดใช้งาน, อื่นๆ-อัตโนมัติ"
+
+msgid "Repetition count"
+msgstr "การนับซ้ำ"
+
+msgid "Repetition count of the whole model."
+msgstr "การนับซ้ำของทั้งโมเดล"
+
+msgid "Ensure on bed"
+msgstr "มั่นใจบนฐานพิมพ์"
+
+msgid ""
+"Lift the object above the bed when it is partially below. Disabled by "
+"default."
+msgstr "ยกสิ่งของไว้เหนือฐานพิมพ์เมื่ออยู่ด้านล่างบางส่วน ปิดใช้งานตามค่าเริ่มต้น"
+
+msgid ""
+"Arrange the supplied models in a plate and merge them in a single model in "
+"order to perform actions once."
+msgstr "จัดเรียงโมเดลที่ให้มาในจานและรวมเข้าด้วยกันเป็นโมเดลเดียวเพื่อดำเนินการเพียงครั้งเดียว"
+
+msgid "Convert Unit"
+msgstr "แปลงหน่วย"
+
+msgid "Convert the units of model."
+msgstr "แปลงหน่วยของแบบจำลอง"
+
+msgid "Orient Options"
+msgstr "ตัวเลือกตะวันออก"
+
+msgid "Orient options: 0-disable, 1-enable, others-auto"
+msgstr "ตัวเลือกการวางแนว: 0-ปิดการใช้งาน, 1-เปิดใช้งาน, อื่นๆ-อัตโนมัติ"
+
+msgid "Rotation angle around the Z axis in degrees."
+msgstr "มุมการหมุนรอบแกน Z มีหน่วยเป็นองศา"
+
+msgid "Rotate around X"
+msgstr "หมุนรอบ X"
+
+msgid "Rotation angle around the X axis in degrees."
+msgstr "มุมการหมุนรอบแกน X มีหน่วยเป็นองศา"
+
+msgid "Rotate around Y"
+msgstr "หมุนรอบ Y"
+
+msgid "Rotation angle around the Y axis in degrees."
+msgstr "มุมการหมุนรอบแกน Y มีหน่วยเป็นองศา"
+
+msgid "Scale the model by a float factor."
+msgstr "ปรับขนาดโมเดลตามปัจจัยโฟลต"
+
+msgid "Load General Settings"
+msgstr "โหลดการตั้งค่าทั่วไป"
+
+msgid "Load process/machine settings from the specified file."
+msgstr "โหลดการตั้งค่ากระบวนการ/เครื่องจักรจากไฟล์ที่ระบุ"
+
+msgid "Load Filament Settings"
+msgstr "โหลดการตั้งค่าเส้นพลาสติก"
+
+msgid "Load filament settings from the specified file list."
+msgstr "โหลดการตั้งค่าเส้นพลาสติกจากรายการไฟล์ที่ระบุ"
+
+msgid "Skip Objects"
+msgstr "ข้ามวัตถุ"
+
+msgid "Skip some objects in this print."
+msgstr "ข้ามวัตถุบางอย่างในงานพิมพ์นี้"
+
+msgid "Clone Objects"
+msgstr "วัตถุโคลน"
+
+msgid "Clone objects in the load list."
+msgstr "โคลนวัตถุในรายการโหลด"
+
+msgid "Load uptodate process/machine settings when using uptodate"
+msgstr "โหลดการตั้งค่ากระบวนการ/เครื่อง uptodate เมื่อใช้ uptodate"
+
+msgid ""
+"Load uptodate process/machine settings from the specified file when using "
+"uptodate."
+msgstr "โหลดการตั้งค่ากระบวนการ/เครื่อง uptodate จากไฟล์ที่ระบุเมื่อใช้ uptodate"
+
+msgid "Load uptodate filament settings when using uptodate"
+msgstr "โหลดการตั้งค่าเส้นพลาสติก uptodate เมื่อใช้ uptodate"
+
+msgid ""
+"Load uptodate filament settings from the specified file when using uptodate."
+msgstr "โหลดการตั้งค่าเส้นพลาสติก uptodate จากไฟล์ที่ระบุเมื่อใช้ uptodate"
+
+msgid "Downward machines check"
+msgstr "เช็คเครื่องลง"
+
+msgid ""
+"If enabled, check whether current machine downward compatible with the "
+"machines in the list."
+msgstr "หากเปิดใช้งาน ให้ตรวจสอบว่าเครื่องปัจจุบันรุ่นล่างเข้ากันได้กับเครื่องในรายการหรือไม่"
+
+msgid "Downward machines settings"
+msgstr "การตั้งค่าเครื่องลง"
+
+msgid "The machine settings list needs to do downward checking."
+msgstr "รายการการตั้งค่าเครื่องจำเป็นต้องทำการตรวจสอบด้านล่าง"
+
+msgid "Load assemble list"
+msgstr "โหลดรายการประกอบ"
+
+msgid "Load assemble object list from config file."
+msgstr "โหลดรายการวัตถุประกอบจากไฟล์ปรับแต่ง"
+
+msgid "Data directory"
+msgstr "ไดเร็กทอรีข้อมูล"
+
+msgid ""
+"Load and store settings at the given directory. This is useful for "
+"maintaining different profiles or including configurations from a network "
+"storage."
+msgstr ""
+"โหลดและจัดเก็บการตั้งค่าไว้ที่ไดเร็กทอรีที่กำหนด "
+"สิ่งนี้มีประโยชน์สำหรับการรักษาโปรไฟล์ที่แตกต่างกันหรือรวมถึงการกำหนดค่าจากที่จัดเก็บข้อมูลเครือข่าย"
+
+msgid "Output directory"
+msgstr "ไดเร็กทอรีเอาต์พุต"
+
+msgid "Output directory for the exported files."
+msgstr "ไดเร็กทอรีเอาต์พุตสำหรับไฟล์ที่ส่งออก"
+
+msgid "Debug level"
+msgstr "ระดับการแก้ไขข้อบกพร่อง"
+
+msgid ""
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
+msgstr ""
+"ตั้งค่าระดับการบันทึกการดีบัก 0: ร้ายแรง, 1: ข้อผิดพลาด, 2: คำเตือน, 3: ข้อมูล, 4: ดีบัก, 5: "
+"ติดตาม\n"
+
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
+msgstr ""
+
+msgid "Enable timelapse for print"
+msgstr "เปิดใช้งานไทม์แลปส์สำหรับการพิมพ์"
+
+msgid "If enabled, this slicing will be considered using timelapse."
+msgstr "หากเปิดใช้งาน การแบ่งส่วนนี้จะถือว่าใช้ไทม์แลปส์"
+
+msgid "Load custom G-code"
+msgstr "โหลด G-code ที่กำหนดเอง"
+
+msgid "Load custom G-code from json."
+msgstr "โหลด G-code ที่กำหนดเองจาก json"
+
+msgid "Load filament IDs"
+msgstr "โหลดรหัสฟิลาเมนต์"
+
+msgid "Load filament IDs for each object."
+msgstr "โหลดรหัสฟิลาเมนต์สำหรับแต่ละอ็อบเจ็กต์"
+
+msgid "Allow multiple colors on one plate"
+msgstr "อนุญาตให้มีหลายสีในจานเดียว"
+
+msgid "If enabled, Arrange will allow multiple colors on one plate."
+msgstr "หากเปิดใช้งาน การจัดเรียงจะอนุญาตให้มีหลายสีในจานเดียว"
+
+msgid "Allow rotation when arranging"
+msgstr "อนุญาตให้หมุนเมื่อจัดเรียง"
+
+msgid "If enabled, Arrange will allow rotation when placing objects."
+msgstr "หากเปิดใช้งาน การจัดเรียงจะทำให้สามารถหมุนได้เมื่อวางวัตถุ"
+
+msgid "Avoid extrusion calibrate region when arranging"
+msgstr "หลีกเลี่ยงการปรับเทียบขอบเขตการอัดขึ้นรูปเมื่อทำการจัดเรียง"
+
+msgid ""
+"If enabled, Arrange will avoid extrusion calibrate region when placing "
+"objects."
+msgstr "หากเปิดใช้งาน Arrange จะหลีกเลี่ยงขอบเขตการปรับเทียบการอัดขึ้นรูปเมื่อวางวัตถุ"
+
+msgid "Skip modified G-code in 3MF"
+msgstr "ข้าม G-code ที่แก้ไขใน 3MF"
+
+msgid "Skip the modified G-code in 3MF from printer or filament presets."
+msgstr "ข้าม G-code ที่แก้ไขใน 3MF จากเครื่องพิมพ์หรือฟิลาเมนต์ที่ตั้งไว้ล่วงหน้า"
+
+msgid "MakerLab name"
+msgstr "ชื่อเมกเกอร์แล็บ"
+
+msgid "MakerLab name to generate this 3MF."
+msgstr "ชื่อ MakerLab เพื่อสร้าง 3MF นี้"
+
+msgid "MakerLab version"
+msgstr "เวอร์ชัน MakerLab"
+
+msgid "MakerLab version to generate this 3MF."
+msgstr "เวอร์ชัน MakerLab เพื่อสร้าง 3MF นี้"
+
+msgid "Metadata name list"
+msgstr "รายการชื่อข้อมูลเมตา"
+
+msgid "Metadata name list added into 3MF."
+msgstr "เพิ่มรายชื่อเมตาดาต้าลงใน 3MF"
+
+msgid "Metadata value list"
+msgstr "รายการค่าข้อมูลเมตา"
+
+msgid "Metadata value list added into 3MF."
+msgstr "เพิ่มรายการค่าข้อมูลเมตาลงใน 3MF"
+
+msgid "Allow 3MF with newer version to be sliced"
+msgstr "อนุญาตให้ 3MF ที่มีเวอร์ชันใหม่กว่าถูกแบ่งส่วน"
+
+msgid "Allow 3MF with newer version to be sliced."
+msgstr "อนุญาตให้ 3MF ที่มีเวอร์ชันใหม่กว่าถูกแบ่งส่วน"
+
+msgid "Current Z-hop"
+msgstr "Z-hop ปัจจุบัน"
+
+msgid "Contains Z-hop present at the beginning of the custom G-code block."
+msgstr "มี Z-hop อยู่ที่จุดเริ่มต้นของบล็อก G-code ที่กำหนดเอง"
+
+msgid ""
+"Position of the extruder at the beginning of the custom G-code block. If the "
+"custom G-code travels somewhere else, it should write to this variable so "
+"OrcaSlicer knows where it travels from when it gets control back."
+msgstr ""
+"ตำแหน่งของชุดดันเส้นที่จุดเริ่มต้นของบล็อก G-code แบบกำหนดเอง หาก G-code "
+"แบบกำหนดเองเดินทางไปที่อื่น ควรเขียนลงในตัวแปรนี้เพื่อให้ OrcaSlicer "
+"รู้ว่าโค้ดเดินทางจากที่ใดเมื่อได้รับการควบคุมกลับ"
+
+msgid ""
+"Retraction state at the beginning of the custom G-code block. If the custom "
+"G-code moves the extruder axis, it should write to this variable so "
+"OrcaSlicer de-retracts correctly when it gets control back."
+msgstr ""
+"สถานะการเพิกถอนที่จุดเริ่มต้นของบล็อก G-code ที่กำหนดเอง หาก G-code "
+"แบบกำหนดเองย้ายแกนชุดดันเส้น ควรเขียนลงในตัวแปรนี้เพื่อให้ OrcaSlicer "
+"ยกเลิกการดึงกลับอย่างถูกต้องเมื่อได้รับการควบคุมกลับ"
+
+msgid "Extra de-retraction"
+msgstr "การยกเลิกการเพิกถอนเพิ่มไส้ใน"
+
+msgid "Currently planned extra extruder priming after de-retraction."
+msgstr "ขณะนี้มีการวางแผนการรองพื้นชุดดันเส้นเพิ่มไส้ในหลังจากการถอนการถอยกลับ"
+
+msgid "Absolute E position"
+msgstr "ตำแหน่งสัมบูรณ์ E"
+
+msgid ""
+"Current position of the extruder axis. Only used with absolute extruder "
+"addressing."
+msgstr "ตำแหน่งปัจจุบันของแกนชุดดันเส้น ใช้กับการกำหนดที่อยู่ของชุดดันเส้นแบบสัมบูรณ์เท่านั้น"
+
+msgid "Current extruder"
+msgstr "ปัจจุบันชุดดันเส้น"
+
+msgid "Zero-based index of currently used extruder."
+msgstr "ดัชนีค่าศูนย์ของชุดดันเส้นที่ใช้อยู่ในปัจจุบัน"
+
+msgid "Current object index"
+msgstr "ดัชนีวัตถุปัจจุบัน"
+
+msgid ""
+"Specific for sequential printing. Zero-based index of currently printed "
+"object."
+msgstr "เฉพาะสำหรับการพิมพ์ตามลำดับ ดัชนีแบบศูนย์ของวัตถุที่พิมพ์ในปัจจุบัน"
+
+msgid "Has wipe tower"
+msgstr "มีหอเช็ด"
+
+msgid "Whether or not wipe tower is being generated in the print."
+msgstr "มีการสร้างเช็ดทาวเวอร์ในการพิมพ์หรือไม่"
+
+msgid "Initial extruder"
+msgstr "ชุดดันเส้นเริ่มต้น"
+
+msgid ""
+"Zero-based index of the first extruder used in the print. Same as "
+"initial_tool."
+msgstr "ดัชนีแบบศูนย์ของชุดดันเส้นตัวแรกที่ใช้ในการพิมพ์ เช่นเดียวกับ Initial_tool"
+
+msgid "Initial tool"
+msgstr "เครื่องมือเริ่มต้น"
+
+msgid ""
+"Zero-based index of the first extruder used in the print. Same as "
+"initial_extruder."
+msgstr "ดัชนีแบบศูนย์ของชุดดันเส้นตัวแรกที่ใช้ในการพิมพ์ เช่นเดียวกับ Initial_extruder"
+
+msgid "Is extruder used?"
+msgstr "ใช้ชุดดันเส้นหรือไม่?"
+
+msgid ""
+"Vector of booleans stating whether a given extruder is used in the print."
+msgstr "เวกเตอร์ของบูลีนที่ระบุว่ามีการใช้ชุดดันเส้นที่กำหนดในการพิมพ์หรือไม่"
+
+msgid "Number of extruders"
+msgstr "จำนวนชุดดันเส้น"
+
+msgid ""
+"Total number of extruders, regardless of whether they are used in the "
+"current print."
+msgstr "จำนวนชุดดันเส้นทั้งหมด ไม่ว่าจะใช้ในการพิมพ์ปัจจุบันหรือไม่ก็ตาม"
+
+msgid "Has single extruder MM priming"
+msgstr "มีรองพื้น MM ของชุดดันเส้นเดี่ยว"
+
+msgid "Are the extra multi-material priming regions used in this print?"
+msgstr "มีการใช้บริเวณรองพื้นหลายวัสดุพิเศษในการพิมพ์นี้หรือไม่"
+
+msgid "Volume per extruder"
+msgstr "ปริมาณต่อชุดดันเส้น"
+
+msgid "Total filament volume extruded per extruder during the entire print."
+msgstr "ปริมาตรเส้นพลาสติกรวมที่ถูกอัดต่อชุดดันเส้นระหว่างการพิมพ์ทั้งหมด"
+
+msgid "Total tool changes"
+msgstr "การเปลี่ยนแปลงเครื่องมือทั้งหมด"
+
+msgid "Number of tool changes during the print."
+msgstr "จำนวนการเปลี่ยนแปลงเครื่องมือระหว่างการพิมพ์"
+
+msgid "Total volume"
+msgstr "ปริมาณรวม"
+
+msgid "Total volume of filament used during the entire print."
+msgstr "ปริมาตรรวมของเส้นพลาสติกที่ใช้ระหว่างการพิมพ์ทั้งหมด"
+
+msgid "Weight per extruder"
+msgstr "น้ำหนักต่อชุดดันเส้น"
+
+msgid ""
+"Weight per extruder extruded during the entire print. Calculated from "
+"filament_density value in Filament Settings."
+msgstr ""
+"น้ำหนักต่อชุดดันเส้นที่อัดออกมาระหว่างการพิมพ์ทั้งหมด คำนวณจากค่า fil_density "
+"ในการตั้งค่าเส้นพลาสติก"
+
+msgid "Total weight"
+msgstr "น้ำหนักรวม"
+
+msgid ""
+"Total weight of the print. Calculated from filament_density value in "
+"Filament Settings."
+msgstr "น้ำหนักรวมของการพิมพ์ คำนวณจากค่า fil_density ในการตั้งค่าเส้นพลาสติก"
+
+msgid "Total layer count"
+msgstr "จำนวนชั้นทั้งหมด"
+
+msgid "Number of layers in the entire print."
+msgstr "จำนวนชั้นในการพิมพ์ทั้งหมด"
+
+msgid "Print time (normal mode)"
+msgstr "เวลาในการพิมพ์ (โหมดปกติ)"
+
+msgid ""
+"Estimated print time when printed in normal mode (i.e. not in silent mode). "
+"Same as print_time."
+msgstr ""
+"เวลาพิมพ์โดยประมาณเมื่อพิมพ์ในโหมดปกติ (เช่น ไม่อยู่ในโหมดเงียบ) เช่นเดียวกับ print_time"
+
+msgid ""
+"Estimated print time when printed in normal mode (i.e. not in silent mode). "
+"Same as normal_print_time."
+msgstr ""
+"เวลาพิมพ์โดยประมาณเมื่อพิมพ์ในโหมดปกติ (เช่น ไม่อยู่ในโหมดเงียบ) "
+"เช่นเดียวกับเวลาปกติ_print_time"
+
+msgid "Print time (silent mode)"
+msgstr "เวลาในการพิมพ์ (โหมดเงียบ)"
+
+msgid "Estimated print time when printed in silent mode."
+msgstr "เวลาการพิมพ์โดยประมาณเมื่อพิมพ์ในโหมดเงียบ"
+
+msgid ""
+"Total cost of all material used in the print. Calculated from filament_cost "
+"value in Filament Settings."
+msgstr "ต้นทุนรวมของวัสดุทั้งหมดที่ใช้ในการพิมพ์ คำนวณจากค่า fil_cost ในการตั้งค่า เส้นพลาสติก"
+
+msgid "Total wipe tower cost"
+msgstr "ต้นทุนเช็ดทาวเวอร์ทั้งหมด"
+
+msgid ""
+"Total cost of the material wasted on the wipe tower. Calculated from "
+"filament_cost value in Filament Settings."
+msgstr ""
+"ต้นทุนรวมของวัสดุที่เสียไปบนไวด์ทาวเวอร์ คำนวณจากค่า fil_cost ในการตั้งค่า เส้นพลาสติก"
+
+msgid "Wipe tower volume"
+msgstr "เช็ดปริมาตรทาวเวอร์"
+
+msgid "Total filament volume extruded on the wipe tower."
+msgstr "ปริมาตรเส้นพลาสติกทั้งหมดที่อัดบนไวด์ทาวเวอร์"
+
+msgid "Used filament"
+msgstr "เส้นพลาสติกที่ใช้แล้ว"
+
+msgid "Total length of filament used in the print."
+msgstr "ความยาวรวมของเส้นพลาสติกที่ใช้ในการพิมพ์"
+
+msgid "Print time (seconds)"
+msgstr "เวลาในการพิมพ์ (วินาที)"
+
+msgid ""
+"Total estimated print time in seconds. Replaced with actual value during "
+"post-processing."
+msgstr "เวลาพิมพ์ทั้งหมดโดยประมาณเป็นวินาที แทนที่ด้วยค่าจริงระหว่างการประมวลผลภายหลัง"
+
+msgid "Filament length (meters)"
+msgstr "ความยาวเส้นพลาสติก (เมตร)"
+
+msgid ""
+"Total filament length used in meters. Replaced with actual value during post-"
+"processing."
+msgstr "ความยาวเส้นพลาสติกทั้งหมดที่ใช้เป็นเมตร แทนที่ด้วยค่าจริงระหว่างการประมวลผลภายหลัง"
+
+msgid "Number of objects"
+msgstr "จำนวนวัตถุ"
+
+msgid "Total number of objects in the print."
+msgstr "จำนวนวัตถุทั้งหมดในการพิมพ์"
+
+msgid "Number of instances"
+msgstr "จำนวนอินสแตนซ์"
+
+msgid "Total number of object instances in the print, summed over all objects."
+msgstr "จำนวนอินสแตนซ์ออบเจ็กต์ทั้งหมดในการพิมพ์ โดยสรุปจากออบเจ็กต์ทั้งหมด"
+
+msgid "Scale per object"
+msgstr "มาตราส่วนต่อวัตถุ"
+
+msgid ""
+"Contains a string with the information about what scaling was applied to the "
+"individual objects. Indexing of the objects is zero-based (first object has "
+"index 0).\n"
+"Example: 'x:100% y:50% z:100%'."
+msgstr ""
+"ประกอบด้วยสตริงที่มีข้อมูลเกี่ยวกับการปรับสเกลที่ใช้กับออบเจ็กต์แต่ละรายการ "
+"การทำดัชนีของวัตถุเป็นแบบศูนย์ (วัตถุแรกมีดัชนี 0)\n"
+"ตัวอย่าง: 'x:100% y:50% z:100%'"
+
+msgid "Input filename without extension"
+msgstr "ป้อนชื่อไฟล์โดยไม่มีนามสกุล"
+
+msgid "Source filename of the first object, without extension."
+msgstr "ชื่อไฟล์ต้นฉบับของออบเจ็กต์แรก โดยไม่มีนามสกุล"
+
+msgid ""
+"The vector has two elements: X and Y coordinate of the point. Values in mm."
+msgstr "เวกเตอร์มีสององค์ประกอบ: พิกัด X และ Y ของจุด ค่าเป็น มม."
+
+msgid ""
+"The vector has two elements: X and Y dimension of the bounding box. Values "
+"in mm."
+msgstr "เวกเตอร์มีสององค์ประกอบ: มิติ X และ Y ของกรอบขอบเขต ค่าเป็น มม."
+
+msgid "First layer convex hull"
+msgstr "ชั้นแรกเป็นตัวถังนูน"
+
+msgid ""
+"Vector of points of the first layer convex hull. Each element has the "
+"following format:'[x, y]' (x and y are floating-point numbers in mm)."
+msgstr ""
+"เวกเตอร์ของจุดของตัวเรือนูนชั้นแรก แต่ละองค์ประกอบมีรูปแบบดังนี้:'[x, y]' (x และ y "
+"เป็นตัวเลขทศนิยมในหน่วย มม.)"
+
+msgid "Bottom-left corner of the first layer bounding box"
+msgstr "มุมล่างซ้ายของกล่องขอบชั้นแรก"
+
+msgid "Top-right corner of the first layer bounding box"
+msgstr "มุมขวาบนของกล่องขอบชั้นแรก"
+
+msgid "Size of the first layer bounding box"
+msgstr "ขนาดของกล่องขอบชั้นแรก"
+
+msgid "Bottom-left corner of print bed bounding box"
+msgstr "มุมซ้ายล่างของกล่องขอบฐานพิมพ์พิมพ์"
+
+msgid "Top-right corner of print bed bounding box"
+msgstr "มุมขวาบนของกล่องขอบฐานพิมพ์พิมพ์"
+
+msgid "Size of the print bed bounding box"
+msgstr "ขนาดของกล่องขอบฐานพิมพ์พิมพ์"
+
+msgid "Timestamp"
+msgstr "การประทับเวลา"
+
+msgid "String containing current time in yyyyMMdd-hhmmss format."
+msgstr "สตริงที่มีเวลาปัจจุบันในรูปแบบ yyyyMMdd-hhmmss"
+
+msgid "Day"
+msgstr "วัน"
+
+msgid "Hour"
+msgstr "ชั่วโมง"
+
+msgid "Minute"
+msgstr "นาที"
+
+msgid "Second"
+msgstr "ที่สอง"
+
+msgid "Print preset name"
+msgstr "พิมพ์ชื่อที่ตั้งไว้ล่วงหน้า"
+
+msgid "Name of the print preset used for slicing."
+msgstr "ชื่อของค่าที่ตั้งล่วงหน้าการพิมพ์ที่ใช้สำหรับการตัด"
+
+msgid "Filament preset name"
+msgstr "ชื่อฟิลาเมนต์ที่ตั้งไว้ล่วงหน้า"
+
+msgid ""
+"Names of the filament presets used for slicing. The variable is a vector "
+"containing one name for each extruder."
+msgstr ""
+"ชื่อของค่าที่ตั้งไว้ล่วงหน้าของฟิลาเมนท์ที่ใช้สำหรับการสไลซ์ "
+"ตัวแปรคือเวกเตอร์ที่มีชื่อเดียวสำหรับชุดดันเส้นแต่ละเครื่อง"
+
+msgid "Printer preset name"
+msgstr "ชื่อที่ตั้งไว้ล่วงหน้าของเครื่องพิมพ์"
+
+msgid "Name of the printer preset used for slicing."
+msgstr "ชื่อของพรีเซ็ตเครื่องพิมพ์ที่ใช้สำหรับการตัด"
+
+msgid "Physical printer name"
+msgstr "ชื่อเครื่องพิมพ์จริง"
+
+msgid "Name of the physical printer used for slicing."
+msgstr "ชื่อของเครื่องพิมพ์ฟิสิคัลที่ใช้สำหรับการแบ่งส่วน"
+
+msgid "Layer number"
+msgstr "หมายเลขเลเยอร์"
+
+msgid "Index of the current layer. One-based (i.e. first layer is number 1)."
+msgstr "ดัชนีของเลเยอร์ปัจจุบัน แบบอิงเดียว (เช่น เลเยอร์แรกคือหมายเลข 1)"
+
+msgid "Layer Z"
+msgstr "เลเยอร์ Z"
+
+msgid ""
+"Height of the current layer above the print bed, measured to the top of the "
+"layer."
+msgstr "ความสูงของเลเยอร์ปัจจุบันเหนือฐานพิมพ์พิมพ์ วัดจนถึงด้านบนของเลเยอร์"
+
+msgid "Maximal layer Z"
+msgstr "เลเยอร์สูงสุด Z"
+
+msgid "Height of the last layer above the print bed."
+msgstr "ความสูงของชั้นสุดท้ายเหนือฐานพิมพ์พิมพ์"
+
+msgid "Filament extruder ID"
+msgstr "ID ชุดดันเส้นเส้นพลาสติก"
+
+msgid "The current extruder ID. The same as current_extruder."
+msgstr "รหัสชุดดันเส้นปัจจุบัน เช่นเดียวกับ current_extruder"
+
+msgid "Error in zip archive"
+msgstr "เกิดข้อผิดพลาดในไฟล์ zip"
+
+msgid "Generating walls"
+msgstr "กำลังสร้างผนัง"
+
+msgid "Generating infill regions"
+msgstr "กำลังสร้างพื้นที่ไส้ใน"
+
+msgid "Generating infill toolpath"
+msgstr "กำลังสร้างเส้นทางไส้ใน"
+
+msgid "Z contouring"
+msgstr "รูปร่าง Z"
+
+msgid "Detect overhangs for auto-lift"
+msgstr "ตรวจจับระยะยื่นสำหรับการยกอัตโนมัติ"
+
+msgid "Checking support necessity"
+msgstr "กำลังตรวจสอบความจำเป็นของส่วนรองรับ"
+
+msgid "floating regions"
+msgstr "ภูมิภาคลอยน้ำ"
+
+msgid "floating cantilever"
+msgstr "คานเท้าแขนลอย"
+
+msgid "large overhangs"
+msgstr "ส่วนยื่นขนาดใหญ่"
+
+#, c-format, boost-format
+msgid ""
+"It seems object %s has %s. Please re-orient the object or enable support "
+"generation."
+msgstr "ดูเหมือนว่าวัตถุ %s มี %s โปรดปรับทิศทางวัตถุใหม่หรือเปิดใช้งานการสร้างส่วนรองรับ"
+
+msgid "Generating support"
+msgstr "กำลังสร้างส่วนรองรับ"
+
+msgid "Optimizing toolpath"
+msgstr "กำลังปรับเส้นทางพิมพ์ให้เหมาะสม"
+
+msgid "Slicing mesh"
+msgstr "กำลังสไลซ์เมช"
+
+msgid ""
+"No layers were detected. You might want to repair your STL file(s) or check "
+"their size or thickness and retry.\n"
+msgstr ""
+"ไม่พบเลเยอร์ คุณอาจต้องการซ่อมแซมไฟล์ STL ของคุณ "
+"หรือตรวจสอบขนาดหรือความหนาแล้วลองอีกครั้ง\n"
+
+msgid ""
+"An object's XY size compensation will not be used because it is also color-"
+"painted.\n"
+"XY Size compensation cannot be combined with color-painting."
+msgstr ""
+"การชดเชยขนาด XY ของวัตถุจะไม่ถูกนำมาใช้เนื่องจากวัตถุนั้นถูกลงสีด้วย\n"
+"การชดเชยขนาด XY ไม่สามารถใช้ร่วมกับการวาดภาพสีได้"
+
+msgid ""
+"An object has enabled XY Size compensation which will not be used because it "
+"is also fuzzy skin painted.\n"
+"XY Size compensation cannot be combined with fuzzy skin painting."
+msgstr ""
+"วัตถุได้เปิดใช้งานการชดเชยขนาด XY ซึ่งจะไม่ถูกใช้เนื่องจากเป็นสีที่ไม่ชัดเจนเช่นกัน\n"
+"การชดเชยขนาด XY ไม่สามารถใช้ร่วมกับการลงสีผิวแบบคลุมเครือได้"
+
+msgid "Object name"
+msgstr "ชื่อออบเจ็กต์"
+
+msgid "Support: generate contact points"
+msgstr "ส่วนรองรับ: สร้างจุดติดต่อ"
+
+msgid "Loading of a model file failed."
+msgstr "การโหลดไฟล์โมเดลล้มเหลว"
+
+msgid "Meshing of a model file failed or no valid shape."
+msgstr "การประสานไฟล์โมเดลล้มเหลวหรือไม่มีรูปร่างที่ถูกต้อง"
+
+msgid "The supplied file couldn't be read because it's empty"
+msgstr "ไม่สามารถอ่านไฟล์ที่ให้มาได้เนื่องจากไฟล์ว่างเปล่า"
+
+msgid ""
+"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
+msgstr "รูปแบบไฟล์ที่ไม่รู้จัก ไฟล์อินพุตต้องมีนามสกุล .stl, .obj, .amf(.xml)"
+
+msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
+msgstr "รูปแบบไฟล์ที่ไม่รู้จัก ไฟล์อินพุตต้องมีนามสกุล .3mf หรือ .zip.amf"
+
+msgid "load_obj: failed to parse"
+msgstr "load_obj: ไม่สามารถแยกวิเคราะห์ได้"
+
+msgid "load mtl in obj: failed to parse"
+msgstr "โหลด mtl ใน obj: ไม่สามารถแยกวิเคราะห์ได้"
+
+msgid "The file contains polygons with more than 4 vertices."
+msgstr "ไฟล์นี้มีรูปหลายเหลี่ยมที่มีจุดยอดมากกว่า 4 จุด"
+
+msgid "The file contains polygons with less than 2 vertices."
+msgstr "ไฟล์นี้มีรูปหลายเหลี่ยมที่มีจุดยอดน้อยกว่า 2 อัน"
+
+msgid "The file contains invalid vertex index."
+msgstr "ไฟล์นี้มีดัชนีจุดยอดที่ไม่ถูกต้อง"
+
+msgid "This OBJ file couldn't be read because it's empty."
+msgstr "ไฟล์ OBJ นี้ไม่สามารถอ่านได้เนื่องจากไฟล์ว่างเปล่า"
+
+msgid "Max Volumetric Speed Calibration"
+msgstr "ปรับเทียบความเร็วปริมาตรสูงสุด"
+
+msgid "Manage Result"
+msgstr "จัดการผลลัพธ์"
+
+msgid "Manual Calibration"
+msgstr "การปรับเทียบกำหนดเอง"
+
+msgid "Result can be read by human eyes."
+msgstr "ผลลัพธ์สามารถอ่านได้ด้วยตามนุษย์"
+
+msgid "Auto-Calibration"
+msgstr "การสอบเทียบอัตโนมัติ"
+
+msgid "We would use Lidar to read the calibration result"
+msgstr "เราจะใช้ Lidar เพื่ออ่านผลการสอบเทียบ"
+
+msgid "Prev"
+msgstr "ก่อนหน้า"
+
+msgid "Recalibration"
+msgstr "การปรับเทียบใหม่"
+
+msgid "Calibrate"
+msgstr "ปรับเทียบ"
+
+msgid "Finish"
+msgstr "เสร็จ"
+
+msgid "How to use calibration result?"
+msgstr "จะใช้ผลการสอบเทียบได้อย่างไร?"
+
+msgid ""
+"You could change the Flow Dynamics Calibration Factor in material editing"
+msgstr "คุณสามารถเปลี่ยน Flow Dynamics Calibration Factor ในการแก้ไขวัสดุได้"
+
+msgid ""
+"The current firmware version of the printer does not support calibration.\n"
+"Please upgrade the printer firmware."
+msgstr ""
+"เวอร์ชันเฟิร์มแวร์ปัจจุบันของเครื่องพิมพ์ไม่รองรับการปรับเทียบ\n"
+"กรุณาอัพเกรดเฟิร์มแวร์เครื่องพิมพ์"
+
+msgid "Calibration not supported"
+msgstr "ไม่รองรับการปรับเทียบ"
+
+msgid "Error desc"
+msgstr "คำอธิบายข้อผิดพลาด"
+
+msgid "Extra info"
+msgstr "ข้อมูลเพิ่มเติม"
+
+msgid "Flow Dynamics"
+msgstr "ไดนามิกการไหล"
+
+msgid "Max Volumetric Speed"
+msgstr "ความเร็วปริมาตรสูงสุด"
+
+#, c-format, boost-format
+msgid ""
+"Please input valid values:\n"
+"Start value: >= %.1f\n"
+"End value: <= %.1f\n"
+"End value: > Start value\n"
+"Value step: >= %.3f"
+msgstr ""
+"กรุณากรอกค่าที่ถูกต้อง:\n"
+"ค่าเริ่มต้น: >= %.1f\n"
+"ค่าสิ้นสุด: <= %.1f\n"
+"มูลค่าสิ้นสุด: > ค่าเริ่มต้น\n"
+"ขั้นตอนมูลค่า: >= %.3f"
+
+msgid "The name cannot be empty."
+msgstr "ชื่อไม่สามารถเว้นว่างได้"
+
+#, c-format, boost-format
+msgid "The selected preset: %s was not found."
+msgstr "ค่าที่ตั้งล่วงหน้าที่เลือก: ไม่พบ %s"
+
+msgid "The name cannot be the same as the system preset name."
+msgstr "ชื่อต้องไม่เหมือนกับชื่อที่ตั้งไว้ล่วงหน้าของระบบ"
+
+msgid "The name is the same as another existing preset name"
+msgstr "ชื่อเหมือนกับชื่อที่ตั้งไว้ล่วงหน้าอื่นที่มีอยู่"
+
+msgid "create new preset failed."
+msgstr "สร้างค่าที่ตั้งล่วงหน้าใหม่ล้มเหลว"
+
+#, c-format, boost-format
+msgid "Could not find parameter: %s."
+msgstr "ไม่พบพารามิเตอร์: %s"
+
+msgid ""
+"Are you sure to cancel the current calibration and return to the home page?"
+msgstr "คุณแน่ใจหรือไม่ว่าจะยกเลิกการสอบเทียบปัจจุบันและกลับสู่หน้าแรก"
+
+msgid "No Printer Connected!"
+msgstr "ยังไม่ได้เชื่อมต่อเครื่องพิมพ์!"
+
+msgid "Printer is not connected yet."
+msgstr "ยังไม่ได้เชื่อมต่อเครื่องพิมพ์"
+
+msgid "Please select filament to calibrate."
+msgstr "โปรดเลือกเส้นพลาสติกเพื่อปรับเทียบ"
+
+msgid "The input value size must be 3."
+msgstr "ขนาดค่าอินพุตต้องเป็น 3"
+
+msgid ""
+"This machine type can only hold 16 history results per nozzle. You can "
+"delete the existing historical results and then start calibration. Or you "
+"can continue the calibration, but you cannot create new calibration "
+"historical results.\n"
+"Do you still want to continue the calibration?"
+msgstr ""
+"เครื่องประเภทนี้สามารถเก็บผลลัพธ์ประวัติได้ 16 รายการต่อหัวฉีดเท่านั้น "
+"คุณสามารถลบผลลัพธ์ในอดีตที่มีอยู่แล้วเริ่มการสอบเทียบได้ หรือคุณสามารถดำเนินการสอบเทียบต่อไปได้ "
+"แต่คุณไม่สามารถสร้างผลลัพธ์ในอดีตของการสอบเทียบใหม่ได้\n"
+"คุณยังต้องการทำการสอบเทียบต่อไปหรือไม่"
+
+#, c-format, boost-format
+msgid ""
+"Only one of the results with the same name: %s will be saved. Are you sure "
+"you want to override the other results?"
+msgstr ""
+"มีเพียงผลลัพธ์เดียวเท่านั้นที่มีชื่อเดียวกัน: %s จะถูกบันทึก คุณแน่ใจหรือไม่ว่าต้องการแทนที่ผลลัพธ์อื่นๆ"
+
+#, c-format, boost-format
+msgid ""
+"There is already a historical calibration result with the same name: %s. "
+"Only one of the results with the same name is saved. Are you sure you want "
+"to override the historical result?"
+msgstr ""
+"มีผลการสอบเทียบในอดีตที่มีชื่อเดียวกันอยู่แล้ว: %s บันทึกผลลัพธ์ที่มีชื่อเดียวกันเพียงรายการเดียวเท่านั้น "
+"คุณแน่ใจหรือไม่ว่าต้องการแทนที่ผลลัพธ์ในอดีต"
+
+#, c-format, boost-format
+msgid ""
+"Within the same extruder, the name(%s) must be unique when the filament "
+"type, nozzle diameter, and nozzle flow are the same.\n"
+"Are you sure you want to override the historical result?"
+msgstr ""
+"ภายในชุดดันเส้นเดียวกัน ชื่อ(%s) จะต้องไม่ซ้ำกันเมื่อประเภทเส้นพลาสติก เส้นผ่านศูนย์กลางของหัวฉีด "
+"และการไหลของหัวฉีดเหมือนกัน\n"
+"คุณแน่ใจหรือไม่ว่าต้องการแทนที่ผลลัพธ์ในอดีต"
+
+#, c-format, boost-format
+msgid ""
+"This machine type can only hold %d history results per nozzle. This result "
+"will not be saved."
+msgstr "ประเภทเครื่องนี้สามารถเก็บผลลัพธ์ประวัติได้เพียง %d รายการต่อหัวฉีด ผลลัพธ์นี้จะไม่ถูกบันทึก"
+
+msgid "Connecting to printer..."
+msgstr "กำลังเชื่อมต่อกับเครื่องพิมพ์..."
+
+msgid "The failed test result has been dropped."
+msgstr "ผลการทดสอบที่ล้มเหลวถูกยกเลิก"
+
+msgid "Flow Dynamics Calibration result has been saved to the printer."
+msgstr "ผลการสอบเทียบ Flow Dynamics ได้รับการบันทึกลงในเครื่องพิมพ์แล้ว"
+
+msgid "Internal Error"
+msgstr "ข้อผิดพลาดภายใน"
+
+msgid "Please select at least one filament for calibration"
+msgstr "โปรดเลือกอย่างน้อยหนึ่งเส้นพลาสติกสำหรับการสอบเทียบ"
+
+msgid "Flow rate calibration result has been saved to preset."
+msgstr "บันทึกผลการสอบเทียบอัตราการไหลไปยังค่าที่ตั้งไว้ล่วงหน้าแล้ว"
+
+msgid "Max volumetric speed calibration result has been saved to preset."
+msgstr "บันทึกผลการสอบเทียบความเร็วตามปริมาตรสูงสุดไว้ในการตั้งค่าล่วงหน้าแล้ว"
+
+msgid "When do you need Flow Dynamics Calibration"
+msgstr "เมื่อใดที่คุณต้องการ Flow Dynamics Calibration"
+
+msgid ""
+"We now have added the auto-calibration for different filaments, which is "
+"fully automated and the result will be saved into the printer for future "
+"use. You only need to do the calibration in the following limited cases:\n"
+"1. If you introduce a new filament of different brands/models or the "
+"filament is damp;\n"
+"2. If the nozzle is worn out or replaced with a new one;\n"
+"3. If the max volumetric speed or print temperature is changed in the "
+"filament setting."
+msgstr ""
+"ตอนนี้เราได้เพิ่มการปรับเทียบอัตโนมัติสำหรับเส้นพลาสติกต่างๆ ซึ่งเป็นระบบอัตโนมัติเต็มรูปแบบ "
+"และผลลัพธ์จะถูกบันทึกไว้ในเครื่องพิมพ์เพื่อใช้ในอนาคต "
+"คุณจะต้องทำการสอบเทียบเฉพาะในกรณีที่จำกัดต่อไปนี้เท่านั้น:\n"
+"1. หากคุณแนะนำเส้นพลาสติกใหม่ของยี่ห้อ/รุ่นที่แตกต่างกัน หรือเส้นพลาสติกชื้น\n"
+"2. หากหัวฉีดชำรุดหรือเปลี่ยนหัวฉีดใหม่\n"
+"3. หากความเร็วปริมาตรสูงสุดหรืออุณหภูมิการพิมพ์เปลี่ยนแปลงในการตั้งค่าเส้นพลาสติก"
+
+msgid "About this calibration"
+msgstr "เกี่ยวกับการสอบเทียบนี้"
+
+msgid ""
+"Please find the details of Flow Dynamics Calibration from our wiki.\n"
+"\n"
+"Usually the calibration is unnecessary. When you start a single color/"
+"material print, with the \"flow dynamics calibration\" option checked in the "
+"print start menu, the printer will follow the old way, calibrate the "
+"filament before the print; When you start a multi color/material print, the "
+"printer will use the default compensation parameter for the filament during "
+"every filament switch which will have a good result in most cases.\n"
+"\n"
+"Please note that there are a few cases that can make the calibration results "
+"unreliable, such as insufficient adhesion on the build plate. Improving "
+"adhesion can be achieved by washing the build plate or applying glue. For "
+"more information on this topic, please refer to our Wiki.\n"
+"\n"
+"The calibration results have about 10 percent jitter in our test, which may "
+"cause the result not exactly the same in each calibration. We are still "
+"investigating the root cause to do improvements with new updates."
+msgstr ""
+"โปรดดูรายละเอียดของ Flow Dynamics Calibration จากวิกิของเรา\n"
+"\n"
+"โดยปกติแล้วการปรับเทียบจะไม่จำเป็น เมื่อคุณเริ่มพิมพ์สี/วัสดุเดียว โดยเลือกตัวเลือก \"flow "
+"dynamics calibration\" ในเมนูเริ่มการพิมพ์ เครื่องพิมพ์จะปฏิบัติตามวิธีเก่า "
+"ปรับเทียบเส้นพลาสติกก่อนพิมพ์ เมื่อคุณเริ่มการพิมพ์หลายสี/วัสดุ "
+"เครื่องพิมพ์จะใช้พารามิเตอร์การชดเชยเริ่มต้นสำหรับเส้นพลาสติกในระหว่างการเปลี่ยนเส้นพลาสติกทุกครั้ง "
+"ซึ่งจะให้ผลลัพธ์ที่ดีในกรณีส่วนใหญ่\n"
+"\n"
+"โปรดทราบว่ามีบางกรณีที่อาจทำให้ผลการสอบเทียบไม่น่าเชื่อถือ เช่น "
+"การยึดเกาะบนฐานรองพิมพ์ไม่เพียงพอ "
+"การปรับปรุงการยึดเกาะสามารถทำได้โดยการล้างแผ่นฐานรองพิมพ์หรือใช้กาว "
+"สำหรับข้อมูลเพิ่มไส้ในเกี่ยวกับหัวข้อนี้ โปรดดูที่ Wiki ของเรา\n"
+"\n"
+"ผลการสอบเทียบมีความกระวนกระวายใจประมาณ 10 เปอร์เซ็นต์ในการทดสอบของเรา "
+"ซึ่งอาจทำให้ผลลัพธ์ไม่เหมือนกันทุกประการในการสอบเทียบแต่ละครั้ง "
+"เรายังคงตรวจสอบสาเหตุที่แท้จริงเพื่อทำการปรับปรุงด้วยการอัปเดตใหม่"
+
+msgid "When to use Flow Rate Calibration"
+msgstr "เมื่อใดจึงจะใช้การปรับเทียบอัตราการไหล"
+
+msgid ""
+"After using Flow Dynamics Calibration, there might still be some extrusion "
+"issues, such as:\n"
+"1. Over-Extrusion: Excess material on your printed object, forming blobs or "
+"zits, or the layers seem thicker than expected and not uniform\n"
+"2. Under-Extrusion: Very thin layers, weak infill strength, or gaps in the "
+"top layer of the model, even when printing slowly\n"
+"3. Poor Surface Quality: The surface of your prints seems rough or uneven\n"
+"4. Weak Structural Integrity: Prints break easily or don't seem as sturdy as "
+"they should be"
+msgstr ""
+"หลังจากใช้ Flow Dynamics Calibration แล้ว อาจยังมีปัญหาการอัดขึ้นรูปอยู่บ้าง เช่น:\n"
+"1. การอัดขึ้นรูปมากเกินไป: วัสดุส่วนเกินบนวัตถุที่พิมพ์ของคุณ ก่อตัวเป็นหยดหรือสิว หรือชั้นต่างๆ "
+"ดูหนากว่าที่คาดไว้และไม่สม่ำเสมอ\n"
+"2. Under-Extrusion: ชั้นที่บางมาก ความแข็งแรงในไส้ในที่อ่อนแอ "
+"หรือมีช่องว่างในชั้นบนสุดของแบบจำลอง แม้ว่าจะพิมพ์ช้าก็ตาม\n"
+"3. คุณภาพพื้นผิวไม่ดี: พื้นผิวงานพิมพ์ของคุณดูหยาบหรือไม่สม่ำเสมอ\n"
+"4. ความสมบูรณ์ของโครงสร้างที่อ่อนแอ: งานพิมพ์แตกหักง่ายหรือดูไม่แข็งแรงเท่าที่ควร"
+
+msgid ""
+"In addition, Flow Rate Calibration is crucial for foaming materials like LW-"
+"PLA used in RC planes. These materials expand greatly when heated, and "
+"calibration provides a useful reference flow rate."
+msgstr ""
+"นอกจากนี้ การสอบเทียบอัตราการไหลยังเป็นสิ่งสำคัญสำหรับวัสดุที่เกิดฟอง เช่น LW-PLA "
+"ที่ใช้ในเครื่องบิน RC วัสดุเหล่านี้จะขยายตัวอย่างมากเมื่อถูกความร้อน "
+"และการสอบเทียบจะให้อัตราการไหลอ้างอิงที่เป็นประโยชน์"
+
+msgid ""
+"Flow Rate Calibration measures the ratio of expected to actual extrusion "
+"volumes. The default setting works well in Bambu Lab printers and official "
+"filaments as they were pre-calibrated and fine-tuned. For a regular "
+"filament, you usually won't need to perform a Flow Rate Calibration unless "
+"you still see the listed defects after you have done other calibrations. For "
+"more details, please check out the wiki article."
+msgstr ""
+"การสอบเทียบอัตราการไหลจะวัดอัตราส่วนของปริมาณที่คาดหวังต่อปริมาณการอัดขึ้นรูปจริง "
+"การตั้งค่าเริ่มต้นทำงานได้ดีในเครื่องพิมพ์ Bambu Lab และเส้นพลาสติกอย่างเป็นทางการ "
+"เนื่องจากมีการสอบเทียบล่วงหน้าและปรับแต่งอย่างละเอียด สำหรับเส้นพลาสติกทั่วไป "
+"โดยปกติแล้วคุณไม่จำเป็นต้องทำการสอบเทียบอัตราการไหล "
+"เว้นแต่คุณยังคงเห็นข้อบกพร่องที่ระบุไว้หลังจากคุณทำการสอบเทียบอื่นๆ แล้ว "
+"สำหรับรายละเอียดเพิ่มไส้ใน โปรดดูบทความวิกิ"
+
+msgid ""
+"Auto Flow Rate Calibration utilizes Bambu Lab's Micro-Lidar technology, "
+"directly measuring the calibration patterns. However, please be advised that "
+"the efficacy and accuracy of this method may be compromised with specific "
+"types of materials. Particularly, filaments that are transparent or semi-"
+"transparent, sparkling-particled, or have a high-reflective finish may not "
+"be suitable for this calibration and can produce less-than-desirable "
+"results.\n"
+"\n"
+"The calibration results may vary between each calibration or filament. We "
+"are still improving the accuracy and compatibility of this calibration "
+"through firmware updates over time.\n"
+"\n"
+"Caution: Flow Rate Calibration is an advanced process, to be attempted only "
+"by those who fully understand its purpose and implications. Incorrect usage "
+"can lead to sub-par prints or printer damage. Please make sure to carefully "
+"read and understand the process before doing it."
+msgstr ""
+"การสอบเทียบอัตราการไหลอัตโนมัติใช้เทคโนโลยี Micro-Lidar ของ Bambu Lab "
+"ซึ่งวัดรูปแบบการสอบเทียบโดยตรง อย่างไรก็ตาม "
+"โปรดทราบว่าประสิทธิภาพและความแม่นยำของวิธีการนี้อาจลดลงกับวัสดุบางประเภท โดยเฉพาะอย่างยิ่ง "
+"เส้นพลาสติกที่โปร่งใสหรือกึ่งโปร่งใส มีอนุภาคเป็นประกาย หรือมีพื้นผิวที่มีการสะท้อนแสงสูง "
+"อาจไม่เหมาะสำหรับการสอบเทียบนี้ และให้ผลลัพธ์ที่ได้น้อยกว่าที่ต้องการ\n"
+"\n"
+"ผลการสอบเทียบอาจแตกต่างกันไปในแต่ละการสอบเทียบหรือเส้นพลาสติก "
+"เรายังคงปรับปรุงความแม่นยำและความเข้ากันได้ของการสอบเทียบนี้ผ่านการอัพเดตเฟิร์มแวร์เมื่อเวลาผ่านไป\n"
+"\n"
+"ข้อควรระวัง: "
+"การสอบเทียบอัตราการไหลเป็นกระบวนการขั้นสูงที่จะดำเนินการได้เฉพาะผู้ที่เข้าใจวัตถุประสงค์และความหมายของกระบวนการเท่านั้น "
+"การใช้งานที่ไม่ถูกต้องอาจทำให้งานพิมพ์ด้อยคุณภาพหรือเครื่องพิมพ์เสียหายได้ "
+"โปรดอ่านและทำความเข้าใจกระบวนการอย่างละเอียดก่อนดำเนินการ"
+
+msgid "When you need Max Volumetric Speed Calibration"
+msgstr "เมื่อคุณต้องการการสอบเทียบความเร็วตามปริมาตรสูงสุด"
+
+msgid "Over-extrusion or under extrusion"
+msgstr "การอัดขึ้นรูปมากเกินไปหรือภายใต้การอัดขึ้นรูป"
+
+msgid "Max Volumetric Speed calibration is recommended when you print with:"
+msgstr "แนะนำให้ใช้การปรับเทียบความเร็วตามปริมาตรสูงสุดเมื่อคุณพิมพ์ด้วย:"
+
+msgid "material with significant thermal shrinkage/expansion, such as..."
+msgstr "วัสดุที่มีการหดตัว/การขยายตัวเนื่องจากความร้อนอย่างมีนัยสำคัญ เช่น..."
+
+msgid "materials with inaccurate filament diameter"
+msgstr "วัสดุที่มีเส้นผ่านศูนย์กลางเส้นพลาสติกไม่ถูกต้อง"
+
+msgid "We found the best Flow Dynamics Calibration Factor"
+msgstr "เราพบปัจจัยการปรับเทียบ Flow Dynamics ที่ดีที่สุด"
+
+msgid ""
+"Part of the calibration failed! You may clean the plate and retry. The "
+"failed test result would be dropped."
+msgstr ""
+"การสอบเทียบบางส่วนล้มเหลว! คุณสามารถทำความสะอาดจานแล้วลองอีกครั้ง "
+"ผลการทดสอบที่ล้มเหลวจะถูกยกเลิก"
+
+msgid ""
+"*We recommend you to add brand, materia, type, and even humidity level in "
+"the Name"
+msgstr "*เราขอแนะนำให้คุณเพิ่มแบรนด์ วัสดุ ประเภท และแม้แต่ระดับความชื้นในชื่อ"
+
+msgid "Please enter the name you want to save to printer."
+msgstr "กรุณากรอกชื่อที่คุณต้องการบันทึกลงในเครื่องพิมพ์"
+
+msgid "The name cannot exceed 40 characters."
+msgstr "ชื่อต้องมีความยาวไม่เกิน 40 ตัวอักษร"
+
+msgid "Please find the best line on your plate"
+msgstr "โปรดค้นหาเส้นที่ดีที่สุดบนจานของคุณ"
+
+msgid "Please find the corner with the perfect degree of extrusion"
+msgstr "โปรดค้นหามุมที่มีการอัดขึ้นรูปที่สมบูรณ์แบบ"
+
+msgid "Input Value"
+msgstr "ค่าอินพุต"
+
+msgid "Save to Filament Preset"
+msgstr "บันทึกไปยัง เส้นพลาสติก Preset"
+
+msgid "Record Factor"
+msgstr "ปัจจัยการบันทึก"
+
+msgid "We found the best flow ratio for you"
+msgstr "เราพบอัตราส่วนการไหลที่ดีที่สุดสำหรับคุณ"
+
+msgid "Flow Ratio"
+msgstr "อัตราส่วนการไหล"
+
+msgid "Please input a valid value (0.0 < flow ratio < 2.0)"
+msgstr "โปรดป้อนค่าที่ถูกต้อง (0.0 < อัตราการไหล < 2.0)"
+
+msgid "Please enter the name of the preset you want to save."
+msgstr "กรุณากรอกชื่อพรีเซ็ตที่คุณต้องการบันทึก"
+
+msgid "Calibration1"
+msgstr "การสอบเทียบ1"
+
+msgid "Calibration2"
+msgstr "การสอบเทียบ2"
+
+msgid "Please find the best object on your plate"
+msgstr "โปรดค้นหาวัตถุที่ดีที่สุดบนจานของคุณ"
+
+msgid "Fill in the value above the block with smoothest top surface"
+msgstr "ไส้ในค่าเหนือบล็อกด้วยพื้นผิวด้านบนเรียบที่สุด"
+
+msgid "Skip Calibration2"
+msgstr "ข้ามการปรับเทียบ2"
+
+#, c-format, boost-format
+msgid "flow ratio : %s "
+msgstr "อัตราการไหล : %s"
+
+msgid "Please choose a block with smoothest top surface."
+msgstr "โปรดเลือกบล็อกที่มีพื้นผิวด้านบนเรียบที่สุด"
+
+msgid "Please input a valid value (0 <= Max Volumetric Speed <= 60)"
+msgstr "โปรดป้อนค่าที่ถูกต้อง (0 <= ความเร็วปริมาตรสูงสุด <= 60)"
+
+msgid "Calibration Type"
+msgstr "ประเภทการสอบเทียบ"
+
+msgid "Complete Calibration"
+msgstr "การสอบเทียบเสร็จสมบูรณ์"
+
+msgid "Fine Calibration based on flow ratio"
+msgstr "การสอบเทียบแบบละเอียดตามอัตราส่วนการไหล"
+
+msgid "Title"
+msgstr "ชื่อเรื่อง"
+
+msgid ""
+"A test model will be printed. Please clear the build plate and place it back "
+"to the hot bed before calibration."
+msgstr ""
+"แบบจำลองทดสอบจะถูกพิมพ์ โปรดเคลียร์เพลตฐานพิมพ์และวางกลับไว้บนฐานพิมพ์ร้อนก่อนทำการสอบเทียบ"
+
+msgid "Printing Parameters"
+msgstr "พารามิเตอร์การพิมพ์"
+
+msgid "- ℃"
+msgstr "- ℃"
+
+msgid "Synchronize nozzle and AMS information"
+msgstr "ประสานข้อมูลหัวฉีดและ AMS"
+
+msgid "Please connect the printer first before synchronizing."
+msgstr "โปรดเชื่อมต่อเครื่องพิมพ์ก่อนที่จะซิงโครไนซ์"
+
+#, c-format, boost-format
+msgid ""
+"Printer %s nozzle information has not been set. Please configure it before "
+"proceeding with the calibration."
+msgstr "ข้อมูลหัวฉีดของเครื่องพิมพ์ %s ไม่ได้ถูกตั้งค่า โปรดกำหนดค่าก่อนดำเนินการสอบเทียบต่อ"
+
+msgid "AMS and nozzle information are synced"
+msgstr "ข้อมูล AMS และหัวฉีดจะซิงค์กัน"
+
+msgid "Nozzle Flow"
+msgstr "การไหลของหัวฉีด"
+
+msgid "Nozzle Info"
+msgstr "ข้อมูลหัวฉีด"
+
+msgid "Plate Type"
+msgstr "ชนิดฐานพิมพ์"
+
+msgid "Filament position"
+msgstr "ตำแหน่งเส้นพลาสติก"
+
+msgid "Filament For Calibration"
+msgstr "เส้นพลาสติกสำหรับการสอบเทียบ"
+
+msgid ""
+"Tips for calibration material:\n"
+"- Materials that can share same hot bed temperature\n"
+"- Different filament brand and family (Brand = Bambu, Family = Basic, Matte)"
+msgstr ""
+"คำแนะนำในการสอบเทียบวัสดุ:\n"
+"- วัสดุที่สามารถใช้อุณหภูมิฐานพิมพ์ร้อนร่วมกันได้\n"
+"- เส้นพลาสติกแต่ละยี่ห้อและตระกูลต่างๆ (ยี่ห้อ = Bambu, Family = Basic, Matte)"
+
+msgid "Pattern"
+msgstr "ลวดลาย"
+
+msgid "Method"
+msgstr "วิธี"
+
+#, c-format, boost-format
+msgid "%s is not compatible with %s"
+msgstr "%s เข้ากันไม่ได้กับ %s"
+
+msgid "TPU is not supported for Flow Dynamics Auto-Calibration."
+msgstr "ไม่รองรับ TPU สำหรับการปรับเทียบอัตโนมัติของ Flow Dynamics"
+
+msgid ""
+"Selected nozzle temperatures are incompatible. For multi-material printing, "
+"each filament's nozzle temperature must be within the recommended nozzle "
+"temperature range of the other filaments. Otherwise, nozzle clogging or "
+"printer damage may occur."
+msgstr ""
+"อุณหภูมิหัวฉีดที่เลือกเข้ากันไม่ได้ สำหรับการพิมพ์หลายวัสดุ "
+"อุณหภูมิหัวฉีดของเส้นพลาสติกแต่ละเส้นจะต้องอยู่ในช่วงอุณหภูมิหัวฉีดที่แนะนำของเส้นพลาสติกอื่นๆ "
+"มิฉะนั้นอาจเกิดการอุดตันของหัวฉีดหรือเครื่องพิมพ์เสียหายได้"
+
+msgid "Sync AMS and nozzle information"
+msgstr "ซิงค์ข้อมูล AMS และหัวฉีด"
+
+msgid ""
+"Calibration only supports cases where the left and right nozzle diameters "
+"are identical."
+msgstr "การสอบเทียบรองรับเฉพาะกรณีที่เส้นผ่านศูนย์กลางหัวฉีดซ้ายและขวาเท่ากัน"
+
+msgid "From k Value"
+msgstr "จากค่า k"
+
+msgid "To k Value"
+msgstr "ถึงค่าเค"
+
+msgid "Step value"
+msgstr "ค่าขั้นตอน"
+
+msgid "The nozzle diameter has been synchronized from the printer Settings"
+msgstr "เส้นผ่านศูนย์กลางของหัวฉีดได้รับการซิงโครไนซ์จากการตั้งค่าเครื่องพิมพ์"
+
+msgid "From Volumetric Speed"
+msgstr "จากความเร็วตามปริมาตร"
+
+msgid "To Volumetric Speed"
+msgstr "สู่ความเร็วเชิงปริมาตร"
+
+msgid "Are you sure you want to cancel this print?"
+msgstr "คุณแน่ใจหรือไม่ว่าต้องการยกเลิกงานพิมพ์นี้"
+
+msgid "Flow Dynamics Calibration Result"
+msgstr "ผลการสอบเทียบโฟลว์ไดนามิกส์"
+
+msgid "New"
+msgstr "ใหม่"
+
+msgid "No History Result"
+msgstr "ไม่มีผลลัพธ์ประวัติ"
+
+msgid "Success to get history result"
+msgstr "ประสบความสำเร็จในการรับผลประวัติ"
+
+msgid "Refreshing the historical Flow Dynamics Calibration records"
+msgstr "การรีเฟรชบันทึกการปรับเทียบ Flow Dynamics ในอดีต"
+
+msgid "Action"
+msgstr "การทำงาน"
+
+#, c-format, boost-format
+msgid "This machine type can only hold %d history results per nozzle."
+msgstr "ประเภทเครื่องนี้สามารถเก็บผลลัพธ์ประวัติได้เพียง %d รายการต่อหัวฉีด"
+
+msgid "Edit Flow Dynamics Calibration"
+msgstr "แก้ไขปรับเทียบไดนามิกการไหล"
+
+#, c-format, boost-format
+msgid ""
+"Within the same extruder, the name '%s' must be unique when the filament "
+"type, nozzle diameter, and nozzle flow are identical. Please choose a "
+"different name."
+msgstr ""
+"ภายในชุดดันเส้นเดียวกัน ชื่อ '%s' จะต้องไม่ซ้ำกันเมื่อประเภทเส้นพลาสติก "
+"เส้นผ่านศูนย์กลางของหัวฉีด และการไหลของหัวฉีดเหมือนกัน โปรดเลือกชื่ออื่น"
+
+msgid "New Flow Dynamic Calibration"
+msgstr "การสอบเทียบแบบไดนามิกของ Flow ใหม่"
+
+msgid "The filament must be selected."
+msgstr "ต้องเลือกเส้นพลาสติก"
+
+msgid "The extruder must be selected."
+msgstr "ต้องเลือกชุดดันเส้น"
+
+msgid "The nozzle must be selected."
+msgstr "ต้องเลือกหัวฉีด"
+
+msgid "Network lookup"
+msgstr "การค้นหาเครือข่าย"
+
+msgid "Address"
+msgstr "ที่อยู่"
+
+msgid "Hostname"
+msgstr "ชื่อโฮสต์"
+
+msgid "Service name"
+msgstr "ชื่อบริการ"
+
+msgid "OctoPrint version"
+msgstr "เวอร์ชัน OctoPrint"
+
+msgid "Searching for devices"
+msgstr "กำลังค้นหาอุปกรณ์"
+
+msgid "Finished"
+msgstr "ที่เสร็จเรียบร้อย"
+
+msgid "Multiple resolved IP addresses"
+msgstr "ที่อยู่ IP ที่ได้รับการแก้ปัญหาหลายรายการ"
+
+#, boost-format
+msgid ""
+"There are several IP addresses resolving to hostname %1%.\n"
+"Please select one that should be used."
+msgstr ""
+"มีที่อยู่ IP หลายแห่งที่ใช้ชื่อโฮสต์ %1%\n"
+"โปรดเลือกอันที่ควรใช้"
+
+msgid "PA Calibration"
+msgstr "ปรับเทียบ PA"
+
+msgid "Extruder type"
+msgstr "ประเภทชุดดันเส้น"
+
+msgid "DDE"
+msgstr "ดีดีอี"
+
+msgid "PA Tower"
+msgstr "พีเอ ทาวเวอร์"
+
+msgid "PA Line"
+msgstr "สายพีเอ"
+
+msgid "PA Pattern"
+msgstr "รูปแบบ PA"
+
+msgid "Start PA: "
+msgstr "เริ่ม PA:"
+
+msgid "End PA: "
+msgstr "สิ้นสุด PA:"
+
+msgid "PA step: "
+msgstr "ขั้นตอน PA:"
+
+msgid "Accelerations: "
+msgstr "การเร่งความเร็ว:"
+
+msgid "Speeds: "
+msgstr "ความเร็ว:"
+
+msgid "Print numbers"
+msgstr "พิมพ์ตัวเลข"
+
+msgid "Comma-separated list of printing accelerations"
+msgstr "รายการความเร่งในการพิมพ์ที่คั่นด้วยเครื่องหมายจุลภาค"
+
+msgid "Comma-separated list of printing speeds"
+msgstr "รายการความเร็วในการพิมพ์ที่คั่นด้วยเครื่องหมายจุลภาค"
+
+msgid ""
+"Please input valid values:\n"
+"Start PA: >= 0.0\n"
+"End PA: > Start PA\n"
+"PA step: >= 0.001"
+msgstr ""
+"กรุณากรอกค่าที่ถูกต้อง:\n"
+"เริ่มต้น PA: >= 0.0\n"
+"สิ้นสุด PA: > เริ่ม PA\n"
+"ขั้นตอน PA: >= 0.001"
+
+msgid ""
+"Acceleration values must be greater than speed values.\n"
+"Please verify the inputs."
+msgstr ""
+"ค่าความเร่งต้องมากกว่าค่าความเร็ว\n"
+"โปรดตรวจสอบอินพุต"
+
+msgid "Temperature calibration"
+msgstr "การปรับเทียบอุณหภูมิ"
+
+msgid "Filament type"
+msgstr "ชนิดเส้นพลาสติก"
+
+msgid "PLA"
+msgstr "PLA"
+
+msgid "ABS/ASA"
+msgstr "ABS/ASA"
+
+msgid "PETG"
+msgstr "PETG"
+
+msgid "PCTG"
+msgstr "PCTG"
+
+msgid "TPU"
+msgstr "TPU"
+
+msgid "PA-CF"
+msgstr "PA-CF"
+
+msgid "PET-CF"
+msgstr "PET-CF"
+
+msgid "Start temp: "
+msgstr "อุณหภูมิเริ่มต้น:"
+
+msgid "End temp: "
+msgstr "อุณหภูมิสิ้นสุด:"
+
+msgid "Temp step: "
+msgstr "อุณหภูมิแบบขั้นบันได:"
+
+msgid ""
+"Please input valid values:\n"
+"Start temp: <= 500\n"
+"End temp: >= 155\n"
+"Start temp >= End temp + 5"
+msgstr ""
+"กรุณากรอกค่าที่ถูกต้อง:\n"
+"อุณหภูมิเริ่มต้น: <= 500\n"
+"อุณหภูมิสิ้นสุด: >= 155\n"
+"อุณหภูมิเริ่มต้น >= อุณหภูมิสิ้นสุด + 5"
+
+msgid "Max volumetric speed test"
+msgstr "การทดสอบความเร็วปริมาตรสูงสุด"
+
+msgid "Start volumetric speed: "
+msgstr "เริ่มต้นความเร็วตามปริมาตร:"
+
+msgid "End volumetric speed: "
+msgstr "ความเร็วสิ้นสุดตามปริมาตร:"
+
+msgid ""
+"Please input valid values:\n"
+"start > 0\n"
+"step >= 0\n"
+"end > start + step"
+msgstr ""
+"กรุณากรอกค่าที่ถูกต้อง:\n"
+"เริ่มต้น > 0\n"
+"ขั้นตอน >= 0\n"
+"สิ้นสุด> เริ่มต้น + ขั้นตอน"
+
+msgid "VFA test"
+msgstr "การทดสอบ VFA"
+
+msgid "Start speed: "
+msgstr "ความเร็วเริ่มต้น:"
+
+msgid "End speed: "
+msgstr "ความเร็วสิ้นสุด:"
+
+msgid ""
+"Please input valid values:\n"
+"start > 10\n"
+"step >= 0\n"
+"end > start + step"
+msgstr ""
+"กรุณากรอกค่าที่ถูกต้อง:\n"
+"เริ่มต้น > 10\n"
+"ขั้นตอน >= 0\n"
+"สิ้นสุด> เริ่มต้น + ขั้นตอน"
+
+msgid "Start retraction length: "
+msgstr "เริ่มต้นความยาวการดึงกลับ:"
+
+msgid "End retraction length: "
+msgstr "ความยาวการดึงกลับสุดท้าย:"
+
+msgid "Input shaping Frequency test"
+msgstr "การทดสอบความถี่การสร้างอินพุต"
+
+msgid "Test model"
+msgstr "แบบทดสอบ"
+
+msgid "Ringing Tower"
+msgstr "ริงกิ้งทาวเวอร์"
+
+msgid "Fast Tower"
+msgstr "ฟาสท์ ทาวเวอร์"
+
+msgid ""
+"Please ensure the selected type is compatible with your firmware version."
+msgstr "โปรดตรวจสอบให้แน่ใจว่าประเภทที่เลือกเข้ากันได้กับเวอร์ชันเฟิร์มแวร์ของคุณ"
+
+msgid ""
+"Marlin version => 2.1.2\n"
+"Fixed-Time motion not yet implemented."
+msgstr ""
+"เวอร์ชันมาร์ลิน => 2.1.2\n"
+"ยังไม่มีการใช้การเคลื่อนไหวแบบกำหนดเวลา"
+
+msgid "Klipper version => 0.9.0"
+msgstr "คลิปเปอร์เวอร์ชัน => 0.9.0"
+
+msgid ""
+"RepRap firmware version => 3.4.0\n"
+"Check your firmware documentation for supported shaper types."
+msgstr ""
+"เฟิร์มแวร์ RepRap เวอร์ชัน => 3.4.0\n"
+"ตรวจสอบเอกสารประกอบเฟิร์มแวร์ของคุณสำหรับประเภทเชปเปอร์ที่รองรับ"
+
+msgid "Frequency (Start / End): "
+msgstr "ความถี่ (เริ่ม / สิ้นสุด):"
+
+msgid "Start / End"
+msgstr "เริ่ม / สิ้นสุด"
+
+msgid "Frequency settings"
+msgstr "การตั้งค่าความถี่"
+
+msgid "Hz"
+msgstr "Hz"
+
+msgid "RepRap firmware uses the same frequency range for both axes."
+msgstr "เฟิร์มแวร์ RepRap ใช้ช่วงความถี่เดียวกันสำหรับทั้งสองแกน"
+
+msgid "Damp: "
+msgstr "ชื้น:"
+
+msgid ""
+"Recommended: Set Damp to 0.\n"
+"This will use the printer's default or saved value."
+msgstr ""
+"แนะนำ: ตั้งค่าความชื้นเป็น 0\n"
+"ซึ่งจะใช้ค่าเริ่มต้นหรือค่าที่บันทึกไว้ของเครื่องพิมพ์"
+
+msgid ""
+"Please input valid values:\n"
+"(0 < FreqStart < FreqEnd < 500)"
+msgstr ""
+"กรุณากรอกค่าที่ถูกต้อง:\n"
+"(0 < ความถี่เริ่มต้น < ความถี่สิ้นสุด < 500)"
+
+msgid "Please input a valid damping factor (0 < Damping/zeta factor <= 1)"
+msgstr "โปรดป้อนปัจจัยการหน่วงที่ถูกต้อง (0 < ปัจจัยการหน่วง/ซีต้า <= 1)"
+
+msgid "Input shaping Damp test"
+msgstr "การทดสอบการสร้างรูปร่างอินพุต"
+
+msgid "Check firmware compatibility."
+msgstr "ตรวจสอบความเข้ากันได้ของเฟิร์มแวร์"
+
+msgid "Frequency: "
+msgstr "ความถี่:"
+
+msgid "Damp"
+msgstr "ชื้น"
+
+msgid "RepRap firmware uses the same frequency for both axes."
+msgstr "เฟิร์มแวร์ RepRap ใช้ความถี่เดียวกันสำหรับทั้งสองแกน"
+
+msgid "Note: Use previously calculated frequencies."
+msgstr "หมายเหตุ: ใช้ความถี่ที่คำนวณไว้ก่อนหน้านี้"
+
+msgid ""
+"Please input valid values:\n"
+"(0 < Freq < 500)"
+msgstr ""
+"กรุณากรอกค่าที่ถูกต้อง:\n"
+"(0 < ความถี่ < 500)"
+
+msgid ""
+"Please input a valid damping factor (0 <= DampingStart < DampingEnd <= 1)"
+msgstr "โปรดป้อนปัจจัยการหน่วงที่ถูกต้อง (0 <= DampingStart < DampingEnd <= 1)"
+
+msgid "Cornering test"
+msgstr "การทดสอบการเข้าโค้ง"
+
+msgid "SCV-V2"
+msgstr "SCV-V2"
+
+msgid "Start: "
+msgstr "เริ่ม:"
+
+msgid "End: "
+msgstr "จบ:"
+
+msgid "Cornering settings"
+msgstr "การตั้งค่าการเข้าโค้ง"
+
+msgid "Note: Lower values = sharper corners but slower speeds."
+msgstr "หมายเหตุ: ค่าที่ต่ำกว่า = มุมที่คมชัดขึ้นแต่ความเร็วที่ช้าลง"
+
+msgid ""
+"Marlin 2 Junction Deviation detected:\n"
+"To test Classic Jerk, set 'Maximum Junction Deviation' in Motion ability to "
+"0."
+msgstr ""
+"ตรวจพบส่วนเบี่ยงเบนทางแยก Marlin 2:\n"
+"หากต้องการทดสอบ Classic Jerk ให้ตั้งค่า 'Maximum Junction Deviation' "
+"ในความสามารถในการเคลื่อนไหวเป็น 0"
+
+msgid ""
+"Marlin 2 Classic Jerk detected:\n"
+"To test Junction Deviation, set 'Maximum Junction Deviation' in Motion "
+"ability to a value > 0."
+msgstr ""
+"ตรวจพบ Marlin 2 Classic Jerk:\n"
+"ในการทดสอบค่าเบี่ยงเบนของทางแยก ให้ตั้งค่า 'ค่าเบี่ยงเบนทางแยกสูงสุด' "
+"ในความสามารถในการเคลื่อนที่เป็นค่า > 0"
+
+msgid ""
+"RepRap detected: Jerk in mm/s.\n"
+"OrcaSlicer will convert the values to mm/min when necessary."
+msgstr ""
+"ตรวจพบ RepRap: การกระตุกในหน่วย mm/s\n"
+"OrcaSlicer จะแปลงค่าเป็น mm/min เมื่อจำเป็น"
+
+#, c-format, boost-format
+msgid ""
+"Please input valid values:\n"
+"(0 <= Cornering <= %s)"
+msgstr ""
+"กรุณากรอกค่าที่ถูกต้อง:\n"
+"(0 <= การเข้าโค้ง <= %s)"
+
+#, c-format, boost-format
+msgid "NOTE: High values may cause Layer shift (>%s)"
+msgstr "หมายเหตุ: ค่าที่สูงอาจทำให้เกิดการเลื่อนเลเยอร์ (>%s)"
+
+msgid "Flow Ratio Calibration"
+msgstr "การปรับเทียบอัตราส่วนการไหล"
+
+msgid "Calibration Test Type"
+msgstr "ประเภทการทดสอบการสอบเทียบ"
+
+msgid "Pass 1 (Coarse)"
+msgstr "ผ่าน 1 (หยาบ)"
+
+msgid "Pass 2 (Fine)"
+msgstr "ผ่าน 2 (ดี)"
+
+msgid "YOLO (Recommended)"
+msgstr "โยโล (แนะนำ)"
+
+msgid "YOLO (Perfectionist)"
+msgstr "YOLO (ผู้สมบูรณ์แบบ)"
+
+msgid "Top Surface Pattern"
+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"
+msgstr "ส่ง G-code ไปยังโฮสต์เครื่องพิมพ์"
+
+msgid "Upload to Printer Host with the following filename:"
+msgstr "อัปโหลดไปยังโฮสต์เครื่องพิมพ์ด้วยชื่อไฟล์ต่อไปนี้:"
+
+msgid "Use forward slashes ( / ) as a directory separator if needed."
+msgstr "ใช้เครื่องหมายทับ ( / ) เป็นตัวคั่นไดเรกทอรีหากจำเป็น"
+
+msgid "Upload to storage"
+msgstr "อัปโหลดไปยังที่เก็บข้อมูล"
+
+msgid "Switch to Device tab after upload."
+msgstr "สลับไปที่แท็บอุปกรณ์หลังจากอัปโหลด"
+
+#, c-format, boost-format
+msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
+msgstr "ชื่อไฟล์อัพโหลดไม่ได้ลงท้ายด้วย \"%s\" คุณต้องการดำเนินการต่อหรือไม่?"
+
+msgid "Upload"
+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"
+msgstr "คิวการอัพโหลดโฮสต์การพิมพ์"
+
+msgid "ID"
+msgstr "ID"
+
+msgid "Progress"
+msgstr "ความคืบหน้า"
+
+msgid "Host"
+msgstr "เจ้าภาพ"
+
+msgctxt "OfFile"
+msgid "Size"
+msgstr "ขนาด"
+
+msgid "Filename"
+msgstr "ชื่อไฟล์"
+
+msgid "Cancel selected"
+msgstr "ยกเลิกการเลือก"
+
+msgid "Show error message"
+msgstr "แสดงข้อความแสดงข้อผิดพลาด"
+
+msgid "Queued"
+msgstr "เข้าคิว"
+
+msgid "Uploading"
+msgstr "กำลังอัปโหลด"
+
+msgid "Canceling"
+msgstr "กำลังยกเลิก"
+
+msgid "Error uploading to print host"
+msgstr "เกิดข้อผิดพลาดในการอัปโหลดไปยังโฮสต์การพิมพ์"
+
+msgid ""
+"The selected bed type does not match the file. Please confirm before "
+"starting the print."
+msgstr "ประเภทฐานพิมพ์ที่เลือกไม่ตรงกับไฟล์ โปรดยืนยันก่อนเริ่มพิมพ์"
+
+msgid "Heated Bed Leveling"
+msgstr "การปรับระดับฐานพิมพ์อุ่น"
+
+msgid "Textured Build Plate (Side A)"
+msgstr "ฐานพิมพ์พื้นผิว (ด้าน A)"
+
+msgid "Smooth Build Plate (Side B)"
+msgstr "แผ่นเรียบ (ด้าน B)"
+
+#, 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"
+msgstr "ไม่สามารถดำเนินการบูลีนกับส่วนที่เลือกได้"
+
+msgid "Mesh Boolean"
+msgstr "บูลีนแบบตาข่าย"
+
+msgid "Union"
+msgstr "ยูเนี่ยน"
+
+msgid "Difference"
+msgstr "ความแตกต่าง"
+
+msgid "Intersection"
+msgstr "จุดตัด"
+
+msgid "Source Volume"
+msgstr "ปริมาณแหล่งที่มา"
+
+msgid "Tool Volume"
+msgstr "ปริมาณเครื่องมือ"
+
+msgid "Subtract from"
+msgstr "ลบออกจาก"
+
+msgid "Subtract with"
+msgstr "ลบด้วย"
+
+msgid "selected"
+msgstr "เลือกแล้ว"
+
+msgid "Part 1"
+msgstr "ส่วนที่ 1"
+
+msgid "Part 2"
+msgstr "ส่วนที่ 2"
+
+msgid "Delete input"
+msgstr "ลบอินพุต"
+
+msgid "Network Test"
+msgstr "ทดสอบเครือข่าย"
+
+msgid "Start Test Multi-Thread"
+msgstr "เริ่มการทดสอบแบบมัลติเธรด"
+
+msgid "Start Test Single-Thread"
+msgstr "เริ่มทดสอบเธรดเดี่ยว"
+
+msgid "Export Log"
+msgstr "บันทึกการส่งออก"
+
+msgid "OrcaSlicer Version:"
+msgstr "เวอร์ชัน OrcaSlicer:"
+
+msgid "System Version:"
+msgstr "เวอร์ชันของระบบ:"
+
+msgid "DNS Server:"
+msgstr "เซิร์ฟเวอร์ DNS:"
+
+msgid "Test OrcaSlicer (GitHub)"
+msgstr "ทดสอบ OrcaSlicer (GitHub)"
+
+msgid "Test OrcaSlicer (GitHub):"
+msgstr "ทดสอบ OrcaSlicer (GitHub):"
+
+msgid "Test bing.com"
+msgstr "ทดสอบ bing.com"
+
+msgid "Test bing.com:"
+msgstr "ทดสอบ bing.com:"
+
+msgid "Log Info"
+msgstr "ข้อมูลเข้าสู่ระบบ"
+
+msgid "Select filament preset"
+msgstr "เลือกค่าฟิลาเมนต์ที่ตั้งไว้ล่วงหน้า"
+
+msgid "Create Filament"
+msgstr "สร้างเส้นพลาสติก"
+
+msgid "Create Based on Current Filament"
+msgstr "สร้างตามเส้นพลาสติกปัจจุบัน"
+
+msgid "Copy Current Filament Preset "
+msgstr "คัดลอกค่าที่ตั้งไว้ล่วงหน้าของฟิลาเมนต์ปัจจุบัน"
+
+msgid "Basic Information"
+msgstr "ข้อมูลพื้นฐาน"
+
+msgid "Add Filament Preset under this filament"
+msgstr "เพิ่ม เส้นพลาสติก Preset ไว้ข้างใต้เส้นพลาสติกนี้"
+
+msgid "We could create the filament presets for your following printer:"
+msgstr "เราสามารถสร้างค่าที่ตั้งล่วงหน้าของเส้นพลาสติกสำหรับเครื่องพิมพ์ต่อไปนี้ของคุณ:"
+
+msgid "Select Vendor"
+msgstr "เลือกผู้จัดจำหน่าย"
+
+msgid "Input Custom Vendor"
+msgstr "ป้อนผู้ขายที่กำหนดเอง"
+
+msgid "Can't find vendor I want"
+msgstr "ไม่พบผู้ขายที่ฉันต้องการ"
+
+msgid "Select Type"
+msgstr "เลือกชนิด"
+
+msgid "Select Filament Preset"
+msgstr "เลือกพรีเซ็ตเส้นพลาสติก"
+
+msgid "Serial"
+msgstr "อนุกรม"
+
+msgid "e.g. Basic, Matte, Silk, Marble"
+msgstr "เช่น พื้นฐาน, เนื้อด้าน, ไหม, หินอ่อน"
+
+msgid "Filament Preset"
+msgstr "พรีเซ็ตเส้นพลาสติก"
+
+msgid "Create"
+msgstr "สร้าง"
+
+msgid "Vendor is not selected, please reselect vendor."
+msgstr "ไม่ได้เลือกผู้ขาย โปรดเลือกผู้ขายอีกครั้ง"
+
+msgid "Custom vendor is missing, please input custom vendor."
+msgstr "ผู้ขายที่กำหนดเองหายไป โปรดป้อนผู้ขายที่กำหนดเอง"
+
+msgid ""
+"\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments."
+msgstr "ไม่สามารถใช้ \"Bambu\" หรือ \"Generic\" เป็นผู้จำหน่ายเส้นพลาสติกสั่งทำพิเศษได้"
+
+msgid "Filament type is not selected, please reselect type."
+msgstr "ไม่ได้เลือกประเภทเส้นพลาสติก โปรดเลือกประเภทอีกครั้ง"
+
+msgid "Filament serial is not entered, please enter serial."
+msgstr "ไม่ได้ป้อนซีเรียลของฟิลาเมนต์ โปรดป้อนซีเรียล"
+
+msgid ""
+"There may be escape characters in the vendor or serial input of filament. "
+"Please delete and re-enter."
+msgstr "อาจมีอักขระหลีกในผู้ขายหรืออินพุตแบบอนุกรมของเส้นพลาสติก กรุณาลบและป้อนใหม่"
+
+msgid "All inputs in the custom vendor or serial are spaces. Please re-enter."
+msgstr "อินพุตทั้งหมดในผู้จำหน่ายแบบกำหนดเองหรือซีเรียลเป็นช่องว่าง กรุณาเข้าใหม่อีกครั้ง"
+
+msgid "The vendor cannot be a number. Please re-enter."
+msgstr "ผู้จัดจำหน่ายไม่สามารถเป็นตัวเลขได้ กรุณาเข้าใหม่อีกครั้ง"
+
+msgid ""
+"You have not selected a printer or preset yet. Please select at least one."
+msgstr "คุณยังไม่ได้เลือกเครื่องพิมพ์หรือค่าที่ตั้งไว้ล่วงหน้า โปรดเลือกอย่างน้อยหนึ่งรายการ"
+
+#, c-format, boost-format
+msgid ""
+"The Filament name %s you created already exists.\n"
+"If you continue, the preset created will be displayed with its full name. Do "
+"you want to continue?"
+msgstr ""
+"ชื่อเส้นพลาสติก %s ที่คุณสร้างมีอยู่แล้ว\n"
+"หากคุณดำเนินการต่อ ค่าที่ตั้งไว้ล่วงหน้าที่สร้างขึ้นจะแสดงพร้อมชื่อเต็ม คุณต้องการดำเนินการต่อหรือไม่?"
+
+msgid "Some existing presets have failed to be created, as follows:\n"
+msgstr "ไม่สามารถสร้างค่าที่ตั้งไว้ล่วงหน้าบางค่าได้ ดังนี้:\n"
+
+msgid ""
+"\n"
+"Do you want to rewrite it?"
+msgstr ""
+"\n"
+"คุณต้องการเขียนใหม่หรือไม่?"
+
+msgid ""
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
+"To add preset for more printers, please go to printer selection"
+msgstr ""
+"เราจะเปลี่ยนชื่อค่าที่ตั้งล่วงหน้าเป็น \"Vendor Type Serial @printer ที่คุณเลือก\"\n"
+"หากต้องการเพิ่มพรีเซ็ตสำหรับเครื่องพิมพ์เพิ่มไส้ใน โปรดไปที่การเลือกเครื่องพิมพ์"
+
+msgid "Create Printer/Nozzle"
+msgstr "สร้างเครื่องพิมพ์/หัวฉีด"
+
+msgid "Create Printer"
+msgstr "สร้างเครื่องพิมพ์"
+
+msgid "Create Nozzle for Existing Printer"
+msgstr "สร้างหัวฉีดสำหรับเครื่องพิมพ์ที่มีอยู่"
+
+msgid "Create from Template"
+msgstr "สร้างจากเทมเพลต"
+
+msgid "Create Based on Current Printer"
+msgstr "สร้างตามเครื่องพิมพ์ปัจจุบัน"
+
+msgid "Import Preset"
+msgstr "นำเข้าพรีเซ็ต"
+
+msgid "Create Type"
+msgstr "สร้างชนิด"
+
+msgid "The model was not found, please reselect vendor."
+msgstr "ไม่พบแบบจำลอง โปรดเลือกผู้จำหน่ายอีกครั้ง"
+
+msgid "Select Printer"
+msgstr "เลือกเครื่องพิมพ์"
+
+msgid "Select Model"
+msgstr "เลือกโมเดล"
+
+msgid "Input Custom Model"
+msgstr "ป้อนโมเดลที่กำหนดเอง"
+
+msgid "Can't find my printer model"
+msgstr "ไม่พบรุ่นเครื่องพิมพ์ของฉัน"
+
+msgid "Input Custom Nozzle Diameter"
+msgstr "ป้อนเส้นผ่านศูนย์กลางหัวฉีดแบบกำหนดเอง"
+
+msgid "Can't find my nozzle diameter"
+msgstr "ไม่พบเส้นผ่านศูนย์กลางหัวฉีดของฉัน"
+
+msgid "Printable Space"
+msgstr "พื้นที่ที่สามารถพิมพ์ได้"
+
+msgid "Hot Bed STL"
+msgstr "ฐานพิมพ์ร้อน STL"
+
+msgid "Hot Bed SVG"
+msgstr "ฐานพิมพ์ร้อน SVG"
+
+msgid "Max Print Height"
+msgstr "ความสูงการพิมพ์สูงสุด"
+
+#, c-format, boost-format
+msgid "The file exceeds %d MB, please import again."
+msgstr "ไฟล์มีขนาดเกิน %d MB โปรดนำเข้าอีกครั้ง"
+
+msgid "Exception in obtaining file size, please import again."
+msgstr "ข้อยกเว้นในการรับขนาดไฟล์ โปรดนำเข้าอีกครั้ง"
+
+msgid "Preset path was not found, please reselect vendor."
+msgstr "ไม่พบเส้นทางที่กำหนดไว้ล่วงหน้า โปรดเลือกผู้ขายอีกครั้ง"
+
+msgid "The printer model was not found, please reselect."
+msgstr "ไม่พบรุ่นเครื่องพิมพ์ โปรดเลือกใหม่"
+
+msgid "The nozzle diameter was not found, please reselect."
+msgstr "ไม่พบเส้นผ่านศูนย์กลางของหัวฉีด โปรดเลือกใหม่"
+
+msgid "The printer preset was not found, please reselect."
+msgstr "ไม่พบค่าที่ตั้งไว้ล่วงหน้าของเครื่องพิมพ์ โปรดเลือกใหม่"
+
+msgid "Printer Preset"
+msgstr "พรีเซ็ตเครื่องพิมพ์"
+
+msgid "Filament Preset Template"
+msgstr "เทมเพลตที่ตั้งไว้ล่วงหน้าของเส้นพลาสติก"
+
+msgid "Deselect All"
+msgstr "ยกเลิกการเลือกทั้งหมด"
+
+msgid "Process Preset Template"
+msgstr "ประมวลผลเทมเพลตที่กำหนดไว้ล่วงหน้า"
+
+msgid ""
+"You have not yet chosen which printer preset to create based on. Please "
+"choose the vendor and model of the printer"
+msgstr "คุณยังไม่ได้เลือกพรีเซ็ตเครื่องพิมพ์ที่จะใช้สร้าง โปรดเลือกผู้จำหน่ายและรุ่นของเครื่องพิมพ์"
+
+msgid ""
+"You have entered an illegal input in the printable area section on the first "
+"page. Please check before creating it."
+msgstr ""
+"คุณได้ป้อนข้อมูลที่ไม่ถูกต้องในส่วนพื้นที่ที่สามารถพิมพ์ได้ในหน้าแรก โปรดตรวจสอบก่อนที่จะสร้างมัน"
+
+msgid ""
+"The printer preset you created already has a preset with the same name. Do "
+"you want to overwrite it?\n"
+"\tYes: Overwrite the printer preset with the same name, and filament and "
+"process presets with the same preset name will be recreated \n"
+"and filament and process presets without the same preset name will be "
+"reserve.\n"
+"\tCancel: Do not create a preset, return to the creation interface."
+msgstr ""
+"ค่าที่ตั้งไว้ล่วงหน้าของเครื่องพิมพ์ที่คุณสร้างมีการตั้งค่าล่วงหน้าที่มีชื่อเดียวกันอยู่แล้ว "
+"คุณต้องการเขียนทับมันหรือไม่?\n"
+"\tใช่: เขียนทับพรีเซ็ตเครื่องพิมพ์ด้วยชื่อเดียวกัน "
+"จากนั้นฟิลาเมนต์และพรีเซ็ตกระบวนการที่มีชื่อพรีเซ็ตเดียวกันจะถูกสร้างขึ้นใหม่ \n"
+"และค่าที่ตั้งล่วงหน้าของเส้นพลาสติกและกระบวนการที่ไม่มีชื่อที่ตั้งไว้ล่วงหน้าเหมือนกันจะถูกสงวนไว้\n"
+"\tยกเลิก: อย่าสร้างค่าที่ตั้งล่วงหน้า กลับไปที่อินเทอร์เฟซการสร้าง"
+
+msgid "You need to select at least one filament preset."
+msgstr "คุณต้องเลือกค่าฟิลาเมนต์ที่ตั้งไว้ล่วงหน้าอย่างน้อยหนึ่งรายการ"
+
+msgid "You need to select at least one process preset."
+msgstr "คุณต้องเลือกการตั้งค่าล่วงหน้าของกระบวนการอย่างน้อยหนึ่งรายการ"
+
+msgid "Create filament presets failed. As follows:\n"
+msgstr "การสร้างค่าที่ตั้งไว้ล่วงหน้าของเส้นพลาสติกล้มเหลว ดังนี้:\n"
+
+msgid "Create process presets failed. As follows:\n"
+msgstr "สร้างการตั้งค่าล่วงหน้าของกระบวนการล้มเหลว ดังนี้:\n"
+
+msgid "Vendor was not found, please reselect."
+msgstr "ไม่พบผู้ขาย โปรดเลือกใหม่"
+
+msgid "Current vendor has no models, please reselect."
+msgstr "ผู้จำหน่ายปัจจุบันไม่มีรุ่น โปรดเลือกใหม่"
+
+msgid ""
+"You have not selected the vendor and model or entered the custom vendor and "
+"model."
+msgstr "คุณยังไม่ได้เลือกผู้จำหน่ายและรุ่น หรือป้อนผู้จำหน่ายและรุ่นที่กำหนดเอง"
+
+msgid ""
+"There may be escape characters in the custom printer vendor or model. Please "
+"delete and re-enter."
+msgstr "อาจมีอักขระหลีกในผู้จำหน่ายเครื่องพิมพ์แบบกำหนดเองหรือรุ่น กรุณาลบและป้อนใหม่"
+
+msgid ""
+"All inputs in the custom printer vendor or model are spaces. Please re-enter."
+msgstr "อินพุตทั้งหมดในผู้จำหน่ายเครื่องพิมพ์แบบกำหนดเองหรือรุ่นคือช่องว่าง กรุณาเข้าใหม่อีกครั้ง"
+
+msgid "Please check bed printable shape and origin input."
+msgstr "โปรดตรวจสอบรูปร่างที่สามารถพิมพ์ฐานพิมพ์ได้และอินพุตจุดเริ่มต้น"
+
+msgid ""
+"You have not yet selected the printer to replace the nozzle, please choose."
+msgstr "คุณยังไม่ได้เลือกเครื่องพิมพ์ที่จะเปลี่ยนหัวฉีด โปรดเลือก"
+
+msgid "The entered nozzle diameter is invalid, please re-enter:\n"
+msgstr "เส้นผ่านศูนย์กลางหัวฉีดที่ป้อนไม่ถูกต้อง โปรดป้อนใหม่:\n"
+
+msgid ""
+"The system preset does not allow creation. \n"
+"Please re-enter the printer model or nozzle diameter."
+msgstr ""
+"ระบบที่ตั้งไว้ล่วงหน้าไม่อนุญาตให้สร้าง \n"
+"กรุณากรอกรุ่นเครื่องพิมพ์หรือเส้นผ่านศูนย์กลางหัวฉีดอีกครั้ง"
+
+msgid ""
+"\n"
+"\n"
+"Available nozzle profiles for this printer:"
+msgstr ""
+"\n"
+"โปรไฟล์หัวฉีดที่ใช้ได้สำหรับเครื่องพิมพ์นี้:"
+
+msgid ""
+"\n"
+"\n"
+"Choose YES to switch existing preset:"
+msgstr ""
+"\n"
+"เลือก YES เพื่อสลับค่าที่ตั้งไว้ล่วงหน้าที่มีอยู่:"
+
+msgid "Printer Created Successfully"
+msgstr "สร้างเครื่องพิมพ์สำเร็จแล้ว"
+
+msgid "Filament Created Successfully"
+msgstr "สร้างเส้นพลาสติกสำเร็จแล้ว"
+
+msgid "Printer Created"
+msgstr "สร้างเครื่องพิมพ์แล้ว"
+
+msgid "Please go to printer settings to edit your presets"
+msgstr "โปรดไปที่การตั้งค่าเครื่องพิมพ์เพื่อแก้ไขค่าที่ตั้งล่วงหน้าของคุณ"
+
+msgid "Filament Created"
+msgstr "สร้างเส้นพลาสติกแล้ว"
+
+msgid ""
+"Please go to filament setting to edit your presets if you need.\n"
+"Please note that nozzle temperature, hot bed temperature, and maximum "
+"volumetric speed has a significant impact on printing quality. Please set "
+"them carefully."
+msgstr ""
+"โปรดไปที่การตั้งค่าฟิลาเมนต์เพื่อแก้ไขค่าที่ตั้งล่วงหน้าของคุณหากคุณต้องการ\n"
+"โปรดทราบว่าอุณหภูมิหัวฉีด อุณหภูมิฐานพิมพ์ร้อน "
+"และความเร็วปริมาตรสูงสุดมีผลกระทบอย่างมากต่อคุณภาพการพิมพ์ โปรดตั้งค่าอย่างระมัดระวัง"
+
+msgid ""
+"\n"
+"\n"
+"Orca has detected that your user presets synchronization function is not "
+"enabled, which may result in unsuccessful Filament settings on the Device "
+"page.\n"
+"Click \"Sync user presets\" to enable the synchronization function."
+msgstr ""
+"\n"
+"Orca ตรวจพบว่าไม่ได้เปิดใช้งานฟังก์ชันการซิงโครไนซ์ที่ตั้งไว้ล่วงหน้าของผู้ใช้ของคุณ "
+"ซึ่งอาจส่งผลให้การตั้งค่า เส้นพลาสติก บนหน้าอุปกรณ์ไม่สำเร็จ\n"
+"คลิก \"ซิงค์การตั้งค่าล่วงหน้าของผู้ใช้\" เพื่อเปิดใช้งานฟังก์ชันการซิงโครไนซ์"
+
+msgid "Printer Setting"
+msgstr "การตั้งค่าเครื่องพิมพ์"
+
+msgid "Printer config bundle(.orca_printer)"
+msgstr "ชุดกำหนดค่าเครื่องพิมพ์ (.orca_printer)"
+
+msgid "Filament bundle(.orca_filament)"
+msgstr "มัดเส้นพลาสติก(.orca_filament)"
+
+msgid "Printer presets(.zip)"
+msgstr "ค่าที่ตั้งล่วงหน้าของเครื่องพิมพ์ (.zip)"
+
+msgid "Filament presets(.zip)"
+msgstr "การตั้งค่าฟิลาเมนต์ล่วงหน้า (.zip)"
+
+msgid "Process presets(.zip)"
+msgstr "กระบวนการที่ตั้งไว้ล่วงหน้า (.zip)"
+
+msgid "initialize fail"
+msgstr "การเริ่มต้นล้มเหลว"
+
+msgid "add file fail"
+msgstr "เพิ่มไฟล์ล้มเหลว"
+
+msgid "add bundle structure file fail"
+msgstr "เพิ่มไฟล์โครงสร้างบันเดิลล้มเหลว"
+
+msgid "finalize fail"
+msgstr "จบความล้มเหลว"
+
+msgid "open zip written fail"
+msgstr "การเขียน zip แบบเปิดล้มเหลว"
+
+msgid "Export successful"
+msgstr "ส่งออกสำเร็จ"
+
+#, c-format, boost-format
+msgid ""
+"The '%s' folder already exists in the current directory. Do you want to "
+"clear it and rebuild it.\n"
+"If not, a time suffix will be added, and you can modify the name after "
+"creation."
+msgstr ""
+"โฟลเดอร์ '%s' มีอยู่แล้วในไดเร็กทอรีปัจจุบัน คุณต้องการล้างมันและสร้างใหม่หรือไม่\n"
+"หากไม่เป็นเช่นนั้น ระบบจะเพิ่มส่วนต่อท้ายเวลา และคุณสามารถแก้ไขชื่อได้หลังการสร้าง"
+
+#, c-format, boost-format
+msgid ""
+"The file: %s\n"
+"may have been opened by another program.\n"
+"Please close it and try again."
+msgstr ""
+"ไฟล์: %s\n"
+"อาจถูกเปิดโดยโปรแกรมอื่น\n"
+"กรุณาปิดและลองอีกครั้ง"
+
+msgid ""
+"Printer and all the filament and process presets that belongs to the "
+"printer.\n"
+"Can be shared with others."
+msgstr ""
+"เครื่องพิมพ์และเส้นพลาสติกและค่าที่ตั้งล่วงหน้ากระบวนการทั้งหมดที่เป็นของเครื่องพิมพ์\n"
+"สามารถแบ่งปันกับผู้อื่นได้"
+
+msgid ""
+"User's filament preset set.\n"
+"Can be shared with others."
+msgstr ""
+"ชุดพรีเซ็ตเส้นพลาสติกของผู้ใช้\n"
+"สามารถแบ่งปันกับผู้อื่นได้"
+
+msgid ""
+"Only display printer names with changes to printer, filament, and process "
+"presets."
+msgstr ""
+"แสดงเฉพาะชื่อเครื่องพิมพ์ที่มีการเปลี่ยนแปลงเครื่องพิมพ์ เส้นพลาสติก "
+"และการตั้งค่าล่วงหน้าของกระบวนการ"
+
+msgid "Only display the filament names with changes to filament presets."
+msgstr "แสดงเฉพาะชื่อเส้นพลาสติกที่มีการเปลี่ยนแปลงการตั้งค่าล่วงหน้าของเส้นพลาสติก"
+
+msgid ""
+"Only printer names with user printer presets will be displayed, and each "
+"preset you choose will be exported as a zip."
+msgstr ""
+"เฉพาะชื่อเครื่องพิมพ์ที่มีการตั้งค่าเครื่องพิมพ์ล่วงหน้าของผู้ใช้เท่านั้นที่จะแสดง "
+"และการตั้งค่าล่วงหน้าแต่ละรายการที่คุณเลือกจะถูกส่งออกเป็นไฟล์ ZIP"
+
+msgid ""
+"Only the filament names with user filament presets will be displayed, \n"
+"and all user filament presets in each filament name you select will be "
+"exported as a zip."
+msgstr ""
+"เฉพาะชื่อเส้นพลาสติกที่มีการตั้งค่าล่วงหน้าของเส้นพลาสติกผู้ใช้เท่านั้นที่จะถูกแสดง \n"
+"และค่าฟิลาเมนต์ของผู้ใช้ทั้งหมดที่กำหนดไว้ล่วงหน้าในแต่ละชื่อฟิลาเมนต์ที่คุณเลือกจะถูกส่งออกเป็นไฟล์ "
+"ZIP"
+
+msgid ""
+"Only printer names with changed process presets will be displayed, \n"
+"and all user process presets in each printer name you select will be "
+"exported as a zip."
+msgstr ""
+"เฉพาะชื่อเครื่องพิมพ์ที่มีการตั้งค่าล่วงหน้าของกระบวนการที่เปลี่ยนแปลงเท่านั้นที่จะปรากฏขึ้น \n"
+"และกระบวนการของผู้ใช้ที่ตั้งไว้ล่วงหน้าในชื่อเครื่องพิมพ์แต่ละเครื่องที่คุณเลือกจะถูกส่งออกเป็นไฟล์ ZIP"
+
+msgid "Please select at least one printer or filament."
+msgstr "โปรดเลือกเครื่องพิมพ์หรือเส้นพลาสติกอย่างน้อยหนึ่งรายการ"
+
+msgid "Please select a type you want to export"
+msgstr "โปรดเลือกประเภทที่คุณต้องการส่งออก"
+
+msgid "Failed to create temporary folder, please try Export Configs again."
+msgstr "ไม่สามารถสร้างโฟลเดอร์ชั่วคราวได้ โปรดลองส่งออกการกำหนดค่าอีกครั้ง"
+
+msgid "Edit Filament"
+msgstr "แก้ไขเส้นพลาสติก"
+
+msgid "Filament presets under this filament"
+msgstr "เส้นพลาสติกที่ตั้งไว้ล่วงหน้าภายใต้เส้นพลาสติกนี้"
+
+msgid ""
+"Note: If the only preset under this filament is deleted, the filament will "
+"be deleted after exiting the dialog."
+msgstr ""
+"หมายเหตุ: หากลบค่าที่กำหนดไว้ล่วงหน้าภายใต้เส้นพลาสติกนี้ "
+"เส้นพลาสติกจะถูกลบหลังจากออกจากกล่องโต้ตอบ"
+
+msgid "Presets inherited by other presets cannot be deleted"
+msgstr "ค่าที่ตั้งล่วงหน้าที่สืบทอดมาจากค่าที่ตั้งล่วงหน้าอื่นไม่สามารถลบได้"
+
+msgid "The following presets inherits this preset."
+msgid_plural "The following preset inherits this preset."
+msgstr[0] "พรีเซ็ตต่อไปนี้สืบทอดจากพรีเซ็ตนี้"
+
+msgid "Delete Preset"
+msgstr "ลบพรีเซ็ต"
+
+msgid "Are you sure to delete the selected preset?"
+msgstr "คุณแน่ใจหรือไม่ว่าต้องการลบค่าที่ตั้งล่วงหน้าที่เลือกไว้"
+
+msgid "Delete preset"
+msgstr "พรีเซ็ตลบ"
+
+msgid "+ Add Preset"
+msgstr "+ เพิ่มพรีเซ็ต"
+
+msgid ""
+"All the filament presets belong to this filament would be deleted.\n"
+"If you are using this filament on your printer, please reset the filament "
+"information for that slot."
+msgstr ""
+"ค่าที่ตั้งไว้ล่วงหน้าของเส้นพลาสติกทั้งหมดที่เป็นของเส้นพลาสติกนี้จะถูกลบ\n"
+"หากคุณใช้เส้นพลาสติกนี้กับเครื่องพิมพ์ของคุณ โปรดรีเซ็ตข้อมูลเส้นพลาสติกสำหรับช่องนั้น"
+
+msgid "Delete filament"
+msgstr "ลบเส้นพลาสติก"
+
+msgid "Add Preset"
+msgstr "เพิ่มพรีเซ็ต"
+
+msgid "Add preset for new printer"
+msgstr "เพิ่มค่าที่ตั้งล่วงหน้าสำหรับเครื่องพิมพ์ใหม่"
+
+msgid "Copy preset from filament"
+msgstr "คัดลอกพรีเซ็ตจากฟิลาเมนต์"
+
+msgid "The filament choice not find filament preset, please reselect it"
+msgstr "ตัวเลือกเส้นพลาสติกไม่พบการตั้งค่าเส้นพลาสติกล่วงหน้า โปรดเลือกอีกครั้ง"
+
+msgid "[Delete Required]"
+msgstr "[จำเป็นต้องลบ]"
+
+msgid "Edit Preset"
+msgstr "แก้ไขพรีเซ็ต"
+
+msgid "For more information, please check out Wiki"
+msgstr "สำหรับข้อมูลเพิ่มเติม โปรดดูที่ วิกิ"
+
+msgid "Wiki"
+msgstr "วิกิ"
+
+msgid "Collapse"
+msgstr "ทรุด"
+
+msgid "Daily Tips"
+msgstr "เคล็ดลับรายวัน"
+
+msgid ""
+"The printer nozzle information has not been set.\n"
+"Please configure it before proceeding with the calibration."
+msgstr ""
+"ยังไม่ได้ตั้งค่าข้อมูลหัวฉีดของเครื่องพิมพ์\n"
+"โปรดกำหนดค่าก่อนดำเนินการสอบเทียบต่อ"
+
+msgid ""
+"The nozzle type does not match the actual printer nozzle type.\n"
+"Please click the Sync button above and restart the calibration."
+msgstr ""
+"ประเภทหัวฉีดไม่ตรงกับประเภทหัวฉีดของเครื่องพิมพ์จริง\n"
+"โปรดคลิกปุ่มซิงค์ด้านบนแล้วเริ่มการปรับเทียบใหม่"
+
+#, c-format, boost-format
+msgid "Printing %1s material with %2s nozzle may cause nozzle damage."
+msgstr "การพิมพ์วัสดุ %1s ด้วยหัวฉีด %2s อาจทำให้หัวฉีดเสียหายได้"
+
+msgid "Need select printer"
+msgstr "ต้องการเครื่องพิมพ์ที่เลือก"
+
+msgid "The start, end or step is not valid value."
+msgstr "จุดเริ่มต้น สิ้นสุด หรือขั้นตอนไม่ใช่ค่าที่ถูกต้อง"
+
+msgid ""
+"The number of printer extruders and the printer selected for calibration "
+"does not match."
+msgstr "จำนวนชุดดันเส้นของเครื่องพิมพ์และเครื่องพิมพ์ที่เลือกสำหรับการสอบเทียบไม่ตรงกัน"
+
+#, c-format, boost-format
+msgid ""
+"The nozzle diameter of %s extruder is 0.2mm which does not support automatic "
+"Flow Dynamics calibration."
+msgstr ""
+"เส้นผ่านศูนย์กลางหัวฉีดของชุดดันเส้น %s คือ 0.2 มม. ซึ่งไม่รองรับการสอบเทียบ Flow Dynamics "
+"อัตโนมัติ"
+
+#, c-format, boost-format
+msgid ""
+"The currently selected nozzle diameter of %s extruder does not match the "
+"actual nozzle diameter.\n"
+"Please click the Sync button above and restart the calibration."
+msgstr ""
+"เส้นผ่านศูนย์กลางหัวฉีดที่เลือกในปัจจุบันของชุดดันเส้น %s ไม่ตรงกับเส้นผ่านศูนย์กลางหัวฉีดจริง\n"
+"โปรดคลิกปุ่มซิงค์ด้านบนแล้วเริ่มการปรับเทียบใหม่"
+
+msgid ""
+"The nozzle diameter does not match the actual printer nozzle diameter.\n"
+"Please click the Sync button above and restart the calibration."
+msgstr ""
+"เส้นผ่านศูนย์กลางหัวฉีดไม่ตรงกับเส้นผ่านศูนย์กลางหัวฉีดของเครื่องพิมพ์จริง\n"
+"โปรดคลิกปุ่มซิงค์ด้านบนแล้วเริ่มการปรับเทียบใหม่"
+
+#, c-format, boost-format
+msgid ""
+"The currently selected nozzle type of %s extruder does not match the actual "
+"printer nozzle type.\n"
+"Please click the Sync button above and restart the calibration."
+msgstr ""
+"ประเภทหัวฉีดที่เลือกในปัจจุบันของชุดดันเส้น %s ไม่ตรงกับประเภทหัวฉีดของเครื่องพิมพ์จริง\n"
+"โปรดคลิกปุ่มซิงค์ด้านบนแล้วเริ่มการปรับเทียบใหม่"
+
+msgid ""
+"Unable to calibrate: maybe because the set calibration value range is too "
+"large, or the step is too small"
+msgstr ""
+"ไม่สามารถสอบเทียบ: อาจเป็นเพราะช่วงค่าการสอบเทียบที่ตั้งไว้ใหญ่เกินไป หรือขั้นตอนเล็กเกินไป"
+
+msgid "Physical Printer"
+msgstr "เครื่องพิมพ์ทางกายภาพ"
+
+msgid "Print Host upload"
+msgstr "อัพโหลดโฮสต์การพิมพ์"
+
+msgid ""
+"Select the network agent implementation for printer communication. Available "
+"agents are registered at startup."
+msgstr ""
+"เลือกการใช้งานตัวแทนเครือข่ายสำหรับการสื่อสารของเครื่องพิมพ์ "
+"ตัวแทนที่มีอยู่จะได้รับการลงทะเบียนเมื่อเริ่มต้น"
+
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
+msgid "Could not get a valid Printer Host reference"
+msgstr "ไม่สามารถรับข้อมูลอ้างอิงโฮสต์เครื่องพิมพ์ที่ถูกต้อง"
+
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
+msgid "Success!"
+msgstr "สำเร็จ!"
+
+msgid "Are you sure to log out?"
+msgstr "คุณแน่ใจหรือว่าจะออกจากระบบ?"
+
+msgid "View print host webui in Device tab"
+msgstr "ดู webui โฮสต์การพิมพ์ในแท็บอุปกรณ์"
+
+msgid "Replace the BambuLab's device tab with print host webui"
+msgstr "แทนที่แท็บอุปกรณ์ของ BambuLab ด้วย webui โฮสต์การพิมพ์"
+
+msgid ""
+"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
+"signed certificate."
+msgstr ""
+"ไฟล์ HTTPS CA เป็นทางเลือก จำเป็นเฉพาะเมื่อคุณใช้ HTTPS กับใบรับรองที่ลงนามด้วยตนเอง"
+
+msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*"
+msgstr "ไฟล์ใบรับรอง (*.crt, *.pem)|*.crt;*.pem|ไฟล์ทั้งหมด|*.*"
+
+msgid "Open CA certificate file"
+msgstr "เปิดไฟล์ใบรับรอง CA"
+
+#, c-format, boost-format
+msgid ""
+"On this system, %s uses HTTPS certificates from the system Certificate Store "
+"or Keychain."
+msgstr "บนระบบนี้ %s ใช้ใบรับรอง HTTPS จากระบบที่จัดเก็บใบรับรองหรือพวงกุญแจ"
+
+msgid ""
+"To use a custom CA file, please import your CA file into Certificate Store / "
+"Keychain."
+msgstr ""
+"หากต้องการใช้ไฟล์ CA ที่กำหนดเอง โปรดนำเข้าไฟล์ CA ของคุณไปที่ Certificate Store / "
+"Keychain"
+
+msgid "Login/Test"
+msgstr "เข้าสู่ระบบ/ทดสอบ"
+
+msgid "Connection to printers connected via the print host failed."
+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
+msgid "Mismatched type of print host: %s"
+msgstr "ประเภทของโฮสต์การพิมพ์ไม่ตรงกัน: %s"
+
+msgid "Connection to AstroBox is working correctly."
+msgstr "การเชื่อมต่อกับ AstroBox ทำงานอย่างถูกต้อง"
+
+msgid "Could not connect to AstroBox"
+msgstr "ไม่สามารถเชื่อมต่อกับ AstroBox"
+
+msgid "Note: AstroBox version 1.1.0 or higher is required."
+msgstr "หมายเหตุ: ต้องใช้ AstroBox เวอร์ชัน 1.1.0 หรือสูงกว่า"
+
+msgid "Connection to Duet is working correctly."
+msgstr "การเชื่อมต่อกับ Duet ทำงานอย่างถูกต้อง"
+
+msgid "Could not connect to Duet"
+msgstr "ไม่สามารถเชื่อมต่อกับ Duet ได้"
+
+msgid "Unknown error occurred"
+msgstr "เกิดข้อผิดพลาดที่ไม่รู้จัก"
+
+msgid "Wrong password"
+msgstr "รหัสผ่านผิด"
+
+msgid "Could not get resources to create a new connection"
+msgstr "ไม่สามารถรับทรัพยากรเพื่อสร้างการเชื่อมต่อใหม่"
+
+msgid "Upload not enabled on FlashAir card."
+msgstr "ไม่ได้เปิดใช้งานการอัปโหลดบนการ์ด FlashAir"
+
+msgid "Connection to FlashAir is working correctly and upload is enabled."
+msgstr "การเชื่อมต่อกับ FlashAir ทำงานอย่างถูกต้อง และเปิดใช้งานการอัปโหลดแล้ว"
+
+msgid "Could not connect to FlashAir"
+msgstr "ไม่สามารถเชื่อมต่อกับ FlashAir ได้"
+
+msgid ""
+"Note: FlashAir with firmware 2.00.02 or newer and activated upload function "
+"is required."
+msgstr ""
+"หมายเหตุ: จำเป็นต้องมี FlashAir ที่มีเฟิร์มแวร์ 2.00.02 หรือใหม่กว่า "
+"และเปิดใช้งานฟังก์ชันอัพโหลดแล้ว"
+
+msgid "Connection to MKS is working correctly."
+msgstr "การเชื่อมต่อกับ MKS ทำงานอย่างถูกต้อง"
+
+msgid "Could not connect to MKS"
+msgstr "ไม่สามารถเชื่อมต่อกับ MKS"
+
+msgid "Connection to OctoPrint is working correctly."
+msgstr "การเชื่อมต่อกับ OctoPrint ทำงานอย่างถูกต้อง"
+
+msgid "Could not connect to OctoPrint"
+msgstr "ไม่สามารถเชื่อมต่อกับ OctoPrint"
+
+msgid "Note: OctoPrint version 1.1.0 or higher is required."
+msgstr "หมายเหตุ: ต้องใช้ OctoPrint เวอร์ชัน 1.1.0 หรือสูงกว่า"
+
+msgid "Connection to Prusa SL1 / SL1S is working correctly."
+msgstr "การเชื่อมต่อกับ Prusa SL1 / SL1S ทำงานอย่างถูกต้อง"
+
+msgid "Could not connect to Prusa SLA"
+msgstr "ไม่สามารถเชื่อมต่อกับ Prusa SLA"
+
+msgid "Connection to PrusaLink is working correctly."
+msgstr "การเชื่อมต่อกับ PrusaLink ทำงานอย่างถูกต้อง"
+
+msgid "Could not connect to PrusaLink"
+msgstr "ไม่สามารถเชื่อมต่อกับ PrusaLink ได้"
+
+msgid "Storages found"
+msgstr "พบที่เก็บข้อมูล"
+
+#. TRN %1% = storage path
+#, boost-format
+msgid "%1% : read only"
+msgstr "%1% : อ่านอย่างเดียว"
+
+#. TRN %1% = storage path
+#, boost-format
+msgid "%1% : no free space"
+msgstr "%1% : ไม่มีพื้นที่ว่าง"
+
+#. TRN %1% = host
+#, boost-format
+msgid "Upload has failed. There is no suitable storage found at %1%."
+msgstr "การอัปโหลดล้มเหลว ไม่พบที่เก็บข้อมูลที่เหมาะสมที่ %1%"
+
+msgid "Connection to Prusa Connect is working correctly."
+msgstr "การเชื่อมต่อกับ Prusa Connect ทำงานอย่างถูกต้อง"
+
+msgid "Could not connect to Prusa Connect"
+msgstr "ไม่สามารถเชื่อมต่อกับ Prusa Connect"
+
+msgid "Connection to Repetier is working correctly."
+msgstr "การเชื่อมต่อกับ Repetier ทำงานอย่างถูกต้อง"
+
+msgid "Could not connect to Repetier"
+msgstr "ไม่สามารถเชื่อมต่อกับ Repetier ได้"
+
+msgid "Note: Repetier version 0.90.0 or higher is required."
+msgstr "หมายเหตุ: ต้องใช้ Repetier เวอร์ชัน 0.90.0 หรือสูงกว่า"
+
+#, boost-format
+msgid ""
+"HTTP status: %1%\n"
+"Message body: \"%2%\""
+msgstr ""
+"สถานะ HTTP: %1%\n"
+"เนื้อหาข้อความ: \"%2%\""
+
+#, boost-format
+msgid ""
+"Parsing of host response failed.\n"
+"Message body: \"%1%\"\n"
+"Error: \"%2%\""
+msgstr ""
+"การแยกวิเคราะห์การตอบสนองของโฮสต์ล้มเหลว\n"
+"เนื้อหาข้อความ: \"%1%\"\n"
+"ข้อผิดพลาด: \"%2%\""
+
+#, boost-format
+msgid ""
+"Enumeration of host printers failed.\n"
+"Message body: \"%1%\"\n"
+"Error: \"%2%\""
+msgstr ""
+"การแจงนับเครื่องพิมพ์โฮสต์ล้มเหลว\n"
+"เนื้อหาข้อความ: \"%1%\"\n"
+"ข้อผิดพลาด: \"%2%\""
+
+msgid ""
+"It has a small layer height. This results in almost negligible layer lines "
+"and high print quality. It is suitable for most printing cases."
+msgstr ""
+"มีความสูงของชั้นเล็ก ๆ ส่งผลให้เส้นชั้นแทบไม่มีความสำคัญและคุณภาพการพิมพ์สูง "
+"เหมาะสำหรับกรณีการพิมพ์ส่วนใหญ่"
+
+msgid ""
+"Compared with the default profile of a 0.2 mm nozzle, it has lower speeds "
+"and acceleration, and the sparse infill pattern is Gyroid. This results in "
+"much higher print quality but a much longer print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.2 มม. จะมีความเร็วและความเร่งที่ต่ำกว่า "
+"และรูปแบบไส้ในแบบโปร่งคือ Gyroid ส่งผลให้คุณภาพการพิมพ์สูงขึ้นมาก แต่ใช้เวลาพิมพ์นานกว่ามาก"
+
+msgid ""
+"Compared with the default profile of a 0.2 mm nozzle, it has a slightly "
+"bigger layer height. This results in almost negligible layer lines and "
+"slightly shorter print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.2 มม. จะมีความสูงของชั้นที่ใหญ่กว่าเล็กน้อย "
+"ส่งผลให้เส้นเลเยอร์แทบไม่มีนัยสำคัญและใช้เวลาพิมพ์สั้นลงเล็กน้อย"
+
+msgid ""
+"Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer "
+"height. This results in slightly visible layer lines but shorter print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.2 มม. จะมีความสูงของชั้นที่ใหญ่กว่า "
+"ส่งผลให้มองเห็นเส้นเลเยอร์ได้เล็กน้อยแต่ใช้เวลาพิมพ์สั้นลง"
+
+msgid ""
+"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
+"height. This results in almost invisible layer lines and higher print "
+"quality but longer print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.2 มม. จะมีความสูงของชั้นที่เล็กกว่า "
+"ส่งผลให้มีเส้นชั้นที่แทบจะมองไม่เห็นและคุณภาพการพิมพ์ที่สูงขึ้นแต่ใช้เวลาพิมพ์นานขึ้น"
+
+msgid ""
+"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
+"lines, lower speeds and acceleration, and the sparse infill pattern is "
+"Gyroid. This results in almost invisible layer lines and much higher print "
+"quality but much longer print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.2 มม. จะมีเส้นชั้นที่เล็กกว่า "
+"ความเร็วและความเร่งที่ต่ำกว่า และรูปแบบไส้ในแบบโปร่งคือ Gyroid "
+"ส่งผลให้มีเส้นชั้นที่แทบจะมองไม่เห็นและคุณภาพการพิมพ์ที่สูงขึ้นมาก แต่ใช้เวลาพิมพ์นานกว่ามาก"
+
+msgid ""
+"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
+"height. This results in minimal layer lines and higher print quality but "
+"longer print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.2 มม. จะมีความสูงของชั้นที่เล็กกว่า "
+"ส่งผลให้มีเส้นชั้นน้อยที่สุดและคุณภาพการพิมพ์สูงขึ้นแต่ใช้เวลาพิมพ์นานขึ้น"
+
+msgid ""
+"Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer "
+"lines, lower speeds and acceleration, and the sparse infill pattern is "
+"Gyroid. This results in minimal layer lines and much higher print quality "
+"but much longer print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.2 มม. จะมีเส้นชั้นที่เล็กกว่า "
+"ความเร็วและความเร่งที่ต่ำกว่า และรูปแบบไส้ในแบบโปร่งคือ Gyroid "
+"ส่งผลให้มีเส้นชั้นน้อยที่สุดและคุณภาพการพิมพ์สูงขึ้นมาก แต่ใช้เวลาพิมพ์นานกว่ามาก"
+
+msgid ""
+"It has a normal layer height. This results in average layer lines and print "
+"quality. It is suitable for most printing cases."
+msgstr ""
+"มีความสูงของชั้นปกติ ซึ่งส่งผลให้ได้เส้นชั้นเฉลี่ยและคุณภาพการพิมพ์ เหมาะสำหรับกรณีการพิมพ์ส่วนใหญ่"
+
+msgid ""
+"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops "
+"and a higher sparse infill density. This results in higher print strength "
+"but more filament consumption and longer print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.4 มม. "
+"จะมีห่วงติดผนังมากกว่าและมีความหนาแน่นของช่องไส้ในที่เบากว่า "
+"ส่งผลให้มีความแข็งแรงในการพิมพ์สูงขึ้นแต่ใช้เส้นพลาสติกมากขึ้นและใช้เวลาพิมพ์นานขึ้น"
+
+msgid ""
+"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
+"height. This results in more apparent layer lines and lower print quality, "
+"but slightly shorter print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.4 มม. จะมีความสูงของชั้นที่ใหญ่กว่า "
+"ส่งผลให้มีเส้นชั้นที่ชัดเจนมากขึ้นและคุณภาพการพิมพ์ลดลง แต่ใช้เวลาพิมพ์สั้นลงเล็กน้อย"
+
+msgid ""
+"Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer "
+"height. This results in more apparent layer lines and lower print quality, "
+"but shorter print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.4 มม. จะมีความสูงของชั้นที่ใหญ่กว่า "
+"ส่งผลให้มีเส้นชั้นที่ชัดเจนมากขึ้นและคุณภาพการพิมพ์ลดลง แต่ใช้เวลาพิมพ์สั้นลง"
+
+msgid ""
+"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
+"height. This results in less apparent layer lines and higher print quality "
+"but longer print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.4 มม. จะมีความสูงของชั้นที่เล็กกว่า "
+"ส่งผลให้มีเส้นชั้นที่ชัดเจนน้อยลงและคุณภาพการพิมพ์สูงขึ้นแต่ใช้เวลาพิมพ์นานขึ้น"
+
+msgid ""
+"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
+"height, lower speeds and acceleration, and the sparse infill pattern is "
+"Gyroid. This results in less apparent layer lines and much higher print "
+"quality but much longer print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.4 มม. จะมีความสูงของชั้นที่เล็กกว่า "
+"ความเร็วและความเร่งที่ต่ำกว่า และรูปแบบไส้ในแบบโปร่งคือ Gyroid "
+"ส่งผลให้เส้นเลเยอร์ปรากฏน้อยลงและคุณภาพการพิมพ์สูงขึ้นมาก แต่ใช้เวลาพิมพ์นานกว่ามาก"
+
+msgid ""
+"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
+"height. This results in almost negligible layer lines and higher print "
+"quality but longer print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.4 มม. จะมีความสูงของชั้นที่เล็กกว่า "
+"ส่งผลให้เส้นเลเยอร์แทบไม่มีความสำคัญและคุณภาพการพิมพ์สูงขึ้นแต่ใช้เวลาพิมพ์นานขึ้น"
+
+msgid ""
+"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
+"height, lower speeds and acceleration, and the sparse infill pattern is "
+"Gyroid. This results in almost negligible layer lines and much higher print "
+"quality but much longer print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.4 มม. จะมีความสูงของชั้นที่เล็กกว่า "
+"ความเร็วและความเร่งที่ต่ำกว่า และรูปแบบไส้ในแบบโปร่งคือ Gyroid "
+"ส่งผลให้เส้นเลเยอร์แทบไม่มีความสำคัญและคุณภาพการพิมพ์สูงขึ้นมาก แต่ใช้เวลาพิมพ์นานกว่ามาก"
+
+msgid ""
+"Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer "
+"height. This results in almost negligible layer lines and longer print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.4 มม. จะมีความสูงของชั้นที่เล็กกว่า "
+"ส่งผลให้เส้นชั้นแทบไม่มีนัยสำคัญและใช้เวลาพิมพ์นานขึ้น"
+
+msgid ""
+"It has a big layer height. This results in apparent layer lines and ordinary "
+"print quality and print time."
+msgstr "มีความสูงของชั้นใหญ่ ส่งผลให้ได้เส้นชั้นที่ชัดเจนและคุณภาพการพิมพ์และเวลาในการพิมพ์ตามปกติ"
+
+msgid ""
+"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops "
+"and a higher sparse infill density. This results in higher print strength "
+"but more filament consumption and longer print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.6 มม. "
+"จะมีห่วงติดผนังมากกว่าและมีความหนาแน่นของช่องไส้ในที่เบากว่า "
+"ส่งผลให้มีความแข็งแรงในการพิมพ์สูงขึ้นแต่ใช้เส้นพลาสติกมากขึ้นและใช้เวลาพิมพ์นานขึ้น"
+
+msgid ""
+"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
+"height. This results in more apparent layer lines and lower print quality, "
+"but shorter print time in some cases."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.6 มม. จะมีความสูงของชั้นที่ใหญ่กว่า "
+"ซึ่งส่งผลให้มีเส้นชั้นที่ชัดเจนมากขึ้นและคุณภาพการพิมพ์ลดลง แต่เวลาในการพิมพ์สั้นลงในบางกรณี"
+
+msgid ""
+"Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer "
+"height. This results in much more apparent layer lines and much lower print "
+"quality, but shorter print time in some cases."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.6 มม. จะมีความสูงของชั้นที่ใหญ่กว่า "
+"ซึ่งส่งผลให้มีเส้นชั้นที่ชัดเจนมากขึ้นและคุณภาพการพิมพ์ลดลงมาก แต่ในบางกรณีใช้เวลาพิมพ์สั้นลง"
+
+msgid ""
+"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
+"height. This results in less apparent layer lines and slight higher print "
+"quality but longer print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.6 มม. จะมีความสูงของชั้นที่เล็กกว่า "
+"ส่งผลให้มีเส้นชั้นที่ชัดเจนน้อยลงและคุณภาพการพิมพ์สูงขึ้นเล็กน้อยแต่ใช้เวลาพิมพ์นานขึ้น"
+
+msgid ""
+"Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer "
+"height. This results in less apparent layer lines and higher print quality "
+"but longer print time."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.6 มม. จะมีความสูงของชั้นที่เล็กกว่า "
+"ส่งผลให้มีเส้นชั้นที่ชัดเจนน้อยลงและคุณภาพการพิมพ์สูงขึ้นแต่ใช้เวลาพิมพ์นานขึ้น"
+
+msgid ""
+"It has a very big layer height. This results in very apparent layer lines, "
+"low print quality and shorter print time."
+msgstr "มีความสูงของชั้นที่ใหญ่มาก ส่งผลให้มีเส้นชั้นที่ชัดเจน คุณภาพการพิมพ์ต่ำ และใช้เวลาพิมพ์สั้นลง"
+
+msgid ""
+"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
+"height. This results in very apparent layer lines and much lower print "
+"quality, but shorter print time in some cases."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.8 มม. จะมีความสูงของชั้นที่ใหญ่กว่า "
+"ซึ่งส่งผลให้มีเส้นชั้นที่ชัดเจนและคุณภาพการพิมพ์ลดลงมาก แต่ในบางกรณีใช้เวลาพิมพ์สั้นลง"
+
+msgid ""
+"Compared with the default profile of a 0.8 mm nozzle, it has a much bigger "
+"layer height. This results in extremely apparent layer lines and much lower "
+"print quality, but much shorter print time in some cases."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.8 มม. จะมีความสูงของชั้นที่ใหญ่กว่ามาก "
+"ซึ่งส่งผลให้มีเส้นชั้นที่ชัดเจนมากและคุณภาพการพิมพ์ต่ำลงมาก แต่ในบางกรณีใช้เวลาพิมพ์สั้นลงมาก"
+
+msgid ""
+"Compared with the default profile of a 0.8 mm nozzle, it has a slightly "
+"smaller layer height. This results in slightly less but still apparent layer "
+"lines and slightly higher print quality but longer print time in some cases."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.8 มม. จะมีความสูงของชั้นที่เล็กกว่าเล็กน้อย "
+"ซึ่งส่งผลให้มีเส้นเลเยอร์น้อยลงเล็กน้อยแต่ยังคงปรากฏชัดเจน และคุณภาพการพิมพ์สูงขึ้นเล็กน้อย "
+"แต่ใช้เวลาพิมพ์นานขึ้นในบางกรณี"
+
+msgid ""
+"Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer "
+"height. This results in less but still apparent layer lines and slightly "
+"higher print quality but longer print time in some cases."
+msgstr ""
+"เมื่อเปรียบเทียบกับโปรไฟล์เริ่มต้นของหัวฉีดขนาด 0.8 มม. จะมีความสูงของชั้นที่เล็กกว่า "
+"ซึ่งส่งผลให้มีเส้นเลเยอร์น้อยลงแต่ยังคงปรากฏชัดเจน และคุณภาพการพิมพ์สูงขึ้นเล็กน้อย "
+"แต่ใช้เวลาพิมพ์นานขึ้นในบางกรณี"
+
+msgid ""
+"This is neither a commonly used filament, nor one of Bambu filaments, and it "
+"varies a lot from brand to brand. So, it's highly recommended to ask its "
+"vendor for suitable profile before printing and adjust some parameters "
+"according to its performances."
+msgstr ""
+"นี่ไม่ใช่เส้นพลาสติกที่ใช้กันทั่วไปหรือไม่ใช่เส้นพลาสติก Bambu เส้นใดเส้นหนึ่ง "
+"และมีความแตกต่างกันมากในแต่ละยี่ห้อ "
+"ดังนั้นจึงขอแนะนำอย่างยิ่งให้สอบถามผู้จำหน่ายเกี่ยวกับโปรไฟล์ที่เหมาะสมก่อนพิมพ์ "
+"และปรับพารามิเตอร์บางอย่างตามประสิทธิภาพ"
+
+msgid ""
+"When printing this filament, there's a risk of warping and low layer "
+"adhesion strength. To get better results, please refer to this wiki: "
+"Printing Tips for High Temp / Engineering materials."
+msgstr ""
+"เมื่อพิมพ์ฟิลาเมนต์นี้ มีความเสี่ยงที่จะเกิดการบิดงอและมีการยึดเกาะต่ำ เพื่อให้ได้ผลลัพธ์ที่ดีขึ้น "
+"โปรดดูที่วิกินี้: เคล็ดลับการพิมพ์สำหรับวัสดุอุณหภูมิสูง / วิศวกรรม"
+
+msgid ""
+"When printing this filament, there's a risk of nozzle clogging, oozing, "
+"warping and low layer adhesion strength. To get better results, please refer "
+"to this wiki: Printing Tips for High Temp / Engineering materials."
+msgstr ""
+"เมื่อพิมพ์ฟิลาเมนต์นี้ มีความเสี่ยงที่หัวฉีดจะอุดตัน ไหลซึม บิดเบี้ยว และมีความแข็งแรงในการยึดเกาะต่ำ "
+"เพื่อให้ได้ผลลัพธ์ที่ดีขึ้น โปรดดูที่วิกินี้: เคล็ดลับการพิมพ์สำหรับวัสดุอุณหภูมิสูง / วิศวกรรม"
+
+msgid ""
+"To get better transparent or translucent results with the corresponding "
+"filament, please refer to this wiki: Printing tips for transparent PETG."
+msgstr ""
+"หากต้องการผลลัพธ์ที่โปร่งใสหรือโปร่งแสงดีขึ้นด้วยเส้นพลาสติกที่เกี่ยวข้อง โปรดดูที่วิกินี้: "
+"เคล็ดลับการพิมพ์สำหรับ PETG แบบโปร่งใส"
+
+msgid ""
+"To make the prints get higher gloss, please dry the filament before use, and "
+"set the outer wall speed to be 40 to 60 mm/s when slicing."
+msgstr ""
+"เพื่อให้งานพิมพ์มีความมันวาวมากขึ้น โปรดทำให้เส้นพลาสติกแห้งก่อนใช้งาน "
+"และตั้งค่าความเร็วผนังด้านนอกเป็น 40 ถึง 60 มม./วินาที เมื่อสไลซ์"
+
+msgid ""
+"This filament is only used to print models with a low density usually, and "
+"some special parameters are required. To get better printing quality, please "
+"refer to this wiki: Instructions for printing RC model with foaming PLA (PLA "
+"Aero)."
+msgstr ""
+"เส้นพลาสติกนี้ใช้สำหรับพิมพ์แบบจำลองที่มีความหนาแน่นต่ำเท่านั้น "
+"และจำเป็นต้องมีพารามิเตอร์พิเศษบางอย่าง หากต้องการคุณภาพการพิมพ์ที่ดีขึ้น โปรดดูที่วิกินี้: "
+"คำแนะนำสำหรับการพิมพ์รุ่น RC ด้วยฟอง PLA (PLA Aero)"
+
+msgid ""
+"This filament is only used to print models with a low density usually, and "
+"some special parameters are required. To get better printing quality, please "
+"refer to this wiki: ASA Aero Printing Guide."
+msgstr ""
+"เส้นพลาสติกนี้ใช้สำหรับพิมพ์แบบจำลองที่มีความหนาแน่นต่ำเท่านั้น "
+"และจำเป็นต้องมีพารามิเตอร์พิเศษบางอย่าง หากต้องการคุณภาพการพิมพ์ที่ดีขึ้น โปรดดูที่วิกินี้: ASA "
+"Aero Printing Guide"
+
+msgid ""
+"This filament is too soft and not compatible with the AMS. Printing it is of "
+"many requirements, and to get better printing quality, please refer to this "
+"wiki: TPU printing guide."
+msgstr ""
+"เส้นพลาสติกนี้อ่อนเกินไปและเข้ากันไม่ได้กับ AMS การพิมพ์นั้นมีข้อกำหนดหลายประการ "
+"และเพื่อให้ได้คุณภาพการพิมพ์ที่ดีขึ้น โปรดดูที่วิกินี้: คู่มือการพิมพ์ TPU"
+
+msgid ""
+"This filament has high enough hardness (about 67D) and is compatible with "
+"the AMS. Printing it is of many requirements, and to get better printing "
+"quality, please refer to this wiki: TPU printing guide."
+msgstr ""
+"เส้นพลาสติกนี้มีความแข็งสูงเพียงพอ (ประมาณ 67D) และเข้ากันได้กับ AMS "
+"การพิมพ์นั้นมีข้อกำหนดหลายประการ และเพื่อให้ได้คุณภาพการพิมพ์ที่ดีขึ้น โปรดดูที่วิกินี้: คู่มือการพิมพ์ TPU"
+
+msgid ""
+"If you are to print a kind of soft TPU, please don't slice with this "
+"profile, and it is only for TPU that has high enough hardness (not less than "
+"55D) and is compatible with the AMS. To get better printing quality, please "
+"refer to this wiki: TPU printing guide."
+msgstr ""
+"หากคุณต้องการพิมพ์ TPU แบบอ่อน โปรดอย่าเฉือนด้วยโปรไฟล์นี้ และสำหรับ TPU "
+"เท่านั้นที่มีความแข็งสูงเพียงพอ (ไม่น้อยกว่า 55D) และเข้ากันได้กับ AMS "
+"หากต้องการคุณภาพการพิมพ์ที่ดีขึ้น โปรดดูที่วิกินี้: คู่มือการพิมพ์ TPU"
+
+msgid ""
+"This is a water-soluble support filament, and usually it is only for the "
+"support structure and not for the model body. Printing this filament is of "
+"many requirements, and to get better printing quality, please refer to this "
+"wiki: PVA Printing Guide."
+msgstr ""
+"นี่คือเส้นพลาสติกรองรับที่ละลายน้ำได้ และโดยปกติจะใช้สำหรับโครงสร้างรองรับเท่านั้น "
+"ไม่ใช่สำหรับตัวโมเดล การพิมพ์เส้นพลาสติกนี้มีข้อกำหนดหลายประการ "
+"และเพื่อให้ได้คุณภาพการพิมพ์ที่ดีขึ้น โปรดดูที่วิกินี้: คู่มือการพิมพ์ PVA"
+
+msgid ""
+"This is a non-water-soluble support filament, and usually it is only for the "
+"support structure and not for the model body. To get better printing "
+"quality, please refer to this wiki: Printing Tips for Support Filament and "
+"Support Function."
+msgstr ""
+"นี่คือเส้นพลาสติกรองรับที่ไม่ละลายน้ำ และโดยปกติจะใช้สำหรับโครงสร้างรองรับเท่านั้น "
+"ไม่ใช่สำหรับตัวโมเดล หากต้องการคุณภาพการพิมพ์ที่ดีขึ้น โปรดดูที่วิกินี้: "
+"เคล็ดลับการพิมพ์สำหรับเส้นพลาสติกรองรับและฟังก์ชันรองรับ"
+
+msgid ""
+"The generic presets are conservatively tuned for compatibility with a wider "
+"range of filaments. For higher printing quality and speeds, please use Bambu "
+"filaments with Bambu presets."
+msgstr ""
+"ค่าที่ตั้งไว้ล่วงหน้าทั่วไปได้รับการปรับแต่งอย่างระมัดระวังเพื่อให้เข้ากันได้กับเส้นพลาสติกที่หลากหลายมากขึ้น "
+"เพื่อคุณภาพการพิมพ์และความเร็วที่สูงขึ้น โปรดใช้เส้นพลาสติก Bambu กับการตั้งค่าล่วงหน้าของ Bambu"
+
+msgid "High quality profile for 0.2mm nozzle, prioritizing print quality."
+msgstr "โปรไฟล์คุณภาพสูงสำหรับหัวฉีดขนาด 0.2 มม. โดยให้ความสำคัญกับคุณภาพการพิมพ์"
+
+msgid ""
+"High quality profile for 0.16mm layer height, prioritizing print quality and "
+"strength."
+msgstr ""
+"โปรไฟล์คุณภาพสูงสำหรับความสูงของชั้น 0.16 มม. ให้ความสำคัญกับคุณภาพและความแข็งแรงในการพิมพ์"
+
+msgid "Standard profile for 0.16mm layer height, prioritizing speed."
+msgstr "โปรไฟล์มาตรฐานสำหรับความสูงของชั้น 0.16 มม. โดยให้ความสำคัญกับความเร็ว"
+
+msgid ""
+"High quality profile for 0.2mm layer height, prioritizing strength and print "
+"quality."
+msgstr ""
+"โปรไฟล์คุณภาพสูงสำหรับความสูงของชั้น 0.2 มม. "
+"โดยให้ความสำคัญกับความแข็งแกร่งและคุณภาพการพิมพ์"
+
+msgid "Standard profile for 0.4mm nozzle, prioritizing speed."
+msgstr "โปรไฟล์มาตรฐานสำหรับหัวฉีดขนาด 0.4 มม. โดยให้ความสำคัญกับความเร็ว"
+
+msgid ""
+"High quality profile for 0.6mm nozzle, prioritizing print quality and "
+"strength."
+msgstr ""
+"โปรไฟล์คุณภาพสูงสำหรับหัวฉีดขนาด 0.6 มม. ให้ความสำคัญกับคุณภาพและความแข็งแรงในการพิมพ์"
+
+msgid "Strength profile for 0.6mm nozzle, prioritizing strength."
+msgstr "โปรไฟล์ความแข็งแกร่งสำหรับหัวฉีดขนาด 0.6 มม. โดยให้ความสำคัญกับความแข็งแรง"
+
+msgid "Standard profile for 0.6mm nozzle, prioritizing speed."
+msgstr "โปรไฟล์มาตรฐานสำหรับหัวฉีดขนาด 0.6 มม. โดยให้ความสำคัญกับความเร็ว"
+
+msgid "High quality profile for 0.8mm nozzle, prioritizing print quality."
+msgstr "โปรไฟล์คุณภาพสูงสำหรับหัวฉีดขนาด 0.8 มม. โดยให้ความสำคัญกับคุณภาพการพิมพ์"
+
+msgid "Strength profile for 0.8mm nozzle, prioritizing strength."
+msgstr "โปรไฟล์ความแข็งแกร่งสำหรับหัวฉีด 0.8 มม. โดยจัดลำดับความสำคัญของความแข็งแกร่ง"
+
+msgid "Standard profile for 0.8mm nozzle, prioritizing speed."
+msgstr "โปรไฟล์มาตรฐานสำหรับหัวฉีด 0.8 มม. โดยให้ความสำคัญกับความเร็ว"
+
+msgid "No AMS"
+msgstr "ไม่มี AMS"
+
+msgid "There is no device available to send printing."
+msgstr "ไม่มีอุปกรณ์ที่สามารถส่งการพิมพ์ได้"
+
+msgid "The number of printers in use simultaneously cannot be equal to 0."
+msgstr "จำนวนเครื่องพิมพ์ที่ใช้งานพร้อมกันต้องไม่เท่ากับ 0"
+
+msgid "Use External Spool"
+msgstr "ใช้ม้วนเส้นภายนอก"
+
+msgid "Select Printers"
+msgstr "เลือกเครื่องพิมพ์"
+
+msgid "Device Name"
+msgstr "ชื่ออุปกรณ์"
+
+msgid "Device Status"
+msgstr "สถานะอุปกรณ์"
+
+msgid "AMS Status"
+msgstr "สถานะ AMS"
+
+msgid ""
+"Please select the devices you would like to manage here (up to 6 devices)"
+msgstr "โปรดเลือกอุปกรณ์ที่คุณต้องการจัดการที่นี่ (สูงสุด 6 อุปกรณ์)"
+
+msgid "Printing Options"
+msgstr "ตัวเลือกกำลังพิมพ์"
+
+msgid "Bed Leveling"
+msgstr "การปรับระดับฐานพิมพ์"
+
+msgid "Flow Dynamic Calibration"
+msgstr "การสอบเทียบแบบไดนามิกของโฟลว์"
+
+msgid "Send Options"
+msgstr "ตัวเลือกส่ง"
+
+msgid "Send to"
+msgstr "ส่งไปที่"
+
+msgid ""
+"printers at the same time. (It depends on how many devices can undergo "
+"heating at the same time.)"
+msgstr "เครื่องพิมพ์ในเวลาเดียวกัน (ขึ้นอยู่กับจำนวนอุปกรณ์ที่สามารถทำความร้อนได้ในเวลาเดียวกัน)"
+
+msgid "Wait"
+msgstr "รอ"
+
+msgid ""
+"minute each batch. (It depends on how long it takes to complete the heating.)"
+msgstr "นาทีในแต่ละชุด (ขึ้นอยู่กับระยะเวลาในการทำความร้อนให้เสร็จสิ้น)"
+
+msgid "Task Sending"
+msgstr "กำลังส่งงาน"
+
+msgid "Task Sent"
+msgstr "ส่งงานแล้ว"
+
+msgid "Edit multiple printers"
+msgstr "แก้ไขเครื่องพิมพ์หลายเครื่อง"
+
+msgid "Select connected printers (0/6)"
+msgstr "เลือกเครื่องพิมพ์ที่เชื่อมต่อ (0/6)"
+
+#, c-format, boost-format
+msgid "Select Connected Printers (%d/6)"
+msgstr "เลือกเครื่องพิมพ์ที่เชื่อมต่อ (%d/6)"
+
+#, c-format, boost-format
+msgid "The maximum number of printers that can be selected is %d"
+msgstr "จำนวนเครื่องพิมพ์สูงสุดที่สามารถเลือกได้คือ %d"
+
+msgid "No task"
+msgstr "ไม่มีงาน"
+
+msgid "Edit Printers"
+msgstr "แก้ไขเครื่องพิมพ์"
+
+msgid "Task Name"
+msgstr "ชื่องาน"
+
+msgid "Actions"
+msgstr "การทำงาน"
+
+msgid "Task Status"
+msgstr "สถานะงาน"
+
+msgid "Sent Time"
+msgstr "เวลาที่ส่ง"
+
+msgid "There are no tasks to be sent!"
+msgstr "ไม่มีงานที่จะส่ง!"
+
+msgid "No historical tasks!"
+msgstr "ไม่มีภารกิจทางประวัติศาสตร์!"
+
+msgid "Upgrading"
+msgstr "กำลังอัปเกรด"
+
+msgid "Syncing"
+msgstr "กำลังซิงค์"
+
+msgid "Printing Finish"
+msgstr "การพิมพ์เสร็จสิ้น"
+
+msgid "Printing Failed"
+msgstr "การพิมพ์ล้มเหลว"
+
+msgid "Printing Pause"
+msgstr "หยุดการพิมพ์ชั่วคราว"
+
+msgid "Pending"
+msgstr "รอดำเนินการ"
+
+msgid "Sending"
+msgstr "กำลังส่ง"
+
+msgid "Sending Finish"
+msgstr "ส่งใบเสร็จ"
+
+msgid "Sending Cancel"
+msgstr "กำลังส่ง ยกเลิก"
+
+msgid "Sending Failed"
+msgstr "การส่งล้มเหลว"
+
+msgid "Print Success"
+msgstr "พิมพ์สำเร็จ"
+
+msgid "Print Failed"
+msgstr "พิมพ์ล้มเหลว"
+
+msgid "Removed"
+msgstr "ลบออก"
+
+msgid "Don't remind me again"
+msgstr "ไม่ต้องเตือนฉันอีก"
+
+msgid "No further pop-up will appear. You can reopen it in 'Preferences'"
+msgstr "จะไม่มีป๊อปอัปเพิ่มไส้ในปรากฏขึ้น คุณสามารถเปิดใหม่ได้ใน 'การตั้งค่า'"
+
+msgid "Filament-Saving Mode"
+msgstr "โหมดประหยัดเส้นพลาสติก"
+
+msgid "Convenience Mode"
+msgstr "โหมดความสะดวกสบาย"
+
+msgid "Custom Mode"
+msgstr "โหมดกำหนดเอง"
+
+msgid ""
+"Generates filament grouping for the left and right nozzles based on the most "
+"filament-saving principles to minimize waste."
+msgstr "สร้างการจัดกลุ่มเส้นพลาสติกสำหรับหัวฉีดด้านซ้ายและขวาตามหลักการประหยัดเส้นพลาสติกมากที่สุดเพื่อลดของเสีย"
+
+msgid ""
+"Generates filament grouping for the left and right nozzles based on the "
+"printer's actual filament status, reducing the need for manual filament "
+"adjustment."
+msgstr ""
+"สร้างการจัดกลุ่มเส้นพลาสติกสำหรับหัวฉีดด้านซ้ายและขวาตามสถานะเส้นพลาสติกที่แท้จริงของเครื่องพิมพ์ "
+"ซึ่งช่วยลดความจำเป็นในการปรับเส้นพลาสติกด้วยตนเอง"
+
+msgid "Manually assign filament to the left or right nozzle"
+msgstr "กำหนดเส้นพลาสติกให้กับหัวฉีดด้านซ้ายหรือขวาด้วยตนเอง"
+
+msgid "Global settings"
+msgstr "การตั้งค่าส่วนกลาง"
+
+msgid "Video tutorial"
+msgstr "วิดีโอสอน"
+
+msgid "(Sync with printer)"
+msgstr "(ซิงค์กับเครื่องพิมพ์)"
+
+msgid "We will slice according to this grouping method:"
+msgstr "เราจะสไลซ์ตามวิธีการจัดกลุ่มนี้:"
+
+msgid "Tip: You can drag the filaments to reassign them to different nozzles."
+msgstr "เคล็ดลับ: คุณสามารถลากเส้นพลาสติกเพื่อกำหนดใหม่ให้กับหัวฉีดที่แตกต่างกันได้"
+
+msgid ""
+"The filament grouping method for current plate is determined by the dropdown "
+"option at the slicing plate button."
+msgstr "วิธีการจัดกลุ่มเส้นพลาสติกสำหรับเพลตปัจจุบันถูกกำหนดโดยตัวเลือกแบบเลื่อนลงที่ปุ่มแผ่นสไลซ์"
+
+msgid "Connected to Obico successfully!"
+msgstr "เชื่อมต่อกับ Obico เรียบร้อยแล้ว!"
+
+msgid "Could not connect to Obico"
+msgstr "ไม่สามารถเชื่อมต่อกับ Obico ได้"
+
+msgid "Connected to SimplyPrint successfully!"
+msgstr "เชื่อมต่อกับ SimplyPrint เรียบร้อยแล้ว!"
+
+msgid "Could not connect to SimplyPrint"
+msgstr "ไม่สามารถเชื่อมต่อกับ SimplyPrint"
+
+msgid "Internal error"
+msgstr "ข้อผิดพลาดภายใน"
+
+msgid "Unknown error"
+msgstr "ข้อผิดพลาดไม่ทราบสาเหตุ"
+
+msgid "SimplyPrint account not linked. Go to Connect options to set it up."
+msgstr "บัญชี SimplyPrint ไม่ได้เชื่อมโยง ไปที่ตัวเลือกการเชื่อมต่อเพื่อตั้งค่า"
+
+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."
+msgstr "การเชื่อมต่อแบบอนุกรมกับ Flashforge ทำงานอย่างถูกต้อง"
+
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
+msgid "Could not connect to Flashforge via serial"
+msgstr "ไม่สามารถเชื่อมต่อกับ Flashforge ผ่านทางอนุกรมได้"
+
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
+msgid "The provided state is not correct."
+msgstr "สถานะที่ระบุไม่ถูกต้อง"
+
+msgid "Please give the required permissions when authorizing this application."
+msgstr "โปรดให้สิทธิ์ที่จำเป็นเมื่อให้สิทธิ์แอปพลิเคชันนี้"
+
+msgid "Something unexpected happened when trying to log in, please try again."
+msgstr "เกิดสิ่งที่ไม่คาดคิดขณะพยายามเข้าสู่ระบบ โปรดลองอีกครั้ง"
+
+msgid "User canceled."
+msgstr "ผู้ใช้ยกเลิก"
+
+msgid "Head diameter"
+msgstr "เส้นผ่านศูนย์กลางหัว"
+
+msgid "Max angle"
+msgstr "มุมสูงสุด"
+
+msgid "Detection radius"
+msgstr "รัศมีการตรวจจับ"
+
+msgid "Selected"
+msgstr "เลือกแล้ว"
+
+msgid "Auto-generate"
+msgstr "สร้างอัตโนมัติ"
+
+msgid "Generate brim ears using Max angle and Detection radius"
+msgstr "สร้างหูขอบยึดชิ้นงานนกโดยใช้มุมสูงสุดและรัศมีการตรวจจับ"
+
+msgid "Add or Select"
+msgstr "เพิ่มหรือเลือก"
+
+msgid ""
+"Warning: The brim type is not set to \"painted\", the brim ears will not "
+"take effect!"
+msgstr "คำเตือน: ไม่ได้ตั้งค่าประเภทขอบยึดชิ้นงานเป็น \"ทาสี\" หูขอบยึดชิ้นงานจะไม่เกิดผล!"
+
+msgid "Set the brim type of this object to \"painted\""
+msgstr "ตั้งค่าประเภทขอบของวัตถุนี้เป็น \"ทาสี\""
+
+msgid "invalid brim ears"
+msgstr "หูขอบยึดชิ้นงานไม่ถูกต้อง"
+
+msgid "Brim Ears"
+msgstr "หู ขอบยึดชิ้นงาน"
+
+msgid "Please select single object."
+msgstr "กรุณาเลือกวัตถุเดียว"
+
+msgid "Zoom Out"
+msgstr "ซูมออก"
+
+msgid "Zoom In"
+msgstr "ซูมเข้า"
+
+msgid "Load skipping objects information failed. Please try again."
+msgstr "โหลดข้อมูลวัตถุที่ข้ามล้มเหลว โปรดลองอีกครั้ง"
+
+#, c-format, boost-format
+msgid "/%d Selected"
+msgstr "/%d เลือกแล้ว"
+
+msgid "Nothing selected"
+msgstr "ยังไม่ได้เลือกอะไร"
+
+msgid "Over 64 objects in single plate"
+msgstr "วัตถุมากกว่า 64 รายการในจานเดียว"
+
+msgid "The current print job cannot be skipped"
+msgstr "งานพิมพ์ปัจจุบันไม่สามารถข้ามได้"
+
+msgid "Skipping all objects."
+msgstr "ข้ามวัตถุทั้งหมด"
+
+msgid "The printing job will be stopped. Continue?"
+msgstr "งานพิมพ์จะหยุดลง ดำเนินการต่อ?"
+
+#, c-format, boost-format
+msgid "Skipping %d objects."
+msgstr "กำลังข้าม %d วัตถุ"
+
+msgid "This action cannot be undone. Continue?"
+msgstr "การทำงานนี้ไม่สามารถย้อนกลับได้ ดำเนินการต่อหรือไม่"
+
+msgid "Skipping objects."
+msgstr "ข้ามวัตถุ"
+
+msgid "Select Filament"
+msgstr "เลือกเส้นพลาสติก"
+
+msgid "Null Color"
+msgstr "สีว่าง"
+
+msgid "Multiple Color"
+msgstr "หลายสี"
+
+msgid "Official Filament"
+msgstr "เส้นพลาสติกทางการ"
+
+msgid "More Colors"
+msgstr "สีเพิ่มไส้ใน"
+
+msgid "Network Plug-in Update Available"
+msgstr "มีการอัปเดตปลั๊กอินเครือข่ายแล้ว"
+
+msgid "Bambu Network Plug-in Required"
+msgstr "ต้องใช้ปลั๊กอินเครือข่าย Bambu"
+
+msgid ""
+"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
+msgstr "ปลั๊กอินเครือข่าย Bambu เสียหายหรือเข้ากันไม่ได้ กรุณาติดตั้งใหม่"
+
+msgid ""
+"The Bambu Network Plug-in is required for cloud features, printer discovery, "
+"and remote printing."
+msgstr ""
+"ปลั๊กอินเครือข่าย Bambu จำเป็นสำหรับคุณสมบัติคลาวด์ การค้นหาเครื่องพิมพ์ และการพิมพ์ระยะไกล"
+
+#, c-format, boost-format
+msgid "Error: %s"
+msgstr "ข้อผิดพลาด: %s"
+
+msgid "Show details"
+msgstr "แสดงรายละเอียด"
+
+msgid "Version to install:"
+msgstr "เวอร์ชันที่จะติดตั้ง:"
+
+msgid "Download and Install"
+msgstr "ดาวน์โหลดและติดตั้ง"
+
+msgid "Skip for Now"
+msgstr "ข้ามไปก่อน"
+
+msgid "A new version of the Bambu Network Plug-in is available."
+msgstr "ปลั๊กอิน Bambu Network Plug-in เวอร์ชันใหม่พร้อมใช้งานแล้ว"
+
+#, c-format, boost-format
+msgid "Current version: %s"
+msgstr "เวอร์ชันปัจจุบัน: %s"
+
+msgid "Update to version:"
+msgstr "อัปเดตเป็นเวอร์ชัน:"
+
+msgid "Update Now"
+msgstr "อัปเดตตอนนี้"
+
+msgid "Remind Later"
+msgstr "เตือนทีหลัง"
+
+msgid "Skip Version"
+msgstr "ข้ามเวอร์ชัน"
+
+msgid "Don't Ask Again"
+msgstr "อย่าถามอีก"
+
+msgid "The Bambu Network Plug-in has been installed successfully."
+msgstr "ติดตั้งปลั๊กอินเครือข่าย Bambu สำเร็จแล้ว"
+
+msgid ""
+"A restart is required to load the new plug-in. Would you like to restart now?"
+msgstr "จำเป็นต้องรีสตาร์ทเพื่อโหลดปลั๊กอินใหม่ คุณต้องการรีสตาร์ทตอนนี้หรือไม่?"
+
+msgid "Restart Now"
+msgstr "เริ่มใหม่ตอนนี้"
+
+msgid "Restart Later"
+msgstr "เริ่มใหม่ภายหลัง"
+
+msgid "NO RAMMING AT ALL"
+msgstr "ไม่มีการกระแทกเลย"
+
+msgid "Volumetric speed"
+msgstr "ความเร็วปริมาตร"
+
+msgid "Step file import parameters"
+msgstr "พารามิเตอร์การนำเข้าไฟล์ขั้นตอน"
+
+msgid ""
+"Smaller linear and angular deflections result in higher-quality "
+"transformations but increase the processing time."
+msgstr ""
+"การโก่งตัวเชิงเส้นและเชิงมุมที่น้อยลงส่งผลให้มีการแปลงคุณภาพสูงขึ้น "
+"แต่จะใช้เวลาในการประมวลผลเพิ่มขึ้น"
+
+msgid "Linear Deflection"
+msgstr "การโก่งตัวเชิงเส้น"
+
+msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
+msgstr "โปรดป้อนค่าที่ถูกต้อง (0.001 < การโก่งเชิงเส้น < 0.1)"
+
+msgid "Angle Deflection"
+msgstr "การโก่งตัวของมุม"
+
+msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
+msgstr "โปรดป้อนค่าที่ถูกต้อง (0.01 < การโก่งมุม < 1.0)"
+
+msgid "Split compound and compsolid into multiple objects"
+msgstr "แยกสารประกอบและรวมเป็นวัตถุหลายชิ้น"
+
+msgid "Number of triangular facets"
+msgstr "จำนวนด้านสามเหลี่ยม"
+
+msgid "Calculating, please wait..."
+msgstr "กำลังคำนวณ โปรดรอสักครู่..."
+
+msgid ""
+"The filament may not be compatible with the current machine settings. "
+"Generic filament presets will be used."
+msgstr "เส้นพลาสติกอาจไม่เข้ากันกับการตั้งค่าเครื่องปัจจุบัน จะใช้การตั้งค่าฟิลาเมนต์ทั่วไป"
+
+msgid ""
+"The filament model is unknown. Still using the previous filament preset."
+msgstr "ไม่ทราบแบบจำลองเส้นพลาสติก ยังคงใช้ค่าที่ตั้งไว้ล่วงหน้าของฟิลาเมนต์ก่อนหน้านี้"
+
+msgid "The filament model is unknown. Generic filament presets will be used."
+msgstr "ไม่ทราบแบบจำลองเส้นพลาสติก จะใช้การตั้งค่าฟิลาเมนต์ทั่วไป"
+
+msgid ""
+"The filament may not be compatible with the current machine settings. A "
+"random filament preset will be used."
+msgstr "เส้นพลาสติกอาจไม่เข้ากันกับการตั้งค่าเครื่องปัจจุบัน ระบบจะใช้การตั้งค่าฟิลาเมนต์แบบสุ่ม"
+
+msgid "The filament model is unknown. A random filament preset will be used."
+msgstr "ไม่ทราบแบบจำลองเส้นพลาสติก ระบบจะใช้การตั้งค่าฟิลาเมนต์แบบสุ่ม"
+
+#: resources/data/hints.ini: [hint:Precise wall]
+msgid ""
+"Precise wall\n"
+"Did you know that turning on precise wall can improve precision and layer "
+"consistency?"
+msgstr ""
+"ผนังที่แม่นยำ\n"
+"คุณรู้หรือไม่ว่าการเปิดผนังที่แม่นยำสามารถปรับปรุงความแม่นยำและความสม่ำเสมอของชั้นได้"
+
+#: resources/data/hints.ini: [hint:Sandwich mode]
+msgid ""
+"Sandwich mode\n"
+"Did you know that you can use sandwich mode (inner-outer-inner) to improve "
+"precision and layer consistency if your model doesn't have very steep "
+"overhangs?"
+msgstr ""
+"โหมดแซนด์วิช\n"
+"คุณรู้ไหมว่าคุณสามารถใช้โหมดแซนวิช (ด้านใน-ด้านนอก-ด้านใน) "
+"เพื่อปรับปรุงความแม่นยำและความสม่ำเสมอของเลเยอร์ได้ "
+"หากแบบจำลองของคุณไม่มีระยะยื่นที่สูงชันมากนัก"
+
+#: resources/data/hints.ini: [hint:Chamber temperature]
+msgid ""
+"Chamber temperature\n"
+"Did you know that OrcaSlicer supports chamber temperature?"
+msgstr ""
+"อุณหภูมิห้อง\n"
+"คุณรู้หรือไม่ว่า OrcaSlicer รองรับอุณหภูมิห้องเพาะเลี้ยง?"
+
+#: resources/data/hints.ini: [hint:Calibration]
+msgid ""
+"Calibration\n"
+"Did you know that calibrating your printer can do wonders? Check out our "
+"beloved calibration solution in OrcaSlicer."
+msgstr ""
+"การสอบเทียบ\n"
+"คุณรู้หรือไม่ว่าการปรับเทียบเครื่องพิมพ์ของคุณสามารถสร้างสิ่งมหัศจรรย์ได้ "
+"ตรวจสอบโซลูชันการสอบเทียบที่เราชื่นชอบใน OrcaSlicer"
+
+#: resources/data/hints.ini: [hint:Auxiliary fan]
+msgid ""
+"Auxiliary fan\n"
+"Did you know that OrcaSlicer supports Auxiliary part cooling fan?"
+msgstr ""
+"พัดลมเสริม\n"
+"คุณรู้หรือไม่ว่า OrcaSlicer รองรับพัดลมระบายความร้อนชิ้นส่วนเสริม?"
+
+#: resources/data/hints.ini: [hint:Air filtration]
+msgid ""
+"Air filtration/Exhaust Fan\n"
+"Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
+msgstr ""
+"เครื่องกรองอากาศ/พัดลมดูดอากาศ\n"
+"คุณรู้หรือไม่ว่า OrcaSlicer สามารถรองรับการกรองอากาศ/พัดลมดูดอากาศได้"
+
+#: resources/data/hints.ini: [hint:G-code window]
+msgid ""
+"G-code window\n"
+"You can turn on/off the G-code window by pressing the C key."
+msgstr ""
+"หน้าต่างรหัส G\n"
+"คุณสามารถเปิด/ปิดหน้าต่าง G-code ได้โดยการกดปุ่ม C"
+
+#: resources/data/hints.ini: [hint:Switch workspaces]
+msgid ""
+"Switch workspaces\n"
+"You can switch between Prepare and Preview workspaces by "
+"pressing the Tab key."
+msgstr ""
+"สลับพื้นที่ทำงาน\n"
+"คุณสามารถสลับระหว่างพื้นที่ทำงาน จัดเตรียม และ ดูตัวอย่าง ได้โดยการกดปุ่ม "
+"Tab"
+
+#: resources/data/hints.ini: [hint:How to use keyboard shortcuts]
+msgid ""
+"How to use keyboard shortcuts\n"
+"Did you know that Orca Slicer offers a wide range of keyboard shortcuts and "
+"3D scene operations?"
+msgstr ""
+"วิธีใช้แป้นพิมพ์ลัด\n"
+"คุณรู้หรือไม่ว่า Orca Slicer มีแป้นพิมพ์ลัดและการทำงานของฉาก 3 มิติที่หลากหลาย"
+
+#: resources/data/hints.ini: [hint:Reverse on even]
+msgid ""
+"Reverse on even\n"
+"Did you know that Reverse on even feature can significantly improve "
+"the surface quality of your overhangs? However, it can cause wall "
+"inconsistencies so use carefully!"
+msgstr ""
+"ย้อนกลับในคู่\n"
+"คุณรู้หรือไม่ว่าคุณลักษณะ ย้อนกลับเมื่อสม่ำเสมอ "
+"สามารถปรับปรุงคุณภาพพื้นผิวของระยะยื่นของคุณได้อย่างมาก อย่างไรก็ตาม "
+"อาจทำให้เกิดความไม่สอดคล้องกันของผนังได้ ดังนั้นโปรดใช้อย่างระมัดระวัง!"
+
+#: resources/data/hints.ini: [hint:Cut Tool]
+msgid ""
+"Cut Tool\n"
+"Did you know that you can cut a model at any angle and position with the "
+"cutting tool?"
+msgstr ""
+"เครื่องมือตัด\n"
+"คุณรู้หรือไม่ว่าคุณสามารถตัดแบบจำลองได้ทุกมุมและทุกตำแหน่งด้วยเครื่องมือตัด"
+
+#: resources/data/hints.ini: [hint:Fix Model]
+msgid ""
+"Fix Model\n"
+"Did you know that you can fix a corrupted 3D model to avoid a lot of slicing "
+"problems on the Windows system?"
+msgstr ""
+"แก้ไขโมเดล\n"
+"คุณรู้ไหมว่าคุณสามารถแก้ไขโมเดล 3 มิติที่เสียหายได้เพื่อหลีกเลี่ยงปัญหาการแบ่งส่วนในระบบ Windows "
+"มากมาย"
+
+#: resources/data/hints.ini: [hint:Timelapse]
+msgid ""
+"Timelapse\n"
+"Did you know that you can generate a timelapse video during each print?"
+msgstr ""
+"ไทม์แลปส์\n"
+"คุณรู้ไหมว่าคุณสามารถสร้างวิดีโอไทม์แลปส์ระหว่างการพิมพ์แต่ละครั้งได้"
+
+#: resources/data/hints.ini: [hint:Auto-Arrange]
+msgid ""
+"Auto-Arrange\n"
+"Did you know that you can auto-arrange all the objects in your project?"
+msgstr ""
+"จัดเรียงอัตโนมัติ\n"
+"คุณรู้ไหมว่าคุณสามารถจัดเรียงออบเจ็กต์ทั้งหมดในโครงการของคุณได้โดยอัตโนมัติ"
+
+#: resources/data/hints.ini: [hint:Auto-Orient]
+msgid ""
+"Auto-Orient\n"
+"Did you know that you can rotate objects to an optimal orientation for "
+"printing with a simple click?"
+msgstr ""
+"ปรับทิศทางอัตโนมัติ\n"
+"คุณรู้หรือไม่ว่าคุณสามารถหมุนวัตถุให้อยู่ในแนวที่เหมาะสมที่สุดสำหรับการพิมพ์ด้วยการคลิกเพียงครั้งเดียว"
+
+#: resources/data/hints.ini: [hint:Lay on Face]
+msgid ""
+"Lay on Face\n"
+"Did you know that you can quickly orient a model so that one of its faces "
+"sits on the print bed? Select the \"Place on face\" function or press the "
+"F key."
+msgstr ""
+"วางบนหน้า\n"
+"คุณรู้ไหมว่าคุณสามารถปรับทิศทางแบบจำลองได้อย่างรวดเร็วเพื่อให้ผิวหน้าด้านใดด้านหนึ่งวางอยู่บนฐานพิมพ์ "
+"เลือกฟังก์ชัน \"วางบนหน้า\" หรือกดปุ่ม F"
+
+#: resources/data/hints.ini: [hint:Object List]
+msgid ""
+"Object List\n"
+"Did you know that you can view all objects/parts in a list and change "
+"settings for each object/part?"
+msgstr ""
+"รายการวัตถุ\n"
+"คุณรู้ไหมว่าคุณสามารถดูวัตถุ/ชิ้นส่วนทั้งหมดในรายการและเปลี่ยนการตั้งค่าสำหรับแต่ละวัตถุ/ชิ้นส่วนได้"
+
+#: resources/data/hints.ini: [hint:Search Functionality]
+msgid ""
+"Search Functionality\n"
+"Did you know that you use the Search tool to quickly find a specific Orca "
+"Slicer setting?"
+msgstr ""
+"ฟังก์ชั่นการค้นหา\n"
+"คุณรู้ไหมว่าคุณใช้เครื่องมือค้นหาเพื่อค้นหาการตั้งค่า Orca Slicer ที่ต้องการอย่างรวดเร็ว"
+
+#: resources/data/hints.ini: [hint:Simplify Model]
+msgid ""
+"Simplify Model\n"
+"Did you know that you can reduce the number of triangles in a mesh using the "
+"Simplify mesh feature? Right-click the model and select Simplify model."
+msgstr ""
+"ลดความซับซ้อนของโมเดล\n"
+"คุณรู้ไหมว่าคุณสามารถลดจำนวนสามเหลี่ยมใน mesh ได้โดยใช้ฟีเจอร์ Simplify mesh "
+"คลิกขวาที่โมเดลแล้วเลือกลดความซับซ้อนของโมเดล"
+
+#: resources/data/hints.ini: [hint:Slicing Parameter Table]
+msgid ""
+"Slicing Parameter Table\n"
+"Did you know that you can view all objects/parts on a table and change "
+"settings for each object/part?"
+msgstr ""
+"ตารางพารามิเตอร์การแบ่งส่วน\n"
+"คุณรู้ไหมว่าคุณสามารถดูวัตถุ/ชิ้นส่วนทั้งหมดบนโต๊ะและเปลี่ยนการตั้งค่าสำหรับแต่ละวัตถุ/ชิ้นส่วนได้"
+
+#: resources/data/hints.ini: [hint:Split to Objects/Parts]
+msgid ""
+"Split to Objects/Parts\n"
+"Did you know that you can split a big object into small ones for easy "
+"colorizing or printing?"
+msgstr ""
+"แยกเป็นวัตถุ/ชิ้นส่วน\n"
+"คุณรู้ไหมว่าคุณสามารถแบ่งวัตถุขนาดใหญ่ออกเป็นชิ้นเล็กเพื่อให้ระบายสีหรือพิมพ์ได้ง่าย"
+
+#: resources/data/hints.ini: [hint:Subtract a Part]
+msgid ""
+"Subtract a Part\n"
+"Did you know that you can subtract one mesh from another using the Negative "
+"part modifier? That way you can, for example, create easily resizable holes "
+"directly in Orca Slicer."
+msgstr ""
+"ลบส่วนหนึ่ง\n"
+"คุณรู้ไหมว่าคุณสามารถลบหนึ่ง mesh จากอีกอันหนึ่งได้โดยใช้ Negative part modifier? ด้วยวิธีนี้ "
+"คุณสามารถสร้างรูที่ปรับขนาดได้อย่างง่ายดายโดยตรงใน Orca Slicer"
+
+#: resources/data/hints.ini: [hint:STEP]
+msgid ""
+"STEP\n"
+"Did you know that you can improve your print quality by slicing a STEP file "
+"instead of an STL?\n"
+"Orca Slicer supports slicing STEP files, providing smoother results than a "
+"lower resolution STL. Give it a try!"
+msgstr ""
+"ขั้นตอน\n"
+"คุณรู้ไหมว่าคุณสามารถปรับปรุงคุณภาพการพิมพ์ได้โดยการแบ่งไฟล์ STEP แทนที่จะเป็น STL\n"
+"Orca Slicer รองรับการแบ่งไฟล์ STEP ซึ่งให้ผลลัพธ์ที่นุ่มนวลกว่า STL ที่มีความละเอียดต่ำกว่า "
+"ลองดูสิ!"
+
+#: resources/data/hints.ini: [hint:Z seam location]
+msgid ""
+"Z seam location\n"
+"Did you know that you can customize the location of the Z seam, and even "
+"paint it on your print, to have it in a less visible location? This improves "
+"the overall look of your model. Check it out!"
+msgstr ""
+"ตำแหน่งรอยตะเข็บ Z\n"
+"คุณรู้ไหมว่าคุณสามารถปรับแต่งตำแหน่งของรอยตะเข็บ Z "
+"และแม้แต่ทาสีบนงานพิมพ์เพื่อให้อยู่ในตำแหน่งที่มองเห็นได้น้อยลง "
+"สิ่งนี้จะช่วยปรับปรุงรูปลักษณ์โดยรวมของโมเดลของคุณ ตรวจสอบออก!"
+
+#: resources/data/hints.ini: [hint:Fine-tuning for flow rate]
+msgid ""
+"Fine-tuning for flow rate\n"
+"Did you know that flow rate can be fine-tuned for even better-looking "
+"prints? Depending on the material, you can improve the overall finish of the "
+"printed model by doing some fine-tuning."
+msgstr ""
+"Fine-tuning for flow rate\n"
+"คุณรู้หรือไม่ว่าอัตราการไหลสามารถปรับได้อย่างละเอียดเพื่อให้งานพิมพ์ดูดีขึ้น "
+"คุณสามารถปรับปรุงการตกแต่งโดยรวมของโมเดลที่พิมพ์ออกมาได้โดยการปรับแต่งแบบละเอียด "
+"ทั้งนี้ขึ้นอยู่กับวัสดุ"
+
+#: resources/data/hints.ini: [hint:Split your prints into plates]
+msgid ""
+"Split your prints into plates\n"
+"Did you know that you can split a model that has a lot of parts into "
+"individual plates ready to print? This will simplify the process of keeping "
+"track of all the parts."
+msgstr ""
+"แบ่งงานพิมพ์ของคุณออกเป็นจาน\n"
+"คุณรู้ไหมว่าคุณสามารถแบ่งแบบจำลองที่มีชิ้นส่วนจำนวนมากออกเป็นเพลตแต่ละอันที่พร้อมพิมพ์ได้ "
+"สิ่งนี้จะทำให้กระบวนการติดตามทุกส่วนง่ายขึ้น"
+
+#: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer
+#: Height]
+msgid ""
+"Speed up your print with Adaptive Layer Height\n"
+"Did you know that you can print a model even faster, by using the Adaptive "
+"Layer Height option? Check it out!"
+msgstr ""
+"เร่งความเร็วการพิมพ์ของคุณด้วย Adaptive Layer Height\n"
+"คุณรู้ไหมว่าคุณสามารถพิมพ์แบบจำลองได้เร็วยิ่งขึ้นด้วยการใช้ตัวเลือก Adaptive Layer Height "
+"ตรวจสอบออก!"
+
+#: resources/data/hints.ini: [hint:Support painting]
+msgid ""
+"Support painting\n"
+"Did you know that you can paint the location of your supports? This feature "
+"makes it easy to place the support material only on the sections of the "
+"model that actually need it."
+msgstr ""
+"ส่วนรองรับการวาดภาพ\n"
+"คุณรู้ไหมว่าคุณสามารถทาสีตำแหน่งของส่วนรองรับของคุณได้? "
+"คุณสมบัตินี้ทำให้ง่ายต่อการวางวัสดุรองรับเฉพาะส่วนของรุ่นที่ต้องการจริงๆ"
+
+#: resources/data/hints.ini: [hint:Different types of supports]
+msgid ""
+"Different types of supports\n"
+"Did you know that you can choose from multiple types of supports? Tree "
+"supports work great for organic models, while saving filament and improving "
+"print speed. Check them out!"
+msgstr ""
+"ส่วนรองรับประเภทต่างๆ\n"
+"คุณรู้ไหมว่าคุณสามารถเลือกส่วนรองรับได้หลายประเภท? Tree ส่วนรองรับ "
+"ใช้งานได้ดีกับโมเดลออร์แกนิก ในขณะที่ประหยัดเส้นพลาสติกและปรับปรุงความเร็วในการพิมพ์ "
+"ตรวจสอบพวกเขาออก!"
+
+#: resources/data/hints.ini: [hint:Printing Silk Filament]
+msgid ""
+"Printing Silk Filament\n"
+"Did you know that Silk filament needs special consideration to print it "
+"successfully? Higher temperature and lower speed are always recommended for "
+"the best results."
+msgstr ""
+"การพิมพ์เส้นไหม\n"
+"คุณรู้หรือไม่ว่าเส้นไหมจำเป็นต้องพิจารณาเป็นพิเศษจึงจะพิมพ์ได้สำเร็จ "
+"แนะนำให้ใช้อุณหภูมิที่สูงขึ้นและความเร็วที่ต่ำลงเพื่อผลลัพธ์ที่ดีที่สุด"
+
+#: resources/data/hints.ini: [hint:Brim for better adhesion]
+msgid ""
+"Brim for better adhesion\n"
+"Did you know that when printed models have a small contact interface with "
+"the printing surface, it's recommended to use a brim?"
+msgstr ""
+"ขอบยึดชิ้นงานเพื่อการยึดเกาะที่ดีขึ้น\n"
+"คุณรู้หรือไม่ว่าเมื่อแบบจำลองที่พิมพ์มีส่วนติดต่อขนาดเล็กกับพื้นผิวการพิมพ์ ขอแนะนำให้ใช้ขอบยึดชิ้นงาน"
+
+#: resources/data/hints.ini: [hint:Set parameters for multiple objects]
+msgid ""
+"Set parameters for multiple objects\n"
+"Did you know that you can set slicing parameters for all selected objects at "
+"once?"
+msgstr ""
+"ตั้งค่าพารามิเตอร์สำหรับวัตถุหลายรายการ\n"
+"คุณรู้ไหมว่าคุณสามารถตั้งค่าพารามิเตอร์การแบ่งส่วนสำหรับวัตถุที่เลือกทั้งหมดได้ในคราวเดียว"
+
+#: resources/data/hints.ini: [hint:Stack objects]
+msgid ""
+"Stack objects\n"
+"Did you know that you can stack objects as a whole one?"
+msgstr ""
+"ซ้อนวัตถุ\n"
+"คุณรู้ไหมว่าคุณสามารถซ้อนวัตถุโดยรวมได้?"
+
+#: resources/data/hints.ini: [hint:Flush into support/objects/infill]
+msgid ""
+"Flush into support/objects/infill\n"
+"Did you know that you can reduce wasted filament by flushing it into support/"
+"objects/infill during filament change?"
+msgstr ""
+"ไล่เส้นเข้าสู่ส่วนรองรับ/วัตถุ/ไส้ใน\n"
+"คุณรู้ไหมว่าคุณสามารถลดการสูญเสียเส้นพลาสติกโดยการทิ้งลงในส่วนรองรับ/วัตถุ/"
+"ไส้ในระหว่างการเปลี่ยนเส้นพลาสติก"
+
+#: resources/data/hints.ini: [hint:Improve strength]
+msgid ""
+"Improve strength\n"
+"Did you know that you can use more wall loops and higher sparse infill "
+"density to improve the strength of the model?"
+msgstr ""
+"ปรับปรุงความแข็งแรง\n"
+"คุณรู้ไหมว่าคุณสามารถใช้ลูปติดผนังได้มากขึ้นและมีความหนาแน่นของไส้ในแบบโปร่งที่สูงขึ้นเพื่อปรับปรุงความแข็งแกร่งของแบบจำลอง"
+
+#: resources/data/hints.ini: [hint:When do you need to print with the printer
+#: door opened]
+msgid ""
+"When do you need to print with the printer door opened?\n"
+"Did you know that opening the printer door can reduce the probability of "
+"extruder/hotend clogging when printing lower temperature filament with a "
+"higher enclosure temperature? More info about this in the Wiki."
+msgstr ""
+"เมื่อใดที่คุณจำเป็นต้องพิมพ์โดยเปิดประตูเครื่องพิมพ์?\n"
+"คุณรู้หรือไม่ว่าการเปิดประตูเครื่องพิมพ์สามารถลดโอกาสที่ชุดดันเส้น/"
+"ฮอตเอนด์จะอุดตันเมื่อพิมพ์เส้นพลาสติกที่มีอุณหภูมิต่ำลงและมีอุณหภูมิของกรอบที่สูงขึ้น "
+"ข้อมูลเพิ่มเติมเกี่ยวกับเรื่องนี้ใน Wiki"
+
+#: resources/data/hints.ini: [hint:Avoid warping]
+msgid ""
+"Avoid warping\n"
+"Did you know that when printing materials that are prone to warping such as "
+"ABS, appropriately increasing the heatbed temperature can reduce the "
+"probability of warping?"
+msgstr ""
+"หลีกเลี่ยงการบิดเบี้ยว\n"
+"คุณรู้หรือไม่ว่าเมื่อพิมพ์วัสดุที่มีแนวโน้มที่จะเกิดการบิดเบี้ยว เช่น ABS "
+"การเพิ่มอุณหภูมิฐานพิมพ์อย่างเหมาะสมสามารถลดความน่าจะเป็นของการบิดเบี้ยวได้"
+
+#, c-format, boost-format
+#~ msgid ""
+#~ "Failed to connect to OrcaCloud.\n"
+#~ "Please check your network connectivity\n"
+#~ "(HTTP %u): %s"
+#~ msgstr ""
+#~ "ไม่สามารถเชื่อมต่อกับ OrcaCloud\n"
+#~ "โปรดตรวจสอบการเชื่อมต่อเครือข่ายของคุณ\n"
+#~ "(HTTP %u): %s"
+
+#, c-format, boost-format
+#~ msgid ""
+#~ "Failed to connect to OrcaCloud.\n"
+#~ "Please check your network connectivity\n"
+#~ "(HTTP %u)"
+#~ msgstr ""
+#~ "ไม่สามารถเชื่อมต่อกับ OrcaCloud\n"
+#~ "โปรดตรวจสอบการเชื่อมต่อเครือข่ายของคุณ\n"
+#~ "(HTTP %u)"
+
+#~ msgid "Cloud Error"
+#~ msgstr "ข้อผิดพลาดคลาวด์"
+
+#~ msgid ""
+#~ "This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This "
+#~ "stops the transmission of data to Bambu's cloud services too. Users who "
+#~ "don't use BBL machines or use LAN mode only can safely turn on this "
+#~ "function."
+#~ msgstr ""
+#~ "การดำเนินการนี้จะปิดใช้งานบริการคลาวด์ทั้งหมด เช่น ออร์ก้าคลาวด์และแบมบูคลาวด์ "
+#~ "ซึ่งจะหยุดการส่งข้อมูลไปยังบริการคลาวด์ของ Bambu ด้วยเช่นกัน ผู้ใช้ที่ไม่ได้ใช้เครื่อง BBL "
+#~ "หรือใช้โหมด LAN เท่านั้นสามารถเปิดฟังก์ชันนี้ได้อย่างปลอดภัย"
+
+#~ 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 ""
+#~ "ตัวเลือก Wipe จะไม่สามารถใช้งานได้เมื่อใช้โหมดการถอนเฟิร์มแวร์\n"
+#~ "\n"
+#~ "ฉันควรปิดการใช้งานเพื่อเปิดใช้งานการถอนเฟิร์มแวร์หรือไม่"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "พบ \"G92 E0\" ใน before_layer_gcode "
+#~ "ซึ่งเข้ากันไม่ได้กับการระบุที่อยู่ของชุดดันเส้นแบบสัมบูรณ์"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "พบ \"G92 E0\" ใน layer_gcode ซึ่งเข้ากันไม่ได้กับการกำหนดที่อยู่ของชุดดันเส้นแบบสัมบูรณ์"
+
+#, 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 ""
+#~ "การแทนที่มุมเชื่อมโยง หากปล่อยให้เหลือศูนย์ มุมเชื่อมโยงจะถูกคำนวณโดยอัตโนมัติ "
+#~ "มิฉะนั้นจะใช้มุมที่ให้ไว้สำหรับสะพานภายนอก ใช้ 180° สำหรับมุมศูนย์"
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "การแทนที่มุมเชื่อมต่อภายใน หากปล่อยให้เหลือศูนย์ มุมเชื่อมโยงจะถูกคำนวณโดยอัตโนมัติ "
+#~ "มิฉะนั้นจะใช้มุมที่ให้ไว้สำหรับสะพานภายใน ใช้ 180° สำหรับมุมศูนย์\n"
+#~ "\n"
+#~ "แนะนำให้ปล่อยไว้ที่ 0 เว้นแต่ว่ามีรุ่นเฉพาะที่ไม่จำเป็นต้องทำ"
+
+#~ msgid ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+#~ msgstr ""
+#~ "ควบคุมความหนาแน่น (ระยะห่าง) ของเส้นสะพานภายนอก ค่าเริ่มต้นคือ 100%\n"
+#~ "\n"
+#~ "สะพานภายนอกที่มีความหนาแน่นต่ำสามารถช่วยปรับปรุงความน่าเชื่อถือได้ "
+#~ "เนื่องจากมีพื้นที่ให้อากาศไหลเวียนรอบสะพานที่อัดขึ้นรูปมากขึ้น "
+#~ "ซึ่งช่วยเพิ่มความเร็วในการทำความเย็น ขั้นต่ำคือ 10%\n"
+#~ "\n"
+#~ "ความหนาแน่นที่สูงขึ้นสามารถสร้างพื้นผิวสะพานที่นุ่มนวลขึ้น "
+#~ "เนื่องจากเส้นที่ทับซ้อนกันจะให้ส่วนรองรับเพิ่มไส้ในในระหว่างการพิมพ์ สูงสุดคือ 120%\n"
+#~ "หมายเหตุ: ความหนาแน่นของสะพานที่สูงเกินไปอาจทำให้เกิดการบิดงอหรืออัดขึ้นรูปมากเกินไปได้"
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "ควบคุมความหนาแน่น (ระยะห่าง) ของเส้นสะพานภายใน 100% หมายถึงสะพานที่มั่นคง "
+#~ "ค่าเริ่มต้นคือ 100%\n"
+#~ "\n"
+#~ "สะพานภายในที่มีความหนาแน่นต่ำสามารถช่วยลดการบุผิวด้านบน "
+#~ "และปรับปรุงความน่าเชื่อถือของสะพานภายใน เนื่องจากมีพื้นที่ให้อากาศไหลเวียนรอบๆ "
+#~ "สะพานที่อัดขึ้นรูปมากขึ้น ซึ่งช่วยเพิ่มความเร็วในการทำความเย็น\n"
+#~ "\n"
+#~ "ตัวเลือกนี้ทำงานได้ดีเป็นพิเศษเมื่อรวมกับตัวเลือกบริดจ์ภายในตัวที่สองเหนือตัวเลือกไส้ใน "
+#~ "ซึ่งจะช่วยปรับปรุงโครงสร้างการเชื่อมต่อภายในเพิ่มไส้ในก่อนที่จะอัดรีดไส้ในแบบทึบ"
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "ลดค่านี้ลงเล็กน้อย (เช่น 0.9) เพื่อลดปริมาณวัสดุสำหรับสะพานและปรับปรุงการย้อย\n"
+#~ "\n"
+#~ "การไหลของบริดจ์จริงที่ใช้คำนวณโดยการคูณค่านี้ด้วยอัตราส่วนการไหลของเส้นพลาสติก "
+#~ "และหากตั้งค่าไว้ อัตราการไหลของวัตถุ"
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "ค่านี้ควบคุมความหนาของชั้นบริดจ์ภายใน นี่เป็นชั้นแรกที่อยู่เหนือไส้ในแบบโปร่ง ลดค่านี้เล็กน้อย "
+#~ "(เช่น 0.9) เพื่อปรับปรุงคุณภาพพื้นผิวมากกว่าไส้ในแบบโปร่ง\n"
+#~ "\n"
+#~ "การไหลของบริดจ์ภายในจริงที่ใช้คำนวณโดยการคูณค่านี้ด้วยอัตราส่วนการไหลของบริดจ์ "
+#~ "อัตราการไหลของเส้นพลาสติก และอัตราการไหลของวัตถุหากตั้งค่าไว้"
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "เปิดใช้งานตัวเลือกนี้เพื่อทำให้การพิมพ์ช้าลงในพื้นที่ที่ขอบด้านนอกอาจโค้งงอขึ้น ตัวอย่างเช่น "
+#~ "การชะลอตัวเพิ่มไส้ในจะถูกนำไปใช้เมื่อพิมพ์ส่วนยื่นบนมุมที่แหลมคม เช่น ด้านหน้าของตัวถัง Benchy "
+#~ "ซึ่งช่วยลดการม้วนงอซึ่งเกิดขึ้นบนหลายชั้น\n"
+#~ "\n"
+#~ "โดยทั่วไป แนะนำให้เปิดตัวเลือกนี้ เว้นแต่ว่าการระบายความร้อนของเครื่องพิมพ์จะแรงเพียงพอ "
+#~ "หรือความเร็วในการพิมพ์ช้าพอที่จะไม่เกิดการม้วนงอของเส้นรอบวง "
+#~ "หากการพิมพ์ด้วยความเร็วรอบนอกสูง "
+#~ "พารามิเตอร์นี้อาจเกิดข้อผิดพลาดเล็กน้อยเมื่อลดความเร็วลงเนื่องจากความเร็วการพิมพ์แตกต่างกันมาก "
+#~ "หากคุณสังเกตเห็นสิ่งผิดปกติ ตรวจสอบให้แน่ใจว่าการปรับPressure Advanceของคุณถูกต้อง\n"
+#~ "\n"
+#~ "หมายเหตุ: เมื่อเปิดใช้งานตัวเลือกนี้ เส้นรอบวงส่วนยื่นจะถือว่าเหมือนกับส่วนยื่น "
+#~ "ซึ่งหมายความว่าความเร็วส่วนยื่นจะถูกใช้ แม้ว่าเส้นรอบวงส่วนยื่นจะเป็นส่วนหนึ่งของสะพานก็ตาม "
+#~ "ตัวอย่างเช่น เมื่อเส้นรอบวงยื่นออกมา 100% โดยไม่มีผนังรองรับจากด้านล่าง "
+#~ "ระบบจะใช้ความเร็วยื่น 100%"
+
+#~ 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 ""
+#~ "หากเปิดใช้งาน สะพานจะมีความน่าเชื่อถือมากกว่า สามารถเชื่อมสะพานในระยะทางที่ไกลกว่าได้ "
+#~ "แต่อาจดูแย่กว่านั้น หากปิดใช้งาน "
+#~ "สะพานจะดูดีขึ้นแต่จะเชื่อถือได้สำหรับระยะทางสะพานที่สั้นกว่าเท่านั้น"
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "หากเปิดใช้งาน บริดจ์ภายในแบบหนาจะถูกนำมาใช้ โดยปกติจะแนะนำให้เปิดฟีเจอร์นี้ อย่างไรก็ตาม "
+#~ "ให้พิจารณาปิดหากคุณใช้หัวฉีดขนาดใหญ่"
+
+#~ msgid ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+#~ msgstr ""
+#~ "จัดทิศทางไส้ในแบบไส้ในและแบบไส้ในพื้นผิวให้สอดคล้องกับการวางแนวของแบบจำลองบนฐานรองพิมพ์ "
+#~ "เมื่อเปิดใช้งาน ทิศทางไส้ในจะหมุนตามโมเดลเพื่อรักษาลักษณะความแข็งแกร่งที่เหมาะสมที่สุด"
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "เส้นพลาสติกสำหรับพิมพ์ ไส้ใน เบาบางภายใน"
+
+#~ msgid "Filament to print walls."
+#~ msgstr "เส้นพลาสติกสำหรับพิมพ์ผนัง"
+
+#~ msgid "Solid infill"
+#~ msgstr "ไส้ในแบบทึบ"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "ฟิลาเมนต์สำหรับพิมพ์ไส้แข็ง"
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "เส้นพลาสติกพิมพ์ฐานรองรับและฐานรองชิ้นงาน \"ค่าเริ่มต้น\" "
+#~ "หมายถึงไม่มีการใช้เส้นพลาสติกเฉพาะเพื่อรองรับและใช้เส้นพลาสติกปัจจุบัน"
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "เส้นพลาสติกสำหรับพิมพ์ส่วนต่อประสานส่วนรองรับ \"ค่าเริ่มต้น\" "
+#~ "หมายความว่าไม่มีการใช้ฟิลาเมนต์เฉพาะสำหรับอินเทอร์เฟซรองรับและมีการใช้ฟิลาเมนต์ปัจจุบัน"
diff --git a/localization/i18n/tr/OrcaSlicer_tr.po b/localization/i18n/tr/OrcaSlicer_tr.po
index ef84e57f0e..3109ec683c 100644
--- a/localization/i18n/tr/OrcaSlicer_tr.po
+++ b/localization/i18n/tr/OrcaSlicer_tr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: 2026-04-08 23:59+0300\n"
"Last-Translator: GlauTech\n"
"Language-Team: \n"
@@ -508,7 +508,7 @@ msgid "Count"
msgstr ""
msgid "Gap"
-msgstr ""
+msgstr "Boşluk"
msgid "Spacing"
msgstr "Boşluk"
@@ -1846,6 +1846,17 @@ msgstr ""
msgid "User logged out"
msgstr "Kullanıcı oturumu kapattı"
+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!"
msgstr ""
"dilimleme işlemi sırasında yeni veya açık proje dosyasına izin verilmez!"
@@ -1860,21 +1871,24 @@ msgstr ""
"Orca Slicer'ın sürümü çok düşük ve normal şekilde kullanılabilmesi için en "
"son sürüme güncellenmesi gerekiyor."
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
@@ -1930,7 +1944,7 @@ msgid "Privacy Policy Update"
msgstr "Gizlilik Politikası Güncellemesi"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
msgstr ""
msgid "your default profile"
@@ -2180,6 +2194,9 @@ msgstr "Simit"
msgid "Orca Cube"
msgstr "Orca Küpü"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Orca tolerans testi"
@@ -5252,7 +5269,7 @@ msgid "Filament change times"
msgstr "Filament değişim süreleri"
msgid "Tool changes"
-msgstr ""
+msgstr "Takım değişiklikleri"
msgid "Color change"
msgstr "Renk değişimi"
@@ -5520,6 +5537,9 @@ msgstr "Çıkıntılar"
msgid "Outline"
msgstr "Taslak"
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr "Perspektif"
@@ -5536,7 +5556,7 @@ msgid "Paint Toolbar"
msgstr "Boyama Araç Çubuğu"
msgid "part selection"
-msgstr ""
+msgstr "parça seçimi"
msgid "Explosion Ratio"
msgstr "Patlama Oranı"
@@ -5562,7 +5582,7 @@ msgstr "Hacim:"
msgid "Size:"
msgstr "Boyut:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5822,15 +5842,18 @@ msgstr "Kurulum sihirbazı"
msgid "Show Configuration Folder"
msgstr "Yapılandırma Klasörünü Göster"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "Ağ Testini Aç"
+
msgid "Show Tip of the Day"
msgstr "Günün İpucunu Göster"
msgid "Check for Updates"
msgstr "Güncellemeleri Kontrol Et"
-msgid "Open Network Test"
-msgstr "Ağ Testini Aç"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "&Hakkında %s"
@@ -7172,6 +7195,12 @@ msgstr "Başarıyla dışarı aktarıldı"
msgid "Model file downloaded."
msgstr "Model dosyası indirildi."
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr ""
@@ -8199,6 +8228,12 @@ msgstr ""
"Model ağlarında boole işlemi gerçekleştirilemiyor. Yalnızca pozitif parçalar "
"ihraç edilecektir."
+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?"
msgstr "Yazıcı hazır mı? Baskı plakası takılı, boş ve temiz mi?"
@@ -8764,6 +8799,24 @@ msgstr ""
msgid "Graphics"
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"
msgstr ""
@@ -8821,9 +8874,16 @@ msgid "Stealth mode"
msgstr "Gizli mod"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
msgid "Network test"
@@ -8981,6 +9041,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr "Anormal Depolamaya İzin Ver"
@@ -10107,8 +10175,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Araç başlığı olmadan timelapse kaydederken, bir \"Timelapse Wipe Tower\" "
"eklenmesi önerilir.\n"
@@ -10591,13 +10659,11 @@ msgid "Retraction when switching material"
msgstr "Malzemeyi Değiştirirken Geri Çekme"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"Yazılımsal Geri Çekme modunu kullanırken Temizleme seçeneği kullanılamaz.\n"
-"\n"
-"Yazılımsal Geri Çekmeyi etkinleştirmek için bunu devre dışı bırakmalı mıyım?"
msgid "Firmware Retraction"
msgstr "Yazılımsal Geri Çekme"
@@ -11384,16 +11450,16 @@ msgid "Global shortcuts"
msgstr "Genel kısayollar"
msgid "Pan View"
-msgstr ""
+msgstr "Pan Görünümü"
msgid "Rotate View"
-msgstr ""
+msgstr "Görüntüyü döndür"
msgid "Middle mouse button"
msgstr ""
msgid "Zoom View"
-msgstr ""
+msgstr "Zoom Görünümü"
msgid ""
"Auto orients selected objects or all objects. If there are selected objects, "
@@ -12075,8 +12141,8 @@ msgid ""
"Please select \"By object\" print sequence to print multiple objects in "
"spiral vase mode."
msgstr ""
-"Birden fazla nesneyi spiral vazo modunda yazdırmak için lütfen \"Nesneye "
-"göre\" yazdırma sırasını seçin."
+"Birden fazla nesneyi spiral vazo modunda yazdırmak için lütfen \"Nesneye göre"
+"\" yazdırma sırasını seçin."
msgid ""
"The spiral vase mode does not work when an object contains more than one "
@@ -12267,6 +12333,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
msgstr "Katman yüksekliği nozul çapını aşamaz."
+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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -12277,18 +12356,14 @@ msgstr ""
"Layer_gcode'a \"G92 E0\" ekleyin."
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"Before_layer_gcode'da \"G92 E0\" bulundu ve bu, mutlak ekstruder "
-"adreslemeyle uyumsuzdu."
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"Layer_gcode'da mutlak ekstruder adreslemeyle uyumlu olmayan \"G92 E0\" "
-"bulundu."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -12395,6 +12470,31 @@ msgstr "Yazdırılabilir alan"
msgid "Extruder printable area"
msgstr "Ekstruder yazdırılabilir alan"
+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"
msgstr "Tablada hariç tutulan bölge"
@@ -12531,6 +12631,12 @@ msgstr ""
"Bu alan, kimlik doğrulama için gereken API Anahtarını veya şifreyi "
"içermelidir."
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "Yazıcı adı."
@@ -12874,119 +12980,134 @@ msgstr "Dış köprü dolgu yönü"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"Köprüleme açısı geçersiz kılma. Sıfıra bırakılırsa köprüleme açısı otomatik "
-"olarak hesaplanacaktır. Aksi halde dış köprüler için sağlanan açı "
-"kullanılacaktır. Sıfır açı için 180°'yi kullanın."
msgid "Internal bridge infill direction"
msgstr "İç köprü dolgu yönü"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"İç köprüleme açısı geçersiz kılma. Sıfır olarak bırakılırsa, köprüleme açısı "
-"otomatik olarak hesaplanacaktır. Aksi takdirde sağlanan açı iç köprüler için "
-"kullanılacaktır. Sıfır açı için 180° kullanın.\n"
-"\n"
-"Belirli bir model ihtiyacı olmadığı sürece 0’da bırakılması önerilir."
msgid "External bridge density"
msgstr "Dış köprü yoğunluğu"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
-"Harici köprü hatlarının yoğunluğunu (aralığını) kontrol eder. Varsayılan "
-"%100'dür.\n"
-"\n"
-"Daha düşük yoğunluklu harici köprüler, ekstrüzyonlu köprü çevresinde havanın "
-"dolaşımı için daha fazla alan olduğundan ve soğutma hızını arttırdığından "
-"güvenilirliğin artırılmasına yardımcı olabilir. Asgari %10'dur.\n"
-"\n"
-"Üst üste binen çizgiler yazdırma sırasında ek destek sağladığından, daha "
-"yüksek yoğunluklar daha düzgün köprü yüzeyleri üretebilir. Maksimum "
-"%120'dir.\n"
-"Not: Çok yüksek köprü yoğunluğu bükülmeye veya aşırı ekstrüzyona neden "
-"olabilir."
msgid "Internal bridge density"
msgstr "İç köprü yoğunluğu"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"İç köprü çizgilerinin yoğunluğunu (aralığını) kontrol eder. 100 katı köprü "
-"anlamına gelir. Varsayılan değer %100’dür.\n"
-"\n"
-" Daha düşük yoğunluklu iç köprüler, üst yüzeydeki yastıklanmayı azaltmaya "
-"yardımcı olabilir ve ekstrüde köprünün etrafında havanın dolaşması için daha "
-"fazla alan olduğundan iç köprü güvenilirliğini artırarak soğutma hızını "
-"artırır.\n"
-"\n"
-"Bu seçenek, dolgu üzerine ikinci iç köprü seçeneği ile birleştirildiğinde "
-"özellikle iyi çalışır ve katı dolgu ekstrüde edilmeden önce iç köprüleme "
-"yapısını daha da iyileştirir."
msgid "Bridge flow ratio"
msgstr "Köprülerde akış oranı"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Köprü için malzeme miktarını azaltmak ve sarkmayı iyileştirmek amacıyla bu "
-"değeri biraz azaltın (örneğin 0,9).\n"
+
+#, 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"
-"Kullanılan gerçek köprü akışı, bu değerin filament akış oranıyla ve "
-"ayarlandıysa nesnenin akış oranıyla çarpılmasıyla hesaplanır."
+"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"
msgstr "İç köprü akış oranı"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Bu değer iç köprü katmanının kalınlığını belirler. Bu, seyrek dolgunun "
-"üzerindeki ilk katmandır. Seyrek dolguya göre yüzey kalitesini iyileştirmek "
-"için bu değeri biraz azaltın (örneğin 0,9).\n"
-"\n"
-"Kullanılan gerçek iç köprü akışı, bu değerin köprü akış oranı, filament akış "
-"oranı ve ayarlandıysa nesnenin akış oranıyla çarpılmasıyla hesaplanır."
msgid "Top surface flow ratio"
msgstr "Üst katı dolgu akış oranı"
@@ -13324,40 +13445,35 @@ msgstr "Kıvrılmış dış duvarlarda hızı düşür"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"Çevrelerin yukarıya doğru kıvrılmış olabileceği alanlarda yazdırmayı "
-"yavaşlatmak için bu seçeneği etkinleştirin. Örneğin, Benchy gövdesinin önü "
-"gibi keskin köşelerdeki çıkıntılara yazdırırken birden fazla katman üzerinde "
-"oluşan kıvrılmayı azaltacak şekilde ek yavaşlama uygulanacaktır.\n"
-"\n"
-" Yazıcınızın soğutması yeterince güçlü olmadığı veya yazdırma hızı çevre "
-"kıvrılmasını önleyecek kadar yavaş olmadığı sürece, genellikle bu seçeneğin "
-"açık olması önerilir. Yüksek harici çevre hızıyla yazdırılıyorsa, bu "
-"parametre, yazdırma hızlarındaki büyük farklılıklar nedeniyle yavaşlama "
-"sırasında hafif bozulmalara neden olabilir. Artefaktlar fark ederseniz "
-"basınç ilerlemenizin doğru şekilde ayarlandığından emin olun.\n"
-"\n"
-"Not: Bu seçenek etkinleştirildiğinde, çıkıntı çevreleri çıkıntılar gibi ele "
-"alınır; bu, çıkıntının çevresi bir köprünün parçası olsa bile çıkıntı "
-"hızının uygulandığı anlamına gelir. Örneğin, çevreler 100% çıkıntılı "
-"olduğunda ve onları alttan destekleyen bir duvar olmadığında 100% çıkıntı "
-"hızı uygulanacaktır."
msgid "mm/s or %"
msgstr "mm/s veya %"
@@ -13621,26 +13737,25 @@ msgid "Thick external bridges"
msgstr "Kalın dış köprüler"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Etkinleştirilirse köprüler daha güvenilir olur, daha uzun mesafeler arasında "
-"köprü kurabilir ancak daha kötü görünebilir. Devre dışı bırakıldığında "
-"köprüler daha iyi görünür ancak yalnızca daha kısa köprü mesafeleri için "
-"güvenilirdir."
msgid "Thick internal bridges"
msgstr "Kalın iç köprüler"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Etkinleştirilirse kalın iç köprüler kullanılacaktır. Genellikle bu özelliğin "
-"açık olması önerilir. Ancak büyük nozul uçları kullanıyorsanız kapatmayı "
-"düşünün."
msgid "Extra bridge layers (beta)"
msgstr "Ekstra köprü katmanları (beta)"
@@ -14878,13 +14993,11 @@ msgid "Align infill direction to model"
msgstr "Dolgu yönünü modele hizalayın"
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
-"Dolgu ve yüzey dolgu yönlerini, modelin yapı plakasındaki yönünü takip "
-"edecek şekilde hizalar. Etkinleştirildiğinde, dolgu yönleri optimum "
-"dayanıklılık özelliklerini korumak için modelle birlikte döner."
msgid "Insert solid layers"
msgstr "Katı katmanlar ekle"
@@ -14913,6 +15026,7 @@ msgstr ""
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -15009,6 +15123,27 @@ msgid ""
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
msgstr "Dolgu açılı çizgilerinin açısı 60° ise saf petek görünümü elde edilir."
+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"
msgstr "Dolgu uzunluğu"
@@ -15096,8 +15231,8 @@ msgid "mm/s² or %"
msgstr "mm/s² veya %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Seyrek dolgunun hızlandırılması. Değer yüzde olarak ifade edilirse (örn. "
"%100), varsayılan ivmeye göre hesaplanacaktır."
@@ -15229,17 +15364,16 @@ msgstr "Maksimum fan hızı"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"Fan hızı, \"close_fan_the_first_x_layers\" katmanında sıfırdan "
"\"ful_fan_speed_layer\" katmanında maksimuma doğrusal olarak artırılacaktır. "
"\"full_fan_speed_layer\", \"close_fan_the_first_x_layers\" değerinden "
-"düşükse göz ardı edilecektir; bu durumda fan, "
-"\"close_fan_the_first_x_layers\" + 1 katmanında izin verilen maksimum hızda "
-"çalışacaktır."
+"düşükse göz ardı edilecektir; bu durumda fan, \"close_fan_the_first_x_layers"
+"\" + 1 katmanında izin verilen maksimum hızda çalışacaktır."
msgid "layer"
msgstr "katman"
@@ -15766,7 +15900,7 @@ msgid ""
msgstr ""
msgid "%"
-msgstr ""
+msgstr "%"
msgid "Time cost"
msgstr "Zaman maliyeti"
@@ -16024,8 +16158,10 @@ msgstr "Sondalama topaklanma alanını hariç tutar"
msgid "Probing exclude area of clumping."
msgstr "Sondalama, topaklanma alanını hariç tutar."
-msgid "Filament to print internal sparse infill."
-msgstr "İç seyrek dolguyu yazdırmak için filament."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -16247,7 +16383,7 @@ msgid ""
msgstr ""
msgid "°"
-msgstr ""
+msgstr "°/s"
msgid "Don't alternate fill direction"
msgstr ""
@@ -16675,7 +16811,7 @@ msgstr ""
"etkinleştirin. G-code komut: M106 P2 S(0-255)"
msgid "For the first"
-msgstr ""
+msgstr "İlk olarak"
msgid "Set special auxiliary cooling fan for the first certain layers."
msgstr ""
@@ -16865,8 +17001,21 @@ msgstr ""
"Çizgi genişliğine göre çıkıntı yüzdesini tespit edin ve yazdırmak için "
"farklı hızlar kullanın. %%100 çıkıntı için köprü hızı kullanılır."
-msgid "Filament to print walls."
-msgstr "Duvarları yazdırmak için filament."
+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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -17379,8 +17528,8 @@ msgid "Role base wipe speed"
msgstr "Otomatik temizleme hızı"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -17564,11 +17713,20 @@ msgstr ""
"Eşik değerinden küçük olan seyrek dolgu alanı, yerini iç katı dolguya "
"bırakmıştır."
-msgid "Solid infill"
-msgstr "Katı dolgu"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "Katı dolguyu yazdırmak için filament."
+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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -17943,12 +18101,10 @@ msgid "Support/raft base"
msgstr "Destek/raft tabanı"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"Destek tabanını ve salı yazdırmak için filament. \"Varsayılan\", destek için "
-"belirli bir filamentin olmadığı ve mevcut filamentin kullanıldığı anlamına "
-"gelir."
msgid "Avoid interface filament for base"
msgstr "Taban için arayüz filamentini azaltın"
@@ -17979,11 +18135,10 @@ msgid "Support/raft interface"
msgstr "Destek/raft arayüzü"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"Filament baskı desteği arayüzü. \"Varsayılan\", destek arayüzü için özel bir "
-"filamentin olmadığı ve mevcut filamentin kullanıldığı anlamına gelir."
msgid "Top interface layers"
msgstr "Üst arayüz katmanları"
@@ -18308,8 +18463,8 @@ msgstr "Sıcaklık kontrolünü etkinleştirin"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -19055,6 +19210,9 @@ msgstr "geçersiz değer "
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "Spiral vazo modu etkinleştirildiğinde geçersiz değer: "
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "çok büyük çizgi genişliği "
@@ -19314,12 +19472,18 @@ msgid "Debug level"
msgstr "Hata ayıklama düzeyi"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
msgstr ""
"Hata ayıklama günlüğü düzeyini ayarlar. 0:önemli, 1:hata, 2:uyarı, 3:bilgi, "
"4:hata ayıklama, 5:izleme\n"
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
+msgstr ""
+
msgid "Enable timelapse for print"
msgstr "Yazdırma için hızlandırılmış çekimi etkinleştir"
@@ -20846,6 +21010,15 @@ msgstr ""
msgid "Top Surface Pattern"
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"
msgstr "G Kodunu yazıcı ana bilgisayarına gönder"
@@ -20868,6 +21041,48 @@ msgstr "Yüklenen dosya adı \"%s\" ile bitmiyor. Devam etmek istiyor musunuz?"
msgid "Upload"
msgstr "Yükle"
+msgid "Leveling before print"
+msgstr ""
+
+msgid "Time-lapse"
+msgstr "Hızlandırılmış"
+
+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"
msgstr "Ana yazıcıyükleme kuyruğunu yazdır"
@@ -20912,9 +21127,6 @@ msgstr ""
"Seçilen plaka tipi dosyayla eşleşmiyor. Lütfen yazdırmaya başlamadan önce "
"onaylayın."
-msgid "Time-lapse"
-msgstr "Hızlandırılmış"
-
msgid "Heated Bed Leveling"
msgstr "Isıtmalı Yatak Seviyeleme"
@@ -20924,6 +21136,16 @@ msgstr "Textured Build Plate (A Tarafı)"
msgid "Smooth Build Plate (Side B)"
msgstr "Smooth Build Plate (B Tarafı)"
+#, 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"
msgstr "Seçilen parçalarda bölme işlemi gerçekleştirilemiyor"
@@ -21105,8 +21327,8 @@ msgstr ""
"Yeniden yazmak ister misin?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
"Ön ayarları şu şekilde yeniden adlandırırdık: \"Satıcı Türü Seçtiğiniz Seri "
@@ -21625,9 +21847,18 @@ msgstr ""
"Yazıcı iletişimi için ağ aracısı uygulamasını seçin. Kullanılabilir aracılar "
"başlangıçta kaydedilir."
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "Geçerli bir Yazıcı Ana Bilgisayarı referansı alınamadı"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "Başarılı!"
@@ -21678,6 +21909,30 @@ msgstr ""
"Yazdırma ana bilgisayarı aracılığıyla bağlanan yazıcılara bağlantı başarısız "
"oldu."
+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
msgid "Mismatched type of print host: %s"
msgstr "Eşleşmeyen yazdırma ana bilgisayarı türü: %s"
@@ -22432,7 +22687,7 @@ msgid "Global settings"
msgstr "Genel ayarlar"
msgid "Video tutorial"
-msgstr ""
+msgstr "Öğretici Video"
msgid "(Sync with printer)"
msgstr "(Yazıcıyla senkronize edin)"
@@ -22474,12 +22729,27 @@ msgid "SimplyPrint account not linked. Go to Connect options to set it up."
msgstr ""
"SimplyPrint hesabı bağlı değil. Ayarlamak için Bağlantı seçeneklerine gidin."
+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."
msgstr "Flashforge'a seri bağlantı düzgün çalışıyor."
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr "Flashforge'a seri bağlantı yoluyla bağlanılamadı"
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "Sağlanan durum doğru değil."
@@ -23106,6 +23376,231 @@ msgstr ""
"sıcaklığının uygun şekilde arttırılmasının bükülme olasılığını "
"azaltabileceğini biliyor muydunuz?"
+#~ 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 ""
+#~ "Yazılımsal Geri Çekme modunu kullanırken Temizleme seçeneği "
+#~ "kullanılamaz.\n"
+#~ "\n"
+#~ "Yazılımsal Geri Çekmeyi etkinleştirmek için bunu devre dışı bırakmalı "
+#~ "mıyım?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "Before_layer_gcode'da \"G92 E0\" bulundu ve bu, mutlak ekstruder "
+#~ "adreslemeyle uyumsuzdu."
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "Layer_gcode'da mutlak ekstruder adreslemeyle uyumlu olmayan \"G92 E0\" "
+#~ "bulundu."
+
+#, 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 ""
+#~ "Köprüleme açısı geçersiz kılma. Sıfıra bırakılırsa köprüleme açısı "
+#~ "otomatik olarak hesaplanacaktır. Aksi halde dış köprüler için sağlanan "
+#~ "açı kullanılacaktır. Sıfır açı için 180°'yi kullanın."
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "İç köprüleme açısı geçersiz kılma. Sıfır olarak bırakılırsa, köprüleme "
+#~ "açısı otomatik olarak hesaplanacaktır. Aksi takdirde sağlanan açı iç "
+#~ "köprüler için kullanılacaktır. Sıfır açı için 180° kullanın.\n"
+#~ "\n"
+#~ "Belirli bir model ihtiyacı olmadığı sürece 0’da bırakılması önerilir."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+#~ msgstr ""
+#~ "Harici köprü hatlarının yoğunluğunu (aralığını) kontrol eder. Varsayılan "
+#~ "%100'dür.\n"
+#~ "\n"
+#~ "Daha düşük yoğunluklu harici köprüler, ekstrüzyonlu köprü çevresinde "
+#~ "havanın dolaşımı için daha fazla alan olduğundan ve soğutma hızını "
+#~ "arttırdığından güvenilirliğin artırılmasına yardımcı olabilir. Asgari "
+#~ "%10'dur.\n"
+#~ "\n"
+#~ "Üst üste binen çizgiler yazdırma sırasında ek destek sağladığından, daha "
+#~ "yüksek yoğunluklar daha düzgün köprü yüzeyleri üretebilir. Maksimum "
+#~ "%120'dir.\n"
+#~ "Not: Çok yüksek köprü yoğunluğu bükülmeye veya aşırı ekstrüzyona neden "
+#~ "olabilir."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "İç köprü çizgilerinin yoğunluğunu (aralığını) kontrol eder. 100 katı "
+#~ "köprü anlamına gelir. Varsayılan değer %100’dür.\n"
+#~ "\n"
+#~ " Daha düşük yoğunluklu iç köprüler, üst yüzeydeki yastıklanmayı azaltmaya "
+#~ "yardımcı olabilir ve ekstrüde köprünün etrafında havanın dolaşması için "
+#~ "daha fazla alan olduğundan iç köprü güvenilirliğini artırarak soğutma "
+#~ "hızını artırır.\n"
+#~ "\n"
+#~ "Bu seçenek, dolgu üzerine ikinci iç köprü seçeneği ile birleştirildiğinde "
+#~ "özellikle iyi çalışır ve katı dolgu ekstrüde edilmeden önce iç köprüleme "
+#~ "yapısını daha da iyileştirir."
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "Köprü için malzeme miktarını azaltmak ve sarkmayı iyileştirmek amacıyla "
+#~ "bu değeri biraz azaltın (örneğin 0,9).\n"
+#~ "\n"
+#~ "Kullanılan gerçek köprü akışı, bu değerin filament akış oranıyla ve "
+#~ "ayarlandıysa nesnenin akış oranıyla çarpılmasıyla hesaplanır."
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "Bu değer iç köprü katmanının kalınlığını belirler. Bu, seyrek dolgunun "
+#~ "üzerindeki ilk katmandır. Seyrek dolguya göre yüzey kalitesini "
+#~ "iyileştirmek için bu değeri biraz azaltın (örneğin 0,9).\n"
+#~ "\n"
+#~ "Kullanılan gerçek iç köprü akışı, bu değerin köprü akış oranı, filament "
+#~ "akış oranı ve ayarlandıysa nesnenin akış oranıyla çarpılmasıyla "
+#~ "hesaplanır."
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "Çevrelerin yukarıya doğru kıvrılmış olabileceği alanlarda yazdırmayı "
+#~ "yavaşlatmak için bu seçeneği etkinleştirin. Örneğin, Benchy gövdesinin "
+#~ "önü gibi keskin köşelerdeki çıkıntılara yazdırırken birden fazla katman "
+#~ "üzerinde oluşan kıvrılmayı azaltacak şekilde ek yavaşlama "
+#~ "uygulanacaktır.\n"
+#~ "\n"
+#~ " Yazıcınızın soğutması yeterince güçlü olmadığı veya yazdırma hızı çevre "
+#~ "kıvrılmasını önleyecek kadar yavaş olmadığı sürece, genellikle bu "
+#~ "seçeneğin açık olması önerilir. Yüksek harici çevre hızıyla "
+#~ "yazdırılıyorsa, bu parametre, yazdırma hızlarındaki büyük farklılıklar "
+#~ "nedeniyle yavaşlama sırasında hafif bozulmalara neden olabilir. "
+#~ "Artefaktlar fark ederseniz basınç ilerlemenizin doğru şekilde "
+#~ "ayarlandığından emin olun.\n"
+#~ "\n"
+#~ "Not: Bu seçenek etkinleştirildiğinde, çıkıntı çevreleri çıkıntılar gibi "
+#~ "ele alınır; bu, çıkıntının çevresi bir köprünün parçası olsa bile çıkıntı "
+#~ "hızının uygulandığı anlamına gelir. Örneğin, çevreler 100% çıkıntılı "
+#~ "olduğunda ve onları alttan destekleyen bir duvar olmadığında 100% çıkıntı "
+#~ "hızı uygulanacaktır."
+
+#~ 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 ""
+#~ "Etkinleştirilirse köprüler daha güvenilir olur, daha uzun mesafeler "
+#~ "arasında köprü kurabilir ancak daha kötü görünebilir. Devre dışı "
+#~ "bırakıldığında köprüler daha iyi görünür ancak yalnızca daha kısa köprü "
+#~ "mesafeleri için güvenilirdir."
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "Etkinleştirilirse kalın iç köprüler kullanılacaktır. Genellikle bu "
+#~ "özelliğin açık olması önerilir. Ancak büyük nozul uçları kullanıyorsanız "
+#~ "kapatmayı düşünün."
+
+#~ msgid ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+#~ msgstr ""
+#~ "Dolgu ve yüzey dolgu yönlerini, modelin yapı plakasındaki yönünü takip "
+#~ "edecek şekilde hizalar. Etkinleştirildiğinde, dolgu yönleri optimum "
+#~ "dayanıklılık özelliklerini korumak için modelle birlikte döner."
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "İç seyrek dolguyu yazdırmak için filament."
+
+#~ msgid "Filament to print walls."
+#~ msgstr "Duvarları yazdırmak için filament."
+
+#~ msgid "Solid infill"
+#~ msgstr "Katı dolgu"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "Katı dolguyu yazdırmak için filament."
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "Destek tabanını ve salı yazdırmak için filament. \"Varsayılan\", destek "
+#~ "için belirli bir filamentin olmadığı ve mevcut filamentin kullanıldığı "
+#~ "anlamına gelir."
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "Filament baskı desteği arayüzü. \"Varsayılan\", destek arayüzü için özel "
+#~ "bir filamentin olmadığı ve mevcut filamentin kullanıldığı anlamına gelir."
+
#~ msgid "Erase all painting"
#~ msgstr "Tüm boyamayı sil"
diff --git a/localization/i18n/uk/OrcaSlicer_uk.po b/localization/i18n/uk/OrcaSlicer_uk.po
index d8bfad864f..8f40252485 100644
--- a/localization/i18n/uk/OrcaSlicer_uk.po
+++ b/localization/i18n/uk/OrcaSlicer_uk.po
@@ -1,8 +1,9 @@
+#
msgid ""
msgstr ""
"Project-Id-Version: orcaslicerua\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: 2025-03-07 09:30+0200\n"
"Last-Translator: \n"
"Language-Team: Ukrainian\n"
@@ -13,11 +14,11 @@ msgstr ""
"Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 "
"&& n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 "
"&& n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n"
-"X-Crowdin-Project: orcaslicerua\n"
-"X-Crowdin-Project-ID: 748805\n"
-"X-Crowdin-Language: uk\n"
"X-Crowdin-File: OrcaSlicer.pot\n"
"X-Crowdin-File-ID: 13\n"
+"X-Crowdin-Language: uk\n"
+"X-Crowdin-Project: orcaslicerua\n"
+"X-Crowdin-Project-ID: 748805\n"
"X-Generator: Poedit 3.5\n"
msgid "right"
@@ -82,16 +83,16 @@ msgid "Current AMS humidity"
msgstr "Поточна вологість AMS"
msgid "Humidity"
-msgstr ""
+msgstr "Вологість"
msgid "Temperature"
msgstr "Температура"
msgid "Left Time"
-msgstr ""
+msgstr "Часу залишилося"
msgid "Drying"
-msgstr ""
+msgstr "Сушка"
msgid "Idle"
msgstr "Холостий хід"
@@ -254,7 +255,7 @@ msgid "Reset"
msgstr "Скинути"
msgid "Enter"
-msgstr ""
+msgstr "Друкарка"
msgid "Shortcut Key "
msgstr "Комбінація клавіш "
@@ -279,10 +280,10 @@ msgid "Painted using: Filament %1%"
msgstr "Забарвлений за допомогою: Філамент %1%"
msgid "To:"
-msgstr ""
+msgstr "До:"
msgid "Paint-on fuzzy skin"
-msgstr ""
+msgstr "Нанесення текстури"
msgid "Add fuzzy skin"
msgstr ""
@@ -291,7 +292,7 @@ msgid "Remove fuzzy skin"
msgstr ""
msgid "Reset selection"
-msgstr ""
+msgstr "Скинути вибір"
msgid ""
"Warning: Fuzzy skin is disabled, painted fuzzy skin will not take effect!"
@@ -337,10 +338,10 @@ msgid "mm"
msgstr "мм"
msgid "Part selection"
-msgstr ""
+msgstr "Вибір частини"
msgid "Fixed step drag"
-msgstr ""
+msgstr "Фіксоване перетягування кроками"
msgid "Context Menu"
msgstr ""
@@ -349,13 +350,13 @@ msgid "Toggle Auto-Drop"
msgstr ""
msgid "Single sided scaling"
-msgstr ""
+msgstr "Масштабування в одну сторону"
msgid "Position"
msgstr "Позиція"
msgid "Rotate (relative)"
-msgstr ""
+msgstr "Повернути (відносно)"
msgid "Scale ratios"
msgstr "Коефіцієнти масштабування"
@@ -395,15 +396,16 @@ msgstr ""
msgid "Reset current rotation to the value when open the rotation tool."
msgstr ""
+"Скинути поточне обертання до значення при відкритті інструмента обертання."
msgid "Rotate (absolute)"
-msgstr ""
+msgstr "Обертання (абсолютне)"
msgid "Reset current rotation to real zeros."
-msgstr ""
+msgstr "Скинути поточне обертання до нульових значень."
msgid "Part coordinates"
-msgstr ""
+msgstr "Координати частини"
#. TRN - Input label. Be short as possible
msgid "Size"
@@ -503,7 +505,7 @@ msgid "Count"
msgstr ""
msgid "Gap"
-msgstr ""
+msgstr "Проміжок"
msgid "Spacing"
msgstr "Відстань"
@@ -775,7 +777,7 @@ msgid "Leaving Seam painting"
msgstr "Leaving Seam Painting"
msgid "Paint-on seam editing"
-msgstr ""
+msgstr "Paint-on seam editing"
#. TRN - Input label. Be short as possible
#. Select look of letter shape
@@ -1571,15 +1573,17 @@ msgstr "Об'єднати у збірку"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
+"Будь ласка, підтвердіть коефіцієнт вибуху = 1 та виберіть принаймні два "
+"об’єми."
msgid "Please select at least two volumes."
-msgstr ""
+msgstr "Будь ласка, виберіть принаймні два об’єми."
msgid "(Moving)"
-msgstr ""
+msgstr "(Переміщення)"
msgid "Point and point assembly"
-msgstr ""
+msgstr "Збірка точка до точки"
msgid "Warning: please select two different meshes."
msgstr "Попередження: будь ласка, виберіть дві різні сітки."
@@ -1595,15 +1599,18 @@ msgid ""
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
+"Рекомендується спочатку зібрати об’єкти,\n"
+"оскільки об’єкти обмежені платформою,\n"
+"і тільки частини можуть бути підняті."
msgid "Face and face assembly"
-msgstr ""
+msgstr "Збірка грань до грані"
msgid "Ctrl+"
msgstr "Ctrl+"
msgid "Alt+"
-msgstr ""
+msgstr "Alt+"
msgid "Notice"
msgstr "Повідомлення"
@@ -1841,6 +1848,17 @@ msgstr ""
msgid "User logged out"
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!"
msgstr "новий або відкритий файл проекту не дозволяється в процесі нарізки!"
@@ -1854,21 +1872,24 @@ msgstr ""
"Версія студії Bambu надто низька, її необхідно оновити до останньоїверсії, "
"перш ніж її можна буде використовувати у звичайному режимі"
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
@@ -1911,7 +1932,7 @@ msgid "Privacy Policy Update"
msgstr "Оновлення політики конфіденційності"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
msgstr ""
msgid "your default profile"
@@ -2139,7 +2160,7 @@ msgid "Delete the selected object"
msgstr "Видалення вибраних моделей"
msgid "Backspace"
-msgstr ""
+msgstr "Назад"
msgid "Load..."
msgstr "Завантажити..."
@@ -2162,6 +2183,9 @@ msgstr "Тороїд"
msgid "Orca Cube"
msgstr "Orca Куб"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Тест на допуски ORCA"
@@ -2463,28 +2487,28 @@ msgid "Remove the selected plate"
msgstr "Видалити вибрану пластину"
msgid "Add instance"
-msgstr ""
+msgstr "Додати копію"
msgid "Add one more instance of the selected object"
-msgstr ""
+msgstr "Додати ще одну копію обраного об'єкта"
msgid "Remove instance"
-msgstr ""
+msgstr "Видалити копію"
msgid "Remove one instance of the selected object"
-msgstr ""
+msgstr "Видалити одну копію обраного об'єкта"
msgid "Set number of instances"
-msgstr ""
+msgstr "Задати кількість копій"
msgid "Change the number of instances of the selected object"
-msgstr ""
+msgstr "Змінити кількість копій обраного об'єкта"
msgid "Fill bed with instances"
-msgstr ""
+msgstr "Заповнити весь стіл копіями"
msgid "Fill the remaining area of bed with instances of the selected object"
-msgstr ""
+msgstr "Заповнити область столу, що залишилася, копіями обраного об'єкта"
msgid "Clone"
msgstr "Зробити копію"
@@ -2621,7 +2645,7 @@ msgstr ""
"вибраних моделей."
msgid "Remove paint-on fuzzy skin"
-msgstr ""
+msgstr "Видалити намальовану текстурну оболонку"
msgid "Delete connector from object which is a part of cut"
msgstr "Видалити конектор з об'єкта, який є частиною розрізу"
@@ -2659,7 +2683,7 @@ msgid "Deleting the last solid part is not allowed."
msgstr "Видалення останньої твердотільного частини не допускається."
msgid "The target object contains only one part and can not be split."
-msgstr ""
+msgstr "Цільовий об’єкт містить лише одну частину і не може бути розділений."
msgid "Assembly"
msgstr "Збірка"
@@ -2983,10 +3007,10 @@ msgid ""
msgstr ""
msgid "Change Anyway"
-msgstr ""
+msgstr "Змінити все одно"
msgid "Off"
-msgstr ""
+msgstr "Вимк."
msgid "Filter"
msgstr "Фільтрувати"
@@ -3005,24 +3029,26 @@ msgid ""
"The selected material only supports the current fan mode, and it can't be "
"changed during printing."
msgstr ""
+"Обраний матеріал підтримує тільки поточний режим вентилятора, і його не "
+"можна змінити під час друку."
msgid "Cooling"
msgstr "Охолодження"
msgid "Heating"
-msgstr ""
+msgstr "Обігрів"
msgid "Exhaust"
-msgstr ""
+msgstr "Вихлоп"
msgid "Full Cooling"
-msgstr ""
+msgstr "Повне охолодження"
msgid "Init"
msgstr ""
msgid "Chamber"
-msgstr ""
+msgstr "Термокамера"
msgid "Innerloop"
msgstr ""
@@ -3068,16 +3094,16 @@ msgid "Left(Aux)"
msgstr ""
msgid "Hotend"
-msgstr ""
+msgstr "Хотенд"
msgid "Parts"
-msgstr ""
+msgstr "Part"
msgid "Aux"
-msgstr ""
+msgstr "Aux"
msgid "Nozzle1"
-msgstr ""
+msgstr "Сопло1"
msgid "MC Board"
msgstr ""
@@ -3362,7 +3388,7 @@ msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgid "Add Emboss text object"
-msgstr ""
+msgstr "Додати об’єкт тексту з рельєфом"
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
@@ -3379,16 +3405,16 @@ msgstr ""
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
-msgstr ""
+msgstr "Зміна атрибута рельєфу"
msgid "Add Emboss text Volume"
-msgstr ""
+msgstr "Додати об’єм тексту з рельєфом"
msgid "Font doesn't have any shape for given text."
-msgstr ""
+msgstr "Шрифт не має жодної форми для вказаного тексту."
msgid "There is no valid surface for text projection."
-msgstr ""
+msgstr "Немає дійсної поверхні для проекції тексту."
msgid "Thermal Preconditioning for first layer optimization"
msgstr ""
@@ -3480,8 +3506,8 @@ msgid ""
"This software uses open source components whose copyright and other "
"proprietary rights belong to their respective owners"
msgstr ""
-"Це програмне забезпечення використовує компоненти з відкритим вихідним "
-"кодом,авторські права та інші\n"
+"Це програмне забезпечення використовує компоненти з відкритим вихідним кодом,"
+"авторські права та інші\n"
"права власності належать їх відповідним власникам"
#, c-format, boost-format
@@ -4235,6 +4261,9 @@ msgid ""
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
+"Нульова початкова висота шару недійсна.\n"
+"\n"
+"Висота першого шару буде скинуто до 0,2."
msgid ""
"This setting is only used for model size tunning with small value in some "
@@ -4555,7 +4584,7 @@ msgid "Update failed."
msgstr "Не вдалося оновити."
msgid "Timelapse is not supported on this printer."
-msgstr ""
+msgstr "Таймлапс не підтримується цим принтером."
msgid "Timelapse is not supported while the storage does not exist."
msgstr ""
@@ -4882,10 +4911,10 @@ msgid "Tool Change"
msgstr "Зміна інструменту"
msgid "Color Change"
-msgstr ""
+msgstr "Зміна Кольору"
msgid "Pause Print"
-msgstr ""
+msgstr "Pause Print"
msgid "Travel"
msgstr "Переміщення"
@@ -4894,7 +4923,7 @@ msgid "Wipe"
msgstr "Протирання"
msgid "Extrude"
-msgstr ""
+msgstr "Екструзія"
msgid "Inner wall"
msgstr "Внутрішня стінка"
@@ -4990,7 +5019,7 @@ msgid "Fan speed"
msgstr "Швидкість вентилятора"
msgid "°C"
-msgstr ""
+msgstr "°C"
msgid "Time"
msgstr "Час"
@@ -4999,7 +5028,7 @@ msgid "Speed: "
msgstr "Швидкість: "
msgid "Actual speed profile"
-msgstr ""
+msgstr "Фактичний профіль швидкості"
msgid "Statistics of All Plates"
msgstr "Статистика всіх пластин"
@@ -5037,10 +5066,10 @@ msgid "Why this grouping"
msgstr ""
msgid "Left nozzle"
-msgstr ""
+msgstr "Ліве сопло"
msgid "Right nozzle"
-msgstr ""
+msgstr "Праве сопло"
msgid "Please place filaments on the printer based on grouping result."
msgstr ""
@@ -5086,7 +5115,7 @@ msgid "Set to Optimal"
msgstr ""
msgid "Regroup filament"
-msgstr ""
+msgstr "Перегрупувати філамент"
msgid "Wiki Guide"
msgstr ""
@@ -5131,7 +5160,7 @@ msgid "Volumetric flow rate (mm³/s)"
msgstr "Об'ємна витрата (мм³/с)"
msgid "Actual volumetric flow rate (mm³/s)"
-msgstr ""
+msgstr "Фактична об'ємна швидкість потоку (мм³/с)"
msgid "Seams"
msgstr "Шви"
@@ -5152,7 +5181,7 @@ msgid "Filament change times"
msgstr "Час зміни філаменту"
msgid "Tool changes"
-msgstr ""
+msgstr "Зміна інструменту"
msgid "Color change"
msgstr "Зміна кольору"
@@ -5182,10 +5211,10 @@ msgid "Model printing time"
msgstr "Час друку моделі"
msgid "Show stealth mode"
-msgstr ""
+msgstr "Показати тихий режим"
msgid "Show normal mode"
-msgstr ""
+msgstr "Показати нормальний режим"
msgid ""
"An object is placed in the left/right nozzle-only area or exceeds the "
@@ -5199,6 +5228,9 @@ msgid ""
"Please solve the problem by moving it totally on or off the plate, and "
"confirming that the height is within the build volume."
msgstr ""
+"Об'єкт знаходиться за кордоном пластини або перевищує обмеження по висоті.\n"
+"Будь ласка, вирішіть проблему, перемістивши її повністю на тарілку або з неї,"
+"і підтвердження того, що висота знаходиться в межах обсягу збирання."
msgid "Variable layer height"
msgstr "Змінна висота шару"
@@ -5243,7 +5275,7 @@ msgid "Part Selection"
msgstr ""
msgid "number keys"
-msgstr ""
+msgstr "клавіші з числами"
msgid "Number keys can quickly change the color of objects"
msgstr ""
@@ -5252,17 +5284,21 @@ msgid ""
"Following objects are laid over the boundary of plate or exceeds the height "
"limit:\n"
msgstr ""
+"Наступні об'єкти перекривають межі пластини або перевищують ліміт по "
+"висоті:\n"
msgid ""
"Please solve the problem by moving it totally on or off the plate, and "
"confirming that the height is within the build volume.\n"
msgstr ""
+"Будь ласка, передвиньте це повністю на чи з пластини, та переконайтеся, що "
+"висота знаходиться у межах області друку.\n"
msgid "left nozzle"
-msgstr ""
+msgstr "ліве сопло"
msgid "right nozzle"
-msgstr ""
+msgstr "праве сопло"
#, c-format, boost-format
msgid "The position or size of some models exceeds the %s's printable range."
@@ -5279,11 +5315,11 @@ msgstr ""
#, boost-format
msgid "Left nozzle: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%\n"
-msgstr ""
+msgstr "Ліве сопло: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%\n"
#, boost-format
msgid "Right nozzle: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%"
-msgstr ""
+msgstr "Праве сопло: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%"
msgid "Mirror Object"
msgstr "Дзеркальний об'єкт"
@@ -5329,11 +5365,11 @@ msgstr "Розташувати вздовж осі Y"
msgctxt "Camera"
msgid "Left"
-msgstr ""
+msgstr "Ліво"
msgctxt "Camera"
msgid "Right"
-msgstr ""
+msgstr "Право"
msgid "Add"
msgstr "Додати"
@@ -5402,6 +5438,9 @@ msgid "Overhangs"
msgstr "Нависання"
msgid "Outline"
+msgstr "Контур"
+
+msgid "Realistic View"
msgstr ""
msgid "Perspective"
@@ -5420,7 +5459,7 @@ msgid "Paint Toolbar"
msgstr "Панель інструментів малювання"
msgid "part selection"
-msgstr ""
+msgstr "вибір частини"
msgid "Explosion Ratio"
msgstr "Коефіцієнт вибуху"
@@ -5432,7 +5471,7 @@ msgid "Assemble Control"
msgstr "Складання керування"
msgid "Selection Mode"
-msgstr ""
+msgstr "Режим вибору"
msgid "Total Volume:"
msgstr "Загальний обсяг:"
@@ -5446,7 +5485,7 @@ msgstr "Об'єм:"
msgid "Size:"
msgstr "Розмір:"
-#, fuzzy, boost-format
+#, fuzzy, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5464,7 +5503,7 @@ msgid "A G-code path goes beyond the plate boundaries."
msgstr "Шлях G-коду виходить за межі пластини."
msgid "Not support printing 2 or more TPU filaments."
-msgstr ""
+msgstr "Не підтримується друк 2 або більше TPU філаментів."
#, c-format, boost-format
msgid "Tool %d"
@@ -5518,10 +5557,10 @@ msgid ""
msgstr ""
msgid "Click Wiki for help."
-msgstr ""
+msgstr "Натисніть Wiki для допомоги."
msgid "Click here to regroup"
-msgstr ""
+msgstr "Натисніть тут щоб перегрупувати"
msgid "Flushing Volume"
msgstr ""
@@ -5536,7 +5575,7 @@ msgid "Bed leveling"
msgstr "Вирівнювання столу"
msgid "High-temperature Heatbed Calibration"
-msgstr ""
+msgstr "Високотемпературне калібрування гарячого ліжка"
msgid "Nozzle clumping detection Calibration"
msgstr ""
@@ -5689,15 +5728,18 @@ msgstr "Майстер налаштувань"
msgid "Show Configuration Folder"
msgstr "Показати папку конфігурації"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "Відкритий мережевий тест"
+
msgid "Show Tip of the Day"
msgstr "Показати пораду дня"
msgid "Check for Updates"
msgstr ""
-msgid "Open Network Test"
-msgstr "Відкритий мережевий тест"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "&Про %s"
@@ -6486,7 +6528,7 @@ msgid "Invert Roll axis"
msgstr "Інвертувати вісь Roll"
msgid "(LAN)"
-msgstr ""
+msgstr "(LAN)"
msgid "Search"
msgstr "Пошук"
@@ -6547,7 +6589,7 @@ msgstr "Прив’язати з кодом доступу"
msgctxt "Quit_Switching"
msgid "Quit"
-msgstr ""
+msgstr "Вихід"
msgid "Switching..."
msgstr ""
@@ -6843,7 +6885,7 @@ msgstr "Статус"
msgctxt "Firmware"
msgid "Update"
-msgstr ""
+msgstr "Оновлення"
msgid "Assistant(HMS)"
msgstr ""
@@ -6929,7 +6971,7 @@ msgstr "Остання версія: "
msgctxt "Software"
msgid "Update"
-msgstr ""
+msgstr "Оновлення"
msgid "Not for now"
msgstr "Наразі не потрібно"
@@ -7061,6 +7103,12 @@ msgstr "Експорт успішно."
msgid "Model file downloaded."
msgstr "Завантажений файл моделі."
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr ""
@@ -7161,7 +7209,7 @@ msgid "Pausing Sensitivity:"
msgstr ""
msgid "Spaghetti Detection"
-msgstr ""
+msgstr "Spaghetti Detection"
msgid "Detect spaghetti failures (scattered lose filament)."
msgstr ""
@@ -7217,15 +7265,15 @@ msgstr ""
msgctxt "Nozzle Type"
msgid "Type"
-msgstr ""
+msgstr "Тип"
msgctxt "Nozzle Diameter"
msgid "Diameter"
-msgstr ""
+msgstr "Діаметр"
msgctxt "Nozzle Flow"
msgid "Flow"
-msgstr ""
+msgstr "Потік"
msgid "Please change the nozzle settings on the printer."
msgstr ""
@@ -7378,13 +7426,13 @@ msgid ""
msgstr ""
msgid "Switch diameter"
-msgstr ""
+msgstr "Змінити діаметр"
msgid "Configuration incompatible"
msgstr "Несумісність конфігурації"
msgid "Sync printer information"
-msgstr ""
+msgstr "Синхронізувати інформацію принтера"
msgid ""
"The currently selected machine preset is inconsistent with the connected "
@@ -7404,13 +7452,13 @@ msgid "Connection"
msgstr "Зв'язок"
msgid "Synchronize nozzle information and the number of AMS"
-msgstr ""
+msgstr "Синхронізувати інформацію про сопла та кількість AMS"
msgid "Click to edit preset"
msgstr "Натисніть, щоб редагувати профіль"
msgid "Project Filaments"
-msgstr ""
+msgstr "Філаменти проєкта"
msgid "Flushing volumes"
msgstr "Об'єми промивки"
@@ -7458,6 +7506,7 @@ msgid ""
"Filament type and color information have been synchronized, but slot "
"information is not included."
msgstr ""
+"Тип та колір філамента було синхронізовано, але немає інформації про слот."
#, boost-format
msgid "Do you want to save changes to \"%1%\"?"
@@ -7519,7 +7568,7 @@ msgid "Collapse sidebar"
msgstr "Згорнути бічну панель"
msgid "Tab"
-msgstr ""
+msgstr "Табуляції"
#, c-format, boost-format
msgid "Loading file: %s"
@@ -8012,9 +8061,10 @@ msgstr ""
msgid "The nozzle type is not set. Please set the nozzle and try again."
msgstr ""
+"Тип сопла не встановлений. Будь ласка, оберіть сопло та спробуйте ще раз."
msgid "The nozzle type is not set. Please check."
-msgstr ""
+msgstr "Тип сопла не встановлений. Перевірте, будь ласка."
msgid ""
"Unable to perform boolean operation on model meshes. Only positive parts "
@@ -8046,6 +8096,12 @@ 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?"
msgstr ""
"Чи готовий принтер? Чи на місці поверхня для друку, вона чиста і порожня?"
@@ -8099,17 +8155,21 @@ msgid ""
"There are no filaments on the printer. Please load the filaments on the "
"printer first."
msgstr ""
+"В принтері немає філаментів. Будь ласка, спочатку завантажте філаменти в "
+"принтер."
msgid ""
"The filaments on the printer are all unknown types. Please go to the printer "
"screen or software device page to set the filament type."
msgstr ""
+"Філаменти в принтері невідомого типу. Будь ласка, змініть тип філаменту на "
+"принтері чи на сторінці принтера."
msgid "Device Page"
-msgstr ""
+msgstr "Сторінка принтера"
msgid "Synchronize AMS Filament Information"
-msgstr ""
+msgstr "Синхронізувати інформацію про філаменти з AMS"
msgid "Plate Settings"
msgstr "Параметри планшета"
@@ -8166,25 +8226,25 @@ msgid ""
msgstr ""
msgid "Not available"
-msgstr ""
+msgstr "Недоступно"
msgid "isometric"
-msgstr ""
+msgstr "ізометрично"
msgid "top_front"
-msgstr ""
+msgstr "верх_перед"
msgid "top"
-msgstr ""
+msgstr "верх"
msgid "bottom"
-msgstr ""
+msgstr "низ"
msgid "front"
-msgstr ""
+msgstr "перед"
msgid "rear"
-msgstr ""
+msgstr "зад"
msgid "Switching the language requires application restart.\n"
msgstr "Для перемикання мови потрібно перезапустити програму.\n"
@@ -8414,7 +8474,7 @@ msgid "Optimize filaments area height for..."
msgstr ""
msgid "filaments"
-msgstr ""
+msgstr "філаменти"
msgid "Optimizes filament area maximum height by chosen filament count."
msgstr ""
@@ -8574,6 +8634,24 @@ msgstr ""
msgid "Graphics"
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"
msgstr ""
@@ -8631,9 +8709,16 @@ msgid "Stealth mode"
msgstr "Прихований режим"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
msgid "Network test"
@@ -8787,6 +8872,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr ""
@@ -8829,7 +8922,7 @@ msgid "Reload Failed"
msgstr ""
msgid "Debug"
-msgstr ""
+msgstr "Debug"
msgid "Sync settings"
msgstr "Налаштування синхронізації"
@@ -8928,7 +9021,7 @@ msgid "Edit preset"
msgstr "Змінити попереднє встановлення"
msgid "Unspecified"
-msgstr ""
+msgstr "Не вказано"
msgid "Project-inside presets"
msgstr "Внутрішні пресети проекту"
@@ -9138,7 +9231,7 @@ msgid "Bambu Textured PEI Plate"
msgstr "Bambu Текстурована PEI пластина"
msgid "Bambu Cool Plate SuperTack"
-msgstr ""
+msgstr "Bambu Cool Plate SuperTack"
msgid "Send print job"
msgstr ""
@@ -9296,7 +9389,7 @@ msgid "Cost %dg filament and %d changes more than optimal grouping."
msgstr ""
msgid "nozzle"
-msgstr ""
+msgstr "сопло"
msgid "both extruders"
msgstr ""
@@ -9817,8 +9910,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"При записі таймлапсу без інструментальної головки рекомендується додати "
"“Timelapse Wipe Tower” \n"
@@ -10160,7 +10253,7 @@ msgid "Dependencies"
msgstr "Залежності"
msgid "Compatible printers"
-msgstr ""
+msgstr "Сумісні принтери"
msgid "Compatible process profiles"
msgstr "Сумісні профілі процесів"
@@ -10305,13 +10398,11 @@ msgid "Retraction when switching material"
msgstr "Втягування під час зміни матеріалу"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"Опція Wipe недоступна під час використання режиму Firmware Retraction.\n"
-"\n"
-"Чи я повинен відключити його, щоб включити Firmware Retraction?"
msgid "Firmware Retraction"
msgstr "Апаратне витягування"
@@ -10322,7 +10413,7 @@ msgid ""
msgstr ""
msgid "Use Modified Value"
-msgstr ""
+msgstr "Використати змінене значення"
msgid "Detached"
msgstr "Окремий"
@@ -10403,7 +10494,7 @@ msgid "Temperature Safety Check"
msgstr ""
msgid "Continue"
-msgstr ""
+msgstr "Продовжити"
msgid "Back"
msgstr "Ззаду"
@@ -10580,10 +10671,10 @@ msgid "Select presets to compare"
msgstr "Виберіть профілі для порівняння"
msgid "Left Preset Value"
-msgstr ""
+msgstr "Значення в Лівому Профілі"
msgid "Right Preset Value"
-msgstr ""
+msgstr "Значення в Правому Профілі"
msgid ""
"You can only transfer to current active profile because it has been modified."
@@ -10730,7 +10821,7 @@ msgid "Reset mapped extruders."
msgstr "Скинути відображені екструдери."
msgid "Note"
-msgstr ""
+msgstr "Примітка"
msgid ""
"The color has been selected, you can choose OK \n"
@@ -10748,7 +10839,7 @@ msgstr ""
msgctxt "Sync_AMS"
msgid "Original"
-msgstr ""
+msgstr "Початковий"
msgid "After mapping"
msgstr ""
@@ -10758,7 +10849,7 @@ msgstr ""
msgctxt "Sync_AMS"
msgid "Plate"
-msgstr ""
+msgstr "Стіл"
msgid ""
"The connected printer does not match the currently selected printer. Please "
@@ -10886,7 +10977,7 @@ msgstr ""
msgctxt "Sync_Nozzle_AMS"
msgid "Cancel"
-msgstr ""
+msgstr "Скасувати"
msgid "Successfully synchronized filament color from printer."
msgstr ""
@@ -10896,7 +10987,7 @@ msgstr ""
msgctxt "FinishSyncAms"
msgid "OK"
-msgstr ""
+msgstr "ОК"
msgid "Ramming customization"
msgstr "Налаштування раммінгу"
@@ -10925,6 +11016,8 @@ msgstr ""
#, boost-format
msgid "For constant flow rate, hold %1% while dragging."
msgstr ""
+"Для постійної об'ємної витрати утримуйте натиснутою клавішу %1% під час "
+"перетягування."
msgid "ms"
msgstr ""
@@ -10933,7 +11026,7 @@ msgid "Total ramming"
msgstr ""
msgid "Volume"
-msgstr ""
+msgstr "Об'єм"
msgid "Ramming line"
msgstr ""
@@ -10971,7 +11064,7 @@ msgid "Flushing volumes for filament change"
msgstr "Об'єми промивки для зміни філаменту"
msgid "Please choose the filament colour"
-msgstr ""
+msgstr "Будь ласка, виберіть колір філаменту"
msgid ""
"Native Wayland liveview requires the GStreamer GTK video sink. Please "
@@ -11070,16 +11163,16 @@ msgid "Global shortcuts"
msgstr "Глобальні ярлики"
msgid "Pan View"
-msgstr ""
+msgstr "Панорамний вигляд"
msgid "Rotate View"
-msgstr ""
+msgstr "Повернути вигляд"
msgid "Middle mouse button"
msgstr ""
msgid "Zoom View"
-msgstr ""
+msgstr "Перегляд масштабу"
msgid ""
"Auto orients selected objects or all objects. If there are selected objects, "
@@ -11097,7 +11190,7 @@ msgid "Collapse/Expand the sidebar"
msgstr "Згорнути/розгорнути бічну панель"
msgid "Any arrow"
-msgstr ""
+msgstr "Будь-яка стрілка"
msgid "Movement in camera space"
msgstr "Рух у просторі камери"
@@ -11184,7 +11277,7 @@ msgid "Gizmo mesh boolean"
msgstr "Булеві операції Gizmo"
msgid "Gizmo FDM paint-on fuzzy skin"
-msgstr ""
+msgstr "Інструмент - 'Малювання текстурної оболонки'"
msgid "Gizmo SLA support points"
msgstr "Точки підтримки Gizmo SL"
@@ -11229,7 +11322,7 @@ msgid "Support/Color Painting: adjust section position"
msgstr "Підтримка/кольорове фарбування: регулювання положення секцій"
msgid "Gizmo"
-msgstr ""
+msgstr "Gizmo"
msgid "Set extruder number for the objects and parts"
msgstr "Встановіть номер екструдера для об'єктів та деталей"
@@ -11330,7 +11423,7 @@ msgid ""
msgstr ""
msgid "IP"
-msgstr ""
+msgstr "IP"
msgid "Access Code"
msgstr "Код доступу"
@@ -11351,7 +11444,7 @@ msgid "Manual Setup"
msgstr "Ручне налаштування"
msgid "IP and Access Code Verified! You may close the window"
-msgstr ""
+msgstr "IP-адреса та доступний код перевірено! Ви можете закрити вікно"
msgid "connecting..."
msgstr "підключення…"
@@ -11862,6 +11955,8 @@ msgstr ""
msgid ""
"One or more object were assigned an extruder that the printer does not have."
msgstr ""
+"Одному або декільком об’єктам було призначено екструдер, якого принтер не "
+"має."
msgid "Too small line width"
msgstr "Надто мала ширина лінії"
@@ -11926,6 +12021,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -11936,18 +12044,14 @@ msgstr ""
"\"G92 E0\" до layer_gcode."
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"У before_layer_gcode знайдено \"G92 E0\", що несумісне з абсолютною "
-"адресацією екструдера."
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"У layer_gcode знайдено \"G92 E0\", що несумісне з абсолютною адресацією "
-"екструдера."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -12044,6 +12148,31 @@ msgstr "Область друку"
msgid "Extruder printable area"
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"
msgstr "Площа виключення столу"
@@ -12110,7 +12239,7 @@ msgid "Maximum printable height which is limited by mechanism of printer."
msgstr "Максимальна висота друку, яка обмежена механізмом принтера"
msgid "Extruder printable height"
-msgstr ""
+msgstr "Висота друку екструдера"
msgid ""
"Maximum printable height of this extruder which is limited by mechanism of "
@@ -12175,6 +12304,12 @@ msgstr ""
"повинно утримувати \n"
"API-ключ або пароль, необхідний для автентифікації."
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "Назва принтера"
@@ -12524,111 +12659,134 @@ msgstr "Напрямок заповнення зовнішніх мостів"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"Перевизначення кута моста. Якщо залишити значення рівним нулю, кут моста "
-"обчислюватиметься автоматично. Інакше наданий кут використовуйте для "
-"зовнішніх мостів. Використовуйте 180 ° для нульового кута."
msgid "Internal bridge infill direction"
msgstr "Напрямок заповнення внутрішніх мостів"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"Перевизначення кута мостів. Якщо залишити значення рівним нулю, кут мостів "
-"буде розраховано автоматично. В іншому випадку для внутрішніх мостів буде "
-"використано заданий кут. Використовуйте 180° для нульового кута.\n"
-"\n"
-"Рекомендується залишати його на 0, якщо тільки це не є необхідним для "
-"конкретної моделі."
msgid "External bridge density"
msgstr "Щільність зовнішніх мостів"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
msgid "Internal bridge density"
msgstr "Щільність внутрішніх мостів"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"Керує щільністю (відстанню) внутрішніх ліній мостів. 100% означає суцільний "
-"міст. Значення за замовчуванням – 100%.\n"
-"\n"
-"Мости з меншою щільністю можуть допомогти зменшити ефект здуття верхньої "
-"поверхні та покращити надійність внутрішніх мостів, оскільки навколо "
-"екструдованого моста залишається більше простору для циркуляції повітря, що "
-"покращує його охолодження.\n"
-"\n"
-"Ця опція особливо ефективна в поєднанні з параметром друку другого "
-"внутрішнього моста над заповненням, що ще більше покращує внутрішню "
-"структуру мостів перед екструзією суцільного заповнення."
msgid "Bridge flow ratio"
msgstr "Коефіцієнт потоку мостів"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Зменште це значення трохи(наприклад 0.9) щоб зменшити кількість матеріалу "
-"для мосту для покращення провисання.\n"
+
+#, 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"
msgstr "Коефіцієнт потоку внутрішніх мостів"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Це значення визначає товщину внутрішнього мостового шару. Це перший шар над "
-"розрідженим заповненням.\n"
-"Зменште це значення трохи (наприклад 0.9) щоб покращити якість поверхні над "
-"розрідженим заповненням.\n"
-"\n"
-"Фактична подача матеріалу для внутрішнього мостового шару розраховується "
-"шляхом множення цього значення на коефіцієнт подачі для мостів, коефіцієнт "
-"подачі філаменту та, якщо встановлено, коефіцієнт подачі для об'єкта."
msgid "Top surface flow ratio"
msgstr "Коефіцієнт потоку верхньої поверхні"
@@ -12928,43 +13086,35 @@ msgstr "Уповільнення для нависаючих периметрі
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"Увімкніть цю опцію, щоб уповільнити друк у зонах, де периметри можуть "
-"загортатися вгору. \n"
-"\n"
-"**Наприклад, додаткове зниження швидкості застосовується при друку нависань "
-"на гострих кутах, таких як передня частина корпусу Benchy. Це допомагає "
-"зменшити загортання, яке може накопичуватися з кожним шаром.** \n"
-"\n"
-"**Зазвичай рекомендується залишати цю опцію увімкненою, якщо тільки ваш "
-"принтер не має достатньо потужного охолодження або швидкість друку не є "
-"настільки низькою, щоб уникнути загортання периметрів. Якщо ви друкуєте на "
-"високій швидкості зовнішніх периметрів, це налаштування може спричинити "
-"незначні артефакти через різку зміну швидкості друку. Якщо ви помітили такі "
-"артефакти, переконайтеся, що калібрування компенсації тиску (pressure "
-"advance) виконано правильно.** \n"
-"\n"
-"**Примітка:** Коли ця опція увімкнена, периметри нависань обробляються так "
-"само, як звичайні нависання. Це означає, що буде застосована швидкість друку "
-"для нависань, навіть якщо нависаючий периметр є частиною мосту. Наприклад, "
-"якщо периметри нависають на 100% без опори знизу, буде застосована "
-"відповідна швидкість для 100% нависань."
msgid "mm/s or %"
msgstr "мм/с або %"
@@ -13229,25 +13379,25 @@ msgid "Thick external bridges"
msgstr "Товсті зовнішні мости"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Якщо ця функція увімкнена, мости більш надійні, можуть з'єднувати "
-"великівідстань, але можуть виглядати гірше. Якщо відключити, мости "
-"виглядають краще,Але надійні лише для більш коротких мостових відстаней."
msgid "Thick internal bridges"
msgstr "Товсті внутрішні мости"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Якщо увімкнено, будуть використовуватися товсті внутрішні мости. Зазвичай "
-"рекомендується вмикати цю функцію. Однак, якщо ви використовуєте великі "
-"сопла, краще вимкнути її."
msgid "Extra bridge layers (beta)"
msgstr "Додаткові шари мостів (бета)"
@@ -14472,9 +14622,10 @@ msgid "Align infill direction to model"
msgstr ""
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
msgid "Insert solid layers"
@@ -14497,6 +14648,7 @@ msgstr ""
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -14512,7 +14664,7 @@ msgid "Line pattern for internal sparse infill."
msgstr "Шаблон ліній внутрішнього часткового заповнення"
msgid "Zig Zag"
-msgstr ""
+msgstr "Зіг-Заг"
msgid "Cross Zag"
msgstr ""
@@ -14595,6 +14747,27 @@ msgid ""
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
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"
msgstr "Довжина прив’язки часткового заповнення"
@@ -14618,8 +14791,8 @@ msgstr ""
"знайдено, лінія заповнення з'єднується з сегментом периметра лише з одного "
"боку, і довжина взятого сегменту периметра обмежена цим параметром, але не "
"більше anchor_length_max.\n"
-"Встановіть цей параметр рівним нулю, щоб вимкнути периметри "
-"прив'язки.пов'язані з однією лінією заповнення."
+"Встановіть цей параметр рівним нулю, щоб вимкнути периметри прив'язки."
+"пов'язані з однією лінією заповнення."
msgid "0 (no open anchors)"
msgstr "0 (немає відкритих прив'язок)"
@@ -14686,8 +14859,8 @@ msgid "mm/s² or %"
msgstr "мм/с² або %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Прискорення заповнення. Якщо значення виражено у відсотках (наприклад, "
"100%), воно буде розраховане на основі прискорення за умовчанням."
@@ -14821,10 +14994,10 @@ msgstr "Повна швидкість вентилятора на шарі"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"Швидкість вентилятора лінійно збільшується від нуля на "
"рівні«close_fan_the_first_x_layers» до максимуму на рівні "
@@ -15222,7 +15395,7 @@ msgstr ""
"нарізка."
msgid "HRC"
-msgstr ""
+msgstr "HRC"
msgid "Printer structure"
msgstr "Структура принтера"
@@ -15556,8 +15729,10 @@ msgstr ""
msgid "Probing exclude area of clumping."
msgstr ""
-msgid "Filament to print internal sparse infill."
-msgstr "Філамент для друку внутрішнього часткового заповнення."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -15667,7 +15842,7 @@ msgid "Orientation of interlock beams."
msgstr ""
msgid "Interlocking beam layers"
-msgstr ""
+msgstr "Кількість шарів взаємопов'язаних балок"
msgid ""
"The height of the beams of the interlocking structure, measured in number of "
@@ -15677,7 +15852,7 @@ msgstr ""
"шарів забезпечує більшу міцність, але підвищує ризик дефектів."
msgid "Interlocking depth"
-msgstr ""
+msgstr "Глибина взаємопов'язаної структури"
msgid ""
"The distance from the boundary between filaments to generate interlocking "
@@ -16040,7 +16215,7 @@ msgid "DAA"
msgstr ""
msgid "X"
-msgstr ""
+msgstr "X"
msgid ""
"Resonant frequency for the X axis input shaper.\n"
@@ -16050,7 +16225,7 @@ msgid ""
msgstr ""
msgid "Y"
-msgstr ""
+msgstr "Y"
msgid ""
"Resonant frequency for the Y axis input shaper.\n"
@@ -16386,8 +16561,21 @@ msgstr ""
"друку іншу швидкість. Для 100%%-вого нависання використовується швидкість "
"моста."
-msgid "Filament to print walls."
-msgstr "Філамент для друку стінок"
+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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -16896,8 +17084,8 @@ msgid "Role base wipe speed"
msgstr "Швидкість протирання залежно від типу"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -16913,8 +17101,8 @@ msgid ""
"To minimize the visibility of the seam in a closed loop extrusion, a small "
"inward movement is executed before the extruder leaves the loop."
msgstr ""
-"Щоб звести до мінімуму видимість шва при екструзії із замкнутим "
-"контуром,Невеликий рух усередину виконується до виходу екструдера з контуру."
+"Щоб звести до мінімуму видимість шва при екструзії із замкнутим контуром,"
+"Невеликий рух усередину виконується до виходу екструдера з контуру."
msgid "Wipe before external loop"
msgstr "Протирати перед зовнішнім контуром"
@@ -17079,11 +17267,20 @@ msgstr ""
"Ділянки часткового заповнення, менші за порогове значення, замінюються "
"внутрішнім суцільним заповненням"
-msgid "Solid infill"
-msgstr "Суцільне заповнення"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "Філамент для друку суцільного заповнення"
+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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -17422,8 +17619,8 @@ msgid ""
"Only create support for critical regions including sharp tail, cantilever, "
"etc."
msgstr ""
-"Створювати підтримку тільки для критичних областей, включаючи гострий "
-"хвіст,консоль і т.д."
+"Створювати підтримку тільки для критичних областей, включаючи гострий хвіст,"
+"консоль і т.д."
msgid "Ignore small overhangs"
msgstr ""
@@ -17453,12 +17650,10 @@ msgid "Support/raft base"
msgstr "База підтримки/підкладки"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"Філамент для друку підтримок та підкладки. «За замовчуванням» означає "
-"відсутність конкретного філаменту для підтримок та використання поточного "
-"філаменту"
msgid "Avoid interface filament for base"
msgstr "Уникати філаменту інтерфейсу для бази"
@@ -17488,12 +17683,10 @@ msgid "Support/raft interface"
msgstr "Інтерфейс підтримки/підкладки"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"Філамент для друку підтримки. «За замовчуванням» означає відсутність "
-"конкретного філаменту для друку підтримки, і використовується поточний "
-"філамент"
msgid "Top interface layers"
msgstr "Верхній шар підтримки"
@@ -17796,8 +17989,8 @@ msgstr "Увімкнути контроль температури"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -17985,9 +18178,9 @@ msgstr ""
"Залежно від тривалості операції витирання, швидкості та тривалості "
"втягування екструдера/нитки, може знадобитися рух накату для нитки.\n"
"\n"
-"Якщо встановити значення у параметрі \"Кількість втягування перед "
-"витиранням\" нижче, надлишкове втягування буде виконано перед витиранням, "
-"інакше воно буде виконано після нього."
+"Якщо встановити значення у параметрі \"Кількість втягування перед витиранням"
+"\" нижче, надлишкове втягування буде виконано перед витиранням, інакше воно "
+"буде виконано після нього."
msgid ""
"The wiping tower can be used to clean up the residue on the nozzle and "
@@ -18511,6 +18704,9 @@ msgstr "неправильне значення "
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "Неприпустиме значення при увімкненому режимі спіральної вази: "
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "надто велика ширина лінії "
@@ -18575,13 +18771,13 @@ msgid "Export 3MF with minimum size."
msgstr "експортувати 3MF з мінімальним розміром."
msgid "mtcpp"
-msgstr ""
+msgstr "mtcpp"
msgid "max triangle count per plate for slicing."
msgstr "максимальна кількість трикутників на стіл для нарізки."
msgid "mstpp"
-msgstr ""
+msgstr "mstpp"
msgid "max slicing time per plate in seconds."
msgstr "максимальний час нарізки на стіл у секундах."
@@ -18663,10 +18859,10 @@ msgid "Rotation angle around the Z axis in degrees."
msgstr "Кут обертання навколо осі Z у градусах."
msgid "Rotate around X"
-msgstr ""
+msgstr "Обертання навколо X"
msgid "Rotation angle around the X axis in degrees."
-msgstr ""
+msgstr "Кут обертання навколо осі Х у градусах."
msgid "Rotate around Y"
msgstr "Обертати навколо осі Y"
@@ -18757,12 +18953,18 @@ msgid "Debug level"
msgstr "Рівень налагодження"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
msgstr ""
"Встановлює рівень реєстрації налагодження. 0: непереборний, 1: помилка, 2: "
"попередження, 3: інформація, 4: налагодження, 5: трасування\n"
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
+msgstr ""
+
msgid "Enable timelapse for print"
msgstr "Увімкнути таймлапс для друку"
@@ -18951,10 +19153,12 @@ msgstr ""
"в поточному друці."
msgid "Has single extruder MM priming"
-msgstr ""
+msgstr "Є перед-заряджання одиночного багато-кольорового екструдера"
msgid "Are the extra multi-material priming regions used in this print?"
msgstr ""
+"Чи використовуються в цій печатці додаткові області перед-зарядки для "
+"декількох матеріалів?"
msgid "Volume per extruder"
msgstr "Об'єм на один екструдер"
@@ -19000,23 +19204,27 @@ msgid "Number of layers in the entire print."
msgstr "Кількість шарів усього друку."
msgid "Print time (normal mode)"
-msgstr ""
+msgstr "Час друку (звичайний режим)"
msgid ""
"Estimated print time when printed in normal mode (i.e. not in silent mode). "
"Same as print_time."
msgstr ""
+"Розрахунковий час друку у звичайному режимі (тобто не в тихому режимі). Те "
+"саме, що і 'Час друку (звичайний режим)'(print_time)."
msgid ""
"Estimated print time when printed in normal mode (i.e. not in silent mode). "
"Same as normal_print_time."
msgstr ""
+"Розрахунковий час друку у звичайному режимі (тобто не в тихому режимі). Те "
+"саме, що й 'Час друку (звичайний режим)'(normal_print_time)."
msgid "Print time (silent mode)"
-msgstr ""
+msgstr "Час друку (тихий режим)"
msgid "Estimated print time when printed in silent mode."
-msgstr ""
+msgstr "Розрахунковий час друку в тихому режимі."
msgid ""
"Total cost of all material used in the print. Calculated from filament_cost "
@@ -19024,7 +19232,7 @@ msgid ""
msgstr ""
msgid "Total wipe tower cost"
-msgstr ""
+msgstr "Загальна вартість 'Вежі Очищення'"
msgid ""
"Total cost of the material wasted on the wipe tower. Calculated from "
@@ -19032,16 +19240,16 @@ msgid ""
msgstr ""
msgid "Wipe tower volume"
-msgstr ""
+msgstr "Об'єм 'Вежі Очищення'"
msgid "Total filament volume extruded on the wipe tower."
-msgstr ""
+msgstr "Загальний об'єм матеріалу видавленого в 'Вежу Очищення'."
msgid "Used filament"
msgstr "Філамент, що використовується"
msgid "Total length of filament used in the print."
-msgstr ""
+msgstr "Загальна довжина філаменту, використаної під час друку."
msgid "Print time (seconds)"
msgstr ""
@@ -19272,9 +19480,12 @@ msgid ""
"is also fuzzy skin painted.\n"
"XY Size compensation cannot be combined with fuzzy skin painting."
msgstr ""
+"Увімкнено компенсацію розмірів за XY, яка не може працювати одночасно з "
+"текстурною оболонкою. \n"
+"Тому компенсація розмірів за XY не буде використана."
msgid "Object name"
-msgstr ""
+msgstr "Назва об'єкту"
msgid "Support: generate contact points"
msgstr "Підтримка: створення точок контакту"
@@ -19291,13 +19502,13 @@ msgstr "Наданий файл не вдалося прочитати, оскі
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
-"Невідомий формат файлу: вхідний файл повинен мати розширення .stl, .obj "
-"або .amf (.xml)."
+"Невідомий формат файлу: вхідний файл повинен мати розширення .stl, .obj або ."
+"amf (.xml)."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
-"Невідомий формат файлу: вхідний файл повинен мати розширення .3mf "
-"або .zip.amf."
+"Невідомий формат файлу: вхідний файл повинен мати розширення .3mf або .zip."
+"amf."
msgid "load_obj: failed to parse"
msgstr "помилка завантаження файлу OBJ: не вдалося розпізнати формат"
@@ -19758,7 +19969,7 @@ msgid "Printing Parameters"
msgstr "Параметри друку"
msgid "- ℃"
-msgstr ""
+msgstr "- ℃"
msgid "Synchronize nozzle and AMS information"
msgstr ""
@@ -20224,6 +20435,15 @@ msgstr ""
msgid "Top Surface Pattern"
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"
msgstr "Надіслання G-коду на хост друку"
@@ -20248,6 +20468,48 @@ msgstr ""
msgid "Upload"
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"
msgstr "Черга завантаження на хост друку"
@@ -20291,9 +20553,6 @@ msgid ""
msgstr ""
"Тип столу не відповідає файлу. Будь ласка, підтвердьте перед початком друку."
-msgid "Time-lapse"
-msgstr "Таймлапс"
-
msgid "Heated Bed Leveling"
msgstr "Вирівнювання Нагрівального Столу"
@@ -20303,6 +20562,16 @@ msgstr "Текстурована Робоча Пластина (Cторона A)
msgid "Smooth Build Plate (Side B)"
msgstr "Гладка Робоча Пластина (Cторона B)"
+#, 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"
msgstr "Не вдається виконати булеву операцію на вибраних частинах"
@@ -20491,8 +20760,8 @@ msgstr ""
"Чи бажаєте ви їх перезаписати?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
"Ми б перейменували попередні налаштування на «Вибраний вами серійний "
@@ -20944,7 +21213,7 @@ msgstr ""
#, c-format, boost-format
msgid "Printing %1s material with %2s nozzle may cause nozzle damage."
-msgstr ""
+msgstr "Друк матеріалу %1s соплом %2s може призвести до пошкодження сопла."
msgid "Need select printer"
msgstr "Потрібно вибрати принтер"
@@ -20956,6 +21225,8 @@ msgid ""
"The number of printer extruders and the printer selected for calibration "
"does not match."
msgstr ""
+"Кількість екструдерів не підходить для принтера, що було обрано для "
+"калібрування."
#, c-format, boost-format
msgid ""
@@ -21000,9 +21271,18 @@ msgid ""
"agents are registered at startup."
msgstr ""
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "Неможливо отримати дійсне посилання на хост принтера"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "Успіх!"
@@ -21049,6 +21329,30 @@ msgstr "Вхід/Тест"
msgid "Connection to printers connected via the print host failed."
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
msgid "Mismatched type of print host: %s"
msgstr "Невідповідність типу принт-сервера: %s"
@@ -21428,28 +21732,46 @@ msgid ""
"vendor for suitable profile before printing and adjust some parameters "
"according to its performances."
msgstr ""
+"Це ні філамент, який широко використовується, ні один з філаментів Bambu, і "
+"він значно відрізняється від бренду до бренду. Тому високо рекомендується "
+"звернутися до його постачальника за відповідним профілем перед друкуванням і "
+"налаштувати деякі параметри відповідно до його характеристик."
msgid ""
"When printing this filament, there's a risk of warping and low layer "
"adhesion strength. To get better results, please refer to this wiki: "
"Printing Tips for High Temp / Engineering materials."
msgstr ""
+"При друкуванні з цього філамента існує ризик деформації та низької адгезії "
+"між шарами. Щоб отримати кращі результати, будь ласка, ознайомтеся з цією "
+"вікі: Поради з друку для матеріалів високої температури / інженерних "
+"матеріалів."
msgid ""
"When printing this filament, there's a risk of nozzle clogging, oozing, "
"warping and low layer adhesion strength. To get better results, please refer "
"to this wiki: Printing Tips for High Temp / Engineering materials."
msgstr ""
+"При друкуванні з цього філамента існує ризик забивання сопла, витікання, "
+"деформації та низької адгезії між шарами. Щоб отримати кращі результати, "
+"будь ласка, ознайомтеся з цією вікі: Поради з друку для матеріалів високої "
+"температури / інженерних матеріалів."
msgid ""
"To get better transparent or translucent results with the corresponding "
"filament, please refer to this wiki: Printing tips for transparent PETG."
msgstr ""
+"Щоб отримати кращі прозорі або напівпрозорі результати з відповідним "
+"філаментом, будь ласка, ознайомтеся з цією вікі: Поради з друку для "
+"прозорого PETG."
msgid ""
"To make the prints get higher gloss, please dry the filament before use, and "
"set the outer wall speed to be 40 to 60 mm/s when slicing."
msgstr ""
+"Щоб надати друкам вищий блиск, будь ласка, просушіть філамент перед "
+"використанням і встановіть швидкість зовнішньої стіни на 40-60 мм/с під час "
+"нарізання."
msgid ""
"This filament is only used to print models with a low density usually, and "
@@ -21457,24 +21779,38 @@ msgid ""
"refer to this wiki: Instructions for printing RC model with foaming PLA (PLA "
"Aero)."
msgstr ""
+"Цей філамент зазвичай використовується лише для друку моделей з низькою "
+"щільністю, і для нього потрібні деякі спеціальні параметри. Щоб отримати "
+"кращу якість друку, будь ласка, ознайомтеся з цією вікі: Інструкції з друку "
+"RC моделей з пінопласту PLA (PLA Aero)."
msgid ""
"This filament is only used to print models with a low density usually, and "
"some special parameters are required. To get better printing quality, please "
"refer to this wiki: ASA Aero Printing Guide."
msgstr ""
+"Цей філамент зазвичай використовується лише для друку моделей з низькою "
+"щільністю, і для нього потрібні деякі спеціальні параметри. Щоб отримати "
+"кращу якість друку, будь ласка, ознайомтеся з цією вікі: Посібник з друку "
+"ASA Aero."
msgid ""
"This filament is too soft and not compatible with the AMS. Printing it is of "
"many requirements, and to get better printing quality, please refer to this "
"wiki: TPU printing guide."
msgstr ""
+"Цей філамент занадто м’який і не сумісний з AMS. Друк з нього має багато "
+"вимог, і для отримання кращої якості друку, будь ласка, ознайомтеся з цією "
+"вікі: Посібник з друку TPU."
msgid ""
"This filament has high enough hardness (about 67D) and is compatible with "
"the AMS. Printing it is of many requirements, and to get better printing "
"quality, please refer to this wiki: TPU printing guide."
msgstr ""
+"Цей філамент має достатню твердість (приблизно 67D) і сумісний з AMS. Друк з "
+"нього має багато вимог, і для отримання кращої якості друку, будь ласка, "
+"ознайомтеся з цією вікі: Посібник з друку TPU."
msgid ""
"If you are to print a kind of soft TPU, please don't slice with this "
@@ -21482,6 +21818,10 @@ msgid ""
"55D) and is compatible with the AMS. To get better printing quality, please "
"refer to this wiki: TPU printing guide."
msgstr ""
+"Якщо ви збираєтеся друкувати м’який TPU, будь ласка, не нарізайте його з цим "
+"профілем; цей профіль призначений лише для TPU з достатньою твердістю (не "
+"менше 55D) і сумісного з AMS. Щоб отримати кращу якість друку, будь ласка, "
+"ознайомтеся з цією вікі: Посібник з друку TPU."
msgid ""
"This is a water-soluble support filament, and usually it is only for the "
@@ -21489,6 +21829,10 @@ msgid ""
"many requirements, and to get better printing quality, please refer to this "
"wiki: PVA Printing Guide."
msgstr ""
+"Це філамент, що розчиняється у воді, і зазвичай він призначений лише для "
+"підтримуючої структури, а не для тіла моделі. Друк з цього філамента має "
+"багато вимог, і для отримання кращої якості друку, будь ласка, ознайомтеся з "
+"цією вікі: Посібник з друку PVA."
msgid ""
"This is a non-water-soluble support filament, and usually it is only for the "
@@ -21496,12 +21840,19 @@ msgid ""
"quality, please refer to this wiki: Printing Tips for Support Filament and "
"Support Function."
msgstr ""
+"Це філамент для підтримки, що не розчиняється у воді, і зазвичай він "
+"призначений лише для підтримуючої структури, а не для тіла моделі. Щоб "
+"отримати кращу якість друку, будь ласка, ознайомтеся з цією вікі: Поради з "
+"друку для філамента підтримки та функції підтримки."
msgid ""
"The generic presets are conservatively tuned for compatibility with a wider "
"range of filaments. For higher printing quality and speeds, please use Bambu "
"filaments with Bambu presets."
msgstr ""
+"Загальні пресети налаштовані консервативно для сумісності з більш широким "
+"спектром філаментів. Для досягнення вищої якості друку та швидкості, будь "
+"ласка, використовуйте філаменти Bambu з пресетами Bambu."
msgid "High quality profile for 0.2mm nozzle, prioritizing print quality."
msgstr ""
@@ -21758,12 +22109,27 @@ msgstr ""
"Обліковий запис SimplyPrint не пов’язано. Щоб налаштувати його, перейдіть до "
"параметрів підключення."
+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."
msgstr ""
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr ""
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "Наданий стан невірний."
@@ -21805,7 +22171,7 @@ msgstr ""
"матимуть ефекту!"
msgid "Set the brim type of this object to \"painted\""
-msgstr ""
+msgstr "Встановити тип краєчка для цього об'єкту на “намальований“"
msgid "invalid brim ears"
msgstr ""
@@ -21817,10 +22183,10 @@ msgid "Please select single object."
msgstr "Будь ласка, виберіть один об’єкт."
msgid "Zoom Out"
-msgstr ""
+msgstr "Зменшити"
msgid "Zoom In"
-msgstr ""
+msgstr "Збільшити"
msgid "Load skipping objects information failed. Please try again."
msgstr ""
@@ -21886,7 +22252,7 @@ msgstr ""
#, c-format, boost-format
msgid "Error: %s"
-msgstr ""
+msgstr "Помилка: %s"
msgid "Show details"
msgstr ""
@@ -21936,13 +22302,13 @@ msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
-msgstr ""
+msgstr "ВЗАГАЛІ БЕЗ УТРАМБУВАННЯ"
msgid "Volumetric speed"
-msgstr ""
+msgstr "Об'ємна швидкість"
msgid "Step file import parameters"
-msgstr ""
+msgstr "Параметри імпорту STEP-файлу"
msgid ""
"Smaller linear and angular deflections result in higher-quality "
@@ -21950,45 +22316,54 @@ msgid ""
msgstr ""
msgid "Linear Deflection"
-msgstr ""
+msgstr "Лінійне відхилення"
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
+"Будь ласка, введіть допустиме значення (0.001 < лінійне відхилення < 0.1)"
msgid "Angle Deflection"
-msgstr ""
+msgstr "Відхилення кута"
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
-msgstr ""
+msgstr "Будь ласка, введіть допустиме значення (0.01 < відхилення кута < 1.0)"
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
-msgstr ""
+msgstr "Кількість трикутних граней"
msgid "Calculating, please wait..."
-msgstr ""
+msgstr "Розрахунок, будь ласка, зачекайте…"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
+"Цей філамент може бути несумісним з поточними налаштуваннями машини. Будуть "
+"використані пресети Generic філамента"
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
+"Модель філамента невідома. Продовжуємо використовувати попередні пресети "
+"філамента."
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
+"Модель філамента невідома. Будуть використані пресети Generic філамента"
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
+"Цей філамент може бути несумісним з поточними налаштуваннями машини. Буде "
+"використаний випадковий пресет філамента"
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
+"Модель філамента невідома. Буде використаний випадковий пресет філамента"
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
@@ -22375,6 +22750,201 @@ msgstr ""
"ABS, відповідне підвищення температури гарячого ліжка може зменшити "
"ймовірність деформації?"
+#~ 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 ""
+#~ "Опція Wipe недоступна під час використання режиму Firmware Retraction.\n"
+#~ "\n"
+#~ "Чи я повинен відключити його, щоб включити Firmware Retraction?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "У before_layer_gcode знайдено \"G92 E0\", що несумісне з абсолютною "
+#~ "адресацією екструдера."
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "У layer_gcode знайдено \"G92 E0\", що несумісне з абсолютною адресацією "
+#~ "екструдера."
+
+#, 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 ""
+#~ "Перевизначення кута моста. Якщо залишити значення рівним нулю, кут моста "
+#~ "обчислюватиметься автоматично. Інакше наданий кут використовуйте для "
+#~ "зовнішніх мостів. Використовуйте 180 ° для нульового кута."
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "Перевизначення кута мостів. Якщо залишити значення рівним нулю, кут "
+#~ "мостів буде розраховано автоматично. В іншому випадку для внутрішніх "
+#~ "мостів буде використано заданий кут. Використовуйте 180° для нульового "
+#~ "кута.\n"
+#~ "\n"
+#~ "Рекомендується залишати його на 0, якщо тільки це не є необхідним для "
+#~ "конкретної моделі."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "Керує щільністю (відстанню) внутрішніх ліній мостів. 100% означає "
+#~ "суцільний міст. Значення за замовчуванням – 100%.\n"
+#~ "\n"
+#~ "Мости з меншою щільністю можуть допомогти зменшити ефект здуття верхньої "
+#~ "поверхні та покращити надійність внутрішніх мостів, оскільки навколо "
+#~ "екструдованого моста залишається більше простору для циркуляції повітря, "
+#~ "що покращує його охолодження.\n"
+#~ "\n"
+#~ "Ця опція особливо ефективна в поєднанні з параметром друку другого "
+#~ "внутрішнього моста над заповненням, що ще більше покращує внутрішню "
+#~ "структуру мостів перед екструзією суцільного заповнення."
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "Зменште це значення трохи(наприклад 0.9) щоб зменшити кількість матеріалу "
+#~ "для мосту для покращення провисання.\n"
+#~ "\n"
+#~ "Фактичний потік матеріалу для мосту розраховується шляхом множення цього "
+#~ "значення на коефіцієнт потоку філамента і якщо встановлено, на коефіцієнт "
+#~ "потоку об'єкта."
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "Це значення визначає товщину внутрішнього мостового шару. Це перший шар "
+#~ "над розрідженим заповненням.\n"
+#~ "Зменште це значення трохи (наприклад 0.9) щоб покращити якість поверхні "
+#~ "над розрідженим заповненням.\n"
+#~ "\n"
+#~ "Фактична подача матеріалу для внутрішнього мостового шару розраховується "
+#~ "шляхом множення цього значення на коефіцієнт подачі для мостів, "
+#~ "коефіцієнт подачі філаменту та, якщо встановлено, коефіцієнт подачі для "
+#~ "об'єкта."
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "Увімкніть цю опцію, щоб уповільнити друк у зонах, де периметри можуть "
+#~ "загортатися вгору. \n"
+#~ "\n"
+#~ "**Наприклад, додаткове зниження швидкості застосовується при друку "
+#~ "нависань на гострих кутах, таких як передня частина корпусу Benchy. Це "
+#~ "допомагає зменшити загортання, яке може накопичуватися з кожним шаром."
+#~ "** \n"
+#~ "\n"
+#~ "**Зазвичай рекомендується залишати цю опцію увімкненою, якщо тільки ваш "
+#~ "принтер не має достатньо потужного охолодження або швидкість друку не є "
+#~ "настільки низькою, щоб уникнути загортання периметрів. Якщо ви друкуєте "
+#~ "на високій швидкості зовнішніх периметрів, це налаштування може "
+#~ "спричинити незначні артефакти через різку зміну швидкості друку. Якщо ви "
+#~ "помітили такі артефакти, переконайтеся, що калібрування компенсації тиску "
+#~ "(pressure advance) виконано правильно.** \n"
+#~ "\n"
+#~ "**Примітка:** Коли ця опція увімкнена, периметри нависань обробляються "
+#~ "так само, як звичайні нависання. Це означає, що буде застосована "
+#~ "швидкість друку для нависань, навіть якщо нависаючий периметр є частиною "
+#~ "мосту. Наприклад, якщо периметри нависають на 100% без опори знизу, буде "
+#~ "застосована відповідна швидкість для 100% нависань."
+
+#~ 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 ""
+#~ "Якщо ця функція увімкнена, мости більш надійні, можуть з'єднувати "
+#~ "великівідстань, але можуть виглядати гірше. Якщо відключити, мости "
+#~ "виглядають краще,Але надійні лише для більш коротких мостових відстаней."
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "Якщо увімкнено, будуть використовуватися товсті внутрішні мости. Зазвичай "
+#~ "рекомендується вмикати цю функцію. Однак, якщо ви використовуєте великі "
+#~ "сопла, краще вимкнути її."
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "Філамент для друку внутрішнього часткового заповнення."
+
+#~ msgid "Filament to print walls."
+#~ msgstr "Філамент для друку стінок"
+
+#~ msgid "Solid infill"
+#~ msgstr "Суцільне заповнення"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "Філамент для друку суцільного заповнення"
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "Філамент для друку підтримок та підкладки. «За замовчуванням» означає "
+#~ "відсутність конкретного філаменту для підтримок та використання поточного "
+#~ "філаменту"
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "Філамент для друку підтримки. «За замовчуванням» означає відсутність "
+#~ "конкретного філаменту для друку підтримки, і використовується поточний "
+#~ "філамент"
+
#~ msgid "Erase all painting"
#~ msgstr "Стерти всі малюнки"
diff --git a/localization/i18n/vi/OrcaSlicer_vi.po b/localization/i18n/vi/OrcaSlicer_vi.po
index 44213ae93f..7427de4662 100644
--- a/localization/i18n/vi/OrcaSlicer_vi.po
+++ b/localization/i18n/vi/OrcaSlicer_vi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: 2025-10-02 17:43+0700\n"
"Last-Translator: \n"
"Language-Team: hainguyen.ts13@gmail.com\n"
@@ -1823,6 +1823,17 @@ msgstr ""
msgid "User logged out"
msgstr "Người dùng đã đăng xuất"
+msgid ""
+"You are currently in Stealth Mode. To log into the Cloud, you need to "
+"disable Stealth Mode first."
+msgstr ""
+
+msgid "Stealth Mode"
+msgstr "Chế độ ẩn danh"
+
+msgid "Quit Stealth Mode"
+msgstr ""
+
msgid "new or open project file is not allowed during the slicing process!"
msgstr "không được tạo hoặc mở file dự án trong quá trình slice!"
@@ -1836,21 +1847,24 @@ msgstr ""
"Phiên bản Orca Slicer quá cũ và cần được cập nhật lên phiên bản mới nhất "
"trước khi có thể sử dụng bình thường."
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
@@ -1908,7 +1922,7 @@ msgid "Privacy Policy Update"
msgstr "Cập nhật chính sách bảo mật"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
msgstr ""
msgid "your default profile"
@@ -2158,6 +2172,9 @@ msgstr "Hình xuyến"
msgid "Orca Cube"
msgstr "Orca Cube"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Orca Tolerance Test"
@@ -5463,6 +5480,9 @@ msgstr "Phần nhô"
msgid "Outline"
msgstr "Outline"
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr "Perspective"
@@ -5505,7 +5525,7 @@ msgstr "Thể tích:"
msgid "Size:"
msgstr "Kích thước:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5764,15 +5784,18 @@ msgstr "Trình hướng dẫn thiết lập"
msgid "Show Configuration Folder"
msgstr "Hiện thư mục cấu hình"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "Mở kiểm tra mạng"
+
msgid "Show Tip of the Day"
msgstr "Hiện mẹo trong ngày"
msgid "Check for Updates"
msgstr "Kiểm tra cập nhật"
-msgid "Open Network Test"
-msgstr "Mở kiểm tra mạng"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "&Giới thiệu %s"
@@ -7097,6 +7120,12 @@ msgstr "Xuất thành công"
msgid "Model file downloaded."
msgstr "File model đã được tải xuống."
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr ""
@@ -8116,6 +8145,12 @@ msgstr ""
"Không thể thực hiện thao tác boolean trên mesh model. Chỉ các phần dương sẽ "
"được xuất."
+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?"
msgstr "Máy in đã sẵn sàng chưa? Bàn in đã đúng vị trí, trống và sạch chưa?"
@@ -8672,6 +8707,24 @@ msgstr ""
msgid "Graphics"
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"
msgstr ""
@@ -8729,9 +8782,16 @@ msgid "Stealth mode"
msgstr "Stealth mode"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
msgid "Network test"
@@ -8882,6 +8942,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr "Allow Abnormal Storage"
@@ -9970,8 +10038,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Khi ghi timelapse không có đầu công cụ, khuyến nghị thêm \"Timelapse Wipe "
"Tower\" \n"
@@ -10449,13 +10517,11 @@ msgid "Retraction when switching material"
msgstr "Rút khi chuyển vật liệu"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"Tùy chọn lau không khả dụng khi sử dụng chế độ rút firmware.\n"
-"\n"
-"Tôi có nên tắt nó để bật rút firmware?"
msgid "Firmware Retraction"
msgstr "Rút firmware"
@@ -12101,6 +12167,19 @@ msgstr ""
msgid "Layer height cannot exceed nozzle diameter."
msgstr "Chiều cao lớp không thể vượt quá đường kính đầu phun."
+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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -12110,18 +12189,14 @@ msgstr ""
"ngăn mất độ chính xác số thực dấu phẩy động. Thêm \"G92 E0\" vào layer_gcode."
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"\"G92 E0\" được tìm thấy trong before_layer_gcode, không tương thích với địa "
-"chỉ extruder tuyệt đối."
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
msgstr ""
-"\"G92 E0\" được tìm thấy trong layer_gcode, không tương thích với địa chỉ "
-"extruder tuyệt đối."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -12226,6 +12301,31 @@ msgstr "Vùng có thể in"
msgid "Extruder printable area"
msgstr "Extruder printable area"
+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"
msgstr "Vùng loại trừ bàn in"
@@ -12332,8 +12432,8 @@ msgstr ""
"Orca Slicer có thể tải file G-code lên máy chủ máy in. Trường này nên chứa "
"tên máy chủ, địa chỉ IP hoặc URL của phiên bản máy chủ máy in. Máy chủ in "
"đằng sau HAProxy với xác thực cơ bản được bật có thể được truy cập bằng cách "
-"đặt tên người dùng và mật khẩu vào URL theo định dạng sau: https://"
-"username:password@your-octopi-address/"
+"đặt tên người dùng và mật khẩu vào URL theo định dạng sau: https://username:"
+"password@your-octopi-address/"
msgid "Device UI"
msgstr "Giao diện thiết bị"
@@ -12354,6 +12454,12 @@ msgstr ""
"Orca Slicer có thể tải file G-code lên máy chủ máy in. Trường này nên chứa "
"khóa API hoặc mật khẩu cần thiết để xác thực."
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "Tên của máy in."
@@ -12686,120 +12792,136 @@ msgstr ""
msgid "External bridge infill direction"
msgstr "Hướng infill cầu bên ngoài"
-#, fuzzy, no-c-format, no-boost-format
+#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"Ghi đè góc bắc cầu. Nếu để là không, góc bắc cầu sẽ được tính tự động. Nếu "
-"không, góc được cung cấp sẽ được sử dụng cho cầu bên ngoài. Sử dụng 180° cho "
-"góc không."
msgid "Internal bridge infill direction"
msgstr "Hướng infill cầu bên trong"
-#, fuzzy
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"Ghi đè góc bắc cầu bên trong. Nếu để là không, góc bắc cầu sẽ được tính tự "
-"động. Nếu không, góc được cung cấp sẽ được sử dụng cho cầu bên trong. Sử "
-"dụng 180° cho góc không.\n"
-"\n"
-"Khuyến nghị để ở 0 trừ khi có nhu cầu model cụ thể không cần."
msgid "External bridge density"
msgstr "Mật độ cầu bên ngoài"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
-"Controls the density (spacing) of external bridge lines. Default is 100%.\n"
-"\n"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
-"\n"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
msgid "Internal bridge density"
msgstr "Mật độ cầu bên trong"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"Điều khiển mật độ (khoảng cách) của các đường cầu bên trong. 100% có nghĩa "
-"là cầu đặc. Mặc định là 100%.\n"
-"\n"
-"Cầu bên trong mật độ thấp hơn có thể giúp giảm hiện tượng gối trên bề mặt "
-"trên và cải thiện độ tin cậy cầu bên trong vì có nhiều không gian hơn để "
-"không khí lưu thông xung quanh cầu được đùn, cải thiện tốc độ làm mát của "
-"nó.\n"
-"\n"
-"Tùy chọn này hoạt động đặc biệt tốt khi kết hợp với tùy chọn cầu bên trong "
-"thứ hai trên infill, cải thiện thêm cấu trúc bắc cầu bên trong trước khi "
-"infill đặc được đùn."
msgid "Bridge flow ratio"
msgstr "Tỷ lệ lưu lượng cầu"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Giảm giá trị này một chút (ví dụ 0.9) để giảm lượng vật liệu cho cầu, để cải "
-"thiện độ võng.\n"
+
+#, 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"
-"Lưu lượng cầu thực tế được sử dụng được tính bằng cách nhân giá trị này với "
-"tỷ lệ lưu lượng filament, và nếu được đặt, tỷ lệ lưu lượng của đối tượng."
+"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"
msgstr "Tỷ lệ lưu lượng cầu bên trong"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Giá trị này điều chỉnh độ dày của lớp cầu bên trong. Đây là lớp đầu tiên "
-"trên infill thưa. Giảm giá trị này một chút (ví dụ 0.9) để cải thiện chất "
-"lượng bề mặt trên infill thưa.\n"
-"\n"
-"Lưu lượng cầu bên trong thực tế được sử dụng được tính bằng cách nhân giá "
-"trị này với tỷ lệ lưu lượng cầu, tỷ lệ lưu lượng filament, và nếu được đặt, "
-"tỷ lệ lưu lượng của đối tượng."
msgid "Top surface flow ratio"
msgstr "Tỷ lệ lưu lượng bề mặt trên"
@@ -13134,37 +13256,35 @@ msgstr "Giảm tốc cho chu vi cong"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"Bật tùy chọn này để giảm tốc độ in trong vùng mà chu vi có thể cong lên "
-"trên. Ví dụ, giảm tốc bổ sung sẽ được áp dụng khi in phần nhô trên góc sắc "
-"như phía trước thân Benchy, giảm độ cong tích lũy qua nhiều lớp.\n"
-"\n"
-"Thông thường khuyến nghị bật tùy chọn này trừ khi làm mát máy in của bạn đủ "
-"mạnh hoặc tốc độ in đủ chậm để chu vi không cong. Nếu in với tốc độ chu vi "
-"bên ngoài cao, tham số này có thể tạo ra khuyết điểm nhỏ khi giảm tốc do sự "
-"chênh lệch lớn về tốc độ in. Nếu bạn nhận thấy khuyết điểm, hãy đảm bảo áp "
-"suất nâng cao của bạn được điều chỉnh đúng.\n"
-"\n"
-"Lưu ý: Khi tùy chọn này được bật, chu vi nhô được coi như phần nhô, nghĩa là "
-"tốc độ nhô được áp dụng ngay cả khi chu vi nhô là một phần của cầu. Ví dụ, "
-"khi chu vi nhô 100% , không có thành hỗ trợ chúng từ bên dưới, tốc độ nhô "
-"100% sẽ được áp dụng."
msgid "mm/s or %"
msgstr "mm/s hoặc %"
@@ -13424,24 +13544,25 @@ msgid "Thick external bridges"
msgstr "Cầu bên ngoài dày"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Nếu được bật, cầu đáng tin cậy hơn, có thể bắc cầu khoảng cách dài hơn, "
-"nhưng có thể trông xấu hơn. Nếu bị tắt, cầu trông đẹp hơn nhưng chỉ đáng tin "
-"cậy cho khoảng cách bắc cầu ngắn hơn."
msgid "Thick internal bridges"
msgstr "Cầu bên trong dày"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"Nếu được bật, cầu bên trong dày sẽ được sử dụng. Thường khuyến nghị bật tính "
-"năng này. Tuy nhiên, hãy cân nhắc tắt nó nếu bạn đang sử dụng đầu phun lớn."
msgid "Extra bridge layers (beta)"
msgstr "Lớp cầu bổ sung (beta)"
@@ -14650,13 +14771,11 @@ msgid "Align infill direction to model"
msgstr "Căn chỉnh hướng infill với model"
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
-"Căn chỉnh hướng infill và lấp bề mặt để theo định hướng của model trên bàn "
-"in. Khi được bật, hướng lấp xoay theo model để duy trì đặc tính độ bền tối "
-"ưu."
msgid "Insert solid layers"
msgstr "Chèn lớp đặc"
@@ -14682,6 +14801,7 @@ msgstr "Sử dụng nhiều đường cho mẫu infill, nếu được hỗ tr
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -14776,6 +14896,27 @@ msgid ""
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
msgstr "Góc của các đường infill góc. 60° sẽ tạo ra tổ ong thuần túy."
+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"
msgstr "Độ dài neo infill thưa"
@@ -14864,8 +15005,8 @@ msgid "mm/s² or %"
msgstr "mm/s² hoặc %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Gia tốc của infill thưa. Nếu giá trị được biểu thị dưới dạng phần trăm (ví "
"dụ 100%), nó sẽ được tính dựa trên gia tốc mặc định."
@@ -14998,14 +15139,14 @@ msgstr "Tốc độ quạt đầy tại lớp"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"Tốc độ quạt sẽ được tăng tuyến tính từ không tại lớp "
-"\"close_fan_the_first_x_layers\" đến tối đa tại lớp "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" sẽ bị bỏ qua nếu thấp hơn "
+"\"close_fan_the_first_x_layers\" đến tối đa tại lớp \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" sẽ bị bỏ qua nếu thấp hơn "
"\"close_fan_the_first_x_layers\", trong trường hợp đó quạt sẽ chạy ở tốc độ "
"tối đa được phép tại lớp \"close_fan_the_first_x_layers\" + 1."
@@ -15772,8 +15913,10 @@ msgstr "Probing exclude area of clumping"
msgid "Probing exclude area of clumping."
msgstr "Probing exclude area of clumping."
-msgid "Filament to print internal sparse infill."
-msgstr "Filament để in infill thưa bên trong."
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -16596,8 +16739,21 @@ msgstr ""
"Phát hiện phần trăm nhô tương đối với độ rộng đường và sử dụng tốc độ khác "
"nhau để in. Đối với phần nhô 100%%, tốc độ cầu được sử dụng."
-msgid "Filament to print walls."
-msgstr "Filament để in thành."
+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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -17091,8 +17247,8 @@ msgid "Role base wipe speed"
msgstr "Tốc độ lau dựa trên vai trò"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -17274,11 +17430,20 @@ msgstr ""
"Vùng infill thưa nhỏ hơn giá trị ngưỡng được thay thế bằng infill đặc bên "
"trong."
-msgid "Solid infill"
-msgstr "Infill đặc"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "Filament để in infill đặc."
+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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -17648,11 +17813,10 @@ msgid "Support/raft base"
msgstr "Đế support/raft"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"Filament để in đế support và raft. \"Mặc định\" có nghĩa là không có "
-"filament cụ thể cho support và filament hiện tại được sử dụng."
msgid "Avoid interface filament for base"
msgstr "Tránh filament giao diện cho đế"
@@ -17679,11 +17843,10 @@ msgid "Support/raft interface"
msgstr "Giao diện support/raft"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"Filament để in giao diện support. \"Mặc định\" có nghĩa là không có filament "
-"cụ thể cho giao diện support và filament hiện tại được sử dụng."
msgid "Top interface layers"
msgstr "Lớp giao diện trên"
@@ -18002,8 +18165,8 @@ msgstr "Kích hoạt điều khiển nhiệt độ"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -18728,6 +18891,9 @@ msgstr "giá trị không hợp lệ "
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "Giá trị không hợp lệ khi chế độ bình xoắn ốc được bật: "
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "độ rộng đường quá lớn "
@@ -18978,11 +19144,17 @@ msgid "Debug level"
msgstr "Mức gỡ lỗi"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
+msgstr ""
+"Đặt mức ghi log gỡ lỗi. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
+
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
msgstr ""
-"Đặt mức ghi log gỡ lỗi. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
msgid "Enable timelapse for print"
msgstr "Bật timelapse cho in"
@@ -19526,13 +19698,13 @@ msgstr "File được cung cấp không thể đọc được vì nó trống"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
-"Định dạng file không xác định. File đầu vào phải có phần mở "
-"rộng .stl, .obj, .amf(.xml)."
+"Định dạng file không xác định. File đầu vào phải có phần mở rộng .stl, ."
+"obj, .amf(.xml)."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
-"Định dạng file không xác định. File đầu vào phải có phần mở rộng .3mf "
-"hoặc .zip.amf."
+"Định dạng file không xác định. File đầu vào phải có phần mở rộng .3mf hoặc ."
+"zip.amf."
msgid "load_obj: failed to parse"
msgstr "load_obj: phân tích thất bại"
@@ -20494,6 +20666,15 @@ msgstr ""
msgid "Top Surface Pattern"
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"
msgstr "Gửi G-code đến máy chủ máy in"
@@ -20517,6 +20698,48 @@ msgstr ""
msgid "Upload"
msgstr "Tải lên"
+msgid "Leveling before print"
+msgstr ""
+
+msgid "Time-lapse"
+msgstr "Timelapse"
+
+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"
msgstr "Hàng đợi tải lên máy chủ in"
@@ -20560,9 +20783,6 @@ msgid ""
msgstr ""
"Loại bàn đã chọn không khớp với file. Vui lòng xác nhận trước khi bắt đầu in."
-msgid "Time-lapse"
-msgstr "Timelapse"
-
msgid "Heated Bed Leveling"
msgstr "San bằng bàn nóng"
@@ -20572,6 +20792,16 @@ msgstr "Bàn in có kết cấu (Mặt A)"
msgid "Smooth Build Plate (Side B)"
msgstr "Bàn in mịn (Mặt B)"
+#, 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"
msgstr "Không thể thực hiện thao tác boolean trên các phần đã chọn"
@@ -20755,8 +20985,8 @@ msgstr ""
"Bạn có muốn viết lại nó không?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
"Chúng tôi sẽ đổi tên cài đặt sẵn thành \"Nhà cung cấp Loại Serial @máy in "
@@ -21265,9 +21495,18 @@ msgstr ""
"Select the network agent implementation for printer communication. Available "
"agents are registered at startup."
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "Không thể có tham chiếu máy chủ máy in hợp lệ"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "Thành công!"
@@ -21314,6 +21553,30 @@ msgstr "Đăng nhập/Kiểm tra"
msgid "Connection to printers connected via the print host failed."
msgstr "Kết nối với máy in được kết nối qua máy chủ in thất bại."
+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
msgid "Mismatched type of print host: %s"
msgstr "Loại máy chủ in không khớp: %s"
@@ -22081,12 +22344,27 @@ msgid "SimplyPrint account not linked. Go to Connect options to set it up."
msgstr ""
"Tài khoản SimplyPrint chưa được liên kết. Đến tùy chọn Kết nối để thiết lập."
+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."
msgstr "Kết nối serial với Flashforge hoạt động chính xác."
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr "Không thể kết nối với Flashforge qua serial"
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "Trạng thái được cung cấp không chính xác."
@@ -22708,6 +22986,221 @@ msgstr ""
"Bạn có biết rằng khi in vật liệu dễ cong vênh như ABS, tăng nhiệt độ bàn "
"nóng một cách thích hợp có thể giảm xác suất cong vênh không?"
+#~ 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 ""
+#~ "Tùy chọn lau không khả dụng khi sử dụng chế độ rút firmware.\n"
+#~ "\n"
+#~ "Tôi có nên tắt nó để bật rút firmware?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\" được tìm thấy trong before_layer_gcode, không tương thích với "
+#~ "địa chỉ extruder tuyệt đối."
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr ""
+#~ "\"G92 E0\" được tìm thấy trong layer_gcode, không tương thích với địa chỉ "
+#~ "extruder tuyệt đối."
+
+#, fuzzy, 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 ""
+#~ "Ghi đè góc bắc cầu. Nếu để là không, góc bắc cầu sẽ được tính tự động. "
+#~ "Nếu không, góc được cung cấp sẽ được sử dụng cho cầu bên ngoài. Sử dụng "
+#~ "180° cho góc không."
+
+#, fuzzy
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "Ghi đè góc bắc cầu bên trong. Nếu để là không, góc bắc cầu sẽ được tính "
+#~ "tự động. Nếu không, góc được cung cấp sẽ được sử dụng cho cầu bên trong. "
+#~ "Sử dụng 180° cho góc không.\n"
+#~ "\n"
+#~ "Khuyến nghị để ở 0 trừ khi có nhu cầu model cụ thể không cần."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+#~ msgstr ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "Điều khiển mật độ (khoảng cách) của các đường cầu bên trong. 100% có "
+#~ "nghĩa là cầu đặc. Mặc định là 100%.\n"
+#~ "\n"
+#~ "Cầu bên trong mật độ thấp hơn có thể giúp giảm hiện tượng gối trên bề mặt "
+#~ "trên và cải thiện độ tin cậy cầu bên trong vì có nhiều không gian hơn để "
+#~ "không khí lưu thông xung quanh cầu được đùn, cải thiện tốc độ làm mát của "
+#~ "nó.\n"
+#~ "\n"
+#~ "Tùy chọn này hoạt động đặc biệt tốt khi kết hợp với tùy chọn cầu bên "
+#~ "trong thứ hai trên infill, cải thiện thêm cấu trúc bắc cầu bên trong "
+#~ "trước khi infill đặc được đùn."
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "Giảm giá trị này một chút (ví dụ 0.9) để giảm lượng vật liệu cho cầu, để "
+#~ "cải thiện độ võng.\n"
+#~ "\n"
+#~ "Lưu lượng cầu thực tế được sử dụng được tính bằng cách nhân giá trị này "
+#~ "với tỷ lệ lưu lượng filament, và nếu được đặt, tỷ lệ lưu lượng của đối "
+#~ "tượng."
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "Giá trị này điều chỉnh độ dày của lớp cầu bên trong. Đây là lớp đầu tiên "
+#~ "trên infill thưa. Giảm giá trị này một chút (ví dụ 0.9) để cải thiện chất "
+#~ "lượng bề mặt trên infill thưa.\n"
+#~ "\n"
+#~ "Lưu lượng cầu bên trong thực tế được sử dụng được tính bằng cách nhân giá "
+#~ "trị này với tỷ lệ lưu lượng cầu, tỷ lệ lưu lượng filament, và nếu được "
+#~ "đặt, tỷ lệ lưu lượng của đối tượng."
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "Bật tùy chọn này để giảm tốc độ in trong vùng mà chu vi có thể cong lên "
+#~ "trên. Ví dụ, giảm tốc bổ sung sẽ được áp dụng khi in phần nhô trên góc "
+#~ "sắc như phía trước thân Benchy, giảm độ cong tích lũy qua nhiều lớp.\n"
+#~ "\n"
+#~ "Thông thường khuyến nghị bật tùy chọn này trừ khi làm mát máy in của bạn "
+#~ "đủ mạnh hoặc tốc độ in đủ chậm để chu vi không cong. Nếu in với tốc độ "
+#~ "chu vi bên ngoài cao, tham số này có thể tạo ra khuyết điểm nhỏ khi giảm "
+#~ "tốc do sự chênh lệch lớn về tốc độ in. Nếu bạn nhận thấy khuyết điểm, hãy "
+#~ "đảm bảo áp suất nâng cao của bạn được điều chỉnh đúng.\n"
+#~ "\n"
+#~ "Lưu ý: Khi tùy chọn này được bật, chu vi nhô được coi như phần nhô, nghĩa "
+#~ "là tốc độ nhô được áp dụng ngay cả khi chu vi nhô là một phần của cầu. Ví "
+#~ "dụ, khi chu vi nhô 100% , không có thành hỗ trợ chúng từ bên dưới, tốc độ "
+#~ "nhô 100% sẽ được áp dụng."
+
+#~ 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 ""
+#~ "Nếu được bật, cầu đáng tin cậy hơn, có thể bắc cầu khoảng cách dài hơn, "
+#~ "nhưng có thể trông xấu hơn. Nếu bị tắt, cầu trông đẹp hơn nhưng chỉ đáng "
+#~ "tin cậy cho khoảng cách bắc cầu ngắn hơn."
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "Nếu được bật, cầu bên trong dày sẽ được sử dụng. Thường khuyến nghị bật "
+#~ "tính năng này. Tuy nhiên, hãy cân nhắc tắt nó nếu bạn đang sử dụng đầu "
+#~ "phun lớn."
+
+#~ msgid ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+#~ msgstr ""
+#~ "Căn chỉnh hướng infill và lấp bề mặt để theo định hướng của model trên "
+#~ "bàn in. Khi được bật, hướng lấp xoay theo model để duy trì đặc tính độ "
+#~ "bền tối ưu."
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "Filament để in infill thưa bên trong."
+
+#~ msgid "Filament to print walls."
+#~ msgstr "Filament để in thành."
+
+#~ msgid "Solid infill"
+#~ msgstr "Infill đặc"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "Filament để in infill đặc."
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "Filament để in đế support và raft. \"Mặc định\" có nghĩa là không có "
+#~ "filament cụ thể cho support và filament hiện tại được sử dụng."
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "Filament để in giao diện support. \"Mặc định\" có nghĩa là không có "
+#~ "filament cụ thể cho giao diện support và filament hiện tại được sử dụng."
+
#~ msgid "Erase all painting"
#~ msgstr "Xóa tất cả vẽ"
@@ -23482,9 +23975,6 @@ msgstr ""
#~ msgid "Login Region"
#~ msgstr "Khu vực đăng nhập"
-#~ msgid "Stealth Mode"
-#~ msgstr "Chế độ ẩn danh"
-
#~ msgid "Use legacy network plugin (Takes effect after restarting Orca)"
#~ msgstr "Sử dụng plugin mạng cũ (Có hiệu lực sau khi khởi động lại Orca)"
diff --git a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po
index 1418ff083c..f73414311c 100644
--- a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po
+++ b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Slic3rPE\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: 2026-02-28 00:59\n"
"Last-Translator: Handle \n"
"Language-Team: \n"
@@ -111,7 +111,7 @@ msgid "On highlighted overhangs only"
msgstr "仅对高亮悬垂区生效"
msgid "Erase all"
-msgstr ""
+msgstr "全部擦除"
msgid "Highlight overhang areas"
msgstr "高亮悬垂区域"
@@ -334,10 +334,10 @@ msgid "Fixed step drag"
msgstr "固定拖动步长"
msgid "Context Menu"
-msgstr ""
+msgstr "右键菜单"
msgid "Toggle Auto-Drop"
-msgstr ""
+msgstr "切换自动落板"
msgid "Single sided scaling"
msgstr "单面缩放"
@@ -491,10 +491,10 @@ msgid "Multiple"
msgstr "多个"
msgid "Count"
-msgstr ""
+msgstr "数量"
msgid "Gap"
-msgstr ""
+msgstr "间隙"
msgid "Spacing"
msgstr "间距"
@@ -537,7 +537,7 @@ msgid "Drag"
msgstr "拖拽"
msgid "Move cut line"
-msgstr ""
+msgstr "移动切割线"
msgid "Draw cut line"
msgstr "绘制切线"
@@ -822,7 +822,7 @@ msgid "Embossing actions"
msgstr "浮雕动作"
msgid "Position on surface"
-msgstr ""
+msgstr "放置于表面"
msgid "Emboss"
msgstr "浮雕"
@@ -852,7 +852,7 @@ msgid "Advanced"
msgstr "高级"
msgid "Reset all options except the text and operation"
-msgstr ""
+msgstr "重置除文本和操作以外的所有选项"
msgid ""
"The text cannot be written using the selected font. Please try choosing a "
@@ -1729,9 +1729,8 @@ msgstr "记住我的选择"
msgid "Click to download new version in default browser: %s"
msgstr "在默认浏览器中点击下载最新版本: %s"
-#, fuzzy
msgid "OrcaSlicer needs an update"
-msgstr "逆戟鲸切片器需要进行升级"
+msgstr "OrcaSlicer 需要更新"
msgid "This is the newest version."
msgstr "已经是最新版本。"
@@ -1740,16 +1739,16 @@ msgid "Info"
msgstr "信息"
msgid "Loading printer & filament profiles"
-msgstr ""
+msgstr "正在加载打印机和耗材配置文件"
msgid "Creating main window"
-msgstr ""
+msgstr "正在创建主窗口"
msgid "Loading current preset"
-msgstr ""
+msgstr "正在加载当前预设"
msgid "Showing main window"
-msgstr ""
+msgstr "正在显示主窗口"
msgid ""
"The OrcaSlicer configuration file may be corrupted and cannot be parsed.\n"
@@ -1799,6 +1798,17 @@ msgstr "您可以保留未保存修改的预设应用到新项目中,或者选
msgid "User logged out"
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!"
msgstr "在切片过程不允许新建或打开项目文件!"
@@ -1810,22 +1820,31 @@ msgid ""
"version before it can be used normally."
msgstr "此逆戟鲸切片器的版本过低,需更新至最新版本方可正常使用"
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
+"云同步冲突:此预设在 OrcaCloud 中存在更新的版本。\n"
+"拉取将下载云端副本。强制推送将用您的本地预设覆盖它。"
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
+"云同步冲突:OrcaCloud 中已存在同名预设。\n"
+"拉取将下载云端副本。强制推送将用您的本地预设覆盖它。"
-msgid "Cloud Error"
+msgid ""
+"Force push will overwrite the cloud copy with your local preset changes.\n"
+"Do you want to continue?"
msgstr ""
+"强制推送将用您本地的预设更改覆盖云端副本。\n"
+"是否继续?"
+
+msgid "Resolve cloud sync conflict"
+msgstr "解决云同步冲突"
msgid "Retrieving printer information, please try again later."
msgstr "正在获取打印机信息,请稍后重试。"
@@ -1877,15 +1896,15 @@ msgid "Privacy Policy Update"
msgstr "隐私协议更新"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
-msgstr ""
+msgid "your Orca Cloud profile (user ID: \"%s\")"
+msgstr "您的 Orca Cloud 配置文件(用户 ID:“%s”)"
msgid "your default profile"
-msgstr ""
+msgstr "您的默认配置文件"
#, c-format, boost-format
msgid "a user profile (folder: \"%s\")"
-msgstr ""
+msgstr "用户配置文件(文件夹:“%s”)"
#, c-format, boost-format
msgid ""
@@ -1893,15 +1912,20 @@ msgid ""
"Do you want to migrate them to your OrcaCloud profile?\n"
"This will copy your presets so they are available under your new account."
msgstr ""
+"在 %s 中发现了现有的用户预设。\n"
+"是否要将它们迁移到您的 OrcaCloud 配置文件?\n"
+"这将复制您的预设,使其在您的新账户下可用。"
msgid "Migrate User Presets"
-msgstr ""
+msgstr "迁移用户预设"
#, c-format, boost-format
msgid ""
"Failed to migrate user presets:\n"
"%s"
msgstr ""
+"迁移用户预设失败:\n"
+"%s"
msgid ""
"The number of user presets cached in the cloud has exceeded the upper limit, "
@@ -1916,29 +1940,31 @@ msgid ""
"reduce the preset size by removing custom configurations or use it locally "
"only."
msgstr ""
+"预设内容过大,无法同步到云端(超过 1MB)。请通过移除自定义配置来缩减预设大"
+"小,或仅在本地使用。"
#, c-format, boost-format
msgid "%s updated from %s to %s"
-msgstr ""
+msgstr "%s 已从 %s 更新到 %s"
#, c-format, boost-format
msgid "%s has been downloaded."
-msgstr ""
+msgstr "%s 已下载。"
#, c-format, boost-format
msgid "Bundle %s is no longer available."
-msgstr ""
+msgstr "预设包 %s 不再可用。"
#, c-format, boost-format
msgid "Bundle %s access is unauthorized."
-msgstr ""
+msgstr "预设包 %s 访问未授权。"
msgid "Loading user preset"
msgstr "正在加载用户预设"
#, c-format, boost-format
msgid "%s has been removed."
-msgstr ""
+msgstr "%s 已被移除。"
msgid "Switching application language"
msgstr "切换应用程序语言"
@@ -2123,6 +2149,9 @@ msgstr "环面"
msgid "Orca Cube"
msgstr "Orca方块"
+msgid "OrcaSliced Combo"
+msgstr "OrcaSliced 复合模型"
+
msgid "Orca Tolerance Test"
msgstr "Orca误差测试"
@@ -2184,7 +2213,7 @@ msgid "Support Enforcer"
msgstr "支撑添加器"
msgid "Change part type"
-msgstr ""
+msgstr "选择零件类型"
msgid "Set as an individual object"
msgstr "设置为独立对象"
@@ -2202,10 +2231,10 @@ msgid "Printable"
msgstr "可打印的"
msgid "Auto Drop"
-msgstr ""
+msgstr "自动落板"
msgid "Automatically drops the selected object to the build plate"
-msgstr ""
+msgstr "自动将选中的对象落到打印板上"
msgid "Fix model"
msgstr "修复模型"
@@ -2485,7 +2514,7 @@ msgid "Set Filament for selected items"
msgstr "设置所选项的耗材丝"
msgid "Automatically snaps the selected object to the build plate"
-msgstr ""
+msgstr "自动将选中的对象吸附到打印板上"
msgid "Unlock"
msgstr "解锁"
@@ -2752,10 +2781,10 @@ msgid "Plate"
msgstr "盘"
msgid "Brim"
-msgstr "边缘"
+msgstr "Brim"
msgid "Object/Part Settings"
-msgstr ""
+msgstr "对象/零件设置"
msgid "Reset parameter"
msgstr "重置参数"
@@ -3400,6 +3429,10 @@ msgid ""
"enhancements. Each project carried the work of its predecessors forward, "
"crediting those who came before."
msgstr ""
+"开源切片建立在协作与署名的传统之上。由 Alessandro Ranellucci 和 RepRap 社区创"
+"建的 Slic3r 奠定了基础。Prusa Research 的 PrusaSlicer 在此基础上发展,Bambu "
+"Studio 从 PrusaSlicer 分支而来,SuperSlicer 则通过社区驱动的改进对其进行了扩"
+"展。每个项目都将前人的工作向前推进,并向先行者致谢。"
msgid ""
"OrcaSlicer began in that same spirit, drawing from PrusaSlicer, BambuStudio, "
@@ -3407,12 +3440,17 @@ msgid ""
"introducing advanced calibration tools, precise wall and seam control and "
"hundreds of other features."
msgstr ""
+"OrcaSlicer 也始于同样的精神,汲取了 PrusaSlicer、BambuStudio、SuperSlicer 和 "
+"CuraSlicer 的成果。但它如今已远远超越最初的起点——引入了先进的校准工具、精确的"
+"墙与接缝控制以及数百项其他功能。"
msgid ""
"Today, OrcaSlicer is the most widely used and actively developed open-source "
"slicer in the 3D printing community. Many of its innovations have been "
"adopted by other slicers, making it a driving force for the entire industry."
msgstr ""
+"如今,OrcaSlicer 是 3D 打印社区中使用最广泛、开发最活跃的开源切片软件。它的许"
+"多创新已被其他切片软件采用,成为推动整个行业发展的力量。"
msgid "Version"
msgstr "版本"
@@ -4725,7 +4763,7 @@ msgid "Acceleration"
msgstr "加速度"
msgid "Jerk"
-msgstr ""
+msgstr "抖动"
msgid "Fan Speed"
msgstr "风扇速度"
@@ -4848,10 +4886,10 @@ msgid "Color: "
msgstr "颜色:"
msgid "Acceleration: "
-msgstr ""
+msgstr "加速度:"
msgid "Jerk: "
-msgstr ""
+msgstr "抖动:"
msgid "PA: "
msgstr "PA:"
@@ -4998,10 +5036,10 @@ msgid "Actual Speed (mm/s)"
msgstr "实际速度(毫米/秒)"
msgid "Acceleration (mm/s²)"
-msgstr ""
+msgstr "加速度 (mm/s²)"
msgid "Jerk (mm/s)"
-msgstr ""
+msgstr "抖动 (mm/s)"
msgid "Fan Speed (%)"
msgstr "风扇速度(%)"
@@ -5034,7 +5072,7 @@ msgid "Filament change times"
msgstr "换料次数"
msgid "Tool changes"
-msgstr ""
+msgstr "工具更换"
msgid "Color change"
msgstr "颜色更换"
@@ -5123,10 +5161,10 @@ msgid "Sequence"
msgstr "顺序"
msgid "Object Selection"
-msgstr ""
+msgstr "对象选择"
msgid "Part Selection"
-msgstr ""
+msgstr "零件选择"
msgid "number keys"
msgstr "数字键"
@@ -5291,6 +5329,9 @@ msgstr "悬垂"
msgid "Outline"
msgstr "轮廓线"
+msgid "Realistic View"
+msgstr "写实渲染"
+
msgid "Perspective"
msgstr "透视"
@@ -5307,7 +5348,7 @@ msgid "Paint Toolbar"
msgstr "上色工具条"
msgid "part selection"
-msgstr ""
+msgstr "零件选择"
msgid "Explosion Ratio"
msgstr "爆炸比例"
@@ -5333,7 +5374,7 @@ msgstr "体积:"
msgid "Size:"
msgstr "尺寸:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5579,15 +5620,18 @@ msgstr "配置向导"
msgid "Show Configuration Folder"
msgstr "打开配置文件夹"
+msgid "Troubleshoot Center"
+msgstr "故障排查中心"
+
+msgid "Open Network Test"
+msgstr "打开网络测试"
+
msgid "Show Tip of the Day"
msgstr "展示每日小贴士"
msgid "Check for Updates"
msgstr "检查更新"
-msgid "Open Network Test"
-msgstr "打开网络测试"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "关于 %s"
@@ -5720,13 +5764,13 @@ msgid "Export"
msgstr "导出"
msgid "Sync Presets"
-msgstr ""
+msgstr "同步预设"
msgid "Pull and apply the latest presets from OrcaCloud"
-msgstr ""
+msgstr "从 OrcaCloud 拉取并应用最新的预设"
msgid "You must be logged in to sync presets from cloud."
-msgstr ""
+msgstr "您必须登录后才能从云端同步预设。"
msgid "Quit"
msgstr "退出程序"
@@ -5851,10 +5895,10 @@ msgid "View"
msgstr "视图"
msgid "Preset Bundle"
-msgstr ""
+msgstr "预设包"
msgid "Syncing presets from cloud…"
-msgstr ""
+msgstr "正在从云端同步预设…"
msgid "Help"
msgstr "帮助"
@@ -5896,7 +5940,7 @@ msgid "VFA"
msgstr "VFA(Vertical Fine Artifacts垂直振纹)"
msgid "Calibration Guide"
-msgstr ""
+msgstr "校准指南"
msgid "&Open G-code"
msgstr "打开G-code"
@@ -6002,6 +6046,11 @@ msgid ""
"2. The Filament presets\n"
"3. The Printer presets"
msgstr ""
+"是否要从 Orca Cloud 同步您的个人数据?\n"
+"它包含以下信息:\n"
+"1. 工艺预设\n"
+"2. 耗材预设\n"
+"3. 打印机预设"
msgid "Synchronization"
msgstr "同步"
@@ -6018,7 +6067,7 @@ msgstr "未能加载播放器,请重新点击“播放”按钮。"
msgid ""
"The player is not loaded because the GStreamer GTK video sink is missing or "
"failed to initialize."
-msgstr ""
+msgstr "由于缺少 GStreamer GTK 视频接收器或其初始化失败,播放器未能加载。"
msgid "Please confirm if the printer is connected."
msgstr "请确认打印机是否连接成功。"
@@ -6197,8 +6246,8 @@ msgid ""
"The .gcode.3mf file contains no G-code data. Please slice it with Orca "
"Slicer and export a new .gcode.3mf file."
msgstr ""
-".gcode.3mf文件中不包含G-code数据。请使用Orca Slicer进行切片并导出新"
-"的.gcode.3mf文件。"
+".gcode.3mf文件中不包含G-code数据。请使用Orca Slicer进行切片并导出新的."
+"gcode.3mf文件。"
#, c-format, boost-format
msgid "File '%s' was lost! Please download it again."
@@ -6867,11 +6916,17 @@ msgstr "导出成功."
msgid "Model file downloaded."
msgstr "已下载模型文件。"
+msgid "Pull"
+msgstr "拉取"
+
+msgid "Force push"
+msgstr "强制推送"
+
msgid "Shared profiles may be available for this printer."
-msgstr ""
+msgstr "此打印机可能有共享的配置文件可用。"
msgid "Browse shared profiles"
-msgstr ""
+msgstr "浏览共享配置文件"
msgid "Serious warning:"
msgstr "严重警告:"
@@ -7067,7 +7122,7 @@ msgid "Objects"
msgstr "对象"
msgid "Cycle settings visibility"
-msgstr ""
+msgstr "循环切换设置可见性"
msgid "Compare presets"
msgstr "比较预设"
@@ -7330,7 +7385,7 @@ msgid "Load 3MF"
msgstr "加载 3MF"
msgid "BambuStudio Project"
-msgstr ""
+msgstr "BambuStudio 项目"
msgid "The 3MF is not supported by OrcaSlicer, loading geometry data only."
msgstr "该 3MF 不受 OrcaSlicer 支持,仅加载几何数据。"
@@ -7342,10 +7397,10 @@ msgstr "3MF 文件是由旧的 OrcaSlicer 版本生成的,仅加载几何数
msgid ""
"The 3MF file was generated by an older version, loading geometry data only."
-msgstr ""
+msgstr "该 3MF 文件由较旧的版本生成,仅加载几何数据。"
msgid "The 3MF file was generated by BambuStudio, loading geometry data only."
-msgstr ""
+msgstr "该 3MF 文件由 BambuStudio 生成,仅加载几何数据。"
msgid ""
"This project was created with an OrcaSlicer 2.3.1-alpha and uses infill "
@@ -7380,16 +7435,20 @@ msgid ""
"The 3MF was created by BambuStudio (version %s), which is newer than the "
"compatible version %s. Found unrecognized settings:"
msgstr ""
+"该 3MF 由 BambuStudio(版本 %s)创建,其版本高于兼容版本 %s。发现无法识别的设"
+"置:"
#, c-format, boost-format
msgid ""
"The 3MF was created by BambuStudio (version %s), which is newer than the "
"compatible version %s. Some settings may not be fully compatible."
msgstr ""
+"该 3MF 由 BambuStudio(版本 %s)创建,其版本高于兼容版本 %s。部分设置可能无法"
+"完全兼容。"
msgid ""
"The 3MF was created by BambuStudio. Some settings may differ from OrcaSlicer."
-msgstr ""
+msgstr "该 3MF 由 BambuStudio 创建。部分设置可能与 OrcaSlicer 不同。"
msgid "Invalid values found in the 3MF:"
msgstr "在3mf文件中发现无效值:"
@@ -7468,7 +7527,7 @@ msgid "Object with multiple parts was detected"
msgstr "检测到多零件对象"
msgid "Auto-Drop"
-msgstr ""
+msgstr "自动落板"
#, c-format, boost-format
msgid ""
@@ -7535,10 +7594,10 @@ msgid "The selected object couldn't be split."
msgstr "选中的模型不可分裂。"
msgid "Disable Auto-Drop to preserve z positioning?\n"
-msgstr ""
+msgstr "禁用自动落板以保留 Z 轴定位?\n"
msgid "Object with floating parts was detected"
-msgstr ""
+msgstr "检测到含有悬空零件的对象"
msgid "Another export job is running."
msgstr "有其他导出任务正在进行中。"
@@ -7817,6 +7876,12 @@ msgid ""
"will be exported."
msgstr "无法对模型网格执行布尔运算。只有正面部分将被导出。"
+msgid "Flashforge host is not available."
+msgstr "Flashforge 主机不可用。"
+
+msgid "Unable to log in to the Flashforge printer."
+msgstr "无法登录到 Flashforge 打印机。"
+
msgid "Is the printer ready? Is the print sheet in place, empty and clean?"
msgstr "打印机是否就绪?打印平台是否在正确的位置、有没有异物、是否干净?"
@@ -7920,7 +7985,7 @@ msgid "Triangles: %1%\n"
msgstr "三角形:%1%\n"
msgid "Use \"Fix Model\" to repair the mesh."
-msgstr ""
+msgstr "使用“修复模型”来修复网格。"
#, c-format, boost-format
msgid ""
@@ -8086,15 +8151,15 @@ msgid "Show the splash screen during startup."
msgstr "在启动时显示启动画面。"
msgid "Show shared profiles notification"
-msgstr ""
+msgstr "显示共享配置文件通知"
msgid ""
"Show a notification with a link to browse shared profiles when the selected "
"printer is changed."
-msgstr ""
+msgstr "当所选打印机更改时,显示带有浏览共享配置文件链接的通知。"
msgid "Use window buttons on left side"
-msgstr ""
+msgstr "将窗口按钮置于左侧"
msgid "(Requires restart)"
msgstr "(需要重启)"
@@ -8293,25 +8358,25 @@ msgid "If enabled, reverses the direction of zoom with mouse wheel."
msgstr "如果启用,使用鼠标滚轮缩放的方向会反转。"
msgid "Pan"
-msgstr ""
+msgstr "平移"
msgid "Left Mouse Drag"
-msgstr ""
+msgstr "鼠标左键拖动"
msgid "Set the action that dragging the left mouse button should perform."
-msgstr ""
+msgstr "设置拖动鼠标左键时应执行的操作。"
msgid "Middle Mouse Drag"
-msgstr ""
+msgstr "鼠标中键拖动"
msgid "Set the action that dragging the middle mouse button should perform."
-msgstr ""
+msgstr "设置拖动鼠标中键时应执行的操作。"
msgid "Right Mouse Drag"
-msgstr ""
+msgstr "鼠标右键拖动"
msgid "Set the action that dragging the right mouse button should perform."
-msgstr ""
+msgstr "设置拖动鼠标右键时应执行的操作。"
msgid "Clear my choice on..."
msgstr "清除我的选择..."
@@ -8336,13 +8401,31 @@ msgid ""
msgstr "加载文件后清除我对同步打印机预设的选择。"
msgid "Graphics"
-msgstr ""
+msgstr "图形"
+
+msgid "Phong shading"
+msgstr "Phong 着色"
+
+msgid "Uses Phong shading inside realistic view."
+msgstr "在写实渲染中使用 Phong 着色。"
+
+msgid "SSAO ambient occlusion"
+msgstr "SSAO 环境光遮蔽"
+
+msgid "Applies SSAO in realistic view."
+msgstr "在写实渲染中应用 SSAO。"
+
+msgid "Shadows"
+msgstr "阴影"
+
+msgid "Renders cast shadows on the plate in realistic view."
+msgstr "在写实渲染中渲染投射到打印板上的阴影。"
msgid "Anti-aliasing"
-msgstr ""
+msgstr "抗锯齿"
msgid "MSAA Multiplier"
-msgstr ""
+msgstr "MSAA 倍数"
msgid ""
"Set the Multi-Sample Anti-Aliasing level.\n"
@@ -8354,12 +8437,18 @@ msgid ""
"\n"
"Requires application restart."
msgstr ""
+"设置多重采样抗锯齿 (MSAA) 等级。\n"
+"数值越高边缘越平滑,但对性能的影响呈指数级增长。\n"
+"数值越低性能越好,但代价是边缘出现锯齿。\n"
+"如果禁用,建议启用 FXAA,以在对性能影响极小的情况下减少锯齿边缘。\n"
+"\n"
+"需要重启应用程序。"
msgid "Disabled"
msgstr "禁用"
msgid "FXAA post-processing"
-msgstr ""
+msgstr "FXAA 后处理"
msgid ""
"Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n"
@@ -8367,26 +8456,32 @@ msgid ""
"\n"
"Takes effect immediately."
msgstr ""
+"以屏幕空间处理的方式应用快速近似抗锯齿 (FXAA)。\n"
+"可用于在禁用或降低 MSAA 设置时提升性能。\n"
+"\n"
+"立即生效。"
msgid "FPS"
-msgstr ""
+msgstr "FPS"
msgid "FPS cap"
-msgstr ""
+msgstr "FPS 上限"
msgid "(0 = unlimited)"
-msgstr ""
+msgstr "(0 = 不限制)"
msgid ""
"Limits viewport frame rate to reduce GPU load and power usage.\n"
"Set to 0 for unlimited frame rate."
msgstr ""
+"限制视口帧率以降低 GPU 负载和功耗。\n"
+"设置为 0 表示不限制帧率。"
msgid "Show FPS overlay"
-msgstr ""
+msgstr "显示 FPS 叠加层"
msgid "Displays current viewport FPS in the top-right corner."
-msgstr ""
+msgstr "在右上角显示当前视口的 FPS。"
msgid "Login region"
msgstr "登录区域"
@@ -8395,10 +8490,20 @@ msgid "Stealth mode"
msgstr "局域网模式"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"Note: When Stealth Mode is enabled, your user profiles will not be backed up "
+"to Orca Cloud."
msgstr ""
+"这将禁用所有云功能,包括 Orca Cloud 配置文件同步。希望完全离线工作的用户可以"
+"启用此选项。\n"
+"注意:启用局域网模式后,您的用户配置文件将不会备份到 Orca Cloud。"
+
+msgid "Hide login side panel"
+msgstr "隐藏登录侧边栏"
+
+msgid "Hide the login side panel on the home page."
+msgstr "在主页上隐藏登录侧边栏。"
msgid "Network test"
msgstr "网络测试"
@@ -8407,15 +8512,17 @@ msgid "Test"
msgstr "测试"
msgid "Cloud Providers"
-msgstr ""
+msgstr "云服务提供商"
msgid "Enable Bambu Cloud"
-msgstr ""
+msgstr "启用 Bambu Cloud"
msgid ""
"Allow logging into Bambu Cloud alongside Orca Cloud. When enabled, a Bambu "
"login section appears on the homepage."
msgstr ""
+"允许在登录 Orca Cloud 的同时登录 Bambu Cloud。启用后,主页上会出现 Bambu 登录"
+"区域。"
msgid "Update & sync"
msgstr "更新和同步"
@@ -8524,7 +8631,6 @@ msgstr "将网页链接关联到OrcaSlicer"
msgid "Developer"
msgstr "开发者"
-#, fuzzy
msgid "Developer mode"
msgstr "开发者模式"
@@ -8532,13 +8638,25 @@ msgid "Skip AMS blacklist check"
msgstr "跳过AMS黑名单检查"
msgid "(Experimental) Keep painted feature after mesh change"
-msgstr ""
+msgstr "(实验性) 在网格更改后保留绘制的特征"
msgid ""
"Attempt to keep painted features (color/seam/support/fuzzy etc.) after "
"changing the object mesh (such as cut/reload from disk/simplify/fix etc.)\n"
"Highly experimental! Slow and may create artifact."
msgstr ""
+"在更改对象网格(如切割/从磁盘重新加载/简化/修复等)后,尝试保留绘制的特征(颜"
+"色/接缝/支撑/绒毛等)。\n"
+"高度实验性!速度较慢且可能产生瑕疵。"
+
+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"
msgstr "允许异常存储"
@@ -8689,7 +8807,7 @@ msgid "Project-inside presets"
msgstr "项目预设"
msgid "Bundle presets"
-msgstr ""
+msgstr "预设包"
msgid "System"
msgstr "系统"
@@ -9226,6 +9344,8 @@ msgid ""
"type in the slicing file. Please make sure you have installed the correct "
"filament in the external spool."
msgstr ""
+"外部耗材的类型未知,或与切片文件中的耗材类型不匹配。请确认您已在外部料盘中安"
+"装了正确的耗材。"
msgid "Please refer to Wiki before use->"
msgstr "使用前请参考 Wiki->"
@@ -9565,8 +9685,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"在录制无工具头延时摄影视频时,建议添加“延时摄影擦料塔”\n"
"右键单击打印板的空白位置,选择“添加标准模型”->“延时摄影擦料塔”。"
@@ -9953,7 +10073,7 @@ msgid "Normal"
msgstr "普通"
msgid "Resonance Compensation"
-msgstr ""
+msgstr "共振补偿"
msgid "Resonance Avoidance Speed"
msgstr "共振规避速度"
@@ -9964,13 +10084,13 @@ msgstr "频率"
msgid ""
"The frequency of the anti-vibration signal will correspond to the natural "
"frequency of the frame."
-msgstr ""
+msgstr "抗振信号的频率将与机架的固有频率相对应。"
msgid "Damping"
-msgstr ""
+msgstr "阻尼"
msgid "Damping ratio for the input shaping filter."
-msgstr ""
+msgstr "输入整形滤波器的阻尼比。"
msgid "Speed limitation"
msgstr "速度限制"
@@ -10022,12 +10142,14 @@ msgid "Retraction when switching material"
msgstr "切换材料时的回抽量"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"使用固件回抽模式时,擦拭选项不可用。\n"
-"我应该禁用它以启用固件回抽吗?"
+"使用固件回抽模式时,“擦拭前回抽”选项只能为 100%。\n"
+"\n"
+"是否将其设置为 100% 以启用固件回抽?"
msgid "Firmware Retraction"
msgstr "固件回抽"
@@ -10087,29 +10209,39 @@ msgid ""
" %s first layer %d %s, other layers %d %s\n"
" %s max delta %d %s, current delta %d %s\n"
msgstr ""
+" - %s:\n"
+" %s 首层 %d %s,其他层 %d %s\n"
+" %s 最大差值 %d %s,当前差值 %d %s\n"
msgid ""
"Some first-layer and other-layer temperature pairs exceed safety limits.\n"
-msgstr ""
+msgstr "部分首层与其他层的温度组合超出了安全限制。\n"
msgid ""
"\n"
"Invalid pairs:\n"
msgstr ""
+"\n"
+"无效的组合:\n"
msgid ""
"\n"
"You can go back to edit values, or continue if this is intentional."
msgstr ""
+"\n"
+"您可以返回修改数值,或者如果这是有意为之,则继续。"
msgid ""
"\n"
"\n"
"Continue anyway?"
msgstr ""
+"\n"
+"\n"
+"仍要继续吗?"
msgid "Temperature Safety Check"
-msgstr ""
+msgstr "温度安全检查"
msgid "Continue"
msgstr "继续"
@@ -10118,7 +10250,7 @@ msgid "Back"
msgstr "背面"
msgid "Don't warn again for this preset"
-msgstr ""
+msgstr "不再为此预设警告"
#, c-format, boost-format
msgid "Left: %s"
@@ -10162,7 +10294,7 @@ msgid "Discard"
msgstr "放弃"
msgid "the new profile"
-msgstr ""
+msgstr "新的配置文件"
#, boost-format
msgid ""
@@ -10171,6 +10303,10 @@ msgid ""
"discarding any changes made in\n"
"\"%2%\"."
msgstr ""
+"切换到\n"
+"“%1%”\n"
+"并放弃在\n"
+"“%2%”中所做的任何更改。"
#, boost-format
msgid ""
@@ -10179,6 +10315,10 @@ msgid ""
"will be transferred to\n"
"\"%2%\"."
msgstr ""
+"在\n"
+"“%1%”中修改的所有“新值”设置\n"
+"将被转移到\n"
+"“%2%”。"
#, boost-format
msgid ""
@@ -10186,6 +10326,9 @@ msgid ""
"\"%1%\"\n"
"and \"%2%\" will open without any changes."
msgstr ""
+"所有“新值”设置已保存在\n"
+"“%1%”中,\n"
+"“%2%”将以无任何更改的状态打开。"
msgid "Click the right mouse button to display the full text."
msgstr "单击鼠标右键显示全文。"
@@ -10677,11 +10820,15 @@ msgid ""
"Native Wayland liveview requires the GStreamer GTK video sink. Please "
"install the gtksink plugin for GStreamer, then restart OrcaSlicer."
msgstr ""
+"原生 Wayland 实时画面需要 GStreamer GTK 视频接收器。请安装 GStreamer 的 "
+"gtksink 插件,然后重启 OrcaSlicer。"
msgid ""
"Failed to initialize the native Wayland GStreamer video sink. Please check "
"your GStreamer GTK plugin installation."
msgstr ""
+"原生 Wayland GStreamer 视频接收器初始化失败。请检查您的 GStreamer GTK 插件安"
+"装情况。"
msgid ""
"Windows Media Player is required for this task! Do you want to enable "
@@ -10717,7 +10864,7 @@ msgstr ""
"Slicer?)"
msgid "Cloud agent is not available. Please restart OrcaSlicer and try again."
-msgstr ""
+msgstr "云代理不可用。请重启 OrcaSlicer 后重试。"
msgid "Bambu Network plug-in not detected."
msgstr "未检测到Bambu网络插件。"
@@ -10729,7 +10876,7 @@ msgid "Login"
msgstr "登录"
msgid "Login failed. Please try again."
-msgstr ""
+msgstr "登录失败。请重试。"
msgid "[Action Required] "
msgstr "[需要操作] "
@@ -10768,16 +10915,16 @@ msgid "Global shortcuts"
msgstr "全局快捷键"
msgid "Pan View"
-msgstr ""
+msgstr "移动视角"
msgid "Rotate View"
-msgstr ""
+msgstr "旋转视角"
msgid "Middle mouse button"
-msgstr ""
+msgstr "鼠标中键"
msgid "Zoom View"
-msgstr ""
+msgstr "缩放视角"
msgid ""
"Auto orients selected objects or all objects. If there are selected objects, "
@@ -10909,7 +11056,7 @@ msgid "Zoom out"
msgstr "缩小"
msgid "Toggle printable for object/part"
-msgstr ""
+msgstr "切换对象/零件的可打印状态"
msgid "Switch between Prepare/Preview"
msgstr "准备/预览之间的切换"
@@ -10996,7 +11143,7 @@ msgid "New version of Orca Slicer"
msgstr "新版本的Orca Slicer"
msgid "Check on Github"
-msgstr ""
+msgstr "在 Github 上查看"
msgid "Skip this Version"
msgstr "跳过本版本"
@@ -11147,13 +11294,13 @@ msgstr "扩展板"
#, boost-format
msgid "Split into %1% parts"
-msgstr ""
+msgstr "拆分为 %1% 个零件"
msgid "Repair finished"
msgstr "修复已完成"
msgid "Repair failed"
-msgstr ""
+msgstr "修复失败"
msgid "Repair canceled"
msgstr "修复被取消"
@@ -11193,10 +11340,10 @@ msgid ""
msgstr "部分模型在这些高度可能过薄,或者模型存在面片错误"
msgid "Process change extrusion role G-code"
-msgstr ""
+msgstr "工艺挤出类型更换 G-code"
msgid "Filament change extrusion role G-code"
-msgstr ""
+msgstr "耗材挤出类型更换 G-code"
msgid "No object can be printed. Maybe too small"
msgstr "没有可打印的对象。可能是因为尺寸过小。"
@@ -11224,15 +11371,17 @@ msgid "Flush volumes matrix do not match to the correct size!"
msgstr "冲洗量矩阵与正确的尺寸不匹配!"
msgid "set_accel_and_jerk() is only supported by Klipper"
-msgstr ""
+msgstr "set_accel_and_jerk() 仅受 Klipper 支持"
msgid ""
"Input shaping is not supported by Marlin < 2.1.2.\n"
"Check your firmware version and update your G-code flavor to ´Marlin 2´"
msgstr ""
+"Marlin < 2.1.2 不支持输入整形。\n"
+"请检查您的固件版本,并将 G-code 风格更新为 ´Marlin 2´"
msgid "Input shaping is only supported by Klipper, RepRapFirmware and Marlin 2"
-msgstr ""
+msgstr "输入整形仅受 Klipper、RepRapFirmware 和 Marlin 2 支持"
msgid "Grouping error: "
msgstr "分组错误:"
@@ -11384,16 +11533,20 @@ msgid ""
"temperature must fall within the recommended nozzle temperature range of the "
"other filaments. Otherwise, nozzle clogging or printer damage may occur."
msgstr ""
+"所选的喷嘴温度不兼容。每种耗材的喷嘴温度都必须落在其他耗材的推荐喷嘴温度范围"
+"内。否则可能会发生喷嘴堵塞或打印机损坏。"
msgid ""
"Invalid recommended nozzle temperature range. The lower bound must be lower "
"than the upper bound."
-msgstr ""
+msgstr "推荐喷嘴温度范围无效。下限必须低于上限。"
msgid ""
"If you still want to print, you can enable the option in Preferences / "
"Control / Slicing / Remove mixed temperature restriction."
msgstr ""
+"如果您仍要打印,可以在 偏好设置 / 控制 / 切片 / 移除混合温度限制 中启用该选"
+"项。"
msgid "No extrusions under current settings."
msgstr "根据当前设置,不会生成任何打印。"
@@ -11574,6 +11727,23 @@ msgstr "使用了支撑添加器但没有打开支撑。请打开支撑。"
msgid "Layer height cannot exceed nozzle diameter."
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 ""
+"在 before_layer_change_gcode 中发现了 \"G92 E0\",但其中的 G 或 E 不是大写。"
+"请将它们改为完全大写的 \"G92 E0\"。"
+
+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 ""
+"在 layer_change_gcode 中发现了 \"G92 E0\",但其中的 G 或 E 不是大写。请将它们"
+"改为完全大写的 \"G92 E0\"。"
+
msgid ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -11583,14 +11753,15 @@ msgstr ""
"到图层代码中。"
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
-msgstr "\"G92E0\" 出现在 before_layer_gcode 中,与绝对挤出机寻址不兼容。"
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
+msgstr ""
+"在 before_layer_change_gcode 中发现了 \"G92 E0\",这与绝对挤出机寻址不兼容。"
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
-msgstr "\"G92E0\" 出现在 layer_gcode 中,这与绝对挤出机寻址不兼容。"
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
+msgstr "在 layer_change_gcode 中发现了 \"G92 E0\",这与绝对挤出机寻址不兼容。"
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -11662,7 +11833,7 @@ msgid ""
msgstr "不会使用耗材收缩率,因为所用耗材的耗材收缩率不匹配。"
msgid "Generating skirt & brim"
-msgstr "正在生成skirt和brim"
+msgstr "正在生成裙边和brim"
msgid "Exporting G-code"
msgstr "正在导出G-code"
@@ -11682,6 +11853,33 @@ msgstr "可打印区域"
msgid "Extruder printable area"
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 "设置并联打印头的数量,适用于 OrangeStorm Giga 等打印机。"
+
+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 ""
+"按并联打印头数量排列的热床排除区域有序列表。第 1 项适用于一个打印头,第 2 项"
+"适用于两个打印头,依此类推。将某项留空表示无排除区域。"
+
msgid "Bed exclude area"
msgstr "不可打印区域"
@@ -11720,7 +11918,7 @@ msgstr ""
"缩小,直到该值指示的层。"
msgid "Elephant foot layers density"
-msgstr ""
+msgstr "象脚补偿层密度"
msgid ""
"Density of internal solid infill for Elephant foot layers compensation.\n"
@@ -11728,6 +11926,9 @@ msgid ""
"Subsequent layers become linearly denser by the height specified in "
"elefant_foot_compensation_layers."
msgstr ""
+"用于象脚补偿层的内部实心填充密度。\n"
+"此处设置的是第二层的初始值。\n"
+"后续各层会按 elefant_foot_compensation_layers 中指定的高度线性增密。"
msgid ""
"Slicing height for each layer. Smaller layer height means more accurate and "
@@ -11800,6 +12001,12 @@ msgstr ""
"Orca Slicer可以将G-code文件上传到打印机主机。此字段应包含用于身份验证的API密"
"钥或密码。"
+msgid "Serial Number"
+msgstr "序列号"
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr "Flashforge 本地 API 需要打印机序列号。"
+
msgid "Name of the printer."
msgstr "打印机名称"
@@ -12091,100 +12298,199 @@ msgstr "外部桥接填充方向"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"搭桥角度覆盖。如果设置为零,该角度将自动计算。否则外部的桥接将用提供的值。"
-"180°表示0度。"
+"外部桥接角度覆盖。\n"
+"如果保持为零,每个具体桥接的桥接角度都会自动计算。\n"
+"否则将按以下方式使用所提供的角度:\n"
+" - 绝对坐标\n"
+" - 绝对坐标 + 模型旋转:如果启用了“对齐填充方向到模型”\n"
+" - 最佳自动角度 + 此值:如果启用了“相对桥接角度”\n"
+"\n"
+"使用 180° 表示绝对角度为零。"
msgid "Internal bridge infill direction"
msgstr "内部桥接填充方向"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
msgstr ""
-"内部桥接角度覆盖。如果设置为0,则桥接角度将自动计算;否则将采用所提供的角度用"
-"于内部桥接。使用180°表示0角度。\n"
+"内部桥接角度覆盖。\n"
+"如果保持为零,每个具体桥接的桥接角度都会自动计算。\n"
+"否则将按以下方式使用所提供的角度:\n"
+" - 绝对坐标\n"
+" - 绝对坐标 + 模型旋转:如果启用了“对齐填充方向到模型”\n"
+" - 最佳自动角度 + 此值:如果启用了“相对桥接角度”\n"
"\n"
-"建议保持此值为0,除非有特殊模型要求。"
+"使用 180° 表示绝对角度为零。"
+
+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 "启用后,桥接角度值将被加到自动计算出的桥接方向上,而不是覆盖它。"
msgid "External bridge density"
msgstr "外部桥接密度"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
-"控制外部桥线的密度(间距)。默认值为 100%。 较低密度的外部桥有助于提高可靠"
-"性,因为挤压桥周围有更多的空气流通空间,从而提高其冷却速度。最低为 10%。 更高"
-"的密度可以产生更平滑的桥接表面,因为重叠的线在打印过程中提供了额外的支撑。最"
-"大值为 120%。\n"
-"注意:桥接密度过高可能会导致翘曲或过度挤压。"
+"控制外部桥接线的密度(间距)。默认值为 100%。\n"
+"理论上 100% 意味着实心桥接,但由于桥接挤出物容易下垂,100% 可能并不足够。\n"
+"\n"
+"- 高于 100% 的密度(推荐最大 125%):\n"
+" - 优点:产生更平滑的桥接表面,因为重叠的线在打印过程中提供额外支撑。\n"
+" - 缺点:可能导致过度挤出,从而降低上下表面质量并增加翘曲风险。\n"
+"\n"
+"- 低于 100% 的密度(最小 10%):\n"
+" - 优点:可形成类似拉丝的第一层。速度更快、冷却更好,因为挤出桥接周围有更多"
+"空气流通的空间。\n"
+" - 缺点:可能导致下垂和较差的表面光洁度。\n"
+"\n"
+"推荐范围:最小 10% - 最大 125%。"
msgid "Internal bridge density"
msgstr "内部桥接密度"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"控制内部桥接线的密度(间距)。100% 表示实心桥接,默认值为 100%。\n"
+"控制内部桥接线的密度(间距)。默认值为 100%。100% 表示实心内部桥接。\n"
"\n"
-"较低密度的内部桥接有助于减少顶面起鼓现象,并提高内部桥接的可靠性,因为挤出桥"
-"梁周围有更多空间供空气循环,加快冷却速度。\n"
+"内部桥接作为稀疏填充与顶部实心填充之间的过渡支撑,会强烈影响顶面质量。\n"
"\n"
-"此选项与第二层内部桥接覆盖填充功能结合使用时尤为有效,可在挤出实心填充前进一"
-"步改善内部桥接结构。"
+"- 高于 100% 的密度(推荐最大 125%):\n"
+" - 优点:提升内部桥接强度以及对顶层的支撑,减少下垂并改善顶面光洁度。\n"
+" - 缺点:增加材料用量和打印时间;密度过高可能导致过度挤出和内部应力。\n"
+"\n"
+"- 低于 100% 的密度(最小 10%):\n"
+" - 优点:可减少表面起鼓并改善冷却(更多气流通过桥接),还可能加快打印速"
+"度。\n"
+" - 缺点:可能降低内部支撑,增加下垂和顶面缺陷的风险。\n"
+"\n"
+"此选项与“在填充上方增加第二层内部桥接”选项结合使用时效果尤佳,可在挤出实心填"
+"充之前进一步改善桥接。"
msgid "Bridge flow ratio"
msgstr "桥接流量"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"稍微减小该值(例如 0.9)以减少桥梁材料的用量,从而改善下垂。 实际使用的桥流量"
-"是通过将该值乘以耗材流量比以及对象的流量比(如果已设置)来计算的。"
+"此值控制外部(可见)桥接层的厚度。\n"
+"大于 1.0 的值:在保持线间距的同时增加材料用量。这可以改善线之间的接触和强"
+"度。\n"
+"小于 1.0 的值:在调整线间距以保持接触的同时减少材料用量。这可以改善下垂。\n"
+"\n"
+"实际使用的桥接流量是将此值乘以耗材流量比,以及(如已设置)对象的流量比计算得"
+"出的。"
+
+#, fuzzy, 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 ""
+"桥接线宽可以表示为绝对值,或当前喷嘴直径的百分比(百分比根据喷嘴直径计"
+"算)。\n"
+"建议与较高的桥接密度或桥接流量比配合使用。\n"
+"\n"
+"最大值为 100% 或喷嘴直径。\n"
+"如果设置为 0,线宽将与内部实心填充宽度一致。"
msgid "Internal bridge flow ratio"
msgstr "内部搭桥流量比例"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"该值控制内部桥接层的厚度。这是稀疏填充的第一层。稍微减小该值(例如 0.9)可改"
-"善稀疏填充的表面质量。 实际使用的内部桥流量是通过将该值乘以桥流量比、耗材流量"
-"比以及对象的流量比(如果已设置)来计算的。"
+"此值控制内部桥接层的厚度。这是稀疏填充上方的第一层,因此增大它可能会提升强度"
+"和上层质量。\n"
+"大于 1.0 的值:在保持线间距的同时增加材料用量。这可以改善线之间的接触和强"
+"度。\n"
+"小于 1.0 的值:在调整线间距以保持接触的同时减少材料用量。这可以改善下垂。\n"
+"\n"
+"实际使用的桥接流量是将此值乘以耗材流量比,以及(如已设置)对象的流量比计算得"
+"出的。"
msgid "Top surface flow ratio"
msgstr "顶部表面流量比例"
@@ -12229,7 +12535,7 @@ msgid ""
"affect brims and skirts) will be multiplied by this value."
msgstr ""
"此因素会影响本节中列出的挤出路径角色的第一层上的材料量。 对于第一层,每个路径"
-"角色的实际流量比(不影响边缘和裙子)将乘以该值。"
+"角色的实际流量比(不影响Brim和裙边)将乘以该值。"
msgid "Outer wall flow ratio"
msgstr "外壁流量比"
@@ -12478,33 +12784,54 @@ msgstr "翘边降速"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"启用此选项以降低可能向上翘曲的周长区域的打印速度。例如,在打印Benchy船体前部"
-"等尖锐角落的悬垂时,将应用额外的减速,减少在多层中复合的翘曲。\n"
+"启用此选项可在墙壁可能向上翘曲的区域降低打印速度。\n"
+"例如,在打印诸如 Benchy 船头这类尖角处的悬垂时,会施加额外的减速,从而减少在"
+"多层中逐渐累积的翘曲。\n"
"\n"
-"通常建议启用此选项,除非您的打印机冷却足够强大或打印速度足够慢,以至于周长翘"
-"曲不会发生。如果以较高的外部周长速度打印,由于打印速度的巨大差异,此参数在减"
-"速时可能会引入轻微的伪影。如果您注意到伪影,请确保您的压力提前已正确调整。\n"
+"通常建议开启此选项,除非您的打印机冷却足够强劲,或打印速度足够慢,以至于不会"
+"发生墙壁翘曲。\n"
+"如果以较高的外墙速度打印,此参数在减速时可能会引入墙面瑕疵,因为打印速度的差"
+"异可能过大,导致挤出机无法跟上所需的流量变化。\n"
+"这些瑕疵的根本原因很可能是压力提前 (PA) 调校略有偏差,尤其是在搭配较长的 PA "
+"平滑时间时。\n"
"\n"
-"注意:启用此选项时,悬垂周长将被视为悬垂,这意味着即使悬垂周长是桥接的一部"
-"分,也会应用悬垂速度。例如,当周长100%悬垂,没有墙壁从下方支撑时,将应用100%"
-"悬垂速度。"
+"启用此选项时的建议:\n"
+"1. 将压力提前的平滑时间降低到 0.015 - 0.02,使挤出机能够快速响应速度变化。\n"
+"2. 提高最低打印速度,以限制减速的幅度并减小快慢段之间的差异。\n"
+"3. 如果仍出现瑕疵,启用挤出速率平滑 (ERS) 以进一步平滑流量过渡。\n"
+"\n"
+"注意:启用此选项后,悬垂墙壁会被当作悬垂处理,这意味着即使悬垂墙壁是桥接的一"
+"部分,也会应用悬垂速度。\n"
+"例如,当墙壁 100% 悬垂、下方没有墙壁支撑时,将应用 100% 悬垂速度。"
msgid "mm/s or %"
msgstr "mm/s 或 %"
@@ -12555,7 +12882,7 @@ msgid ""
msgstr "在brim和模型之间设置间隙,能够让brim更容易剥离"
msgid "Brim flow ratio"
-msgstr ""
+msgstr "Brim流量比"
msgid ""
"This factor affects the amount of material for brims.\n"
@@ -12565,9 +12892,15 @@ msgid ""
"\n"
"Note: The resulting value will not be affected by the first-layer flow ratio."
msgstr ""
+"此系数影响Brim的材料用量。\n"
+"\n"
+"实际使用的Brim流量是将此值乘以耗材流量比,以及(如已设置)对象的流量比计算得"
+"出的。\n"
+"\n"
+"注意:所得的值不会受首层流量比的影响。"
msgid "Brim follows compensated outline"
-msgstr "边缘 遵循补偿轮廓"
+msgstr "Brim遵循补偿轮廓"
msgid ""
"When enabled, the brim is aligned with the first-layer perimeter geometry "
@@ -12578,25 +12911,25 @@ msgid ""
"If your current setup already works well, enabling it may be unnecessary and "
"can cause the brim to fuse with upper layers."
msgstr ""
-"启用后,边缘 与第一层周边几何体对齐 应用象脚补偿后。\n"
+"启用后,Brim 与第一层周边几何体对齐 应用象脚补偿后。\n"
"此选项适用于象脚补偿的情况 显着改变第一层足迹。\n"
"\n"
-"如果您当前的设置已经运行良好,则可能没有必要启用它,并且 可以导致 边缘 与上层"
+"如果您当前的设置已经运行良好,则可能没有必要启用它,并且 可以导致 Brim 与上层"
"融合。"
msgid "Combine brims"
-msgstr ""
+msgstr "合并Brim"
msgid ""
"Combine multiple brims into one when they are close to each other. This can "
"improve brim adhesion."
-msgstr ""
+msgstr "当多个Brim彼此靠近时,将它们合并为一个。这可以改善Brim附着力。"
msgid "Brim ears"
msgstr "圆盘"
msgid "Only draw brim over the sharp edges of the model."
-msgstr "仅在模型尖锐边缘启用brim。"
+msgstr "仅在模型尖锐Brim启用brim。"
msgid "Brim ear max angle"
msgstr "圆盘最大角度"
@@ -12708,15 +13041,15 @@ msgstr "启用空气过滤/排气风扇。G-code命令:M106 P3 S(0-255)"
msgid ""
"Enable this to override the fan speed set in custom G-code during print."
-msgstr ""
+msgstr "启用此项以覆盖打印过程中在自定义 G-code 中设置的风扇速度。"
msgid "On completion"
-msgstr ""
+msgstr "完成时"
msgid ""
"Enable this to override the fan speed set in custom G-code after print "
"completion."
-msgstr ""
+msgstr "启用此项以覆盖打印完成后在自定义 G-code 中设置的风扇速度。"
msgid ""
"Speed of exhaust fan during printing. This speed will override the speed in "
@@ -12749,23 +13082,31 @@ msgid "Thick external bridges"
msgstr "外部搭桥用厚桥"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"如果启用,桥接会更可靠,可以桥接更长的距离,但可能看起来更糟。如果关闭,桥梁"
-"看起来更好,但只适用于较短的桥接距离。"
+"如果启用,桥接挤出将使用等于喷嘴直径的线高。\n"
+"这会增加桥接的强度和可靠性,允许更长的跨度,但可能使外观变差。\n"
+"如果禁用,桥接可能看起来更好,但通常只在较短的跨度上才可靠。"
msgid "Thick internal bridges"
msgstr "内部搭桥用厚桥"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"如果启用,将使用厚内部桥接。通常建议打开此功能。但是,如果您使用大喷嘴,请考"
-"虑关闭它。"
+"如果启用,内部桥接挤出将使用等于喷嘴直径的线高。\n"
+"这会在稀疏填充上方打印时增加内部桥接的强度和可靠性,但可能使外观变差。\n"
+"如果禁用,内部桥接可能看起来更好,但在稀疏填充上方的可靠性可能较低。"
msgid "Extra bridge layers (beta)"
msgstr "额外桥层(测试版)"
@@ -13083,6 +13424,11 @@ msgid ""
"\n"
"This option will be disabled if spiral vase mode is enabled."
msgstr ""
+"从上往下看时,轮廓墙环的挤出方向。\n"
+"孔洞以与轮廓相反的方向打印,以便与那些轮廓多边形不完整、会改变方向(同时也部"
+"分构成孔洞轮廓)的层保持对齐。\n"
+"\n"
+"如果启用了螺旋花瓶模式,此选项将被禁用。"
msgid "Counter clockwise"
msgstr "逆时针"
@@ -13419,16 +13765,16 @@ msgid "Auto For Match"
msgstr "自动匹配"
msgid "Enable filament dynamic map"
-msgstr ""
+msgstr "启用耗材动态映射"
msgid "Enable dynamic filament mapping during print."
-msgstr ""
+msgstr "在打印期间启用动态耗材映射。"
msgid "Has filament switcher"
-msgstr ""
+msgstr "具有耗材切换器"
msgid "Printer has a filament switcher hardware (e.g., AMS)."
-msgstr ""
+msgstr "打印机具有耗材切换器硬件(例如 AMS)。"
msgid "Flush temperature"
msgstr "冲洗温度"
@@ -13670,10 +14016,10 @@ msgstr ""
"以产生连续的填充或稳定的挤出废料。"
msgid "Wipe tower cooling"
-msgstr ""
+msgstr "擦料塔冷却"
msgid "Temperature drop before entering filament tower"
-msgstr ""
+msgstr "进入擦料塔前的降温量"
msgid "Interface layer pre-extrusion distance"
msgstr "接触层预挤出距离"
@@ -13861,12 +14207,13 @@ msgid "Align infill direction to model"
msgstr "对齐填充方向到模型"
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
-"使填充和表面填充方向遵循模型在打印板上的方向。启用时,填充方向随模型旋转以保"
-"持最佳强度特性。"
+"使填充、桥接、熨烫和表面填充的方向跟随模型在打印板上的朝向。\n"
+"启用后,这些方向会随模型一起旋转,以保持最佳的强度特性。"
msgid "Insert solid layers"
msgstr "插入实心层"
@@ -13889,8 +14236,9 @@ msgid ""
msgstr "如果填充图案支持,使用多线进行填充。"
msgid "Z-buckling bias optimization (experimental)"
-msgstr ""
+msgstr "Z 轴屈曲偏置优化(实验性)"
+#, fuzzy, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -13898,6 +14246,9 @@ msgid ""
"~30% sparse infill density and above. Only applies when Sparse infill "
"pattern is set to Gyroid."
msgstr ""
+"在低填充密度下沿 Z(垂直)轴收紧螺旋(Gyroid)波形,以缩短有效的垂直柱长,提"
+"升 Z 轴抗压屈曲能力。耗材用量保持不变。在约 30% 及以上的稀疏填充密度下无效"
+"果。仅当稀疏填充图案设置为 Gyroid 时适用。"
msgid "Sparse infill pattern"
msgstr "稀疏填充图案"
@@ -13985,6 +14336,29 @@ msgid ""
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
msgstr "填充倾斜线的角度。60°将产生纯蜂窝结构。"
+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 ""
+"控制对短的或无支撑的闪电分支进行修剪的力度。\n"
+"此角度在内部会被转换为每层的距离。"
+
+msgid "Straightening angle"
+msgstr "拉直角度"
+
+msgid "Maximum straightening angle used to simplify Lightning branches."
+msgstr "用于简化闪电分支的最大拉直角度。"
+
msgid "Sparse infill anchor length"
msgstr "稀疏填充锚线长度"
@@ -14059,8 +14433,8 @@ msgid "mm/s² or %"
msgstr "mm/s² 或 %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"稀疏填充的加速度。如果该值表示为百分比(例如100%),则将根据默认加速度进行计"
"算。"
@@ -14079,12 +14453,14 @@ msgid ""
msgstr "首层加速度。使用较低值可以改善和打印板的粘接。"
msgid "First layer travel"
-msgstr ""
+msgstr "首层空驶"
msgid ""
"Travel acceleration of first layer.\n"
"The percentage value is relative to Travel Acceleration."
msgstr ""
+"首层的空驶加速度。\n"
+"百分比值相对于空驶加速度。"
msgid "Enable accel_to_decel"
msgstr "启用制动速度"
@@ -14133,6 +14509,8 @@ msgid ""
"Travel jerk of first layer.\n"
"The percentage value is relative to Travel Jerk."
msgstr ""
+"首层的空驶抖动。\n"
+"百分比值相对于空驶抖动。"
msgid ""
"Line width of the first layer. If expressed as a %, it will be computed over "
@@ -14186,10 +14564,10 @@ msgstr "满速风扇在"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"风扇速度将从“禁用第一层”的零转速,线性上升到“全风扇速度层”的最大转速。\n"
"如果低于“禁用风扇第一层”,则“全风扇速度第一层”将被忽略,在这种情况下,风扇将"
@@ -14386,6 +14764,14 @@ msgid ""
"Ripple: Uniform ripple pattern that ripples left and right of the original "
"path. Repeating pattern, woven appearance."
msgstr ""
+"用于生成绒毛表面的噪声类型:\n"
+"Classic:经典的均匀随机噪声。\n"
+"Perlin:柏林噪声,可产生更一致的纹理。\n"
+"Billow:类似柏林噪声,但更成团块状。\n"
+"Ridged Multifractal:具有尖锐、锯齿状特征的脊状噪声。可生成大理石般的纹理。\n"
+"Voronoi:将表面划分为 Voronoi 单元,并将每个单元随机位移一定量。可生成拼接状"
+"纹理。\n"
+"Ripple:在原始路径左右起伏的均匀波纹图案。重复图案,呈编织外观。"
msgid "Classic"
msgstr "经典"
@@ -14403,7 +14789,7 @@ msgid "Voronoi"
msgstr "维诺图"
msgid "Ripple"
-msgstr ""
+msgstr "波纹"
msgid "Fuzzy skin feature size"
msgstr "绒毛表面特征尺寸"
@@ -14430,13 +14816,13 @@ msgid ""
msgstr "相干噪波高倍频的衰减速率。较低的数值会产生更平滑的噪声。"
msgid "Number of ripples per layer"
-msgstr ""
+msgstr "每层的波纹数量"
msgid "Controls how many full cycles of ripples will be added per layer."
-msgstr ""
+msgstr "控制每层添加多少个完整周期的波纹。"
msgid "Ripple offset"
-msgstr ""
+msgstr "波纹偏移"
msgid ""
"Shifts the ripple phase forward along the print path by the specified "
@@ -14450,9 +14836,16 @@ msgid ""
"The shift is applied once every number of layers set by Layers between "
"ripple offset, so layers within the same group are printed identically."
msgstr ""
+"每个层周期沿打印路径将波纹相位向前移动指定百分比的波长。\n"
+"- 0% 使每一层都保持相同。\n"
+"- 50% 将图案移动半个波长,相当于反转相位。\n"
+"- 100% 将图案移动一个完整波长,回到原始相位。\n"
+"\n"
+"该偏移每隔“波纹偏移之间的层数”所设置的层数应用一次,因此同一组内的各层会以相"
+"同方式打印。"
msgid "Layers between ripple offset"
-msgstr ""
+msgstr "波纹偏移之间的层数"
msgid ""
"Specifies how many consecutive layers share the same ripple phase before the "
@@ -14465,6 +14858,12 @@ msgid ""
"to 6 are shifted by the configured offset, then layers 7 to 9 return to the "
"base pattern, etc."
msgstr ""
+"指定在应用偏移之前,有多少连续的层共享相同的波纹相位。\n"
+"例如:\n"
+"- 1 = 第 1 层以基础波纹图案打印,然后第 2 层按配置的偏移移动,然后第 3 层回到"
+"基础图案,依此类推。\n"
+"- 3 = 第 1 至 3 层以基础波纹图案打印,然后第 4 至 6 层按配置的偏移移动,然后"
+"第 7 至 9 层回到基础图案,依此类推。"
msgid "Filter out tiny gaps"
msgstr "忽略微小间隙"
@@ -14646,7 +15045,7 @@ msgstr ""
"设为 0 以禁用。"
msgid "Minimum non-zero part cooling fan speed"
-msgstr ""
+msgstr "最小非零部件冷却风扇速度"
msgid ""
"Some part-cooling fans cannot start spinning when commanded below a certain "
@@ -14665,9 +15064,20 @@ msgid ""
"below the one you know it can actually spool at.\n"
"Set to 0 to deactivate."
msgstr ""
+"某些部件冷却风扇在收到低于某一 PWM 占空比的指令时无法启动旋转。当设置为大于 "
+"0 时,任何非零的部件冷却风扇指令都会被提升到至少此百分比,以使风扇可靠启动。"
+"指令为 0(风扇关闭)时始终精确执行。此限制在所有其他风扇计算之后应用(首层渐"
+"变、层时间插值、悬垂/桥接/支撑面/熨烫覆盖),因此缩放仍在 [此值, 100%] 范围内"
+"进行。\n"
+"如果您的固件已经在低于某阈值时禁用风扇(例如 Klipper 的 [fan] off_below: "
+"0.10 会在指令占空比低于 10% 时关闭风扇),那么此选项与固件阈值最好设置为相同"
+"的值。使二者匹配(例如 Klipper 中 off_below: 0.10、此处为 10%)可确保切片软件"
+"绝不会发出会被固件悄然丢弃的非零值,且风扇绝不会收到低于其实际可启动转速的"
+"值。\n"
+"设置为 0 以停用。"
msgid "%"
-msgstr ""
+msgstr "%"
msgid "Time cost"
msgstr "耗时"
@@ -14900,8 +15310,12 @@ msgstr "结块检测排除区域"
msgid "Probing exclude area of clumping."
msgstr "结块检测排除区域"
-msgid "Filament to print internal sparse infill."
-msgstr "打印内部稀疏填充的耗材丝"
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
+"用于打印内部稀疏填充的耗材。\n"
+"“默认”使用当前对象/零件的耗材。"
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -15081,42 +15495,47 @@ msgid "Use a fixed absolute angle for ironing."
msgstr "使用一个固定的、绝对的角度进行熨烫。"
msgid "Ironing expansion"
-msgstr ""
+msgstr "熨烫扩展"
msgid "Expand or contract the ironing area."
-msgstr ""
+msgstr "扩大或缩小熨烫区域。"
msgid "Z contouring enabled"
-msgstr ""
+msgstr "启用 Z 轮廓"
msgid "Enable Z-layer contouring (aka Z-layer anti-aliasing)."
-msgstr ""
+msgstr "启用 Z 层轮廓(也称 Z 层抗锯齿)。"
msgid "Minimize wall height angle"
-msgstr ""
+msgstr "最小化墙高角度"
msgid ""
"Reduce the height of top-surface perimeters to match the model edge height.\n"
"Affects perimeters with a slope less than this angle (degrees).\n"
"A reasonable value is 35. Set to 0 to disable."
msgstr ""
+"降低顶面墙壁的高度,使其与模型边缘高度相匹配。\n"
+"影响坡度小于此角度(度)的墙壁。\n"
+"合理的取值为 35。设置为 0 以禁用。"
msgid "°"
-msgstr ""
+msgstr "°"
msgid "Don't alternate fill direction"
-msgstr ""
+msgstr "不交替填充方向"
msgid "Disable alternating fill direction when using Z contouring."
-msgstr ""
+msgstr "在使用 Z 轮廓时禁用交替填充方向。"
msgid "Minimum z height"
-msgstr ""
+msgstr "最小 Z 高度"
msgid ""
"Minimum Z-layer height.\n"
"Also controls the slicing plane."
msgstr ""
+"最小 Z 层高。\n"
+"同时控制切片平面。"
msgid "This G-code is inserted at every layer change after the Z lift."
msgstr "在每次换层抬升Z高度之后插入这段G-code。"
@@ -15308,12 +15727,14 @@ msgid "Maximum speed of resonance avoidance."
msgstr "共振规避的最大速度。"
msgid "Emit input shaping"
-msgstr ""
+msgstr "输出输入整形"
msgid ""
"Override firmware input shaping settings.\n"
"If disabled, firmware settings are used."
msgstr ""
+"覆盖固件的输入整形设置。\n"
+"如果禁用,则使用固件设置。"
msgid "Input shaper type"
msgstr "输入整形器类型"
@@ -15323,42 +15744,45 @@ msgid ""
"Default uses the firmware default settings.\n"
"Disable turns off input shaping in the firmware."
msgstr ""
+"选择输入整形器算法。\n"
+"“默认”使用固件的默认设置。\n"
+"“禁用”将关闭固件中的输入整形。"
msgid "MZV"
-msgstr ""
+msgstr "MZV"
msgid "ZV"
-msgstr ""
+msgstr "ZV"
msgid "ZVD"
-msgstr ""
+msgstr "ZVD"
msgid "ZVDD"
-msgstr ""
+msgstr "ZVDD"
msgid "ZVDDD"
-msgstr ""
+msgstr "ZVDDD"
msgid "EI"
-msgstr ""
+msgstr "EI"
msgid "EI2"
-msgstr ""
+msgstr "EI2"
msgid "2HUMP_EI"
-msgstr ""
+msgstr "2HUMP_EI"
msgid "EI3"
-msgstr ""
+msgstr "EI3"
msgid "3HUMP_EI"
-msgstr ""
+msgstr "3HUMP_EI"
msgid "DAA"
-msgstr ""
+msgstr "DAA"
msgid "X"
-msgstr ""
+msgstr "X"
msgid ""
"Resonant frequency for the X axis input shaper.\n"
@@ -15366,15 +15790,22 @@ msgid ""
"To disable input shaping, use the Disable type.\n"
"RRF: X and Y values are equal."
msgstr ""
+"X 轴输入整形器的谐振频率。\n"
+"为零时将使用固件频率。\n"
+"要禁用输入整形,请使用“禁用”类型。\n"
+"RRF:X 和 Y 的值相等。"
msgid "Y"
-msgstr ""
+msgstr "Y"
msgid ""
"Resonant frequency for the Y axis input shaper.\n"
"Zero will use the firmware frequency.\n"
"To disable input shaping, use the Disable type."
msgstr ""
+"Y 轴输入整形器的谐振频率。\n"
+"为零时将使用固件频率。\n"
+"要禁用输入整形,请使用“禁用”类型。"
msgid ""
"Damping ratio for the X axis input shaper.\n"
@@ -15382,12 +15813,19 @@ msgid ""
"To disable input shaping, use the Disable type.\n"
"RRF: X and Y values are equal."
msgstr ""
+"X 轴输入整形器的阻尼比。\n"
+"为零时将使用固件阻尼比。\n"
+"要禁用输入整形,请使用“禁用”类型。\n"
+"RRF:X 和 Y 的值相等。"
msgid ""
"Damping ratio for the Y axis input shaper.\n"
"Zero will use the firmware damping ratio.\n"
"To disable input shaping, use the Disable type."
msgstr ""
+"Y 轴输入整形器的阻尼比。\n"
+"为零时将使用固件阻尼比。\n"
+"要禁用输入整形,请使用“禁用”类型。"
msgid ""
"Part cooling fan speed may be increased when auto cooling is enabled. This "
@@ -15497,10 +15935,10 @@ msgstr ""
"请在打印机设置中启用辅助风扇以使用此功能。G-code指令:M106 P2 S(0-255)"
msgid "For the first"
-msgstr ""
+msgstr "在最初的"
msgid "Set special auxiliary cooling fan for the first certain layers."
-msgstr ""
+msgstr "为起始几层设置特殊的辅助冷却风扇速度。"
msgid ""
"Auxiliary fan speed will be ramped up linearly from layer \"For the first\" "
@@ -15509,10 +15947,14 @@ msgid ""
"in which case the fan will run at maximum allowed speed at layer \"For the "
"first\" + 1."
msgstr ""
+"辅助风扇速度将从“在最初的”层数线性提升,到“满速风扇在”所指定的层时达到最大"
+"值。\n"
+"如果“满速风扇在”低于“在最初的”,则会被忽略,此时风扇将在“在最初的” + 1 层处以"
+"允许的最大速度运行。"
msgid ""
"Special auxiliary cooling fan speed, effective only for the first x layers."
-msgstr ""
+msgstr "特殊辅助冷却风扇速度,仅对前 x 层有效。"
msgid ""
"The lowest printable layer height for the extruder. Used to limit the "
@@ -15665,8 +16107,25 @@ msgid ""
msgstr ""
"检测悬垂相对于线宽的百分比,并应用不同的速度打印。100%%的悬垂将使用桥接速度。"
-msgid "Filament to print walls."
-msgstr "打印外墙的耗材丝"
+msgid "Outer walls"
+msgstr "外墙"
+
+msgid ""
+"Filament to print outer walls.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
+"用于打印外墙的耗材。\n"
+"“默认”使用当前对象/零件的耗材。"
+
+msgid "Inner walls"
+msgstr "内墙"
+
+msgid ""
+"Filament to print inner walls.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
+"用于打印内墙的耗材。\n"
+"“默认”使用当前对象/零件的耗材。"
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -15712,12 +16171,14 @@ msgstr ""
"对路径,并支持脚本通过全局变量来读取 Orca Slicer 的设置。"
msgid "Change extrusion role G-code (process)"
-msgstr ""
+msgstr "挤出类型更换 G-code(工艺)"
msgid ""
"This G-code is inserted when the extrusion role is changed. It runs after "
"the machine and filament extrusion role G-code."
msgstr ""
+"当挤出类型发生变化时插入此 G-code。它在机器和耗材的挤出类型更换 G-code 之后运"
+"行。"
msgid "Printer type"
msgstr "打印机类型"
@@ -16119,8 +16580,8 @@ msgid "Role base wipe speed"
msgstr "自动擦拭速度"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -16170,24 +16631,24 @@ msgstr ""
"80%),则将根据上方的移动速度设置进行计算。该参数的默认值为80%。"
msgid "Skirt distance"
-msgstr "Skirt距离"
+msgstr "裙边距离"
msgid "The distance from the skirt to the brim or the object."
-msgstr "从skirt到模型或者brim的距离"
+msgstr "从裙边到模型或者brim的距离"
msgid "Skirt start point"
-msgstr "Skirt起始点"
+msgstr "裙边起始点"
msgid ""
"Angle from the object center to skirt start point. Zero is the most right "
"position, counter clockwise is positive angle."
-msgstr "从模型中心到skirt起始点的角度。0是最右边的位置,逆时针是正角度。"
+msgstr "从模型中心到裙边起始点的角度。0是最右边的位置,逆时针是正角度。"
msgid "Skirt height"
-msgstr "Skirt高度"
+msgstr "裙边高度"
msgid "How many layers of skirt. Usually only one layer."
-msgstr "skirt有多少层。通常只有一层"
+msgstr "裙边有多少层。通常只有一层"
msgid "Single loop after first layer"
msgstr "首层后单圈"
@@ -16217,38 +16678,38 @@ msgstr ""
"风挡对于保护ABS或ASA打印件免受风力的影响,防止翘曲和从打印床上脱落是非常有用"
"的。通常只有在没有封箱的开放式打印机上才需要。\n"
"\n"
-"启用 = skirt的高度与最高的打印对象一样高。否则的话会使用'skirt高度'。\n"
-"注意:启用风挡后,skirt将会在距离模型'skirt距离'的地方打印。因此,如果brim启"
-"用,可能会与其相交。为了避免这种情况,增加skirt距离值。\n"
+"启用 = 裙边的高度与最高的打印对象一样高。否则的话会使用'裙边高度'。\n"
+"注意:启用风挡后,裙边将会在距离模型'裙边距离'的地方打印。因此,如果brim启"
+"用,可能会与其相交。为了避免这种情况,增加裙边距离值。\n"
msgid "Enabled"
msgstr "启用"
msgid "Skirt type"
-msgstr "Skirt类型"
+msgstr "裙边类型"
msgid ""
"Combined - single skirt for all objects, Per object - individual object "
"skirt."
-msgstr "合并 - 所有对象共用一个skirt,Per object - 每个对象单独的skirt。"
+msgstr "合并 - 所有对象共用一个裙边,按对象 - 每个对象单独的裙边。"
msgid "Per object"
msgstr "按对象"
msgid "Skirt loops"
-msgstr "Skirt圈数"
+msgstr "裙边圈数"
msgid "Number of loops for the skirt. Zero means disabling skirt."
-msgstr "skirt的圈数。0表示关闭skirt。"
+msgstr "裙边的圈数。0表示关闭裙边。"
msgid "Skirt speed"
-msgstr "Skirt速度"
+msgstr "裙边速度"
msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed."
-msgstr "skirt速度,单位为mm/s。0表示使用默认的层挤出速度。"
+msgstr "裙边速度,单位为mm/s。0表示使用默认的层挤出速度。"
msgid "Skirt minimum extrusion length"
-msgstr "Skirt最小挤出长度"
+msgstr "裙边最小挤出长度"
msgid ""
"Minimum filament extrusion length in mm when printing the skirt. Zero means "
@@ -16279,11 +16740,26 @@ msgid ""
"internal solid infill."
msgstr "小于这个阈值的稀疏填充区域将会被内部实心填充替代。"
-msgid "Solid infill"
-msgstr "实心填充"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
+"用于打印内部实心填充的耗材。\n"
+"“默认”使用当前对象/零件的耗材。"
-msgid "Filament to print solid infill."
-msgstr "打印实心填充的耗材丝。"
+msgid ""
+"Filament to print top surface.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
+"用于打印顶面的耗材。\n"
+"“默认”使用当前对象/零件的耗材。"
+
+msgid ""
+"Filament to print bottom surface.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
+"用于打印底面的耗材。\n"
+"“默认”使用当前对象/零件的耗材。"
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -16470,7 +16946,7 @@ msgid "Enable filament ramming"
msgstr "启用耗材尖端成型"
msgid "Tool change on wipe tower"
-msgstr ""
+msgstr "在擦拭塔上换头"
msgid ""
"Force the toolhead to travel to the wipe tower before issuing the tool "
@@ -16481,6 +16957,10 @@ msgid ""
"this option if you want the tool change to always be issued above the wipe "
"tower instead."
msgstr ""
+"在发出换头命令 (Tx) 之前,强制打印头先移动到擦拭塔。仅与使用第 2 类擦拭塔的多"
+"挤出机(多打印头)打印机相关。默认情况下,Orca 会在多打印头机器上跳过此移动,"
+"因为固件会处理换头,这可能导致 Tx 命令在打印件上方发出。如果您希望换头命令始"
+"终在擦拭塔上方发出,请启用此选项。"
msgid "No sparse layers (beta)"
msgstr "无稀疏层 (实验功能)"
@@ -16629,10 +17109,12 @@ msgid "Support/raft base"
msgstr "支撑/筏层主体"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"打印支撑主体和筏层的耗材丝。\"默认\"代表不指定特定的耗材丝,并使用当前耗材"
+"用于打印支撑基底和筏层的耗材。\n"
+"“默认”表示不为支撑指定特定耗材,使用当前耗材。"
msgid "Avoid interface filament for base"
msgstr "界面材料不用于主体"
@@ -16657,9 +17139,12 @@ msgid "Support/raft interface"
msgstr "支撑/筏层界面"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
-msgstr "打印支撑接触面的耗材丝。\"默认\"代表不指定特定的耗材丝,并使用当前耗材"
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
+msgstr ""
+"用于打印支撑面的耗材。\n"
+"“默认”表示不为支撑面指定特定耗材,使用当前耗材。"
msgid "Top interface layers"
msgstr "顶部接触面层数"
@@ -16956,8 +17441,8 @@ msgstr "激活温度控制"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -17024,12 +17509,12 @@ msgid "This G-code is inserted when the extrusion role is changed."
msgstr "当挤出类型改变时会插入此G-code"
msgid "Change extrusion role G-code (filament)"
-msgstr ""
+msgstr "挤出类型更换 G-code(耗材)"
msgid ""
"This G-code is inserted when the extrusion role is changed for the active "
"filament."
-msgstr ""
+msgstr "当当前耗材的挤出类型发生变化时插入此 G-code。"
msgid ""
"Line width for top surfaces. If expressed as a %, it will be computed over "
@@ -17560,15 +18045,15 @@ msgstr ""
"0.5、或启用了单层顶面时,“单层墙阈值”才会显示。"
msgid "Maximum wall resolution"
-msgstr ""
+msgstr "最大墙体分辨率"
msgid ""
"This value determines the smallest wall line segment length in mm. The "
"smaller you set this value, the more accurate and precise the walls will be."
-msgstr ""
+msgstr "此值决定墙体线段的最小长度(毫米)。此值设置得越小,墙体就越精确。"
msgid "Maximum wall deviation"
-msgstr ""
+msgstr "最大墙体偏差"
msgid ""
"The maximum deviation allowed when reducing the resolution for the 'Maximum "
@@ -17577,6 +18062,9 @@ msgid ""
"'Maximum wall resolution', so if the two conflict, 'Maximum wall deviation' "
"takes precedence."
msgstr ""
+"在为“最大墙体分辨率”设置降低分辨率时所允许的最大偏差。如果增大此值,打印精度"
+"会降低,但 G-code 会更小。“最大墙体偏差”会限制“最大墙体分辨率”,因此当两者冲"
+"突时,以“最大墙体偏差”为准。"
msgid "First layer minimum wall width"
msgstr "首层最小墙宽度"
@@ -17617,6 +18105,9 @@ msgstr "无效值 "
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "在旋转花瓶模式时存在无效的值:"
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr "桥接线宽不得超过喷嘴直径:"
+
msgid "too large line width "
msgstr "线宽过大"
@@ -17857,11 +18348,17 @@ msgid "Debug level"
msgstr "调试等级"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
msgstr ""
-"设置调试日志的等级。0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"设置调试日志的等级。0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
+
+msgid "Log file"
+msgstr "日志文件"
+
+msgid "Redirects debug logging to file.\n"
+msgstr "将调试日志重定向到文件。\n"
msgid "Enable timelapse for print"
msgstr "为打印启用延时摄影"
@@ -18282,7 +18779,7 @@ msgid "Generating infill toolpath"
msgstr "正在生成填充路径"
msgid "Z contouring"
-msgstr ""
+msgstr "Z 轮廓"
msgid "Detect overhangs for auto-lift"
msgstr "为自动抬升检测悬垂区域"
@@ -18590,10 +19087,10 @@ msgid ""
msgstr ""
"请从我们的wiki中找到动态流量校准的详细信息。\n"
"\n"
-"通常情况下,校准是不必要的。当您开始单色/单耗材打印,并在打印开始菜单中勾选了"
-"“动态流量校准”选项时,打印机将按照旧的方式在打印前校准耗材;当您开始多色/多耗"
-"材打印时,打印机将在每次换耗材时使用默认的补偿参数,这在大多数情况下会产生良"
-"好的效果。\n"
+"通常情况下,校准是不必要的。当您开始单色/单耗材打印,并在打印开始菜单中勾选"
+"了“动态流量校准”选项时,打印机将按照旧的方式在打印前校准耗材;当您开始多色/多"
+"耗材打印时,打印机将在每次换耗材时使用默认的补偿参数,这在大多数情况下会产生"
+"良好的效果。\n"
"\n"
"有些情况可能导致校准结果不可靠,例如打印板的附着力不足。清洗构建或者使用胶水"
"可以增强打印板的附着力。您可以在我们的wiki上找到更多相关信息。\n"
@@ -18841,6 +19338,8 @@ msgid ""
"temperature range of the other filaments. Otherwise, nozzle clogging or "
"printer damage may occur."
msgstr ""
+"所选的喷嘴温度不兼容。在多材料打印中,每种耗材的喷嘴温度都必须落在其他耗材的"
+"推荐喷嘴温度范围内。否则可能会发生喷嘴堵塞或打印机损坏。"
msgid "Sync AMS and nozzle information"
msgstr "同步 AMS 和喷嘴信息"
@@ -19251,25 +19750,34 @@ msgid "NOTE: High values may cause Layer shift (>%s)"
msgstr "注意:较高的值可能会导致层移位 (>%s)"
msgid "Flow Ratio Calibration"
-msgstr ""
+msgstr "流量比校准"
msgid "Calibration Test Type"
-msgstr ""
+msgstr "校准测试类型"
msgid "Pass 1 (Coarse)"
-msgstr ""
+msgstr "第 1 轮(粗调)"
msgid "Pass 2 (Fine)"
-msgstr ""
+msgstr "第 2 轮(精调)"
msgid "YOLO (Recommended)"
msgstr "YOLO(推荐)"
msgid "YOLO (Perfectionist)"
-msgstr ""
+msgstr "YOLO(完美主义)"
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"
msgstr "将G-Code发送到打印机"
@@ -19293,6 +19801,48 @@ msgstr "上传的文件名不是 \"%s\" 结尾,是否继续?"
msgid "Upload"
msgstr "上传"
+msgid "Leveling before print"
+msgstr "打印前调平"
+
+msgid "Time-lapse"
+msgstr "延时摄影"
+
+msgid "Enable IFS"
+msgstr "启用 IFS"
+
+#, c-format, boost-format
+msgid "Detected %d IFS slots on printer."
+msgstr "在打印机上检测到 %d 个 IFS 槽位。"
+
+msgid "This printer does not report a material station."
+msgstr "此打印机未报告材料站。"
+
+msgid "Unable to read IFS slots from printer."
+msgstr "无法从打印机读取 IFS 槽位。"
+
+msgid "Loading IFS slots from printer..."
+msgstr "正在从打印机加载 IFS 槽位..."
+
+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 "此盘使用了多种材料。请启用 IFS 并将每个工具分配到打印机槽位。"
+
+msgid "Each project material must be assigned to an IFS slot before printing."
+msgstr "打印前,每种项目材料都必须分配到一个 IFS 槽位。"
+
+msgid ""
+"Each project material must be assigned to a loaded IFS slot before printing."
+msgstr "打印前,每种项目材料都必须分配到一个已装载的 IFS 槽位。"
+
+msgid ""
+"Each project material must match the material loaded in the selected IFS "
+"slot."
+msgstr "每种项目材料都必须与所选 IFS 槽位中装载的材料相匹配。"
+
msgid "Print host upload queue"
msgstr "打印主机上传队列"
@@ -19335,9 +19885,6 @@ msgid ""
"starting the print."
msgstr "所选床类型与文件不匹配。开始打印前请确认。"
-msgid "Time-lapse"
-msgstr "延时摄影"
-
msgid "Heated Bed Leveling"
msgstr "热床调平"
@@ -19347,6 +19894,16 @@ msgstr "纹理打印板(A面)"
msgid "Smooth Build Plate (Side B)"
msgstr "光滑打印板(B面)"
+#, c-format, boost-format
+msgid "Printer: %s"
+msgstr "打印机:%s"
+
+msgid "Calibrate before printing"
+msgstr "打印前校准"
+
+msgid "Filament Mapping:"
+msgstr "耗材映射:"
+
msgid "Unable to perform boolean operation on selected parts"
msgstr "无法对所选部件执行布尔运算"
@@ -19473,7 +20030,6 @@ msgstr "创建"
msgid "Vendor is not selected, please reselect vendor."
msgstr "未选择供应商,请重新选择供应商。"
-#, fuzzy
msgid "Custom vendor is missing, please input custom vendor."
msgstr "未输入自定义供应商,请输入自定义供应商。"
@@ -19523,8 +20079,8 @@ msgstr ""
"你想重写预设吗"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
"我们将会把预设重命名为“供应商类型名 @ 您选择的打印机”\n"
@@ -19691,12 +20247,18 @@ msgid ""
"\n"
"Available nozzle profiles for this printer:"
msgstr ""
+"\n"
+"\n"
+"此打印机可用的喷嘴配置文件:"
msgid ""
"\n"
"\n"
"Choose YES to switch existing preset:"
msgstr ""
+"\n"
+"\n"
+"选择“是”以切换现有预设:"
msgid "Printer Created Successfully"
msgstr "创建打印机成功"
@@ -19993,9 +20555,18 @@ msgid ""
"agents are registered at startup."
msgstr "为打印机通信选择网络代理。可用的代理将在启动时列出。"
+msgid "Select a Flashforge printer"
+msgstr "选择一台 Flashforge 打印机"
+
+msgid "Discovered Printers"
+msgstr "已发现的打印机"
+
msgid "Could not get a valid Printer Host reference"
msgstr "无法获取有效的打印机主机引用"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr "未检测到有效会话。是否继续登录 3DPrinterOS?"
+
msgid "Success!"
msgstr "成功!"
@@ -20036,6 +20607,30 @@ msgstr "登录/测试"
msgid "Connection to printers connected via the print host failed."
msgstr "无法通过打印机主机连接到打印机。"
+msgid "3DPrinterOS Cloud upload options"
+msgstr "3DPrinterOS 云上传选项"
+
+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
msgid "Mismatched type of print host: %s"
msgstr "%s 打印机的主机类型不匹配"
@@ -20404,8 +20999,8 @@ msgid ""
"to this wiki: Printing Tips for High Temp / Engineering materials."
msgstr ""
"打印此耗材时,可能有喷嘴堵塞、渗漏、翘曲和层间强度低的风险。为了获得更好的结"
-"果,请参考此英文wiki:Printing Tips for High Temp / Engineering materials"
-"(“高温/工程材料的打印技巧”)"
+"果,请参考此英文wiki:Printing Tips for High Temp / Engineering "
+"materials(“高温/工程材料的打印技巧”)"
msgid ""
"To get better transparent or translucent results with the corresponding "
@@ -20473,8 +21068,8 @@ msgid ""
"wiki: PVA Printing Guide."
msgstr ""
"这是一种水溶性支撑耗材,通常只用作支撑结构,不用于模型本体。打印此类耗材需要"
-"满足较多条件,为了获得更好的打印质量,请参考这个英文wiki:PVA Printing Guide"
-"(“PVA打印指南”)"
+"满足较多条件,为了获得更好的打印质量,请参考这个英文wiki:PVA Printing "
+"Guide(“PVA打印指南”)"
msgid ""
"This is a non-water-soluble support filament, and usually it is only for the "
@@ -20704,7 +21299,7 @@ msgid "Global settings"
msgstr "全局设置"
msgid "Video tutorial"
-msgstr ""
+msgstr "视频指南"
msgid "(Sync with printer)"
msgstr "(与打印机同步)"
@@ -20741,12 +21336,27 @@ msgstr "未知错误"
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
msgstr "尚未连接到SimplyPrint账户,前往连接选项来进行配置。"
+msgid "Flashforge returned an invalid JSON response."
+msgstr "Flashforge 返回了无效的 JSON 响应。"
+
+msgid "No Flashforge printers were discovered on the local network."
+msgstr "在本地网络中未发现任何 Flashforge 打印机。"
+
+msgid "Connected to Flashforge local API successfully."
+msgstr "已成功连接到 Flashforge 本地 API。"
+
msgid "Serial connection to Flashforge is working correctly."
msgstr "Flashforge串口连接工作正常。"
+msgid "Could not connect to Flashforge local API"
+msgstr "无法连接到 Flashforge 本地 API"
+
msgid "Could not connect to Flashforge via serial"
msgstr "无法通过串口连接Flashforge"
+msgid "Flashforge local API requires both serial number and access code."
+msgstr "Flashforge 本地 API 同时需要序列号和访问码。"
+
msgid "The provided state is not correct."
msgstr "提供的状态不正确。"
@@ -20769,16 +21379,16 @@ msgid "Detection radius"
msgstr "检测半径"
msgid "Selected"
-msgstr ""
+msgstr "已选择"
msgid "Auto-generate"
-msgstr ""
+msgstr "自动生成"
msgid "Generate brim ears using Max angle and Detection radius"
-msgstr ""
+msgstr "使用最大角度和检测半径生成圆盘"
msgid "Add or Select"
-msgstr ""
+msgstr "添加或选择"
msgid ""
"Warning: The brim type is not set to \"painted\", the brim ears will not "
@@ -20789,7 +21399,7 @@ msgid "Set the brim type of this object to \"painted\""
msgstr "将此对象的边缘类型设置为\"绘制\""
msgid "invalid brim ears"
-msgstr ""
+msgstr "无效的圆盘"
msgid "Brim Ears"
msgstr "耳状帽檐"
@@ -21058,6 +21668,9 @@ msgid ""
"the surface quality of your overhangs? However, it can cause wall "
"inconsistencies so use carefully!"
msgstr ""
+"反转偶数层悬垂方向\n"
+"您知道吗?反转偶数层悬垂方向功能可以显著改善悬垂的表面质量?不过,它可"
+"能会导致墙体不一致,因此请谨慎使用!"
#: resources/data/hints.ini: [hint:Cut Tool]
msgid ""
@@ -21325,6 +21938,188 @@ msgstr ""
"避免翘曲\n"
"您知道吗?打印ABS这类易翘曲材料时,适当提高热床温度可以降低翘曲的概率。"
+#~ 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 ""
+#~ "使用固件回抽模式时,擦拭选项不可用。\n"
+#~ "我应该禁用它以启用固件回抽吗?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr "\"G92E0\" 出现在 before_layer_gcode 中,与绝对挤出机寻址不兼容。"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr "\"G92E0\" 出现在 layer_gcode 中,这与绝对挤出机寻址不兼容。"
+
+#, 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 ""
+#~ "搭桥角度覆盖。如果设置为零,该角度将自动计算。否则外部的桥接将用提供的值。"
+#~ "180°表示0度。"
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "内部桥接角度覆盖。如果设置为0,则桥接角度将自动计算;否则将采用所提供的角"
+#~ "度用于内部桥接。使用180°表示0角度。\n"
+#~ "\n"
+#~ "建议保持此值为0,除非有特殊模型要求。"
+
+#~ msgid ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+#~ msgstr ""
+#~ "控制外部桥线的密度(间距)。默认值为 100%。 较低密度的外部桥有助于提高可靠"
+#~ "性,因为挤压桥周围有更多的空气流通空间,从而提高其冷却速度。最低为 10%。 "
+#~ "更高的密度可以产生更平滑的桥接表面,因为重叠的线在打印过程中提供了额外的支"
+#~ "撑。最大值为 120%。\n"
+#~ "注意:桥接密度过高可能会导致翘曲或过度挤压。"
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "控制内部桥接线的密度(间距)。100% 表示实心桥接,默认值为 100%。\n"
+#~ "\n"
+#~ "较低密度的内部桥接有助于减少顶面起鼓现象,并提高内部桥接的可靠性,因为挤出"
+#~ "桥梁周围有更多空间供空气循环,加快冷却速度。\n"
+#~ "\n"
+#~ "此选项与第二层内部桥接覆盖填充功能结合使用时尤为有效,可在挤出实心填充前进"
+#~ "一步改善内部桥接结构。"
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "稍微减小该值(例如 0.9)以减少桥梁材料的用量,从而改善下垂。 实际使用的桥"
+#~ "流量是通过将该值乘以耗材流量比以及对象的流量比(如果已设置)来计算的。"
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "该值控制内部桥接层的厚度。这是稀疏填充的第一层。稍微减小该值(例如 0.9)可"
+#~ "改善稀疏填充的表面质量。 实际使用的内部桥流量是通过将该值乘以桥流量比、耗"
+#~ "材流量比以及对象的流量比(如果已设置)来计算的。"
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "启用此选项以降低可能向上翘曲的周长区域的打印速度。例如,在打印Benchy船体前"
+#~ "部等尖锐角落的悬垂时,将应用额外的减速,减少在多层中复合的翘曲。\n"
+#~ "\n"
+#~ "通常建议启用此选项,除非您的打印机冷却足够强大或打印速度足够慢,以至于周长"
+#~ "翘曲不会发生。如果以较高的外部周长速度打印,由于打印速度的巨大差异,此参数"
+#~ "在减速时可能会引入轻微的伪影。如果您注意到伪影,请确保您的压力提前已正确调"
+#~ "整。\n"
+#~ "\n"
+#~ "注意:启用此选项时,悬垂周长将被视为悬垂,这意味着即使悬垂周长是桥接的一部"
+#~ "分,也会应用悬垂速度。例如,当周长100%悬垂,没有墙壁从下方支撑时,将应用"
+#~ "100%悬垂速度。"
+
+#~ 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 ""
+#~ "如果启用,桥接会更可靠,可以桥接更长的距离,但可能看起来更糟。如果关闭,桥"
+#~ "梁看起来更好,但只适用于较短的桥接距离。"
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "如果启用,将使用厚内部桥接。通常建议打开此功能。但是,如果您使用大喷嘴,请"
+#~ "考虑关闭它。"
+
+#~ msgid ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+#~ msgstr ""
+#~ "使填充和表面填充方向遵循模型在打印板上的方向。启用时,填充方向随模型旋转以"
+#~ "保持最佳强度特性。"
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "打印内部稀疏填充的耗材丝"
+
+#~ msgid "Filament to print walls."
+#~ msgstr "打印外墙的耗材丝"
+
+#~ msgid "Solid infill"
+#~ msgstr "实心填充"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "打印实心填充的耗材丝。"
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "打印支撑主体和筏层的耗材丝。\"默认\"代表不指定特定的耗材丝,并使用当前耗材"
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "打印支撑接触面的耗材丝。\"默认\"代表不指定特定的耗材丝,并使用当前耗材"
+
#~ msgid "Erase all painting"
#~ msgstr "擦除所有绘制"
diff --git a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po
index 1b10eaded1..748b52e85f 100644
--- a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po
+++ b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2026-05-22 02:24+0800\n"
+"POT-Creation-Date: 2026-06-07 23:09+0800\n"
"PO-Revision-Date: 2025-11-28 13:48-0600\n"
"Last-Translator: tntchn <15895303+tntchn@users.noreply.github.com>\n"
"Language-Team: \n"
@@ -498,7 +498,7 @@ msgid "Count"
msgstr ""
msgid "Gap"
-msgstr ""
+msgstr "間隙"
msgid "Spacing"
msgstr "間距"
@@ -1804,6 +1804,17 @@ msgstr "您可以保留尚未儲存修改的預設套用到新項目中,或者
msgid "User logged out"
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!"
msgstr "在執行切片過程中不允許新增或打開專案!"
@@ -1815,21 +1826,24 @@ msgid ""
"version before it can be used normally."
msgstr "Orca Slicer 版本過舊,需要更新到最新版本才能正常使用"
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u): %s"
+"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
msgstr ""
-#, c-format, boost-format
msgid ""
-"Failed to connect to OrcaCloud.\n"
-"Please check your network connectivity\n"
-"(HTTP %u)"
+"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n"
+"Pull downloads the cloud copy. Force push overwrites it with your local "
+"preset."
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 ""
msgid "Retrieving printer information, please try again later."
@@ -1882,7 +1896,7 @@ msgid "Privacy Policy Update"
msgstr "隱私協議更新"
#, c-format, boost-format
-msgid "your Bambu Cloud profile (user ID: \"%s\")"
+msgid "your Orca Cloud profile (user ID: \"%s\")"
msgstr ""
msgid "your default profile"
@@ -2128,6 +2142,9 @@ msgstr "環面"
msgid "Orca Cube"
msgstr "Orca 立方體"
+msgid "OrcaSliced Combo"
+msgstr ""
+
msgid "Orca Tolerance Test"
msgstr "Orca 誤差測試"
@@ -2191,7 +2208,7 @@ msgid "Support Enforcer"
msgstr "支撐添加器"
msgid "Change part type"
-msgstr ""
+msgstr "更換零件型別"
msgid "Set as an individual object"
msgstr "設定為獨立物件"
@@ -5101,7 +5118,7 @@ msgid "Filament change times"
msgstr "更換線材次數"
msgid "Tool changes"
-msgstr ""
+msgstr "取代工具"
msgid "Color change"
msgstr "顏色更換"
@@ -5358,6 +5375,9 @@ msgstr "懸空"
msgid "Outline"
msgstr "輪廓線"
+msgid "Realistic View"
+msgstr ""
+
msgid "Perspective"
msgstr "透視"
@@ -5374,7 +5394,7 @@ msgid "Paint Toolbar"
msgstr "上色工具列"
msgid "part selection"
-msgstr ""
+msgstr "零件選擇"
msgid "Explosion Ratio"
msgstr "爆炸比例"
@@ -5400,7 +5420,7 @@ msgstr "體積:"
msgid "Size:"
msgstr "尺寸:"
-#, boost-format
+#, c-format, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -5647,15 +5667,18 @@ msgstr "設定精靈"
msgid "Show Configuration Folder"
msgstr "打開設定檔的資料夾"
+msgid "Troubleshoot Center"
+msgstr ""
+
+msgid "Open Network Test"
+msgstr "打開網路測試"
+
msgid "Show Tip of the Day"
msgstr "顯示每日小提示"
msgid "Check for Updates"
msgstr "檢查更新"
-msgid "Open Network Test"
-msgstr "打開網路測試"
-
#, c-format, boost-format
msgid "&About %s"
msgstr "關於 %s"
@@ -6270,9 +6293,9 @@ msgid ""
"The .gcode.3mf file contains no G-code data. Please slice it with Orca "
"Slicer and export a new .gcode.3mf file."
msgstr ""
-".gcode.3mf 檔案不包含 G-code 資料。請使用 OrcaSlicer 切片並匯出新"
-"的 .gcode.3mf 檔案。.gcode.3mf 檔案中不包含 G-code 資料。請使用 Orca Slicer "
-"進行切片並匯出新的 .gcode.3mf 檔案。"
+".gcode.3mf 檔案不包含 G-code 資料。請使用 OrcaSlicer 切片並匯出新的 ."
+"gcode.3mf 檔案。.gcode.3mf 檔案中不包含 G-code 資料。請使用 Orca Slicer 進行"
+"切片並匯出新的 .gcode.3mf 檔案。"
#, c-format, boost-format
msgid "File '%s' was lost! Please download it again."
@@ -6944,6 +6967,12 @@ msgstr "匯出成功。"
msgid "Model file downloaded."
msgstr "模型檔案已下載。"
+msgid "Pull"
+msgstr ""
+
+msgid "Force push"
+msgstr ""
+
msgid "Shared profiles may be available for this printer."
msgstr ""
@@ -7898,6 +7927,12 @@ msgid ""
"will be exported."
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?"
msgstr "列印設備是否準備完成?列印平台是否在正確的位置、有沒有異物、是否乾淨?"
@@ -8421,6 +8456,24 @@ msgstr "清除我在載入檔案後同步列印設備預設的選擇。"
msgid "Graphics"
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"
msgstr ""
@@ -8478,9 +8531,16 @@ msgid "Stealth mode"
msgstr "區域網路模式"
msgid ""
-"This disables all cloud services e.g. Orca Cloud and Bambu Cloud. This stops "
-"the transmission of data to Bambu's cloud services too. Users who don't use "
-"BBL machines or use LAN mode only can safely turn on this function."
+"This disables all cloud features, including Orca Cloud profile syncing. "
+"Users who prefer to work entirely offline can enable this option.\n"
+"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 ""
msgid "Network test"
@@ -8626,6 +8686,14 @@ msgid ""
"Highly experimental! Slow and may create artifact."
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"
msgstr "允許異常儲存空間"
@@ -9659,8 +9727,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add "
-"Primitive\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add Primitive"
+"\"->\"Timelapse Wipe Tower\"."
msgstr ""
"在錄製無工具頭縮時錄影影片時,建議新增一個「縮時錄影換料塔」\n"
"可以通過右鍵點擊構建板的空白位置,選擇『新增標準模型』->『縮時錄影換料塔』來"
@@ -10119,13 +10187,11 @@ msgid "Retraction when switching material"
msgstr "切換線材時的回抽量"
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"
-"Shall I disable it in order to enable Firmware Retraction?"
+"Shall I set it to 100% in order to enable Firmware Retraction?"
msgstr ""
-"當使用韌體回抽模式時,擦拭選項不可用。\n"
-"\n"
-"是否需要停用擦拭以啟用韌體回抽?"
msgid "Firmware Retraction"
msgstr "韌體回抽"
@@ -10870,16 +10936,16 @@ msgid "Global shortcuts"
msgstr "全域快捷鍵"
msgid "Pan View"
-msgstr ""
+msgstr "移動視角"
msgid "Rotate View"
-msgstr ""
+msgstr "旋轉視角"
msgid "Middle mouse button"
msgstr ""
msgid "Zoom View"
-msgstr ""
+msgstr "縮放視角"
msgid ""
"Auto orients selected objects or all objects. If there are selected objects, "
@@ -11677,6 +11743,19 @@ msgstr "使用支撐添加器但沒有打開支撐。請打開支撐。"
msgid "Layer height cannot exceed nozzle diameter."
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 ""
"Relative extruder addressing requires resetting the extruder position at "
"each layer to prevent loss of floating point accuracy. Add \"G92 E0\" to "
@@ -11686,15 +11765,14 @@ msgstr ""
"到 layer_gcode。"
msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
+"\"G92 E0\" was found in before_layer_change_gcode, which is incompatible "
+"with absolute extruder addressing."
msgstr ""
-"在 before_layer_gcode 中發現「G92 E0」,該程式碼與絕對擠出機尋址不相容。"
msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
-msgstr "在 layer_gcode 中發現「G92 E0」,它與絕對擠出機尋址不相容。"
+"\"G92 E0\" was found in layer_change_gcode, which is incompatible with "
+"absolute extruder addressing."
+msgstr ""
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
@@ -11787,6 +11865,31 @@ msgstr "可列印區域"
msgid "Extruder printable area"
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"
msgstr "熱床淨空區域"
@@ -11905,6 +12008,12 @@ msgstr ""
"Orca slicer 可以將 G-code 檔案上傳到列印設備。此欄位應包含用於身份驗證的 API "
"金鑰或密碼。"
+msgid "Serial Number"
+msgstr ""
+
+msgid "Flashforge local API requires the printer serial number."
+msgstr ""
+
msgid "Name of the printer."
msgstr "列印設備名稱"
@@ -12200,105 +12309,134 @@ msgstr "外部橋接結構的填充方向"
#, 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."
+"External Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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 ""
-"橋接角度覆蓋。如果為零,該角度將自動計算。否則外部的橋接將用提供的值。180° 表"
-"示 0 度。"
msgid "Internal bridge infill direction"
msgstr "內部橋接結構的填充方向"
msgid ""
-"Internal bridging angle override. If left to zero, the bridging angle will "
-"be calculated automatically. Otherwise the provided angle will be used for "
-"internal bridges. Use 180° for zero angle.\n"
+"Internal Bridging angle override.\n"
+"If left to zero, the bridging angle will be calculated automatically for "
+"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"
-"It is recommended to leave it at 0 unless there is a specific model need not "
-"to."
+"Use 180° for zero absolute angle."
+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 ""
-"內部橋接角度覆蓋設定。若設定為 0,系統將自動計算橋接角度;若輸入特定角度,則"
-"內部橋接將依此角度列印。設定 180° 可視為零角度。\n"
-"\n"
-"建議將此值保持為 0,除非模型有特殊需求需手動調整。"
msgid "External bridge density"
msgstr "外部橋接密度"
msgid ""
"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"
-"Lower density external bridges can help improve reliability as there is more "
-"space for air to circulate around the extruded bridge, improving its cooling "
-"speed. Minimum is 10%.\n"
+"- Higher than 100% density (Recommended Max 125%):\n"
+" - Pros: Produces smoother bridge surfaces, as overlapping lines provide "
+"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"
-"Higher densities can produce smoother bridge surfaces, as overlapping lines "
-"provide additional support during printing. Maximum is 120%.\n"
-"Note: Bridge density that is too high can cause warping or overextrusion."
+"- Lower than 100% density (Min 10%):\n"
+" - Pros: Can create a string-like first layer. Faster and with better "
+"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 ""
-"控制外部橋線的密度(間距)。預設值為 100%。 較低密度的外部橋有助於提高可靠"
-"性,因為擠壓橋周圍有更多的空氣流通空間,從而提高其冷卻速度。最低為 10%。 更高"
-"的密度可以產生更平滑的橋接表面,因為重疊的線在列印過程中提供了額外的支撐。最"
-"大值為 120%。\n"
-"注意:橋接密度過高可能會導致翹曲或過度擠壓。"
msgid "Internal bridge density"
msgstr "內部橋接密度"
msgid ""
-"Controls the density (spacing) of internal bridge lines. 100% means solid "
-"bridge. Default is 100%.\n"
+"Controls the density (spacing) of internal bridge lines. Default is 100%. "
+"100% means a solid internal bridge.\n"
"\n"
-"Lower density internal bridges can help reduce top surface pillowing and "
-"improve internal bridge reliability as there is more space for air to "
-"circulate around the extruded bridge, improving its cooling speed.\n"
+"Internal bridges act as intermediate support between sparse infill and top "
+"solid infill and can strongly affect top surface quality.\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"
"This option works particularly well when combined with the second internal "
-"bridge over infill option, further improving internal bridging structure "
-"before solid infill is extruded."
+"bridge over infill option to improve bridging further before solid infill is "
+"extruded."
msgstr ""
-"調整內部橋接線的密度(間距)。100% 代表實心橋接,預設值為 100%。\n"
-"\n"
-"降低內部橋接的密度有助於減少頂部表面的鼓起問題,並提升內部橋接的穩定性,因為"
-"較大的間距讓空氣更容易流通,加速冷卻效果。\n"
-"\n"
-"此選項特別適用於「內部橋接覆蓋填充」功能,可進一步改善內部橋接結構,在擠出實"
-"心填充前提供更穩固的支撐。"
msgid "Bridge flow ratio"
msgstr "橋接流量"
msgid ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag.\n"
+"This value governs the thickness of the external (visible) bridge layer.\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"
"The actual bridge flow used is calculated by multiplying this value with the "
"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"略微降低此值(例如設為 0.9)可減少橋接所需的材料量,從而改善橋接下垂的問"
-"題。\n"
+
+#, 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"
msgstr "內部橋接流量"
msgid ""
"This value governs the thickness of the internal bridge layer. This is the "
-"first layer over sparse infill. Decrease this value slightly (for example "
-"0.9) to improve surface quality over sparse infill.\n"
+"first layer over sparse infill so increasing it may increase strength and "
+"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"
-"The actual internal bridge flow used is calculated by multiplying this value "
-"with the bridge flow ratio, the filament flow ratio, and if set, the "
-"object's flow ratio."
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"此設定值決定內部橋接層的厚度,該層是稀疏填充上的第一層。稍微降低此值(例如設"
-"為 0.9)可改善稀疏填充表面的列印品質。\n"
-"\n"
-"實際的內部橋接流量是由此值乘以橋接流量比例、線材流量比例計算得出,若設置了物"
-"件流量比例,比例也會被納入計算。"
msgid "Top surface flow ratio"
msgstr "頂部表面流量比例"
@@ -12596,33 +12734,35 @@ msgstr "翹邊處降速"
#, no-c-format, no-boost-format
msgid ""
"Enable this option to slow down printing in areas where perimeters may have "
-"curled upwards. For example, additional slowdown will be applied when "
-"printing overhangs on sharp corners like the front of the Benchy hull, "
-"reducing curling which compounds over multiple layers.\n"
+"curled upwards.\n"
+"For example, additional slowdown will be applied when printing overhangs on "
+"sharp corners like the front of the Benchy hull, reducing curling which "
+"compounds over multiple layers.\n"
"\n"
"It is generally recommended to have this option switched on unless your "
-"printer cooling is powerful enough or the print speed slow enough that "
-"perimeter curling does not happen. If printing with a high external "
-"perimeter speed, this parameter may introduce slight artifacts when slowing "
-"down due to the large variance in print speeds. If you notice artifacts, "
-"ensure your pressure advance is tuned correctly.\n"
+"printer cooling is powerful enough or the print speed is slow enough that "
+"perimeter curling does not happen. \n"
+"If printing with a high external perimeter speed, this parameter may "
+"introduce wall artifacts when slowing down, due to the potentially large "
+"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"
"Note: When this option is enabled, overhang perimeters are treated like "
"overhangs, meaning the overhang speed is applied even if the overhanging "
-"perimeter is part of a bridge. For example, when the perimeters are 100% "
-"overhanging, with no wall supporting them from underneath, the 100% overhang "
-"speed will be applied."
+"perimeter is part of a bridge.\n"
+"For example, when the perimeters are 100% overhanging, with no wall "
+"supporting them from underneath, the 100% overhang speed will be applied."
msgstr ""
-"啟用此選項以在可能發生外牆翹起的區域減慢列印速度。例如,在列印懸空的尖銳角落"
-"(如 Benchy 船體前部)時,會額外減速,從而減少多層累積後的翹起。\n"
-"\n"
-"一般建議啟用此選項,除非您的列印設備冷卻性能足夠強大,或者列印速度足夠慢,避"
-"免發生外部周邊翹起。如果使用高外部周邊列印速度,此參數可能因列印速度差異過大"
-"而導致輕微瑕疵。如果您注意到瑕疵,請確保壓力補償已正確調整。\n"
-"\n"
-"注意:啟用此選項時,懸空外周邊會被視為懸空結構,即使該懸空外部周邊是橋接的一"
-"部分,也會套用懸空速度。例如,當外牆 100% 懸空且下方無牆支撐時,將套用 100% "
-"懸空速度。"
msgid "mm/s or %"
msgstr "mm/s 或 %"
@@ -12867,23 +13007,25 @@ msgid "Thick external bridges"
msgstr "增厚外部橋接"
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."
+"If enabled, bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"如果啟用,橋接會更可靠,可以橋接更長的距離,但可能看起來更糟。如果關閉,橋梁"
-"看起來更好,但只適用於較短的橋接距離。"
msgid "Thick internal bridges"
msgstr "增厚內部橋接"
msgid ""
-"If enabled, thick internal bridges will be used. It's usually recommended to "
-"have this feature turned on. However, consider turning it off if you are "
-"using large nozzles."
+"If enabled, internal bridge extrusion uses a line height equal to the nozzle "
+"diameter.\n"
+"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 ""
-"如果啟用,將使用較厚的內部橋接。通常建議開啟此功能。但如果使用較大的噴嘴,可"
-"考慮關閉此選項。"
msgid "Extra bridge layers (beta)"
msgstr "額外橋接層(Beta 版)"
@@ -13783,10 +13925,10 @@ msgstr ""
"填充或穩定的擠出廢料。"
msgid "Wipe tower cooling"
-msgstr ""
+msgstr "擦料塔冷卻"
msgid "Temperature drop before entering filament tower"
-msgstr ""
+msgstr "進入擦料塔前的降溫量"
msgid "Interface layer pre-extrusion distance"
msgstr "介面層預擠出距離"
@@ -13971,12 +14113,11 @@ msgid "Align infill direction to model"
msgstr "對齊填充方向至模型"
msgid ""
-"Aligns infill and surface fill directions to follow the model's orientation "
-"on the build plate. When enabled, fill directions rotate with the model to "
-"maintain optimal strength characteristics."
+"Aligns infill, bridge, ironing and surface fill directions to follow the "
+"model's orientation on the build plate.\n"
+"When enabled, directions rotate with the model to maintain optimal strength "
+"characteristics."
msgstr ""
-"將填充和表面填充方向對齊至模型在列印板上的方向。啟用後,填充方向會隨模型旋轉"
-"以保持最佳強度特性。"
msgid "Insert solid layers"
msgstr "插入實心層"
@@ -14001,6 +14142,7 @@ msgstr "為填充圖案使用多條線,如果填充圖案支援。"
msgid "Z-buckling bias optimization (experimental)"
msgstr ""
+#, c-format, boost-format
msgid ""
"Tightens the gyroid wave along the Z (vertical) axis at low infill density "
"to shorten the effective vertical column length and improve Z-axis "
@@ -14095,6 +14237,27 @@ msgid ""
"The angle of the infill angled lines. 60° will result in a pure honeycomb."
msgstr "填充傾斜線的角度。60° 將產生純蜂窩結構。"
+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"
msgstr "稀疏填充錨線長度"
@@ -14170,8 +14333,8 @@ msgid "mm/s² or %"
msgstr "mm/s² 或 %"
msgid ""
-"Acceleration of sparse infill. If the value is expressed as a percentage "
-"(e.g. 100%), it will be calculated based on the default acceleration."
+"Acceleration of sparse infill. If the value is expressed as a percentage (e."
+"g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"稀疏填充的加速度。如果該值表示為百分比(例如 100%),則將根據預設加速度進行計"
"算。"
@@ -14293,10 +14456,10 @@ msgstr "滿速風扇在"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
-"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
-"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
+"\". \"full_fan_speed_layer\" will be ignored if lower than "
+"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
+"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"風扇速度會從第「close_fan_the_first_x_layers」層開始,從零速以線性方式逐漸增"
"加,直到第「full_fan_speed_layer」層達到最大速度。如果"
@@ -14778,7 +14941,7 @@ msgid ""
msgstr ""
msgid "%"
-msgstr ""
+msgstr "%"
msgid "Time cost"
msgstr "時間成本"
@@ -15012,8 +15175,10 @@ msgstr "結塊檢測排除區域"
msgid "Probing exclude area of clumping."
msgstr "結塊檢測排除區域"
-msgid "Filament to print internal sparse infill."
-msgstr "列印內部稀疏填充的線材。"
+msgid ""
+"Filament to print internal sparse infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
msgid ""
"Line width of internal sparse infill. If expressed as a %, it will be "
@@ -15221,7 +15386,7 @@ msgid ""
msgstr ""
msgid "°"
-msgstr ""
+msgstr "°"
msgid "Don't alternate fill direction"
msgstr ""
@@ -15622,10 +15787,10 @@ msgstr ""
"請在列印設備設定中啟用輔助風扇才能使用此功能。 G碼指令:M106 P2 S(0-255)"
msgid "For the first"
-msgstr ""
+msgstr "在最初的"
msgid "Set special auxiliary cooling fan for the first certain layers."
-msgstr ""
+msgstr "為起始幾層設定特殊的輔助冷卻風扇速度。"
msgid ""
"Auxiliary fan speed will be ramped up linearly from layer \"For the first\" "
@@ -15791,8 +15956,21 @@ msgstr ""
"偵測懸空相對於線寬的百分比,並套用不同的速度列印。100%% 的懸空將使用橋接速"
"度。"
-msgid "Filament to print walls."
-msgstr "用於列印牆體的線材"
+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 ""
msgid ""
"Line width of inner wall. If expressed as a %, it will be computed over the "
@@ -16245,8 +16423,8 @@ msgid "Role base wipe speed"
msgstr "自動擦拭速度"
msgid ""
-"The wipe speed is determined by the speed of the current extrusion role. "
-"e.g. if a wipe action is executed immediately following an outer wall "
+"The wipe speed is determined by the speed of the current extrusion role. e."
+"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 "
"wipe action."
msgstr ""
@@ -16406,11 +16584,20 @@ msgid ""
"internal solid infill."
msgstr "小於設定閾值的稀疏填充區域將替換為內部實心填充"
-msgid "Solid infill"
-msgstr "實心填充"
+msgid ""
+"Filament to print internal solid infill.\n"
+"\"Default\" uses the active object/part filament."
+msgstr ""
-msgid "Filament to print solid infill."
-msgstr "列印實心填充所使用的線材"
+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 ""
msgid ""
"Line width of internal solid infill. If expressed as a %, it will be "
@@ -16759,11 +16946,10 @@ msgid "Support/raft base"
msgstr "支撐/筏層主體"
msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used."
+"Filament to print support base and raft.\n"
+"\"Default\" means no specific filament for support and current filament is "
+"used."
msgstr ""
-"用於列印支撐基座和筏層的線材。選擇『預設』時,將使用目前列印的線材,而非特定"
-"線材"
msgid "Avoid interface filament for base"
msgstr "避免介面線材用於底座"
@@ -16788,11 +16974,10 @@ msgid "Support/raft interface"
msgstr "支撐/筏層界面"
msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used."
+"Filament to print support interface.\n"
+"\"Default\" means no specific filament for support interface and current "
+"filament is used."
msgstr ""
-"用於列印支撐介面的線材。選擇『預設』時,將使用目前列印的線材,而非指定的特定"
-"線材"
msgid "Top interface layers"
msgstr "頂部接觸面層數"
@@ -17090,8 +17275,8 @@ msgstr "啟動溫度控制"
msgid ""
"Enable this option for automated chamber temperature control. This option "
-"activates the emitting of an M191 command before the "
-"\"machine_start_gcode\"\n"
+"activates the emitting of an M191 command before the \"machine_start_gcode"
+"\"\n"
" 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 "
"chamber heater, if present.\n"
@@ -17747,6 +17932,9 @@ msgstr "無效值"
msgid "Invalid value when spiral vase mode is enabled: "
msgstr "值於螺旋花瓶模式無效:"
+msgid "Bridge line width must not exceed nozzle diameter: "
+msgstr ""
+
msgid "too large line width "
msgstr "線寬過大"
@@ -17988,11 +18176,17 @@ msgid "Debug level"
msgstr "除錯模式等級"
msgid ""
-"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
-"5:trace\n"
+"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
+"trace\n"
msgstr ""
"設定除錯日誌級別。0:致命錯誤,1:錯誤,2:警告,3:資訊,4:除錯,5:追蹤\n"
+msgid "Log file"
+msgstr ""
+
+msgid "Redirects debug logging to file.\n"
+msgstr ""
+
msgid "Enable timelapse for print"
msgstr "啟用列印過程縮時錄影"
@@ -19406,6 +19600,15 @@ msgstr ""
msgid "Top Surface Pattern"
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"
msgstr "傳送 G-code 到列印設備"
@@ -19428,6 +19631,48 @@ msgstr "上傳的檔名不是「%s」結尾。確認要繼續嗎?"
msgid "Upload"
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"
msgstr "列印主機上傳佇列"
@@ -19470,9 +19715,6 @@ msgid ""
"starting the print."
msgstr "選擇的床面類型與檔案不符,請在開始列印前確認。"
-msgid "Time-lapse"
-msgstr "縮時錄影"
-
msgid "Heated Bed Leveling"
msgstr "熱床調平"
@@ -19482,6 +19724,16 @@ msgstr "紋理列印板(A面)"
msgid "Smooth Build Plate (Side B)"
msgstr "平滑列印板(A面)"
+#, 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"
msgstr "無法對所選零件執行布林運算"
@@ -19657,8 +19909,8 @@ msgstr ""
"確定要覆寫嗎?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you "
-"selected\".\n"
+"We would rename the presets as \"Vendor Type Serial @printer you selected"
+"\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
"將會將預設名稱重新命名為「廠牌 型號 序號 @選擇的列印設備」。\n"
@@ -20129,9 +20381,18 @@ msgid ""
"agents are registered at startup."
msgstr "選擇列印設備通訊的網路代理實施。可用代理在啟動時註冊。"
+msgid "Select a Flashforge printer"
+msgstr ""
+
+msgid "Discovered Printers"
+msgstr ""
+
msgid "Could not get a valid Printer Host reference"
msgstr "無法獲得有效的列印設備主機參考資料"
+msgid "Valid session not detected. Proceed with login to 3DPrinterOS?"
+msgstr ""
+
msgid "Success!"
msgstr "成功!"
@@ -20173,6 +20434,30 @@ msgstr "登入/測試"
msgid "Connection to printers connected via the print host failed."
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
msgid "Mismatched type of print host: %s"
msgstr "列印主機類型不符:%s"
@@ -20841,7 +21126,7 @@ msgid "Global settings"
msgstr "全域性設定"
msgid "Video tutorial"
-msgstr ""
+msgstr "影片指南"
msgid "(Sync with printer)"
msgstr "(與列印設備同步)"
@@ -20878,12 +21163,27 @@ msgstr "未知錯誤"
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
msgstr "SimplyPrint 帳戶未連結。請前往連接選項進行設置。"
+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."
msgstr "Flashforge 串列埠連接工作正常。"
+msgid "Could not connect to Flashforge local API"
+msgstr ""
+
msgid "Could not connect to Flashforge via serial"
msgstr "無法透過串列埠連接 Flashforge"
+msgid "Flashforge local API requires both serial number and access code."
+msgstr ""
+
msgid "The provided state is not correct."
msgstr "提供的狀態不正確。"
@@ -21471,6 +21771,196 @@ msgstr ""
"您知道嗎?當列印容易翹曲的材料(如 ABS)時,適當提高熱床溫度\n"
"可以降低翹曲的機率。"
+#~ 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 ""
+#~ "當使用韌體回抽模式時,擦拭選項不可用。\n"
+#~ "\n"
+#~ "是否需要停用擦拭以啟用韌體回抽?"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
+#~ "absolute extruder addressing."
+#~ msgstr ""
+#~ "在 before_layer_gcode 中發現「G92 E0」,該程式碼與絕對擠出機尋址不相容。"
+
+#~ msgid ""
+#~ "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
+#~ "extruder addressing."
+#~ msgstr "在 layer_gcode 中發現「G92 E0」,它與絕對擠出機尋址不相容。"
+
+#, 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 ""
+#~ "橋接角度覆蓋。如果為零,該角度將自動計算。否則外部的橋接將用提供的值。"
+#~ "180° 表示 0 度。"
+
+#~ msgid ""
+#~ "Internal bridging angle override. If left to zero, the bridging angle "
+#~ "will be calculated automatically. Otherwise the provided angle will be "
+#~ "used for internal bridges. Use 180° for zero angle.\n"
+#~ "\n"
+#~ "It is recommended to leave it at 0 unless there is a specific model need "
+#~ "not to."
+#~ msgstr ""
+#~ "內部橋接角度覆蓋設定。若設定為 0,系統將自動計算橋接角度;若輸入特定角度,"
+#~ "則內部橋接將依此角度列印。設定 180° 可視為零角度。\n"
+#~ "\n"
+#~ "建議將此值保持為 0,除非模型有特殊需求需手動調整。"
+
+#~ msgid ""
+#~ "Controls the density (spacing) of external bridge lines. Default is "
+#~ "100%.\n"
+#~ "\n"
+#~ "Lower density external bridges can help improve reliability as there is "
+#~ "more space for air to circulate around the extruded bridge, improving its "
+#~ "cooling speed. Minimum is 10%.\n"
+#~ "\n"
+#~ "Higher densities can produce smoother bridge surfaces, as overlapping "
+#~ "lines provide additional support during printing. Maximum is 120%.\n"
+#~ "Note: Bridge density that is too high can cause warping or overextrusion."
+#~ msgstr ""
+#~ "控制外部橋線的密度(間距)。預設值為 100%。 較低密度的外部橋有助於提高可靠"
+#~ "性,因為擠壓橋周圍有更多的空氣流通空間,從而提高其冷卻速度。最低為 10%。 "
+#~ "更高的密度可以產生更平滑的橋接表面,因為重疊的線在列印過程中提供了額外的支"
+#~ "撐。最大值為 120%。\n"
+#~ "注意:橋接密度過高可能會導致翹曲或過度擠壓。"
+
+#~ msgid ""
+#~ "Controls the density (spacing) of internal bridge lines. 100% means solid "
+#~ "bridge. Default is 100%.\n"
+#~ "\n"
+#~ "Lower density internal bridges can help reduce top surface pillowing and "
+#~ "improve internal bridge reliability as there is more space for air to "
+#~ "circulate around the extruded bridge, improving its cooling speed.\n"
+#~ "\n"
+#~ "This option works particularly well when combined with the second "
+#~ "internal bridge over infill option, further improving internal bridging "
+#~ "structure before solid infill is extruded."
+#~ msgstr ""
+#~ "調整內部橋接線的密度(間距)。100% 代表實心橋接,預設值為 100%。\n"
+#~ "\n"
+#~ "降低內部橋接的密度有助於減少頂部表面的鼓起問題,並提升內部橋接的穩定性,因"
+#~ "為較大的間距讓空氣更容易流通,加速冷卻效果。\n"
+#~ "\n"
+#~ "此選項特別適用於「內部橋接覆蓋填充」功能,可進一步改善內部橋接結構,在擠出"
+#~ "實心填充前提供更穩固的支撐。"
+
+#~ msgid ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag.\n"
+#~ "\n"
+#~ "The actual bridge flow used is calculated by multiplying this value with "
+#~ "the filament flow ratio, and if set, the object's flow ratio."
+#~ msgstr ""
+#~ "略微降低此值(例如設為 0.9)可減少橋接所需的材料量,從而改善橋接下垂的問"
+#~ "題。\n"
+#~ "\n"
+#~ "實際的橋接流量是通過此值乘以線材流量比例計算的,並且若已設置物件流量比例,"
+#~ "該比例也將被考慮在內。"
+
+#~ msgid ""
+#~ "This value governs the thickness of the internal bridge layer. This is "
+#~ "the first layer over sparse infill. Decrease this value slightly (for "
+#~ "example 0.9) to improve surface quality over sparse infill.\n"
+#~ "\n"
+#~ "The actual internal bridge flow used is calculated by multiplying this "
+#~ "value with the bridge flow ratio, the filament flow ratio, and if set, "
+#~ "the object's flow ratio."
+#~ msgstr ""
+#~ "此設定值決定內部橋接層的厚度,該層是稀疏填充上的第一層。稍微降低此值(例如"
+#~ "設為 0.9)可改善稀疏填充表面的列印品質。\n"
+#~ "\n"
+#~ "實際的內部橋接流量是由此值乘以橋接流量比例、線材流量比例計算得出,若設置了"
+#~ "物件流量比例,比例也會被納入計算。"
+
+#, no-c-format, no-boost-format
+#~ msgid ""
+#~ "Enable this option to slow down printing in areas where perimeters may "
+#~ "have curled upwards. For example, additional slowdown will be applied "
+#~ "when printing overhangs on sharp corners like the front of the Benchy "
+#~ "hull, reducing curling which compounds over multiple layers.\n"
+#~ "\n"
+#~ "It is generally recommended to have this option switched on unless your "
+#~ "printer cooling is powerful enough or the print speed slow enough that "
+#~ "perimeter curling does not happen. If printing with a high external "
+#~ "perimeter speed, this parameter may introduce slight artifacts when "
+#~ "slowing down due to the large variance in print speeds. If you notice "
+#~ "artifacts, ensure your pressure advance is tuned correctly.\n"
+#~ "\n"
+#~ "Note: When this option is enabled, overhang perimeters are treated like "
+#~ "overhangs, meaning the overhang speed is applied even if the overhanging "
+#~ "perimeter is part of a bridge. For example, when the perimeters are 100% "
+#~ "overhanging, with no wall supporting them from underneath, the 100% "
+#~ "overhang speed will be applied."
+#~ msgstr ""
+#~ "啟用此選項以在可能發生外牆翹起的區域減慢列印速度。例如,在列印懸空的尖銳角"
+#~ "落(如 Benchy 船體前部)時,會額外減速,從而減少多層累積後的翹起。\n"
+#~ "\n"
+#~ "一般建議啟用此選項,除非您的列印設備冷卻性能足夠強大,或者列印速度足夠慢,"
+#~ "避免發生外部周邊翹起。如果使用高外部周邊列印速度,此參數可能因列印速度差異"
+#~ "過大而導致輕微瑕疵。如果您注意到瑕疵,請確保壓力補償已正確調整。\n"
+#~ "\n"
+#~ "注意:啟用此選項時,懸空外周邊會被視為懸空結構,即使該懸空外部周邊是橋接的"
+#~ "一部分,也會套用懸空速度。例如,當外牆 100% 懸空且下方無牆支撐時,將套用 "
+#~ "100% 懸空速度。"
+
+#~ 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 ""
+#~ "如果啟用,橋接會更可靠,可以橋接更長的距離,但可能看起來更糟。如果關閉,橋"
+#~ "梁看起來更好,但只適用於較短的橋接距離。"
+
+#~ msgid ""
+#~ "If enabled, thick internal bridges will be used. It's usually recommended "
+#~ "to have this feature turned on. However, consider turning it off if you "
+#~ "are using large nozzles."
+#~ msgstr ""
+#~ "如果啟用,將使用較厚的內部橋接。通常建議開啟此功能。但如果使用較大的噴嘴,"
+#~ "可考慮關閉此選項。"
+
+#~ msgid ""
+#~ "Aligns infill and surface fill directions to follow the model's "
+#~ "orientation on the build plate. When enabled, fill directions rotate with "
+#~ "the model to maintain optimal strength characteristics."
+#~ msgstr ""
+#~ "將填充和表面填充方向對齊至模型在列印板上的方向。啟用後,填充方向會隨模型旋"
+#~ "轉以保持最佳強度特性。"
+
+#~ msgid "Filament to print internal sparse infill."
+#~ msgstr "列印內部稀疏填充的線材。"
+
+#~ msgid "Filament to print walls."
+#~ msgstr "用於列印牆體的線材"
+
+#~ msgid "Solid infill"
+#~ msgstr "實心填充"
+
+#~ msgid "Filament to print solid infill."
+#~ msgstr "列印實心填充所使用的線材"
+
+#~ msgid ""
+#~ "Filament to print support base and raft. \"Default\" means no specific "
+#~ "filament for support and current filament is used."
+#~ msgstr ""
+#~ "用於列印支撐基座和筏層的線材。選擇『預設』時,將使用目前列印的線材,而非特"
+#~ "定線材"
+
+#~ msgid ""
+#~ "Filament to print support interface. \"Default\" means no specific "
+#~ "filament for support interface and current filament is used."
+#~ msgstr ""
+#~ "用於列印支撐介面的線材。選擇『預設』時,將使用目前列印的線材,而非指定的特"
+#~ "定線材"
+
#~ msgid "Erase all painting"
#~ msgstr "擦除所有自訂支撐"
diff --git a/resources/fonts/Sarabun-Medium.ttf b/resources/fonts/Sarabun-Medium.ttf
new file mode 100644
index 0000000000..baa59c922d
Binary files /dev/null and b/resources/fonts/Sarabun-Medium.ttf differ
diff --git a/resources/fonts/Sarabun-SemiBold.ttf b/resources/fonts/Sarabun-SemiBold.ttf
new file mode 100644
index 0000000000..c93c2b350f
Binary files /dev/null and b/resources/fonts/Sarabun-SemiBold.ttf differ
diff --git a/resources/images/OrcaSlicer_horizontal_dark.svg b/resources/images/OrcaSlicer_horizontal_dark.svg
new file mode 100644
index 0000000000..3e48b252b6
--- /dev/null
+++ b/resources/images/OrcaSlicer_horizontal_dark.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/resources/images/OrcaSlicer_horizontal_light.svg b/resources/images/OrcaSlicer_horizontal_light.svg
new file mode 100644
index 0000000000..d17593cf16
--- /dev/null
+++ b/resources/images/OrcaSlicer_horizontal_light.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/resources/plugins/elegoolink/web/lan_service_web/index.html b/resources/plugins/elegoolink/web/lan_service_web/index.html
deleted file mode 100644
index b3b8242ddf..0000000000
--- a/resources/plugins/elegoolink/web/lan_service_web/index.html
+++ /dev/null
@@ -1,283 +0,0 @@
-ELEGOO-Create The Future
\ No newline at end of file
diff --git a/resources/profiles/Anycubic.json b/resources/profiles/Anycubic.json
index 527247a7e8..a1a904f663 100644
--- a/resources/profiles/Anycubic.json
+++ b/resources/profiles/Anycubic.json
@@ -1,826 +1,1234 @@
-{
- "name": "Anycubic",
- "version": "02.04.00.00",
- "force_update": "0",
- "description": "Anycubic configurations",
- "machine_model_list": [
- {
- "name": "Anycubic 4Max Pro",
- "sub_path": "machine/Anycubic 4Max Pro.json"
- },
- {
- "name": "Anycubic 4Max Pro 2",
- "sub_path": "machine/Anycubic 4Max Pro 2.json"
- },
- {
- "name": "Anycubic Chiron",
- "sub_path": "machine/Anycubic Chiron.json"
- },
- {
- "name": "Anycubic Kobra",
- "sub_path": "machine/Anycubic Kobra.json"
- },
- {
- "name": "Anycubic Kobra 2",
- "sub_path": "machine/Anycubic Kobra 2.json"
- },
- {
- "name": "Anycubic Kobra 2 Max",
- "sub_path": "machine/Anycubic Kobra 2 Max.json"
- },
- {
- "name": "Anycubic Kobra 2 Neo",
- "sub_path": "machine/Anycubic Kobra 2 Neo.json"
- },
- {
- "name": "Anycubic Kobra 2 Plus",
- "sub_path": "machine/Anycubic Kobra 2 Plus.json"
- },
- {
- "name": "Anycubic Kobra 2 Pro",
- "sub_path": "machine/Anycubic Kobra 2 Pro.json"
- },
- {
- "name": "Anycubic Kobra 3",
- "sub_path": "machine/Anycubic Kobra 3.json"
- },
- {
- "name": "Anycubic Kobra 3 Max",
- "sub_path": "machine/Anycubic Kobra 3 Max.json"
- },
- {
- "name": "Anycubic Kobra Max",
- "sub_path": "machine/Anycubic Kobra Max.json"
- },
- {
- "name": "Anycubic Kobra Neo",
- "sub_path": "machine/Anycubic Kobra Neo.json"
- },
- {
- "name": "Anycubic Kobra Plus",
- "sub_path": "machine/Anycubic Kobra Plus.json"
- },
- {
- "name": "Anycubic Kobra S1",
- "sub_path": "machine/Anycubic Kobra S1.json"
- },
- {
- "name": "Anycubic Kobra X",
- "sub_path": "machine/Anycubic Kobra X.json"
- },
- {
- "name": "Anycubic Predator",
- "sub_path": "machine/Anycubic Predator.json"
- },
- {
- "name": "Anycubic Vyper",
- "sub_path": "machine/Anycubic Vyper.json"
- },
- {
- "name": "Anycubic i3 Mega S",
- "sub_path": "machine/Anycubic i3 Mega S.json"
- }
- ],
- "process_list": [
- {
- "name": "fdm_process_common",
- "sub_path": "process/fdm_process_common.json"
- },
- {
- "name": "0.08mm HighDetail @Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "process/0.08mm HighDetail @Anycubic Kobra 3 0.4 nozzle.json"
- },
- {
- "name": "0.08mm Standard @Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "process/0.08mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "0.08mm Standard @Anycubic Kobra X",
- "sub_path": "process/0.08mm Standard @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "0.10mm Detail @Anycubic Kobra 3 0.2 nozzle",
- "sub_path": "process/0.10mm Detail @Anycubic Kobra 3 0.2 nozzle.json"
- },
- {
- "name": "0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle",
- "sub_path": "process/0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle.json"
- },
- {
- "name": "0.12mm Detail @Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "process/0.12mm Detail @Anycubic Kobra 3 0.4 nozzle.json"
- },
- {
- "name": "0.12mm Detail @Anycubic Kobra Neo 0.4 nozzle",
- "sub_path": "process/0.12mm Detail @Anycubic Kobra Neo 0.4 nozzle.json"
- },
- {
- "name": "0.12mm High Quality @Anycubic Kobra X",
- "sub_path": "process/0.12mm High Quality @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "0.12mm Standard @Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "process/0.12mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "0.12mm Standard @Anycubic Kobra X",
- "sub_path": "process/0.12mm Standard @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "0.15mm Optimal @Anycubic 4MaxPro2",
- "sub_path": "process/0.15mm Optimal @Anycubic 4MaxPro2.json"
- },
- {
- "name": "0.15mm Optimal @Anycubic Chiron",
- "sub_path": "process/0.15mm Optimal @Anycubic Chiron.json"
- },
- {
- "name": "0.15mm Optimal @Anycubic Kobra",
- "sub_path": "process/0.15mm Optimal @Anycubic Kobra.json"
- },
- {
- "name": "0.15mm Optimal @Anycubic Kobra2",
- "sub_path": "process/0.15mm Optimal @Anycubic Kobra2.json"
- },
- {
- "name": "0.15mm Optimal @Anycubic KobraMax",
- "sub_path": "process/0.15mm Optimal @Anycubic KobraMax.json"
- },
- {
- "name": "0.15mm Optimal @Anycubic KobraPlus",
- "sub_path": "process/0.15mm Optimal @Anycubic KobraPlus.json"
- },
- {
- "name": "0.15mm Optimal @Anycubic Vyper",
- "sub_path": "process/0.15mm Optimal @Anycubic Vyper.json"
- },
- {
- "name": "0.15mm Optimal @Anycubic i3MegaS",
- "sub_path": "process/0.15mm Optimal @Anycubic i3MegaS.json"
- },
- {
- "name": "0.16mm High Quality @Anycubic Kobra X",
- "sub_path": "process/0.16mm High Quality @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle",
- "sub_path": "process/0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle.json"
- },
- {
- "name": "0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "process/0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle.json"
- },
- {
- "name": "0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle",
- "sub_path": "process/0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json"
- },
- {
- "name": "0.16mm Standard @Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "process/0.16mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "0.16mm Standard @Anycubic Kobra Neo 0.4 nozzle",
- "sub_path": "process/0.16mm Standard @Anycubic Kobra Neo 0.4 nozzle.json"
- },
- {
- "name": "0.16mm Standard @Anycubic Kobra X",
- "sub_path": "process/0.16mm Standard @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "0.18mm Standard @Anycubic Kobra 3 Max 0.6 nozzle",
- "sub_path": "process/0.18mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json"
- },
- {
- "name": "0.20mm High Quality @Anycubic Kobra X",
- "sub_path": "process/0.20mm High Quality @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "0.20mm Standard @Anycubic 4MaxPro",
- "sub_path": "process/0.20mm Standard @Anycubic 4MaxPro.json"
- },
- {
- "name": "0.20mm Standard @Anycubic 4MaxPro2",
- "sub_path": "process/0.20mm Standard @Anycubic 4MaxPro2.json"
- },
- {
- "name": "0.20mm Standard @Anycubic Chiron",
- "sub_path": "process/0.20mm Standard @Anycubic Chiron.json"
- },
- {
- "name": "0.20mm Standard @Anycubic Kobra",
- "sub_path": "process/0.20mm Standard @Anycubic Kobra.json"
- },
- {
- "name": "0.20mm Standard @Anycubic Kobra 2 Max 0.4 nozzle",
- "sub_path": "process/0.20mm Standard @Anycubic Kobra 2 Max 0.4 nozzle.json"
- },
- {
- "name": "0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle",
- "sub_path": "process/0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json"
- },
- {
- "name": "0.20mm Standard @Anycubic Kobra 2 Plus 0.4 nozzle",
- "sub_path": "process/0.20mm Standard @Anycubic Kobra 2 Plus 0.4 nozzle.json"
- },
- {
- "name": "0.20mm Standard @Anycubic Kobra 2 Pro 0.4 nozzle",
- "sub_path": "process/0.20mm Standard @Anycubic Kobra 2 Pro 0.4 nozzle.json"
- },
- {
- "name": "0.20mm Standard @Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "process/0.20mm Standard @Anycubic Kobra 3 0.4 nozzle.json"
- },
- {
- "name": "0.20mm Standard @Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "process/0.20mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "0.20mm Standard @Anycubic Kobra 3 Max 0.8 nozzle",
- "sub_path": "process/0.20mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json"
- },
- {
- "name": "0.20mm Standard @Anycubic Kobra Neo 0.4 nozzle",
- "sub_path": "process/0.20mm Standard @Anycubic Kobra Neo 0.4 nozzle.json"
- },
- {
- "name": "0.20mm Standard @Anycubic Kobra S1 0.4 nozzle",
- "sub_path": "process/0.20mm Standard @Anycubic Kobra S1 0.4 nozzle.json"
- },
- {
- "name": "0.20mm Standard @Anycubic Kobra X",
- "sub_path": "process/0.20mm Standard @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "0.20mm Standard @Anycubic Kobra2",
- "sub_path": "process/0.20mm Standard @Anycubic Kobra2.json"
- },
- {
- "name": "0.20mm Standard @Anycubic KobraMax",
- "sub_path": "process/0.20mm Standard @Anycubic KobraMax.json"
- },
- {
- "name": "0.20mm Standard @Anycubic KobraPlus",
- "sub_path": "process/0.20mm Standard @Anycubic KobraPlus.json"
- },
- {
- "name": "0.20mm Standard @Anycubic Predator",
- "sub_path": "process/0.20mm Standard @Anycubic Predator.json"
- },
- {
- "name": "0.20mm Standard @Anycubic Vyper",
- "sub_path": "process/0.20mm Standard @Anycubic Vyper.json"
- },
- {
- "name": "0.20mm Standard @Anycubic i3MegaS",
- "sub_path": "process/0.20mm Standard @Anycubic i3MegaS.json"
- },
- {
- "name": "0.24mm Draft @Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "process/0.24mm Draft @Anycubic Kobra 3 0.4 nozzle.json"
- },
- {
- "name": "0.24mm Standard @Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "process/0.24mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "0.24mm Standard @Anycubic Kobra 3 Max 0.6 nozzle",
- "sub_path": "process/0.24mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json"
- },
- {
- "name": "0.24mm Standard @Anycubic Kobra 3 Max 0.8 nozzle",
- "sub_path": "process/0.24mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json"
- },
- {
- "name": "0.24mm Standard @Anycubic Kobra X",
- "sub_path": "process/0.24mm Standard @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle",
- "sub_path": "process/0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle.json"
- },
- {
- "name": "0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle",
- "sub_path": "process/0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json"
- },
- {
- "name": "0.28mm Standard @Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "process/0.28mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "0.28mm Standard @Anycubic Kobra Neo 0.4 nozzle",
- "sub_path": "process/0.28mm Standard @Anycubic Kobra Neo 0.4 nozzle.json"
- },
- {
- "name": "0.28mm Standard @Anycubic Kobra X",
- "sub_path": "process/0.28mm Standard @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "process/0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle.json"
- },
- {
- "name": "0.30mm Draft @Anycubic 4MaxPro2",
- "sub_path": "process/0.30mm Draft @Anycubic 4MaxPro2.json"
- },
- {
- "name": "0.30mm Draft @Anycubic Chiron",
- "sub_path": "process/0.30mm Draft @Anycubic Chiron.json"
- },
- {
- "name": "0.30mm Draft @Anycubic Kobra",
- "sub_path": "process/0.30mm Draft @Anycubic Kobra.json"
- },
- {
- "name": "0.30mm Draft @Anycubic Kobra2",
- "sub_path": "process/0.30mm Draft @Anycubic Kobra2.json"
- },
- {
- "name": "0.30mm Draft @Anycubic KobraMax",
- "sub_path": "process/0.30mm Draft @Anycubic KobraMax.json"
- },
- {
- "name": "0.30mm Draft @Anycubic KobraPlus",
- "sub_path": "process/0.30mm Draft @Anycubic KobraPlus.json"
- },
- {
- "name": "0.30mm Draft @Anycubic Vyper",
- "sub_path": "process/0.30mm Draft @Anycubic Vyper.json"
- },
- {
- "name": "0.30mm Draft @Anycubic i3MegaS",
- "sub_path": "process/0.30mm Draft @Anycubic i3MegaS.json"
- },
- {
- "name": "0.30mm Standard @Anycubic Kobra 3 0.6 nozzle",
- "sub_path": "process/0.30mm Standard @Anycubic Kobra 3 0.6 nozzle.json"
- },
- {
- "name": "0.30mm Standard @Anycubic Kobra 3 Max 0.6 nozzle",
- "sub_path": "process/0.30mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json"
- },
- {
- "name": "0.32mm Standard @Anycubic Kobra 3 Max 0.8 nozzle",
- "sub_path": "process/0.32mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json"
- },
- {
- "name": "0.36mm Standard @Anycubic Kobra 3 Max 0.6 nozzle",
- "sub_path": "process/0.36mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json"
- },
- {
- "name": "0.40mm Standard @Anycubic Kobra 3 0.8 nozzle",
- "sub_path": "process/0.40mm Standard @Anycubic Kobra 3 0.8 nozzle.json"
- },
- {
- "name": "0.40mm Standard @Anycubic Kobra 3 Max 0.8 nozzle",
- "sub_path": "process/0.40mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json"
- },
- {
- "name": "0.42mm Standard @Anycubic Kobra 3 Max 0.6 nozzle",
- "sub_path": "process/0.42mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json"
- },
- {
- "name": "0.48mm Standard @Anycubic Kobra 3 Max 0.8 nozzle",
- "sub_path": "process/0.48mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json"
- }
- ],
- "filament_list": [
- {
- "name": "fdm_filament_common",
- "sub_path": "filament/fdm_filament_common.json"
- },
- {
- "name": "fdm_filament_abs",
- "sub_path": "filament/fdm_filament_abs.json"
- },
- {
- "name": "fdm_filament_asa",
- "sub_path": "filament/fdm_filament_asa.json"
- },
- {
- "name": "fdm_filament_pa",
- "sub_path": "filament/fdm_filament_pa.json"
- },
- {
- "name": "fdm_filament_pc",
- "sub_path": "filament/fdm_filament_pc.json"
- },
- {
- "name": "fdm_filament_pet",
- "sub_path": "filament/fdm_filament_pet.json"
- },
- {
- "name": "fdm_filament_pla",
- "sub_path": "filament/fdm_filament_pla.json"
- },
- {
- "name": "fdm_filament_pva",
- "sub_path": "filament/fdm_filament_pva.json"
- },
- {
- "name": "fdm_filament_tpu",
- "sub_path": "filament/fdm_filament_tpu.json"
- },
- {
- "name": "Anycubic ABS @Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "filament/Anycubic ABS @Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "Anycubic ABS @Anycubic Kobra 3 Max 0.6 nozzle",
- "sub_path": "filament/Anycubic ABS @Anycubic Kobra 3 Max 0.6 nozzle.json"
- },
- {
- "name": "Anycubic ABS @Anycubic Kobra 3 Max 0.8 nozzle",
- "sub_path": "filament/Anycubic ABS @Anycubic Kobra 3 Max 0.8 nozzle.json"
- },
- {
- "name": "Anycubic ABS @Anycubic Kobra S1 0.4 nozzle",
- "sub_path": "filament/Anycubic ABS @Anycubic Kobra S1 0.4 nozzle.json"
- },
- {
- "name": "Anycubic ABS @Anycubic Kobra X 0.4 nozzle",
- "sub_path": "filament/Anycubic ABS @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Generic ABS",
- "sub_path": "filament/Anycubic Generic ABS.json"
- },
- {
- "name": "Anycubic ASA @Anycubic Kobra 3 Max 0.6 nozzle",
- "sub_path": "filament/Anycubic ASA @Anycubic Kobra 3 Max 0.6 nozzle.json"
- },
- {
- "name": "Anycubic ASA @Anycubic Kobra 3 Max 0.8 nozzle",
- "sub_path": "filament/Anycubic ASA @Anycubic Kobra 3 Max 0.8 nozzle.json"
- },
- {
- "name": "Anycubic ASA @Anycubic Kobra S1 0.4 nozzle",
- "sub_path": "filament/Anycubic ASA @Anycubic Kobra S1 0.4 nozzle.json"
- },
- {
- "name": "Anycubic ASA @Anycubic Kobra X 0.4 nozzle",
- "sub_path": "filament/Anycubic ASA @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Generic ASA",
- "sub_path": "filament/Anycubic Generic ASA.json"
- },
- {
- "name": "Anycubic Generic PA",
- "sub_path": "filament/Anycubic Generic PA.json"
- },
- {
- "name": "Anycubic Generic PA-CF",
- "sub_path": "filament/Anycubic Generic PA-CF.json"
- },
- {
- "name": "Fiberon PA6-CF20 @Anycubic Kobra S1",
- "sub_path": "filament/Polymaker/Fiberon PA6-CF20 @Anycubic Kobra S1.json"
- },
- {
- "name": "Anycubic Generic PC",
- "sub_path": "filament/Anycubic Generic PC.json"
- },
- {
- "name": "Anycubic Generic PETG",
- "sub_path": "filament/Anycubic Generic PETG.json"
- },
- {
- "name": "Anycubic PETG @Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "filament/Anycubic PETG @Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PETG @Anycubic Kobra 3 Max 0.6 nozzle",
- "sub_path": "filament/Anycubic PETG @Anycubic Kobra 3 Max 0.6 nozzle.json"
- },
- {
- "name": "Anycubic PETG @Anycubic Kobra 3 Max 0.8 nozzle",
- "sub_path": "filament/Anycubic PETG @Anycubic Kobra 3 Max 0.8 nozzle.json"
- },
- {
- "name": "Anycubic PETG @Anycubic Kobra S1 0.4 nozzle",
- "sub_path": "filament/Anycubic PETG @Anycubic Kobra S1 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PETG @Anycubic Kobra X 0.4 nozzle",
- "sub_path": "filament/Anycubic PETG @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "Generic PETG @Anycubic Kobra X 0.4 nozzle",
- "sub_path": "filament/Generic PETG @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "Generic PETG Basic @Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "filament/Generic PETG Basic @Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Generic PLA",
- "sub_path": "filament/Anycubic Generic PLA.json"
- },
- {
- "name": "Anycubic Generic PLA-CF",
- "sub_path": "filament/Anycubic Generic PLA-CF.json"
- },
- {
- "name": "Anycubic PLA @Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA @Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA @Anycubic Kobra 3 Max 0.6 nozzle",
- "sub_path": "filament/Anycubic PLA @Anycubic Kobra 3 Max 0.6 nozzle.json"
- },
- {
- "name": "Anycubic PLA @Anycubic Kobra 3 Max 0.8 nozzle",
- "sub_path": "filament/Anycubic PLA @Anycubic Kobra 3 Max 0.8 nozzle.json"
- },
- {
- "name": "Anycubic PLA @Anycubic Kobra S1 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA @Anycubic Kobra S1 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA @Anycubic Kobra X 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA Glow @Anycubic Kobra X 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA Glow @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA High Speed @Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA High Speed @Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA High Speed @Anycubic Kobra X 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA High Speed @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA Luminous @Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA Luminous @Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA Matte @Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA Matte @Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA Matte @Anycubic Kobra X 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA Matte @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA Silk @Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA Silk @Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA Silk @Anycubic Kobra X 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA Silk @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA+ @Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA+ @Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "Panchroma PLA @Anycubic Kobra S1",
- "sub_path": "filament/Polymaker/Panchroma PLA @Anycubic Kobra S1.json"
- },
- {
- "name": "Polymaker PLA Pro @Anycubic Kobra S1",
- "sub_path": "filament/Polymaker/Polymaker PLA Pro @Anycubic Kobra S1.json"
- },
- {
- "name": "Polymaker PLA Pro Metallic @Anycubic Kobra S1",
- "sub_path": "filament/Polymaker/Polymaker PLA Pro Metallic @Anycubic Kobra S1.json"
- },
- {
- "name": "Anycubic Generic PVA",
- "sub_path": "filament/Anycubic Generic PVA.json"
- },
- {
- "name": "Anycubic PVA @Anycubic Kobra X 0.4 nozzle",
- "sub_path": "filament/Anycubic PVA @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Generic TPU",
- "sub_path": "filament/Anycubic Generic TPU.json"
- },
- {
- "name": "Anycubic PEBA 95A @Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "filament/Anycubic PEBA 95A @Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "Anycubic TPU 95A @Anycubic Kobra X 0.4 nozzle",
- "sub_path": "filament/Anycubic TPU 95A @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "Anycubic TPU @Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "filament/Anycubic TPU @Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "Anycubic TPU @Anycubic Kobra 3 Max 0.6 nozzle",
- "sub_path": "filament/Anycubic TPU @Anycubic Kobra 3 Max 0.6 nozzle.json"
- },
- {
- "name": "Anycubic TPU @Anycubic Kobra 3 Max 0.8 nozzle",
- "sub_path": "filament/Anycubic TPU @Anycubic Kobra 3 Max 0.8 nozzle.json"
- },
- {
- "name": "Anycubic TPU @Anycubic Kobra S1 0.4 nozzle",
- "sub_path": "filament/Anycubic TPU @Anycubic Kobra S1 0.4 nozzle.json"
- },
- {
- "name": "Anycubic TPU for ACE @Anycubic Kobra X 0.4 nozzle",
- "sub_path": "filament/Anycubic TPU for ACE @Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "Generic ABS @Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "filament/Generic ABS @Anycubic Kobra 3 0.4 nozzle.json"
- },
- {
- "name": "Anycubic ASA @Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "filament/Anycubic ASA @Anycubic Kobra 3 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PETG @Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "filament/Anycubic PETG @Anycubic Kobra 3 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA @Anycubic Kobra 2 Max 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA @Anycubic Kobra 2 Max 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA @Anycubic Kobra 2 Neo 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA @Anycubic Kobra 2 Neo 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA @Anycubic Kobra 2 Plus 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA @Anycubic Kobra 2 Plus 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA @Anycubic Kobra 2 Pro 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA @Anycubic Kobra 2 Pro 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA @Anycubic Kobra 3 0.2 nozzle",
- "sub_path": "filament/Anycubic PLA @Anycubic Kobra 3 0.2 nozzle.json"
- },
- {
- "name": "Anycubic PLA @Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA @Anycubic Kobra 3 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA @Anycubic Kobra 3 0.6 nozzle",
- "sub_path": "filament/Anycubic PLA @Anycubic Kobra 3 0.6 nozzle.json"
- },
- {
- "name": "Anycubic PLA @Anycubic Kobra 3 0.8 nozzle",
- "sub_path": "filament/Anycubic PLA @Anycubic Kobra 3 0.8 nozzle.json"
- },
- {
- "name": "Anycubic PLA @Anycubic Kobra Neo 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA @Anycubic Kobra Neo 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA Glow @Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA Glow @Anycubic Kobra 3 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA High Speed @Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA High Speed @Anycubic Kobra 3 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA Matte @Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA Matte @Anycubic Kobra 3 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA SE @Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA SE @Anycubic Kobra 3 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA Slik @Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA Slik @Anycubic Kobra 3 0.4 nozzle.json"
- },
- {
- "name": "Anycubic PLA+ @Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "filament/Anycubic PLA+ @Anycubic Kobra 3 0.4 nozzle.json"
- },
- {
- "name": "Generic TPU @Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "filament/Generic TPU @Anycubic Kobra 3 0.4 nozzle.json"
- }
- ],
- "machine_list": [
- {
- "name": "fdm_machine_common",
- "sub_path": "machine/fdm_machine_common.json"
- },
- {
- "name": "Anycubic 4Max Pro 0.4 nozzle",
- "sub_path": "machine/Anycubic 4Max Pro 0.4 nozzle.json"
- },
- {
- "name": "Anycubic 4Max Pro 2 0.4 nozzle",
- "sub_path": "machine/Anycubic 4Max Pro 2 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Chiron 0.4 nozzle",
- "sub_path": "machine/Anycubic Chiron 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Kobra 0.4 nozzle",
- "sub_path": "machine/Anycubic Kobra 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Kobra 2 0.4 nozzle",
- "sub_path": "machine/Anycubic Kobra 2 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Kobra 2 Max 0.4 nozzle",
- "sub_path": "machine/Anycubic Kobra 2 Max 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Kobra 2 Neo 0.4 nozzle",
- "sub_path": "machine/Anycubic Kobra 2 Neo 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Kobra 2 Plus 0.4 nozzle",
- "sub_path": "machine/Anycubic Kobra 2 Plus 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Kobra 2 Pro 0.4 nozzle",
- "sub_path": "machine/Anycubic Kobra 2 Pro 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Kobra 3 0.2 nozzle",
- "sub_path": "machine/Anycubic Kobra 3 0.2 nozzle.json"
- },
- {
- "name": "Anycubic Kobra 3 0.4 nozzle",
- "sub_path": "machine/Anycubic Kobra 3 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Kobra 3 0.6 nozzle",
- "sub_path": "machine/Anycubic Kobra 3 0.6 nozzle.json"
- },
- {
- "name": "Anycubic Kobra 3 0.8 nozzle",
- "sub_path": "machine/Anycubic Kobra 3 0.8 nozzle.json"
- },
- {
- "name": "Anycubic Kobra 3 Max 0.4 nozzle",
- "sub_path": "machine/Anycubic Kobra 3 Max 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Kobra 3 Max 0.6 nozzle",
- "sub_path": "machine/Anycubic Kobra 3 Max 0.6 nozzle.json"
- },
- {
- "name": "Anycubic Kobra 3 Max 0.8 nozzle",
- "sub_path": "machine/Anycubic Kobra 3 Max 0.8 nozzle.json"
- },
- {
- "name": "Anycubic Kobra Max 0.4 nozzle",
- "sub_path": "machine/Anycubic Kobra Max 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Kobra Neo 0.4 nozzle",
- "sub_path": "machine/Anycubic Kobra Neo 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Kobra Plus 0.4 nozzle",
- "sub_path": "machine/Anycubic Kobra Plus 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Kobra S1 0.4 nozzle",
- "sub_path": "machine/Anycubic Kobra S1 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Kobra X 0.4 nozzle",
- "sub_path": "machine/Anycubic Kobra X 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Predator 0.4 nozzle",
- "sub_path": "machine/Anycubic Predator 0.4 nozzle.json"
- },
- {
- "name": "Anycubic Vyper 0.4 nozzle",
- "sub_path": "machine/Anycubic Vyper 0.4 nozzle.json"
- },
- {
- "name": "Anycubic i3 Mega S 0.4 nozzle",
- "sub_path": "machine/Anycubic i3 Mega S 0.4 nozzle.json"
- }
- ]
-}
+{
+ "name": "Anycubic",
+ "version": "02.04.00.01",
+ "force_update": "0",
+ "description": "Anycubic configurations",
+ "machine_model_list": [
+ {
+ "name": "Anycubic 4Max Pro",
+ "sub_path": "machine/Anycubic 4Max Pro.json"
+ },
+ {
+ "name": "Anycubic 4Max Pro 2",
+ "sub_path": "machine/Anycubic 4Max Pro 2.json"
+ },
+ {
+ "name": "Anycubic Chiron",
+ "sub_path": "machine/Anycubic Chiron.json"
+ },
+ {
+ "name": "Anycubic Kobra",
+ "sub_path": "machine/Anycubic Kobra.json"
+ },
+ {
+ "name": "Anycubic Kobra 2",
+ "sub_path": "machine/Anycubic Kobra 2.json"
+ },
+ {
+ "name": "Anycubic Kobra 2 Max",
+ "sub_path": "machine/Anycubic Kobra 2 Max.json"
+ },
+ {
+ "name": "Anycubic Kobra 2 Neo",
+ "sub_path": "machine/Anycubic Kobra 2 Neo.json"
+ },
+ {
+ "name": "Anycubic Kobra 2 Plus",
+ "sub_path": "machine/Anycubic Kobra 2 Plus.json"
+ },
+ {
+ "name": "Anycubic Kobra 2 Pro",
+ "sub_path": "machine/Anycubic Kobra 2 Pro.json"
+ },
+ {
+ "name": "Anycubic Kobra 3",
+ "sub_path": "machine/Anycubic Kobra 3.json"
+ },
+ {
+ "name": "Anycubic Kobra 3 Max",
+ "sub_path": "machine/Anycubic Kobra 3 Max.json"
+ },
+ {
+ "name": "Anycubic Kobra Max",
+ "sub_path": "machine/Anycubic Kobra Max.json"
+ },
+ {
+ "name": "Anycubic Kobra Neo",
+ "sub_path": "machine/Anycubic Kobra Neo.json"
+ },
+ {
+ "name": "Anycubic Kobra Plus",
+ "sub_path": "machine/Anycubic Kobra Plus.json"
+ },
+ {
+ "name": "Anycubic Kobra S1",
+ "sub_path": "machine/Anycubic Kobra S1.json"
+ },
+ {
+ "name": "Anycubic Kobra S1 Max",
+ "sub_path": "machine/Anycubic Kobra S1 Max.json"
+ },
+ {
+ "name": "Anycubic Kobra X",
+ "sub_path": "machine/Anycubic Kobra X.json"
+ },
+ {
+ "name": "Anycubic Predator",
+ "sub_path": "machine/Anycubic Predator.json"
+ },
+ {
+ "name": "Anycubic Vyper",
+ "sub_path": "machine/Anycubic Vyper.json"
+ },
+ {
+ "name": "Anycubic i3 Mega S",
+ "sub_path": "machine/Anycubic i3 Mega S.json"
+ }
+ ],
+ "process_list": [
+ {
+ "name": "fdm_process_common",
+ "sub_path": "process/fdm_process_common.json"
+ },
+ {
+ "name": "0.08mm HighDetail @Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "process/0.08mm HighDetail @Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "0.08mm Standard @Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "process/0.08mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.08mm Standard @Anycubic Kobra X",
+ "sub_path": "process/0.08mm Standard @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "0.10mm Detail @Anycubic Kobra 3 0.2 nozzle",
+ "sub_path": "process/0.10mm Detail @Anycubic Kobra 3 0.2 nozzle.json"
+ },
+ {
+ "name": "0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle",
+ "sub_path": "process/0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle.json"
+ },
+ {
+ "name": "0.12mm Detail @Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "process/0.12mm Detail @Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "0.12mm Detail @Anycubic Kobra Neo 0.4 nozzle",
+ "sub_path": "process/0.12mm Detail @Anycubic Kobra Neo 0.4 nozzle.json"
+ },
+ {
+ "name": "0.12mm High Quality @Anycubic Kobra X",
+ "sub_path": "process/0.12mm High Quality @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "0.12mm Standard @Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "process/0.12mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.12mm Standard @Anycubic Kobra X",
+ "sub_path": "process/0.12mm Standard @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "0.15mm Optimal @Anycubic 4MaxPro2",
+ "sub_path": "process/0.15mm Optimal @Anycubic 4MaxPro2.json"
+ },
+ {
+ "name": "0.15mm Optimal @Anycubic Chiron",
+ "sub_path": "process/0.15mm Optimal @Anycubic Chiron.json"
+ },
+ {
+ "name": "0.15mm Optimal @Anycubic Kobra",
+ "sub_path": "process/0.15mm Optimal @Anycubic Kobra.json"
+ },
+ {
+ "name": "0.15mm Optimal @Anycubic Kobra2",
+ "sub_path": "process/0.15mm Optimal @Anycubic Kobra2.json"
+ },
+ {
+ "name": "0.15mm Optimal @Anycubic KobraMax",
+ "sub_path": "process/0.15mm Optimal @Anycubic KobraMax.json"
+ },
+ {
+ "name": "0.15mm Optimal @Anycubic KobraPlus",
+ "sub_path": "process/0.15mm Optimal @Anycubic KobraPlus.json"
+ },
+ {
+ "name": "0.15mm Optimal @Anycubic Vyper",
+ "sub_path": "process/0.15mm Optimal @Anycubic Vyper.json"
+ },
+ {
+ "name": "0.15mm Optimal @Anycubic i3MegaS",
+ "sub_path": "process/0.15mm Optimal @Anycubic i3MegaS.json"
+ },
+ {
+ "name": "0.16mm High Quality @Anycubic Kobra X",
+ "sub_path": "process/0.16mm High Quality @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle",
+ "sub_path": "process/0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "process/0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle",
+ "sub_path": "process/0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Standard @Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "process/0.16mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Standard @Anycubic Kobra Neo 0.4 nozzle",
+ "sub_path": "process/0.16mm Standard @Anycubic Kobra Neo 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Standard @Anycubic Kobra X",
+ "sub_path": "process/0.16mm Standard @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "0.18mm Standard @Anycubic Kobra 3 Max 0.6 nozzle",
+ "sub_path": "process/0.18mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "0.20mm High Quality @Anycubic Kobra X",
+ "sub_path": "process/0.20mm High Quality @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic 4MaxPro",
+ "sub_path": "process/0.20mm Standard @Anycubic 4MaxPro.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic 4MaxPro2",
+ "sub_path": "process/0.20mm Standard @Anycubic 4MaxPro2.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic Chiron",
+ "sub_path": "process/0.20mm Standard @Anycubic Chiron.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic Kobra",
+ "sub_path": "process/0.20mm Standard @Anycubic Kobra.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic Kobra 2 Max 0.4 nozzle",
+ "sub_path": "process/0.20mm Standard @Anycubic Kobra 2 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle",
+ "sub_path": "process/0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic Kobra 2 Plus 0.4 nozzle",
+ "sub_path": "process/0.20mm Standard @Anycubic Kobra 2 Plus 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic Kobra 2 Pro 0.4 nozzle",
+ "sub_path": "process/0.20mm Standard @Anycubic Kobra 2 Pro 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "process/0.20mm Standard @Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "process/0.20mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic Kobra 3 Max 0.8 nozzle",
+ "sub_path": "process/0.20mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic Kobra Neo 0.4 nozzle",
+ "sub_path": "process/0.20mm Standard @Anycubic Kobra Neo 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic Kobra S1 0.4 nozzle",
+ "sub_path": "process/0.20mm Standard @Anycubic Kobra S1 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic Kobra X",
+ "sub_path": "process/0.20mm Standard @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic Kobra2",
+ "sub_path": "process/0.20mm Standard @Anycubic Kobra2.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic KobraMax",
+ "sub_path": "process/0.20mm Standard @Anycubic KobraMax.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic KobraPlus",
+ "sub_path": "process/0.20mm Standard @Anycubic KobraPlus.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic Predator",
+ "sub_path": "process/0.20mm Standard @Anycubic Predator.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic Vyper",
+ "sub_path": "process/0.20mm Standard @Anycubic Vyper.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic i3MegaS",
+ "sub_path": "process/0.20mm Standard @Anycubic i3MegaS.json"
+ },
+ {
+ "name": "0.24mm Draft @Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "process/0.24mm Draft @Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Standard @Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "process/0.24mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Standard @Anycubic Kobra 3 Max 0.6 nozzle",
+ "sub_path": "process/0.24mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "0.24mm Standard @Anycubic Kobra 3 Max 0.8 nozzle",
+ "sub_path": "process/0.24mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "0.24mm Standard @Anycubic Kobra X",
+ "sub_path": "process/0.24mm Standard @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle",
+ "sub_path": "process/0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle",
+ "sub_path": "process/0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Standard @Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "process/0.28mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Standard @Anycubic Kobra Neo 0.4 nozzle",
+ "sub_path": "process/0.28mm Standard @Anycubic Kobra Neo 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Standard @Anycubic Kobra X",
+ "sub_path": "process/0.28mm Standard @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "process/0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "0.30mm Draft @Anycubic 4MaxPro2",
+ "sub_path": "process/0.30mm Draft @Anycubic 4MaxPro2.json"
+ },
+ {
+ "name": "0.30mm Draft @Anycubic Chiron",
+ "sub_path": "process/0.30mm Draft @Anycubic Chiron.json"
+ },
+ {
+ "name": "0.30mm Draft @Anycubic Kobra",
+ "sub_path": "process/0.30mm Draft @Anycubic Kobra.json"
+ },
+ {
+ "name": "0.30mm Draft @Anycubic Kobra2",
+ "sub_path": "process/0.30mm Draft @Anycubic Kobra2.json"
+ },
+ {
+ "name": "0.30mm Draft @Anycubic KobraMax",
+ "sub_path": "process/0.30mm Draft @Anycubic KobraMax.json"
+ },
+ {
+ "name": "0.30mm Draft @Anycubic KobraPlus",
+ "sub_path": "process/0.30mm Draft @Anycubic KobraPlus.json"
+ },
+ {
+ "name": "0.30mm Draft @Anycubic Vyper",
+ "sub_path": "process/0.30mm Draft @Anycubic Vyper.json"
+ },
+ {
+ "name": "0.30mm Draft @Anycubic i3MegaS",
+ "sub_path": "process/0.30mm Draft @Anycubic i3MegaS.json"
+ },
+ {
+ "name": "0.30mm Standard @Anycubic Kobra 3 0.6 nozzle",
+ "sub_path": "process/0.30mm Standard @Anycubic Kobra 3 0.6 nozzle.json"
+ },
+ {
+ "name": "0.30mm Standard @Anycubic Kobra 3 Max 0.6 nozzle",
+ "sub_path": "process/0.30mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "0.32mm Standard @Anycubic Kobra 3 Max 0.8 nozzle",
+ "sub_path": "process/0.32mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "0.36mm Standard @Anycubic Kobra 3 Max 0.6 nozzle",
+ "sub_path": "process/0.36mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "0.40mm Standard @Anycubic Kobra 3 0.8 nozzle",
+ "sub_path": "process/0.40mm Standard @Anycubic Kobra 3 0.8 nozzle.json"
+ },
+ {
+ "name": "0.40mm Standard @Anycubic Kobra 3 Max 0.8 nozzle",
+ "sub_path": "process/0.40mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "0.42mm Standard @Anycubic Kobra 3 Max 0.6 nozzle",
+ "sub_path": "process/0.42mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "0.48mm Standard @Anycubic Kobra 3 Max 0.8 nozzle",
+ "sub_path": "process/0.48mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "0.08mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "process/0.08mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.12mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "process/0.12mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "process/0.16mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "process/0.16mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "process/0.20mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "process/0.20mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "process/0.24mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "process/0.28mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+
+ {
+ "name": "0.10mm Standard @Anycubic Kobra S1 Max 0.25 nozzle",
+ "sub_path": "process/0.10mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json"
+ },
+ {
+ "name": "0.06mm Standard @Anycubic Kobra S1 Max 0.25 nozzle",
+ "sub_path": "process/0.06mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json"
+ },
+ {
+ "name": "0.08mm Standard @Anycubic Kobra S1 Max 0.25 nozzle",
+ "sub_path": "process/0.08mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json"
+ },
+ {
+ "name": "0.12mm Standard @Anycubic Kobra S1 Max 0.25 nozzle",
+ "sub_path": "process/0.12mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json"
+ },
+ {
+ "name": "0.14mm Standard @Anycubic Kobra S1 Max 0.25 nozzle",
+ "sub_path": "process/0.14mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json"
+ },
+
+ {
+ "name": "0.30mm Standard @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "process/0.30mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "0.18mm Standard @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "process/0.18mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "0.24mm Standard @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "process/0.24mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "0.36mm Standard @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "process/0.36mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "0.42mm Standard @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "process/0.42mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+
+ {
+ "name": "0.40mm Standard @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "process/0.40mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "0.24mm Standard @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "process/0.24mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "0.32mm Standard @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "process/0.32mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "0.48mm Standard @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "process/0.48mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "0.56mm Standard @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "process/0.56mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ }
+
+ ],
+ "filament_list": [
+ {
+ "name": "fdm_filament_common",
+ "sub_path": "filament/fdm_filament_common.json"
+ },
+ {
+ "name": "fdm_filament_abs",
+ "sub_path": "filament/fdm_filament_abs.json"
+ },
+ {
+ "name": "fdm_filament_asa",
+ "sub_path": "filament/fdm_filament_asa.json"
+ },
+ {
+ "name": "fdm_filament_pa",
+ "sub_path": "filament/fdm_filament_pa.json"
+ },
+ {
+ "name": "fdm_filament_pc",
+ "sub_path": "filament/fdm_filament_pc.json"
+ },
+ {
+ "name": "fdm_filament_pet",
+ "sub_path": "filament/fdm_filament_pet.json"
+ },
+ {
+ "name": "fdm_filament_pla",
+ "sub_path": "filament/fdm_filament_pla.json"
+ },
+ {
+ "name": "fdm_filament_pva",
+ "sub_path": "filament/fdm_filament_pva.json"
+ },
+ {
+ "name": "fdm_filament_tpu",
+ "sub_path": "filament/fdm_filament_tpu.json"
+ },
+ {
+ "name": "Anycubic ABS @Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic ABS @Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic ABS @Anycubic Kobra 3 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic ABS @Anycubic Kobra 3 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic ABS @Anycubic Kobra 3 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic ABS @Anycubic Kobra 3 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic ABS @Anycubic Kobra S1 0.4 nozzle",
+ "sub_path": "filament/Anycubic ABS @Anycubic Kobra S1 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic ABS @Anycubic Kobra X 0.4 nozzle",
+ "sub_path": "filament/Anycubic ABS @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Generic ABS",
+ "sub_path": "filament/Anycubic Generic ABS.json"
+ },
+ {
+ "name": "Anycubic ASA @Anycubic Kobra 3 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic ASA @Anycubic Kobra 3 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic ASA @Anycubic Kobra 3 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic ASA @Anycubic Kobra 3 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic ASA @Anycubic Kobra S1 0.4 nozzle",
+ "sub_path": "filament/Anycubic ASA @Anycubic Kobra S1 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic ASA @Anycubic Kobra X 0.4 nozzle",
+ "sub_path": "filament/Anycubic ASA @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Generic ASA",
+ "sub_path": "filament/Anycubic Generic ASA.json"
+ },
+ {
+ "name": "Anycubic Generic PA",
+ "sub_path": "filament/Anycubic Generic PA.json"
+ },
+ {
+ "name": "Anycubic Generic PA-CF",
+ "sub_path": "filament/Anycubic Generic PA-CF.json"
+ },
+ {
+ "name": "Fiberon PA6-CF20 @Anycubic Kobra S1",
+ "sub_path": "filament/Polymaker/Fiberon PA6-CF20 @Anycubic Kobra S1.json"
+ },
+ {
+ "name": "Anycubic Generic PC",
+ "sub_path": "filament/Anycubic Generic PC.json"
+ },
+ {
+ "name": "Anycubic Generic PETG",
+ "sub_path": "filament/Anycubic Generic PETG.json"
+ },
+ {
+ "name": "Anycubic PETG @Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PETG @Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PETG @Anycubic Kobra 3 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PETG @Anycubic Kobra 3 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PETG @Anycubic Kobra 3 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PETG @Anycubic Kobra 3 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PETG @Anycubic Kobra S1 0.4 nozzle",
+ "sub_path": "filament/Anycubic PETG @Anycubic Kobra S1 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PETG @Anycubic Kobra X 0.4 nozzle",
+ "sub_path": "filament/Anycubic PETG @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "Generic PETG @Anycubic Kobra X 0.4 nozzle",
+ "sub_path": "filament/Generic PETG @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "Generic PETG Basic @Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "filament/Generic PETG Basic @Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Generic PLA",
+ "sub_path": "filament/Anycubic Generic PLA.json"
+ },
+ {
+ "name": "Anycubic Generic PLA-CF",
+ "sub_path": "filament/Anycubic Generic PLA-CF.json"
+ },
+ {
+ "name": "Anycubic PLA @Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA @Anycubic Kobra 3 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra 3 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA @Anycubic Kobra 3 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra 3 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA @Anycubic Kobra S1 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra S1 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA @Anycubic Kobra X 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Glow @Anycubic Kobra X 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA Glow @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA High Speed @Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA High Speed @Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA High Speed @Anycubic Kobra X 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA High Speed @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Luminous @Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA Luminous @Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Matte @Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA Matte @Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Matte @Anycubic Kobra X 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA Matte @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Silk @Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA Silk @Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Silk @Anycubic Kobra X 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA Silk @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA+ @Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA+ @Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "Panchroma PLA @Anycubic Kobra S1",
+ "sub_path": "filament/Polymaker/Panchroma PLA @Anycubic Kobra S1.json"
+ },
+ {
+ "name": "Polymaker PLA Pro @Anycubic Kobra S1",
+ "sub_path": "filament/Polymaker/Polymaker PLA Pro @Anycubic Kobra S1.json"
+ },
+ {
+ "name": "Polymaker PLA Pro Metallic @Anycubic Kobra S1",
+ "sub_path": "filament/Polymaker/Polymaker PLA Pro Metallic @Anycubic Kobra S1.json"
+ },
+ {
+ "name": "Anycubic Generic PVA",
+ "sub_path": "filament/Anycubic Generic PVA.json"
+ },
+ {
+ "name": "Anycubic PVA @Anycubic Kobra X 0.4 nozzle",
+ "sub_path": "filament/Anycubic PVA @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Generic TPU",
+ "sub_path": "filament/Anycubic Generic TPU.json"
+ },
+ {
+ "name": "Anycubic PEBA 95A @Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PEBA 95A @Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic TPU 95A @Anycubic Kobra X 0.4 nozzle",
+ "sub_path": "filament/Anycubic TPU 95A @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic TPU @Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic TPU @Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic TPU @Anycubic Kobra 3 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic TPU @Anycubic Kobra 3 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic TPU @Anycubic Kobra 3 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic TPU @Anycubic Kobra 3 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic TPU @Anycubic Kobra S1 0.4 nozzle",
+ "sub_path": "filament/Anycubic TPU @Anycubic Kobra S1 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic TPU for ACE @Anycubic Kobra X 0.4 nozzle",
+ "sub_path": "filament/Anycubic TPU for ACE @Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "Generic ABS @Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "filament/Generic ABS @Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic ASA @Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "filament/Anycubic ASA @Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PETG @Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "filament/Anycubic PETG @Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA @Anycubic Kobra 2 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra 2 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA @Anycubic Kobra 2 Neo 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra 2 Neo 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA @Anycubic Kobra 2 Plus 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra 2 Plus 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA @Anycubic Kobra 2 Pro 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra 2 Pro 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA @Anycubic Kobra 3 0.2 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra 3 0.2 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA @Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA @Anycubic Kobra 3 0.6 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra 3 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA @Anycubic Kobra 3 0.8 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra 3 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA @Anycubic Kobra Neo 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra Neo 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Glow @Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA Glow @Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA High Speed @Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA High Speed @Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Matte @Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA Matte @Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA SE @Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA SE @Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Slik @Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA Slik @Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA+ @Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA+ @Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "Generic TPU @Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "filament/Generic TPU @Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic ABS @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic ABS @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic ASA @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic ASA @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PEBA @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PETG @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PETG @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Glow @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Matte @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Silk @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA+ @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic TPU 95A @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PA @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PA @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PA6-CF @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PC @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PC @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PC-CF @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PC-GF @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PET-CF @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PETG-CF @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA-CF @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PVA @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PVA @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Generic PETG @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Generic PETG @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Translucent @Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "filament/Anycubic PLA Translucent @Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+
+ {
+ "name": "Anycubic PLA @Anycubic Kobra S1 Max 0.25 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra S1 Max 0.25 nozzle.json"
+ },
+ {
+ "name": "Anycubic ABS @Anycubic Kobra S1 Max 0.25 nozzle",
+ "sub_path": "filament/Anycubic ABS @Anycubic Kobra S1 Max 0.25 nozzle.json"
+ },
+ {
+ "name": "Anycubic ASA @Anycubic Kobra S1 Max 0.25 nozzle",
+ "sub_path": "filament/Anycubic ASA @Anycubic Kobra S1 Max 0.25 nozzle.json"
+ },
+ {
+ "name": "Anycubic PETG @Anycubic Kobra S1 Max 0.25 nozzle",
+ "sub_path": "filament/Anycubic PETG @Anycubic Kobra S1 Max 0.25 nozzle.json"
+ },
+
+ {
+ "name": "Anycubic PLA @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PETG @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PETG @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Glow @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Matte @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Silk @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA+ @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA-CF @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic ABS @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic ABS @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic ASA @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic ASA @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PA @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PA @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PA6-CF @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PC @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PC @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PC-CF @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PC-GF @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PEBA @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PET-CF @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PETG-CF @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic PVA @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic PVA @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic TPU 95A @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+
+ {
+ "name": "Anycubic PLA @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PLA @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PETG @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PETG @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic ABS @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic ABS @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic ASA @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic ASA @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PA @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PA @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PA6-CF @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PC @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PC @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PC-CF @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PC-GF @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PEBA @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PET-CF @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PETG-CF @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Glow @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Matte @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA Silk @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA+ @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PLA-CF @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic PVA @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic PVA @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic TPU 95A @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.8 nozzle.json"
+ }
+
+ ],
+ "machine_list": [
+ {
+ "name": "fdm_machine_common",
+ "sub_path": "machine/fdm_machine_common.json"
+ },
+ {
+ "name": "Anycubic 4Max Pro 0.4 nozzle",
+ "sub_path": "machine/Anycubic 4Max Pro 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic 4Max Pro 2 0.4 nozzle",
+ "sub_path": "machine/Anycubic 4Max Pro 2 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Chiron 0.4 nozzle",
+ "sub_path": "machine/Anycubic Chiron 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra 0.4 nozzle",
+ "sub_path": "machine/Anycubic Kobra 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra 2 0.4 nozzle",
+ "sub_path": "machine/Anycubic Kobra 2 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra 2 Max 0.4 nozzle",
+ "sub_path": "machine/Anycubic Kobra 2 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra 2 Neo 0.4 nozzle",
+ "sub_path": "machine/Anycubic Kobra 2 Neo 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra 2 Plus 0.4 nozzle",
+ "sub_path": "machine/Anycubic Kobra 2 Plus 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra 2 Pro 0.4 nozzle",
+ "sub_path": "machine/Anycubic Kobra 2 Pro 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra 3 0.2 nozzle",
+ "sub_path": "machine/Anycubic Kobra 3 0.2 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra 3 0.4 nozzle",
+ "sub_path": "machine/Anycubic Kobra 3 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra 3 0.6 nozzle",
+ "sub_path": "machine/Anycubic Kobra 3 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra 3 0.8 nozzle",
+ "sub_path": "machine/Anycubic Kobra 3 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra 3 Max 0.4 nozzle",
+ "sub_path": "machine/Anycubic Kobra 3 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra 3 Max 0.6 nozzle",
+ "sub_path": "machine/Anycubic Kobra 3 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra 3 Max 0.8 nozzle",
+ "sub_path": "machine/Anycubic Kobra 3 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra Max 0.4 nozzle",
+ "sub_path": "machine/Anycubic Kobra Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra Neo 0.4 nozzle",
+ "sub_path": "machine/Anycubic Kobra Neo 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra Plus 0.4 nozzle",
+ "sub_path": "machine/Anycubic Kobra Plus 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra S1 0.4 nozzle",
+ "sub_path": "machine/Anycubic Kobra S1 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra S1 Max 0.4 nozzle",
+ "sub_path": "machine/Anycubic Kobra S1 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra S1 Max 0.25 nozzle",
+ "sub_path": "machine/Anycubic Kobra S1 Max 0.25 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra S1 Max 0.6 nozzle",
+ "sub_path": "machine/Anycubic Kobra S1 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra S1 Max 0.8 nozzle",
+ "sub_path": "machine/Anycubic Kobra S1 Max 0.8 nozzle.json"
+ },
+ {
+ "name": "Anycubic Kobra X 0.4 nozzle",
+ "sub_path": "machine/Anycubic Kobra X 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Predator 0.4 nozzle",
+ "sub_path": "machine/Anycubic Predator 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic Vyper 0.4 nozzle",
+ "sub_path": "machine/Anycubic Vyper 0.4 nozzle.json"
+ },
+ {
+ "name": "Anycubic i3 Mega S 0.4 nozzle",
+ "sub_path": "machine/Anycubic i3 Mega S 0.4 nozzle.json"
+ }
+ ]
+}
diff --git a/resources/profiles/Anycubic/Anycubic Kobra S1 Max_buildplate_model.stl b/resources/profiles/Anycubic/Anycubic Kobra S1 Max_buildplate_model.stl
new file mode 100644
index 0000000000..f9e2d955de
Binary files /dev/null and b/resources/profiles/Anycubic/Anycubic Kobra S1 Max_buildplate_model.stl differ
diff --git a/resources/profiles/Anycubic/Anycubic Kobra S1 Max_buildplate_texture.svg b/resources/profiles/Anycubic/Anycubic Kobra S1 Max_buildplate_texture.svg
new file mode 100644
index 0000000000..b4c1ec7528
--- /dev/null
+++ b/resources/profiles/Anycubic/Anycubic Kobra S1 Max_buildplate_texture.svg
@@ -0,0 +1,27 @@
+
diff --git a/resources/profiles/Anycubic/Anycubic Kobra S1 Max_cover.png b/resources/profiles/Anycubic/Anycubic Kobra S1 Max_cover.png
new file mode 100644
index 0000000000..9a6079ae9b
Binary files /dev/null and b/resources/profiles/Anycubic/Anycubic Kobra S1 Max_cover.png differ
diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.25 nozzle.json
new file mode 100644
index 0000000000..ab43c94e9c
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.25 nozzle.json
@@ -0,0 +1,105 @@
+{
+ "type": "filament",
+ "name": "Anycubic ABS @Anycubic Kobra S1 Max 0.25 nozzle",
+ "inherits": "fdm_filament_abs",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFABS",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic ABS @Anycubic Kobra S1 Max 0.25 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "ABS"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.25 nozzle"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "60"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed_BRASS": [
+ "60"
+ ],
+ "fan_max_speed_HS": [
+ "60"
+ ],
+ "fan_min_speed_BRASS": [
+ "40"
+ ],
+ "fan_min_speed_HS": [
+ "40"
+ ],
+ "fan_speed_after_x_layers": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_HS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "pressure_advance": [
+ "0.032"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "12"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "textured_plate_temp": [
+ "100"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "100"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..46ad643f22
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,336 @@
+{
+ "type": "filament",
+ "name": "Anycubic ABS @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_abs",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFABS",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic ABS @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "ABS"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "65"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_max_speed_BRASS": [
+ "60"
+ ],
+ "fan_max_speed_HS": [
+ "60"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "filament_adhesiveness_category": [
+ "200"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.04"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode "
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "250"
+ ],
+ "nozzle_temperature_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_HS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.024"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "6"
+ ],
+ "slow_down_layer_time_HS": [
+ "6"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "100"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "100"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..170834c938
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic ABS @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_abs",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFABS",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic ABS @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "ABS"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "20"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "65"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_max_speed_BRASS": [
+ "80"
+ ],
+ "fan_max_speed_HS": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "fan_min_speed_BRASS": [
+ "30"
+ ],
+ "fan_min_speed_HS": [
+ "30"
+ ],
+ "filament_adhesiveness_category": [
+ "200"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_HS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "6"
+ ],
+ "slow_down_layer_time_HS": [
+ "6"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "90"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "100"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "100"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..fda4fbd20b
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic ABS @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_abs",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFABS",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic ABS @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "ABS"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "20"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "65"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "80"
+ ],
+ "fan_max_speed_HS": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "30"
+ ],
+ "fan_min_speed_HS": [
+ "30"
+ ],
+ "filament_adhesiveness_category": [
+ "200"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.04"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "60"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_HS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "6"
+ ],
+ "slow_down_layer_time_HS": [
+ "6"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "100"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "100"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.25 nozzle.json
new file mode 100644
index 0000000000..c103bdb580
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.25 nozzle.json
@@ -0,0 +1,99 @@
+{
+ "type": "filament",
+ "name": "Anycubic ASA @Anycubic Kobra S1 Max 0.25 nozzle",
+ "inherits": "fdm_filament_asa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFASA",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic ASA @Anycubic Kobra S1 Max 0.25 nozzle"
+ ],
+ "filament_type": [
+ "ASA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.25 nozzle"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "60"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed_BRASS": [
+ "40"
+ ],
+ "fan_max_speed_HS": [
+ "40"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_HS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "pressure_advance": [
+ "0.032"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "12"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "textured_plate_temp": [
+ "100"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "100"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..4d8b89d7e1
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,336 @@
+{
+ "type": "filament",
+ "name": "Anycubic ASA @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_asa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFASA",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic ASA @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "ASA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "15"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "65"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_max_speed_BRASS": [
+ "60"
+ ],
+ "fan_max_speed_HS": [
+ "60"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "filament_adhesiveness_category": [
+ "200"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.06"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "110"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "110"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "250"
+ ],
+ "nozzle_temperature_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_HS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.04"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "6"
+ ],
+ "slow_down_layer_time_HS": [
+ "6"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "110"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "110"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..2889d2f2a2
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic ASA @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_asa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFASA",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic ASA @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "ASA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "20"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "65"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "100"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "35"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "35"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "35"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_max_speed_BRASS": [
+ "80"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "fan_min_speed_BRASS": [
+ "30"
+ ],
+ "fan_min_speed_HS": [
+ "30"
+ ],
+ "filament_adhesiveness_category": [
+ "200"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.04"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_HS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "100"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "100"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..647414f393
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic ASA @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_asa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFASA",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic ASA @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "ASA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "20"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "65"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "80"
+ ],
+ "fan_max_speed_HS": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "30"
+ ],
+ "fan_min_speed_HS": [
+ "30"
+ ],
+ "filament_adhesiveness_category": [
+ "200"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.06"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "60"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_HS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "6"
+ ],
+ "slow_down_layer_time_HS": [
+ "6"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "100"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "100"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..7a47ca5563
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,336 @@
+{
+ "type": "filament",
+ "name": "Anycubic PA @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPA",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PA @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "activate_air_filtration": [
+ "1"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "60"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "5"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "65"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "65"
+ ],
+ "fan_max_speed": [
+ "40"
+ ],
+ "fan_max_speed_BRASS": [
+ "90"
+ ],
+ "fan_max_speed_HS": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "fan_min_speed_BRASS": [
+ "40"
+ ],
+ "fan_min_speed_HS": [
+ "40"
+ ],
+ "filament_adhesiveness_category": [
+ "400"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.08"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "0%"
+ ],
+ "filament_retract_lift_above": [
+ "0"
+ ],
+ "filament_retract_lift_below": [
+ "349"
+ ],
+ "filament_retract_lift_enforce": [
+ "All Surfaces"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "1"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "1"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "1"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Auto Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_BRASS": [
+ "280"
+ ],
+ "nozzle_temperature_HS": [
+ "280"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "280"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "280"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.04"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "2"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "108"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "100"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "100"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..8e64b2cf56
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PA @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPA",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PA @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "40"
+ ],
+ "close_fan_the_first_x_layers": [
+ "2"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "65"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "65"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "90"
+ ],
+ "fan_max_speed_HS": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "40"
+ ],
+ "fan_min_speed_HS": [
+ "40"
+ ],
+ "filament_adhesiveness_category": [
+ "400"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.08"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_HS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "100"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "100"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..23b4d955c9
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PA @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PA @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPA",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PA @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "60"
+ ],
+ "close_fan_the_first_x_layers": [
+ "2"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "65"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "65"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "90"
+ ],
+ "fan_max_speed_HS": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "40"
+ ],
+ "fan_min_speed_HS": [
+ "40"
+ ],
+ "filament_adhesiveness_category": [
+ "400"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.08"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.4"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_HS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.026"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "108"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "100"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "100"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..4523f46c0d
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,336 @@
+{
+ "type": "filament",
+ "name": "Anycubic PA6-CF @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPA6-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PA6-CF @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PA6-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "65"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "5"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "5"
+ ],
+ "fan_max_speed": [
+ "40"
+ ],
+ "fan_max_speed_BRASS": [
+ "30"
+ ],
+ "fan_max_speed_HS": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "filament_adhesiveness_category": [
+ "400"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.1"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "110"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "110"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_HS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "260"
+ ],
+ "overhang_fan_speed": [
+ "40"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.025"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "6"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "2"
+ ],
+ "slow_down_layer_time_HS": [
+ "2"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "170"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "110"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "110"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..cadca22172
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PA6-CF @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPA6-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PA6-CF @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PA6-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "65"
+ ],
+ "close_fan_the_first_x_layers": [
+ "2"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "5"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "5"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "30"
+ ],
+ "fan_max_speed_HS": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "filament_adhesiveness_category": [
+ "400"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.1"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_HS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "260"
+ ],
+ "overhang_fan_speed": [
+ "60"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "2"
+ ],
+ "slow_down_layer_time_HS": [
+ "2"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "110"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "110"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..d14951edbd
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PA6-CF @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PA6-CF @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPA6-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PA6-CF @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PA6-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "65"
+ ],
+ "close_fan_the_first_x_layers": [
+ "2"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "5"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "5"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "30"
+ ],
+ "fan_max_speed_HS": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "filament_adhesiveness_category": [
+ "0"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.1"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_HS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "260"
+ ],
+ "overhang_fan_speed": [
+ "60"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.025"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "2"
+ ],
+ "slow_down_layer_time_HS": [
+ "2"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "110"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "110"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..d50ffe201b
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,336 @@
+{
+ "type": "filament",
+ "name": "Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPAHT-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PAHT-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "60"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "5"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "5"
+ ],
+ "fan_max_speed": [
+ "40"
+ ],
+ "fan_max_speed_BRASS": [
+ "30"
+ ],
+ "fan_max_speed_HS": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "filament_adhesiveness_category": [
+ "400"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "80"
+ ],
+ "filament_density": [
+ "1.08"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_BRASS": [
+ "280"
+ ],
+ "nozzle_temperature_HS": [
+ "280"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "280"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "280"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "260"
+ ],
+ "overhang_fan_speed": [
+ "30"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.025"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "30"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "6"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "2"
+ ],
+ "slow_down_layer_time_HS": [
+ "2"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "180"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "100"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "100"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..9db630112f
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPAHT-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PAHT-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "65"
+ ],
+ "close_fan_the_first_x_layers": [
+ "2"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "5"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "5"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "30"
+ ],
+ "fan_max_speed_HS": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "filament_adhesiveness_category": [
+ "500"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.08"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "280"
+ ],
+ "nozzle_temperature_HS": [
+ "280"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "280"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "280"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "260"
+ ],
+ "overhang_fan_speed": [
+ "60"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "2"
+ ],
+ "slow_down_layer_time_HS": [
+ "2"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "0"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "110"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "110"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..b585d9871d
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPAHT-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PAHT-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "65"
+ ],
+ "close_fan_the_first_x_layers": [
+ "2"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "5"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "5"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "30"
+ ],
+ "fan_max_speed_HS": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "filament_adhesiveness_category": [
+ "500"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.08"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.4"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "280"
+ ],
+ "nozzle_temperature_HS": [
+ "280"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "280"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "280"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "260"
+ ],
+ "overhang_fan_speed": [
+ "60"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.026"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "2"
+ ],
+ "slow_down_layer_time_HS": [
+ "2"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "180"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "110"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "110"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..2f0ca3c0a0
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,336 @@
+{
+ "type": "filament",
+ "name": "Anycubic PC @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_pc",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPC",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PC @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PC"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "60"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "fan_max_speed_BRASS": [
+ "60"
+ ],
+ "fan_max_speed_HS": [
+ "60"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "filament_adhesiveness_category": [
+ "500"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.04"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode "
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "110"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "110"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_HS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "60"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.04"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "2"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "2"
+ ],
+ "slow_down_layer_time_HS": [
+ "2"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "120"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "110"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "110"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..49e47b8ab5
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,354 @@
+{
+ "type": "filament",
+ "name": "Anycubic PC @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_pc",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPC",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PC @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PC"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "65"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "60"
+ ],
+ "fan_max_speed_HS": [
+ "60"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "fan_speed_after_x_layers": [
+ "0"
+ ],
+ "filament_adhesiveness_category": [
+ "500"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.04"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "110"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "110"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_HS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "2"
+ ],
+ "slow_down_layer_time_HS": [
+ "2"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "110"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "110"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..75de94fb97
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PC @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PC @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_pc",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPC",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PC @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PC"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "65"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "60"
+ ],
+ "fan_max_speed_HS": [
+ "60"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "filament_adhesiveness_category": [
+ "500"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.04"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "110"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "110"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_HS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.025"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "2"
+ ],
+ "slow_down_layer_time_HS": [
+ "2"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "120"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "110"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "110"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..08d06de570
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,336 @@
+{
+ "type": "filament",
+ "name": "Anycubic PC-CF @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_pc",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPC-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PC-CF @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PC-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.94"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "60"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "fan_max_speed_BRASS": [
+ "40"
+ ],
+ "fan_max_speed_HS": [
+ "40"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "filament_adhesiveness_category": [
+ "500"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.04"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode "
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "110"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "110"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_HS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "60"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.04"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "2"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "12"
+ ],
+ "slow_down_layer_time_HS": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "120"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "110"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "110"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..2dc25ce2ae
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,354 @@
+{
+ "type": "filament",
+ "name": "Anycubic PC-CF @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_pc",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPC-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PC-CF @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PC-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "65"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "40"
+ ],
+ "fan_max_speed_HS": [
+ "40"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "fan_speed_after_x_layers": [
+ "0"
+ ],
+ "filament_adhesiveness_category": [
+ "500"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.04"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "110"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "110"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "60"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_HS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "60"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "12"
+ ],
+ "slow_down_layer_time_HS": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "110"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "110"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..77b5eb895d
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PC-CF @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PC-CF @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_pc",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPC-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PC-CF @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PC-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "65"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "40"
+ ],
+ "fan_max_speed_HS": [
+ "40"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "filament_adhesiveness_category": [
+ "500"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.08"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "110"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "110"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_HS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.025"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "12"
+ ],
+ "slow_down_layer_time_HS": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "120"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "110"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "110"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..4da8298e69
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,336 @@
+{
+ "type": "filament",
+ "name": "Anycubic PC-GF @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_pc",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPC-GF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PC-GF @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PC-GF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.94"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "60"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "fan_max_speed_BRASS": [
+ "40"
+ ],
+ "fan_max_speed_HS": [
+ "40"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "filament_adhesiveness_category": [
+ "500"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.04"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode "
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "110"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "110"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_HS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "60"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.04"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "2"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "12"
+ ],
+ "slow_down_layer_time_HS": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "120"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "110"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "110"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..1661144a3c
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,354 @@
+{
+ "type": "filament",
+ "name": "Anycubic PC-GF @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_pc",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPC-GF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PC-GF @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PC-GF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "65"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "40"
+ ],
+ "fan_max_speed_HS": [
+ "40"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "fan_speed_after_x_layers": [
+ "0"
+ ],
+ "filament_adhesiveness_category": [
+ "500"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.04"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "110"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "110"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "60"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_HS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "60"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "12"
+ ],
+ "slow_down_layer_time_HS": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "110"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "110"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..68e647f896
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PC-GF @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PC-GF @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_pc",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPC-GF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PC-GF @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PC-GF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "65"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "40"
+ ],
+ "fan_max_speed_HS": [
+ "40"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "filament_adhesiveness_category": [
+ "500"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.08"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "110"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "110"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_HS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "12"
+ ],
+ "slow_down_layer_time_HS": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "120"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "110"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "110"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..d1164f0c2e
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,288 @@
+{
+ "type": "filament",
+ "name": "Anycubic PEBA @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_tpu",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPEBA",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PEBA @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PEBA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "5"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "100"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "45"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "45"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "filament_cooling_final_speed": [
+ "3.4"
+ ],
+ "filament_cooling_initial_speed": [
+ "2.2"
+ ],
+ "filament_cooling_moves": [
+ "4"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.08"
+ ],
+ "filament_deretraction_speed": [
+ "8"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "28"
+ ],
+ "filament_loading_speed_start": [
+ "3"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "10"
+ ],
+ "filament_multitool_ramming_volume": [
+ "10"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "90"
+ ],
+ "filament_unloading_speed_start": [
+ "100"
+ ],
+ "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"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.04"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..c381575ae8
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PEBA @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_tpu",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPEBA",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PEBA @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PEBA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "5"
+ ],
+ "activate_air_filtration": [
+ "1"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "100"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "80"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "0"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.06"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.4"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "230"
+ ],
+ "nozzle_temperature_HS": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "30"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..5e54a05de5
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PEBA @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PEBA @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_tpu",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPEBA",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PEBA @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PEBA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "5"
+ ],
+ "activate_air_filtration": [
+ "1"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "100"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "0"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.06"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "230"
+ ],
+ "nozzle_temperature_HS": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.038"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "30"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..4adb240476
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,336 @@
+{
+ "type": "filament",
+ "name": "Anycubic PET-CF @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_pet",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPET-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PET-CF @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PET-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "60"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "30"
+ ],
+ "fan_max_speed_BRASS": [
+ "30"
+ ],
+ "fan_max_speed_HS": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "filament_adhesiveness_category": [
+ "500"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "280"
+ ],
+ "nozzle_temperature_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_HS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "280"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "260"
+ ],
+ "overhang_fan_speed": [
+ "40"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.025"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "6"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "6"
+ ],
+ "slow_down_layer_time_HS": [
+ "6"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "45"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "80"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "80"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..2d3fa28907
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PET-CF @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_pet",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPET-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PET-CF @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PET-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "30"
+ ],
+ "fan_max_speed_HS": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_HS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "260"
+ ],
+ "overhang_fan_speed": [
+ "40"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "6"
+ ],
+ "slow_down_layer_time_HS": [
+ "6"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "185"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "80"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "80"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..19720adb7f
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PET-CF @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PET-CF @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_pet",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPET-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PET-CF @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PET-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "1"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "60"
+ ],
+ "close_fan_the_first_x_layers": [
+ "2"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "30"
+ ],
+ "fan_max_speed_HS": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "10"
+ ],
+ "fan_min_speed_HS": [
+ "10"
+ ],
+ "filament_adhesiveness_category": [
+ "0"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_HS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "260"
+ ],
+ "overhang_fan_speed": [
+ "40"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.025"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "6"
+ ],
+ "slow_down_layer_time_HS": [
+ "6"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "80"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "80"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.25 nozzle.json
new file mode 100644
index 0000000000..fb41ccf99d
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.25 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PETG @Anycubic Kobra S1 Max 0.25 nozzle",
+ "inherits": "fdm_filament_pet",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPETG",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PETG @Anycubic Kobra S1 Max 0.25 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.25 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "1"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "70"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "70"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "90"
+ ],
+ "fan_max_speed_HS": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "40"
+ ],
+ "fan_min_speed_HS": [
+ "40"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "75"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "75"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "205"
+ ],
+ "nozzle_temperature_BRASS": [
+ "250"
+ ],
+ "nozzle_temperature_HS": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "215"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "250"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "230"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.035"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "12"
+ ],
+ "slow_down_layer_time_HS": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "75"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "75"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..85accba0dc
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,345 @@
+{
+ "type": "filament",
+ "name": "Anycubic PETG @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_pet",
+ "from": "system",
+ "setting_id": "Anycubic PETG @Anycubic Kobra S1 Max 0.4 nozzle",
+ "filament_id": "GFPETG",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PETG @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "activate_air_filtration": [
+ "1"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "50"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "cool_plate_temp": [
+ "70"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "70"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "30"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "90"
+ ],
+ "fan_max_speed_BRASS": [
+ "85"
+ ],
+ "fan_max_speed_HS": [
+ "85"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "fan_min_speed_BRASS": [
+ "30"
+ ],
+ "fan_min_speed_HS": [
+ "30"
+ ],
+ "fan_p2_after_x_layers": [
+ "0"
+ ],
+ "fan_p2_before_x_layers": [
+ "0"
+ ],
+ "fan_p2_speed_before_x_layers": [
+ "50"
+ ],
+ "filament_adhesiveness_category": [
+ "300"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode "
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "4"
+ ],
+ "hot_plate_temp": [
+ "70"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "70"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "235"
+ ],
+ "nozzle_temperature_BRASS": [
+ "240"
+ ],
+ "nozzle_temperature_HS": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "245"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "250"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.04"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "12"
+ ],
+ "slow_down_layer_time_HS": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "70"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "70"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..1c97fa1a5d
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PETG @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_pet",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPETG",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PETG @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "cool_plate_temp": [
+ "70"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "70"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "90"
+ ],
+ "fan_max_speed_BRASS": [
+ "90"
+ ],
+ "fan_max_speed_HS": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "fan_min_speed_BRASS": [
+ "30"
+ ],
+ "fan_min_speed_HS": [
+ "30"
+ ],
+ "filament_adhesiveness_category": [
+ "300"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "75"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "75"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_BRASS": [
+ "240"
+ ],
+ "nozzle_temperature_HS": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "12"
+ ],
+ "slow_down_layer_time_HS": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "69"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "75"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "75"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..ca99792e83
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PETG @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_pet",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPETG",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PETG @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "70"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "70"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "90"
+ ],
+ "fan_max_speed_HS": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "30"
+ ],
+ "fan_min_speed_HS": [
+ "30"
+ ],
+ "filament_adhesiveness_category": [
+ "300"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "75"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "75"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "240"
+ ],
+ "nozzle_temperature_HS": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "12"
+ ],
+ "slow_down_layer_time_HS": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "75"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "75"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..1e3979c8ac
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,345 @@
+{
+ "type": "filament",
+ "name": "Anycubic PETG-CF @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_pet",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPETG-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PETG-CF @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "5"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "fan_max_speed_BRASS": [
+ "60"
+ ],
+ "fan_max_speed_HS": [
+ "60"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "fan_min_speed_BRASS": [
+ "30"
+ ],
+ "fan_min_speed_HS": [
+ "30"
+ ],
+ "fan_p2_after_x_layers": [
+ "2"
+ ],
+ "fan_p2_before_x_layers": [
+ "1"
+ ],
+ "fan_p2_speed_before_x_layers": [
+ "0"
+ ],
+ "filament_adhesiveness_category": [
+ "300"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "0%"
+ ],
+ "filament_retract_lift_above": [
+ "0"
+ ],
+ "filament_retract_lift_below": [
+ "349"
+ ],
+ "filament_retract_lift_enforce": [
+ "All Surfaces"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "1"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.4"
+ ],
+ "filament_retraction_minimum_travel": [
+ "1"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "1"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Auto Lift"
+ ],
+ "full_fan_speed_layer": [
+ "4"
+ ],
+ "hot_plate_temp": [
+ "75"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "75"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "250"
+ ],
+ "nozzle_temperature_BRASS": [
+ "250"
+ ],
+ "nozzle_temperature_HS": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "250"
+ ],
+ "nozzle_temperature_range_high": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.04"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "6"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "6"
+ ],
+ "slow_down_layer_time_HS": [
+ "6"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "75"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "75"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..6cfdb5855b
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PETG-CF @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_pet",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPETG-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PETG-CF @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "5"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "cool_plate_temp": [
+ "70"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "70"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "90"
+ ],
+ "fan_max_speed_BRASS": [
+ "60"
+ ],
+ "fan_max_speed_HS": [
+ "60"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "fan_min_speed_BRASS": [
+ "30"
+ ],
+ "fan_min_speed_HS": [
+ "30"
+ ],
+ "filament_adhesiveness_category": [
+ "300"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "75"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "75"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_BRASS": [
+ "250"
+ ],
+ "nozzle_temperature_HS": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "250"
+ ],
+ "nozzle_temperature_range_high": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "6"
+ ],
+ "slow_down_layer_time_HS": [
+ "6"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "69"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "75"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "75"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..f0631df81c
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PETG-CF @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PETG-CF @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_pet",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPETG-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PETG-CF @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "5"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "70"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "70"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "60"
+ ],
+ "fan_max_speed_HS": [
+ "60"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "30"
+ ],
+ "fan_min_speed_HS": [
+ "30"
+ ],
+ "filament_adhesiveness_category": [
+ "300"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "75"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "75"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "250"
+ ],
+ "nozzle_temperature_HS": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "250"
+ ],
+ "nozzle_temperature_range_high": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "6"
+ ],
+ "slow_down_layer_time_HS": [
+ "6"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "75"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "75"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.25 nozzle.json
new file mode 100644
index 0000000000..28e464da68
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.25 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA @Anycubic Kobra S1 Max 0.25 nozzle",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPLA",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA @Anycubic Kobra S1 Max 0.25 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.25 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "2"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "85"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "55"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "55"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "205"
+ ],
+ "nozzle_temperature_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_HS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "215"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.035"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "4"
+ ],
+ "slow_down_layer_time_HS": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..6990767f5a
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,339 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "Anycubic PLA @Anycubic Kobra S1 Max 0.4 nozzle",
+ "filament_id": "GFPLA",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "15"
+ ],
+ "activate_air_filtration": [
+ "1"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "85"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "30"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "fan_p2_speed_before_x_layers": [
+ "50"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_HS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.034"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..dbb1809d7c
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPLA",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "15"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_HS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.036"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..3e9e60661d
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPLA",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "85"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "0"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_HS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "12"
+ ],
+ "slow_down_layer_time_HS": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..6ff3699574
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,339 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA Glow @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "Anycubic Generic PLA",
+ "from": "system",
+ "setting_id": "Anycubic PLA Glow @Anycubic Kobra S1 Max 0.4 nozzle",
+ "filament_id": "GFPLA Glow",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA Glow @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "activate_air_filtration": [
+ "1"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "85"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "30"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "fan_p2_speed_before_x_layers": [
+ "50"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode "
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "190"
+ ],
+ "nozzle_temperature_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_HS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "45"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..e477e7888e
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA Glow @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "Anycubic Generic PLA",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPLA Glow",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA Glow @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "210"
+ ],
+ "nozzle_temperature_HS": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..91757fb235
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA Glow @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "Anycubic Generic PLA",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPLA Glow",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA Glow @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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": [
+ "60"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "210"
+ ],
+ "nozzle_temperature_HS": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "210"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "45"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..f2d09466b6
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,339 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.4 nozzle",
+ "filament_id": "GFPLA High Speed",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "18"
+ ],
+ "activate_air_filtration": [
+ "1"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "85"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "30"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "fan_p2_speed_before_x_layers": [
+ "50"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "0%"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "249"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "1"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "1"
+ ],
+ "filament_retraction_speed": [
+ "80"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "1"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Auto Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "55"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "55"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_HS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.025"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "4"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "4"
+ ],
+ "slow_down_layer_time_HS": [
+ "4"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "45"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..a30d3f8ae1
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPLA High Speed",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "18"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_HS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.025"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "4"
+ ],
+ "slow_down_layer_time_HS": [
+ "4"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "45"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..7812f63475
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPLA High Speed",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "18"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.4"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "80"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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": [
+ "60"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_HS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.022"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "4"
+ ],
+ "slow_down_layer_time_HS": [
+ "4"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "45"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..3aadc072d3
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,339 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA Matte @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "Anycubic PLA Matte @Anycubic Kobra S1 Max 0.4 nozzle",
+ "filament_id": "GFPLA Matte",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA Matte @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "activate_air_filtration": [
+ "1"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "85"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "30"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "fan_p2_speed_before_x_layers": [
+ "50"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.31"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode "
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "0%"
+ ],
+ "filament_retract_lift_above": [
+ "0.3"
+ ],
+ "filament_retract_lift_below": [
+ "249"
+ ],
+ "filament_retract_lift_enforce": [
+ "All Surfaces"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "1"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "1"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "1"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Slope Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "55"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "55"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "205"
+ ],
+ "nozzle_temperature_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_HS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "215"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.032"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "51"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..4fd40e7609
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA Matte @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPLA Matte",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA Matte @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "210"
+ ],
+ "nozzle_temperature_HS": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.036"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..5ae1f5d02f
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA Matte @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPLA Matte",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA Matte @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "0"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.31"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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": [
+ "60"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "210"
+ ],
+ "nozzle_temperature_HS": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "210"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "51"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..367fb7617f
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,339 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA Silk @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "Anycubic PLA Silk @Anycubic Kobra S1 Max 0.4 nozzle",
+ "filament_id": "GFPLA Silk",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA Silk @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "activate_air_filtration": [
+ "1"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "85"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "30"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "fan_p2_speed_before_x_layers": [
+ "50"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode "
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_BRASS": [
+ "230"
+ ],
+ "nozzle_temperature_HS": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.024"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "45"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..dbb243d79f
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA Silk @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPLA Silk",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA Silk @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "230"
+ ],
+ "nozzle_temperature_HS": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.038"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "10"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "45"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..746114e3e7
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA Silk @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPLA Silk",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA Silk @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "0"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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": [
+ "60"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_HS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Translucent @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Translucent @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..1daf646b57
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA Translucent @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,339 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA Translucent @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "Anycubic PLA Translucent @Anycubic Kobra S1 Max 0.4 nozzle",
+ "filament_id": "GFPLA Translucent",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA Translucent @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "14"
+ ],
+ "activate_air_filtration": [
+ "1"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "85"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "1"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "30"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "fan_p2_speed_before_x_layers": [
+ "50"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_HS": [
+ "205"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "210"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.034"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..2cfc195f60
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,339 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA+ @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPLA+",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA+ @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "15"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "85"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode "
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "0%"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "249"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "1"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "55"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "55"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "205"
+ ],
+ "nozzle_temperature_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_HS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "215"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.04"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "10"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "45"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ],
+ "fan_p2_speed_before_x_layers": [
+ "50"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..f2070e9fdc
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA+ @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPLA+",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA+ @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "15"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_HS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.036"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..38ee87e918
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA+ @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPLA+",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA+ @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "15"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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": [
+ "60"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_HS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "45"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..989e1a4253
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,336 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA-CF @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "Anycubic Generic PLA-CF",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPLA-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA-CF @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.94"
+ ],
+ "filament_max_volumetric_speed": [
+ "15"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "85"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "0%"
+ ],
+ "filament_retract_lift_above": [
+ "0"
+ ],
+ "filament_retract_lift_below": [
+ "349"
+ ],
+ "filament_retract_lift_enforce": [
+ "All Surfaces"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "1"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.4"
+ ],
+ "filament_retraction_minimum_travel": [
+ "1"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "1"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Auto Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "55"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "55"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "225"
+ ],
+ "nozzle_temperature_BRASS": [
+ "230"
+ ],
+ "nozzle_temperature_HS": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "235"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "4"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "45"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..c060a0d0ad
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA-CF @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "Anycubic Generic PLA-CF",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPLA-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA-CF @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "100"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "230"
+ ],
+ "nozzle_temperature_HS": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "210"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.025"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..e56a9ff87c
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PLA-CF @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PLA-CF @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "Anycubic Generic PLA-CF",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPLA-CF",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PLA-CF @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PLA-CF"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "0"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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": [
+ "60"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_HS": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "210"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.025"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..c60da7bfdb
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,336 @@
+{
+ "type": "filament",
+ "name": "Anycubic PVA @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_pva",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPVA",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PVA @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PVA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "85"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "45"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "45"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "700"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.37"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "1"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "240"
+ ],
+ "nozzle_temperature_HS": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "210"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.05"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "45"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..6b731819c9
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PVA @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_pva",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPVA",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PVA @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PVA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "100"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "80"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "0"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.06"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "240"
+ ],
+ "nozzle_temperature_HS": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "210"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.038"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "30"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..1e9ebf3ee5
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic PVA @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_pva",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFPVA",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic PVA @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PVA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "0"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "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"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "240"
+ ],
+ "nozzle_temperature_HS": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "210"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.038"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..57f35fc16c
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,336 @@
+{
+ "type": "filament",
+ "name": "Anycubic TPU 95A @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_tpu",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFTPU 95A",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic TPU 95A @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "TPU"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "3.2"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "85"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "600"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode "
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "0%"
+ ],
+ "filament_retract_lift_above": [
+ "0"
+ ],
+ "filament_retract_lift_below": [
+ "349"
+ ],
+ "filament_retract_lift_enforce": [
+ "All Surfaces"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "1"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "1"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "1"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Slope Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "35"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "35"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "205"
+ ],
+ "nozzle_temperature_BRASS": [
+ "205"
+ ],
+ "nozzle_temperature_HS": [
+ "205"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "215"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "215"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "215"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.02"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "51"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "35"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "35"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..3bcf2fac44
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic TPU 95A @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_tpu",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFTPU 95A",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic TPU 95A @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PEBA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "5"
+ ],
+ "activate_air_filtration": [
+ "1"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "100"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "80"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "0"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.06"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.4"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "210"
+ ],
+ "nozzle_temperature_HS": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "210"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "30"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..bc776e77e0
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic TPU 95A @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_tpu",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFTPU 95A",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic TPU 95A @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "TPU"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "3.2"
+ ],
+ "activate_air_filtration": [
+ "1"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "100"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "0"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "210"
+ ],
+ "nozzle_temperature_HS": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "210"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..45e4197630
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,336 @@
+{
+ "type": "filament",
+ "name": "Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_tpu",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFTPU for ACE",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "TPU for ACE"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "85"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "600"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode "
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "35"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "35"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "205"
+ ],
+ "nozzle_temperature_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_HS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "215"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.05"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "10"
+ ],
+ "slow_down_layer_time_HS": [
+ "10"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "30"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "35"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "35"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..aff088d1e6
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_filament_tpu",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFTPU for ACE",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PEBA"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "activate_air_filtration": [
+ "1"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "100"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "80"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "0"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.06"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.4"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "230"
+ ],
+ "nozzle_temperature_HS": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.03"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "9"
+ ],
+ "slow_down_layer_time_HS": [
+ "9"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "30"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..347a14e982
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,351 @@
+{
+ "type": "filament",
+ "name": "Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_filament_tpu",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "filament_id": "GFTPU for ACE",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "TPU"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "activate_air_filtration": [
+ "0"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "5"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "100"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "100"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_max_speed_BRASS": [
+ "100"
+ ],
+ "fan_max_speed_HS": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "fan_min_speed_BRASS": [
+ "100"
+ ],
+ "fan_min_speed_HS": [
+ "100"
+ ],
+ "filament_adhesiveness_category": [
+ "0"
+ ],
+ "filament_change_length": [
+ "10"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode\n"
+ ],
+ "filament_flush_temp": [
+ "nil"
+ ],
+ "filament_flush_volumetric_speed": [
+ "nil"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_prime_volume": [
+ "45"
+ ],
+ "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_ramming_volumetric_speed": [
+ "-1"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_BRASS": [
+ "210"
+ ],
+ "nozzle_temperature_HS": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "210"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.038"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "8"
+ ],
+ "slow_down_layer_time_HS": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ]
+}
diff --git a/resources/profiles/Anycubic/filament/Generic PETG @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Generic PETG @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..5bd4a26700
--- /dev/null
+++ b/resources/profiles/Anycubic/filament/Generic PETG @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,345 @@
+{
+ "type": "filament",
+ "name": "Generic PETG @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_filament_pet",
+ "from": "system",
+ "setting_id": "Generic PETG @Anycubic Kobra S1 Max 0.4 nozzle",
+ "filament_id": "GFPETG",
+ "instantiation": "true",
+ "filament_settings_id": [
+ "Generic PETG @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_vendor": [
+ "Anycubic"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "filament_flow_ratio": [
+ "1.05"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "activate_air_filtration": [
+ "1"
+ ],
+ "activate_chamber_temp_control": [
+ "0"
+ ],
+ "adaptive_pressure_advance": [
+ "0"
+ ],
+ "adaptive_pressure_advance_bridges": [
+ "0"
+ ],
+ "adaptive_pressure_advance_model": [
+ "0,0,0\n0,0,0"
+ ],
+ "adaptive_pressure_advance_overhangs": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "50"
+ ],
+ "chamber_temperature": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "compatible_printers_condition": "",
+ "compatible_prints": [],
+ "compatible_prints_condition": "",
+ "complete_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "cool_plate_temp": [
+ "70"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "70"
+ ],
+ "default_filament_colour": [
+ ""
+ ],
+ "dont_slow_down_outer_wall": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "30"
+ ],
+ "enable_overhang_bridge_fan": [
+ "1"
+ ],
+ "enable_pressure_advance": [
+ "1"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_cooling_layer_time_BRASS": [
+ "30"
+ ],
+ "fan_cooling_layer_time_HS": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "90"
+ ],
+ "fan_max_speed_BRASS": [
+ "85"
+ ],
+ "fan_max_speed_HS": [
+ "85"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "fan_min_speed_BRASS": [
+ "30"
+ ],
+ "fan_min_speed_HS": [
+ "30"
+ ],
+ "fan_p2_after_x_layers": [
+ "0"
+ ],
+ "fan_p2_before_x_layers": [
+ "0"
+ ],
+ "fan_p2_speed_before_x_layers": [
+ "50"
+ ],
+ "filament_adhesiveness_category": [
+ "300"
+ ],
+ "filament_cooling_final_speed": [
+ "0"
+ ],
+ "filament_cooling_initial_speed": [
+ "0"
+ ],
+ "filament_cooling_moves": [
+ "0"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode "
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_loading_speed": [
+ "0"
+ ],
+ "filament_loading_speed_start": [
+ "0"
+ ],
+ "filament_long_retractions_when_cut": [
+ "nil"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_multitool_ramming": [
+ "0"
+ ],
+ "filament_multitool_ramming_flow": [
+ "0"
+ ],
+ "filament_multitool_ramming_volume": [
+ "0"
+ ],
+ "filament_notes": [
+ ""
+ ],
+ "filament_ramming_parameters": [
+ "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
+ ],
+ "filament_retract_before_wipe": [
+ "nil"
+ ],
+ "filament_retract_lift_above": [
+ "nil"
+ ],
+ "filament_retract_lift_below": [
+ "nil"
+ ],
+ "filament_retract_lift_enforce": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_distances_when_cut": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_shrink": [
+ "100%"
+ ],
+ "filament_shrinkage_compensation_z": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_stamping_distance": [
+ "0"
+ ],
+ "filament_stamping_loading_speed": [
+ "0"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ],
+ "filament_toolchange_delay": [
+ "0"
+ ],
+ "filament_unloading_speed": [
+ "0"
+ ],
+ "filament_unloading_speed_start": [
+ "0"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "4"
+ ],
+ "hot_plate_temp": [
+ "70"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "70"
+ ],
+ "idle_temperature": [
+ "0"
+ ],
+ "internal_bridge_fan_speed": [
+ "-1"
+ ],
+ "nozzle_temperature": [
+ "235"
+ ],
+ "nozzle_temperature_BRASS": [
+ "240"
+ ],
+ "nozzle_temperature_HS": [
+ "255"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "245"
+ ],
+ "nozzle_temperature_initial_layer_BRASS": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer_HS": [
+ "255"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "pellet_flow_coefficient": [
+ "0.4157"
+ ],
+ "pressure_advance": [
+ "0.04"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "3"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_layer_time_BRASS": [
+ "12"
+ ],
+ "slow_down_layer_time_HS": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "supertack_plate_temp": [
+ "35"
+ ],
+ "supertack_plate_temp_initial_layer": [
+ "35"
+ ],
+ "support_material_interface_fan_speed": [
+ "-1"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "textured_cool_plate_temp": [
+ "40"
+ ],
+ "textured_cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "textured_plate_temp": [
+ "70"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "70"
+ ]
+}
diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.25 nozzle.json
new file mode 100644
index 0000000000..fcfb8a7f14
--- /dev/null
+++ b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.25 nozzle.json
@@ -0,0 +1,252 @@
+{
+ "type": "machine",
+ "name": "Anycubic Kobra S1 Max 0.25 nozzle",
+ "inherits": "fdm_machine_common",
+ "from": "system",
+ "setting_id": "Anycubic Kobra S1 Max 0.25 nozzle",
+ "instantiation": "true",
+ "printer_technology": "FFF",
+ "printer_settings_id": "Anycubic Kobra S1 Max 0.25 nozzle",
+ "printer_model": "Anycubic Kobra S1 Max",
+ "printer_variant": "0.25",
+ "nozzle_diameter": [
+ "0.25"
+ ],
+ "default_print_profile": "0.08mm Standard @Anycubic Kobra S1 Max 0.25 nozzle",
+ "default_filament_profile": [
+ "Anycubic PLA @Anycubic Kobra S1 Max 0.25 nozzle"
+ ],
+ "disable_m73": "0",
+ "gcode_flavor": "klipper",
+ "printable_area": [
+ "0x0",
+ "350x0",
+ "350x350",
+ "0x350"
+ ],
+ "printable_height": "350",
+ "thumbnails": "230x110/PNG",
+ "thumbnails_format": "PNG",
+ "thumbnails_internal": "512x512/PNG/top",
+ "thumbnails_internal_switch": "1",
+ "adaptive_bed_mesh_margin": "0",
+ "auxiliary_fan": "1",
+ "bbl_use_printhost": "0",
+ "bed_custom_model": "",
+ "bed_custom_texture": "",
+ "bed_exclude_area": [],
+ "bed_mesh_max": "0,0",
+ "bed_mesh_min": "0,0",
+ "bed_mesh_probe_distance": "0,0",
+ "before_layer_change_gcode": "{if layer_num==0} ; PURGE LINE\nM204 P500\nSET_VELOCITY_LIMIT SQUARE_CORNER_VELOCITY=9\nG1 Z0.75 F900 ; for object exclusion\nG1 X135 Y352 F18000\nG1 Z.25 F900\nG1 E0.8 F2400\nG1 E0.6 F2400\nG1 F3000\nG1 X205 Y352 E3.72454\nG1 X205 Y352.45 E.0252\nG1 X135 Y352.45 E3.72454\nG1 X135 Y352.02 E.02305\nG1 Z0.5 F600\n{endif}\n",
+ "best_object_pos": "0.5,0.5",
+ "change_extrusion_role_gcode": "",
+ "change_filament_gcode": "; FLUSH_START\n;@2026-04-03 S1M\n;;; M400 P0\n;_GP_INLINE_ESTIMATED_PRINTING_TIME_PLACEHOLDER\n{local flush_length_= flush_length}\n{local loops_=max(1,int((flush_length_+89.9) / 90))}\n{local extrude_length_=flush_length_ / loops_}\n{local time_flush_=int(extrude_length_ * loops_ * 300)}\n;;; M400 P{time_flush_} ; ={flush_length_}*300\n\n; retract and z hop\n; G1 E-0.4 F2400\n; G1 Z{toolchange_z+0.6} F600\n\n; MOVE_TO_IMPACT_POSITION\n;;; G1 X352 Y23 F18000\n;;; G1 X356.5 F6000\n;;; M400\n\n; cut filament\n;;; G1 Y13\n;;; G1 Y23 F600\n;;; M400 P76250\n;;; M400 P35780\n\nT[next_extruder] ; change extruder\n\n; MOVE_TO_PRE_SWEEP_POSITION_SAFE\n;;; G1 Y0 F12000\n;;; G1 X0 F12000\n\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; EXIT_THROW_POSITION\n;;; G1 Z{toolchange_z+2.1} F6000\n;;; G1 X105 F12000\n;;; G1 Y352 F12000\n;;; G1 Z{toolchange_z} F600\n;;; G1 E0.4 F2400\n;;; M400\n;_GP_INLINE_ESTIMATED_PRINTING_TIME_PLACEHOLDER\n; FLUSH_END\n",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "deretraction_speed": [
+ "0"
+ ],
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "enable_long_retraction_when_cut": "0",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "340",
+ "extruder_clearance_height_to_rod": "30",
+ "extruder_clearance_radius": "55",
+ "extruder_colour": [
+ "FF4D4F"
+ ],
+ "extruder_offset": [
+ "0x0"
+ ],
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "head_wrap_detect_zone": [],
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": "; AFTER_LAYER_CHANGE [layer_num] @ [layer_z]mm",
+ "long_retractions_when_cut": [
+ "0"
+ ],
+ "machine_end_gcode": "M400\nM140 S0 ; turn off heatbed\nM104 S0 ; turn off temperature\nM141 S0 ; turn off box temperature\nM106 P1 S0 ; turn off fan\nM106 P2 S0\nM106 P3 S0\nM84; disable motors \n; disable stepper motors",
+ "machine_load_filament_time": "0",
+ "machine_max_acceleration_e": [
+ "5000",
+ "5000",
+ "5000"
+ ],
+ "machine_max_acceleration_extruding": [
+ "20000",
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_retracting": [
+ "5000",
+ "5000",
+ "5000"
+ ],
+ "machine_max_acceleration_travel": [
+ "20000",
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_x": [
+ "20000",
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_y": [
+ "20000",
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_z": [
+ "400",
+ "400",
+ "400"
+ ],
+ "machine_max_jerk_e": [
+ "1",
+ "1",
+ "1"
+ ],
+ "machine_max_jerk_x": [
+ "15",
+ "15",
+ "15"
+ ],
+ "machine_max_jerk_y": [
+ "15",
+ "15",
+ "15"
+ ],
+ "machine_max_jerk_z": [
+ "1",
+ "1",
+ "1"
+ ],
+ "machine_max_speed_e": [
+ "80",
+ "40",
+ "104"
+ ],
+ "machine_max_speed_x": [
+ "600",
+ "300",
+ "780"
+ ],
+ "machine_max_speed_y": [
+ "600",
+ "300",
+ "780"
+ ],
+ "machine_max_speed_z": [
+ "10",
+ "5",
+ "13"
+ ],
+ "machine_min_extruding_rate": [
+ "0",
+ "0",
+ "0"
+ ],
+ "machine_min_travel_rate": [
+ "0",
+ "0",
+ "0"
+ ],
+ "machine_pause_gcode": "M600",
+ "machine_start_gcode": "G9111 bedTemp=[first_layer_bed_temperature] extruderTemp=[first_layer_temperature[initial_tool]]\nM117\n; print_bed_min = {print_bed_min[0]},{print_bed_min[1]}\n; print_bed_max = {print_bed_max[0]},{print_bed_max[1]}\n; print_bed_size = {print_bed_size[0]},{print_bed_size[1]}\n; first_layer_print_min = {first_layer_print_min[0]},{first_layer_print_min[1]}\n; first_layer_print_max = {first_layer_print_max[0]},{first_layer_print_max[1]}\n; first_layer_print_size = {first_layer_print_size[0]},{first_layer_print_size[1]}\n; first_layer_fan_speed = 2, {int(additional_cooling_fan_speed[initial_tool] * 255 / 100)}",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "max_layer_height": [
+ "0.18"
+ ],
+ "min_layer_height": [
+ "0.05"
+ ],
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_type": "brass",
+ "nozzle_volume": "107",
+ "parking_pos_retraction": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "printer_flush_multiplier": "1",
+ "printer_notes": "",
+ "printer_structure": "corexy",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "printing_by_object_gcode": "",
+ "purge_in_prime_tower": "0",
+ "retract_before_wipe": [
+ "0%"
+ ],
+ "retract_length_toolchange": [
+ "0"
+ ],
+ "retract_lift_above": [
+ "0"
+ ],
+ "retract_lift_below": [
+ "348"
+ ],
+ "retract_lift_enforce": [
+ "All Surfaces"
+ ],
+ "retract_on_top_layer": [
+ "1"
+ ],
+ "retract_restart_extra": [
+ "0"
+ ],
+ "retract_restart_extra_toolchange": [
+ "0"
+ ],
+ "retract_when_changing_layer": [
+ "1"
+ ],
+ "retraction_distances_when_cut": [
+ "0"
+ ],
+ "retraction_length": [
+ "0.4"
+ ],
+ "retraction_minimum_travel": [
+ "1"
+ ],
+ "retraction_speed": [
+ "30"
+ ],
+ "scan_first_layer": "0",
+ "silent_mode": "1",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "1",
+ "support_chamber_temp_control": "1",
+ "support_multi_bed_types": "1",
+ "template_custom_gcode": "",
+ "time_cost": "0",
+ "time_lapse_gcode": "",
+ "travel_slope": [
+ "3"
+ ],
+ "upward_compatible_machine": [],
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "wipe": [
+ "1"
+ ],
+ "wipe_distance": [
+ "2"
+ ],
+ "z_hop": [
+ "0.4"
+ ],
+ "z_hop_types": [
+ "Slope Lift"
+ ],
+ "z_offset": "0"
+}
diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..4c647815c5
--- /dev/null
+++ b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,252 @@
+{
+ "type": "machine",
+ "name": "Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_machine_common",
+ "from": "system",
+ "setting_id": "Anycubic Kobra S1 Max 0.4 nozzle",
+ "instantiation": "true",
+ "printer_technology": "FFF",
+ "printer_settings_id": "Anycubic Kobra S1 Max 0.4 nozzle",
+ "printer_model": "Anycubic Kobra S1 Max",
+ "printer_variant": "0.4",
+ "nozzle_diameter": [
+ "0.4"
+ ],
+ "default_print_profile": "0.20mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "default_filament_profile": [
+ "Anycubic PLA @Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "disable_m73": "0",
+ "gcode_flavor": "klipper",
+ "printable_area": [
+ "0x0",
+ "350x0",
+ "350x350",
+ "0x350"
+ ],
+ "printable_height": "350",
+ "thumbnails": "230x110/PNG",
+ "thumbnails_format": "PNG",
+ "thumbnails_internal": "512x512/PNG/top",
+ "thumbnails_internal_switch": "1",
+ "adaptive_bed_mesh_margin": "0",
+ "auxiliary_fan": "1",
+ "bbl_use_printhost": "0",
+ "bed_custom_model": "",
+ "bed_custom_texture": "",
+ "bed_exclude_area": [],
+ "bed_mesh_max": "0,0",
+ "bed_mesh_min": "0,0",
+ "bed_mesh_probe_distance": "0,0",
+ "before_layer_change_gcode": "{if layer_num==0} ; PURGE LINE\nM204 P500\nSET_VELOCITY_LIMIT SQUARE_CORNER_VELOCITY=9\nG1 Z0.75 F900 ; for object exclusion\nG1 X135 Y352 F18000\nG1 Z.25 F900\nG1 E0.8 F2400\nG1 E0.6 F2400\nG1 F3000\nG1 X205 Y352 E3.72454\nG1 X205 Y352.45 E.0252\nG1 X135 Y352.45 E3.72454\nG1 X135 Y352.02 E.02305\nG1 Z0.5 F600\n{endif}\n",
+ "best_object_pos": "0.5,0.5",
+ "change_extrusion_role_gcode": "",
+ "change_filament_gcode": "; FLUSH_START\n;@2026-04-03 S1M\n;;; M400 P0\n;_GP_INLINE_ESTIMATED_PRINTING_TIME_PLACEHOLDER\n{local flush_length_= flush_length}\n{local loops_=max(1,int((flush_length_+89.9) / 90))}\n{local extrude_length_=flush_length_ / loops_}\n{local time_flush_=int(extrude_length_ * loops_ * 300)}\n;;; M400 P{time_flush_} ; ={flush_length_}*300\n\n; retract and z hop\n; G1 E-0.4 F2400\n; G1 Z{toolchange_z+0.6} F600\n\n; MOVE_TO_IMPACT_POSITION\n;;; G1 X352 Y23 F18000\n;;; G1 X356.5 F6000\n;;; M400\n\n; cut filament\n;;; G1 Y13\n;;; G1 Y23 F600\n;;; M400 P76250\n;;; M400 P35780\n\nT[next_extruder] ; change extruder\n\n; MOVE_TO_PRE_SWEEP_POSITION_SAFE\n;;; G1 Y0 F12000\n;;; G1 X0 F12000\n\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; EXIT_THROW_POSITION\n;;; G1 Z{toolchange_z+2.1} F6000\n;;; G1 X105 F12000\n;;; G1 Y352 F12000\n;;; G1 Z{toolchange_z} F600\n;;; G1 E0.4 F2400\n;;; M400\n;_GP_INLINE_ESTIMATED_PRINTING_TIME_PLACEHOLDER\n; FLUSH_END\n",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "deretraction_speed": [
+ "0"
+ ],
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "enable_long_retraction_when_cut": "0",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "340",
+ "extruder_clearance_height_to_rod": "30",
+ "extruder_clearance_radius": "55",
+ "extruder_colour": [
+ "FF4D4F"
+ ],
+ "extruder_offset": [
+ "0x0"
+ ],
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "head_wrap_detect_zone": [],
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": "; AFTER_LAYER_CHANGE [layer_num] @ [layer_z]mm",
+ "long_retractions_when_cut": [
+ "0"
+ ],
+ "machine_end_gcode": "M400\nM140 S0 ; turn off heatbed\nM104 S0 ; turn off temperature\nM141 S0 ; turn off box temperature\nM106 P1 S0 ; turn off fan\nM106 P2 S0\nM106 P3 S0\nM84; disable motors \n; disable stepper motors",
+ "machine_load_filament_time": "0",
+ "machine_max_acceleration_e": [
+ "5000",
+ "5000",
+ "5000"
+ ],
+ "machine_max_acceleration_extruding": [
+ "20000",
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_retracting": [
+ "5000",
+ "5000",
+ "5000"
+ ],
+ "machine_max_acceleration_travel": [
+ "20000",
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_x": [
+ "20000",
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_y": [
+ "20000",
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_z": [
+ "400",
+ "400",
+ "400"
+ ],
+ "machine_max_jerk_e": [
+ "1",
+ "1",
+ "1"
+ ],
+ "machine_max_jerk_x": [
+ "15",
+ "15",
+ "15"
+ ],
+ "machine_max_jerk_y": [
+ "15",
+ "15",
+ "15"
+ ],
+ "machine_max_jerk_z": [
+ "1",
+ "1",
+ "1"
+ ],
+ "machine_max_speed_e": [
+ "80",
+ "40",
+ "104"
+ ],
+ "machine_max_speed_x": [
+ "600",
+ "300",
+ "780"
+ ],
+ "machine_max_speed_y": [
+ "600",
+ "300",
+ "780"
+ ],
+ "machine_max_speed_z": [
+ "10",
+ "5",
+ "13"
+ ],
+ "machine_min_extruding_rate": [
+ "0",
+ "0",
+ "0"
+ ],
+ "machine_min_travel_rate": [
+ "0",
+ "0",
+ "0"
+ ],
+ "machine_pause_gcode": "M600",
+ "machine_start_gcode": "G9111 bedTemp=[first_layer_bed_temperature] extruderTemp=[first_layer_temperature[initial_tool]]\nM117\n; print_bed_min = {print_bed_min[0]},{print_bed_min[1]}\n; print_bed_max = {print_bed_max[0]},{print_bed_max[1]}\n; print_bed_size = {print_bed_size[0]},{print_bed_size[1]}\n; first_layer_print_min = {first_layer_print_min[0]},{first_layer_print_min[1]}\n; first_layer_print_max = {first_layer_print_max[0]},{first_layer_print_max[1]}\n; first_layer_print_size = {first_layer_print_size[0]},{first_layer_print_size[1]}\n; first_layer_fan_speed = 2, {int(additional_cooling_fan_speed[initial_tool] * 255 / 100)}",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "max_layer_height": [
+ "0.28"
+ ],
+ "min_layer_height": [
+ "0.08"
+ ],
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_type": "hardened_steel",
+ "nozzle_volume": "107",
+ "parking_pos_retraction": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "printer_flush_multiplier": "1",
+ "printer_notes": "",
+ "printer_structure": "corexy",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "printing_by_object_gcode": "",
+ "purge_in_prime_tower": "0",
+ "retract_before_wipe": [
+ "0%"
+ ],
+ "retract_length_toolchange": [
+ "0"
+ ],
+ "retract_lift_above": [
+ "0"
+ ],
+ "retract_lift_below": [
+ "348"
+ ],
+ "retract_lift_enforce": [
+ "All Surfaces"
+ ],
+ "retract_on_top_layer": [
+ "1"
+ ],
+ "retract_restart_extra": [
+ "0"
+ ],
+ "retract_restart_extra_toolchange": [
+ "0"
+ ],
+ "retract_when_changing_layer": [
+ "1"
+ ],
+ "retraction_distances_when_cut": [
+ "0"
+ ],
+ "retraction_length": [
+ "0.4"
+ ],
+ "retraction_minimum_travel": [
+ "1"
+ ],
+ "retraction_speed": [
+ "30"
+ ],
+ "scan_first_layer": "0",
+ "silent_mode": "1",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "1",
+ "support_chamber_temp_control": "1",
+ "support_multi_bed_types": "1",
+ "template_custom_gcode": "",
+ "time_cost": "0",
+ "time_lapse_gcode": "",
+ "travel_slope": [
+ "3"
+ ],
+ "upward_compatible_machine": [],
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "wipe": [
+ "1"
+ ],
+ "wipe_distance": [
+ "2"
+ ],
+ "z_hop": [
+ "0.4"
+ ],
+ "z_hop_types": [
+ "Slope Lift"
+ ],
+ "z_offset": "0"
+}
diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..63a916be73
--- /dev/null
+++ b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,252 @@
+{
+ "type": "machine",
+ "name": "Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_machine_common",
+ "from": "system",
+ "setting_id": "Anycubic Kobra S1 Max 0.6 nozzle",
+ "instantiation": "true",
+ "printer_technology": "FFF",
+ "printer_settings_id": "Anycubic Kobra S1 Max 0.6 nozzle",
+ "printer_model": "Anycubic Kobra S1 Max",
+ "printer_variant": "0.6",
+ "nozzle_diameter": [
+ "0.6"
+ ],
+ "default_print_profile": "0.30mm Standard @Anycubic Kobra S1 Max 0.6 nozzle",
+ "default_filament_profile": [
+ "Anycubic PLA @Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "disable_m73": "0",
+ "gcode_flavor": "klipper",
+ "printable_area": [
+ "0x0",
+ "350x0",
+ "350x350",
+ "0x350"
+ ],
+ "printable_height": "350",
+ "thumbnails": "230x110/PNG",
+ "thumbnails_format": "PNG",
+ "thumbnails_internal": "512x512/PNG/top",
+ "thumbnails_internal_switch": "1",
+ "adaptive_bed_mesh_margin": "0",
+ "auxiliary_fan": "1",
+ "bbl_use_printhost": "0",
+ "bed_custom_model": "",
+ "bed_custom_texture": "",
+ "bed_exclude_area": [],
+ "bed_mesh_max": "0,0",
+ "bed_mesh_min": "0,0",
+ "bed_mesh_probe_distance": "0,0",
+ "before_layer_change_gcode": "{if layer_num==0} ; PURGE LINE\nM204 P500\nSET_VELOCITY_LIMIT SQUARE_CORNER_VELOCITY=9\nG1 Z0.75 F900 ; for object exclusion\nG1 X135 Y352 F18000\nG1 Z.25 F900\nG1 E0.8 F2400\nG1 E0.6 F2400\nG1 F3000\nG1 X205 Y352 E3.72454\nG1 X205 Y352.45 E.0252\nG1 X135 Y352.45 E3.72454\nG1 X135 Y352.02 E.02305\nG1 Z0.5 F600\n{endif}\n",
+ "best_object_pos": "0.5,0.5",
+ "change_extrusion_role_gcode": "",
+ "change_filament_gcode": "; FLUSH_START\n;@2026-04-03 S1M\n;;; M400 P0\n;_GP_INLINE_ESTIMATED_PRINTING_TIME_PLACEHOLDER\n{local flush_length_= flush_length}\n{local loops_=max(1,int((flush_length_+89.9) / 90))}\n{local extrude_length_=flush_length_ / loops_}\n{local time_flush_=int(extrude_length_ * loops_ * 300)}\n;;; M400 P{time_flush_} ; ={flush_length_}*300\n\n; retract and z hop\n; G1 E-0.4 F2400\n; G1 Z{toolchange_z+0.6} F600\n\n; MOVE_TO_IMPACT_POSITION\n;;; G1 X352 Y23 F18000\n;;; G1 X356.5 F6000\n;;; M400\n\n; cut filament\n;;; G1 Y13\n;;; G1 Y23 F600\n;;; M400 P76250\n;;; M400 P35780\n\nT[next_extruder] ; change extruder\n\n; MOVE_TO_PRE_SWEEP_POSITION_SAFE\n;;; G1 Y0 F12000\n;;; G1 X0 F12000\n\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; EXIT_THROW_POSITION\n;;; G1 Z{toolchange_z+2.1} F6000\n;;; G1 X105 F12000\n;;; G1 Y352 F12000\n;;; G1 Z{toolchange_z} F600\n;;; G1 E0.4 F2400\n;;; M400\n;_GP_INLINE_ESTIMATED_PRINTING_TIME_PLACEHOLDER\n; FLUSH_END\n",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "deretraction_speed": [
+ "0"
+ ],
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "enable_long_retraction_when_cut": "0",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "340",
+ "extruder_clearance_height_to_rod": "30",
+ "extruder_clearance_radius": "55",
+ "extruder_colour": [
+ "FF4D4F"
+ ],
+ "extruder_offset": [
+ "0x0"
+ ],
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "head_wrap_detect_zone": [],
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": "; AFTER_LAYER_CHANGE [layer_num] @ [layer_z]mm",
+ "long_retractions_when_cut": [
+ "0"
+ ],
+ "machine_end_gcode": "M400\nM140 S0 ; turn off heatbed\nM104 S0 ; turn off temperature\nM141 S0 ; turn off box temperature\nM106 P1 S0 ; turn off fan\nM106 P2 S0\nM106 P3 S0\nM84; disable motors \n; disable stepper motors",
+ "machine_load_filament_time": "0",
+ "machine_max_acceleration_e": [
+ "5000",
+ "5000",
+ "5000"
+ ],
+ "machine_max_acceleration_extruding": [
+ "20000",
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_retracting": [
+ "5000",
+ "5000",
+ "5000"
+ ],
+ "machine_max_acceleration_travel": [
+ "20000",
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_x": [
+ "20000",
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_y": [
+ "20000",
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_z": [
+ "400",
+ "400",
+ "400"
+ ],
+ "machine_max_jerk_e": [
+ "1",
+ "1",
+ "1"
+ ],
+ "machine_max_jerk_x": [
+ "15",
+ "15",
+ "15"
+ ],
+ "machine_max_jerk_y": [
+ "15",
+ "15",
+ "15"
+ ],
+ "machine_max_jerk_z": [
+ "1",
+ "1",
+ "1"
+ ],
+ "machine_max_speed_e": [
+ "80",
+ "40",
+ "104"
+ ],
+ "machine_max_speed_x": [
+ "600",
+ "300",
+ "780"
+ ],
+ "machine_max_speed_y": [
+ "600",
+ "300",
+ "780"
+ ],
+ "machine_max_speed_z": [
+ "10",
+ "5",
+ "13"
+ ],
+ "machine_min_extruding_rate": [
+ "0",
+ "0",
+ "0"
+ ],
+ "machine_min_travel_rate": [
+ "0",
+ "0",
+ "0"
+ ],
+ "machine_pause_gcode": "M600",
+ "machine_start_gcode": "G9111 bedTemp=[first_layer_bed_temperature] extruderTemp=[first_layer_temperature[initial_tool]]\nM117\n; print_bed_min = {print_bed_min[0]},{print_bed_min[1]}\n; print_bed_max = {print_bed_max[0]},{print_bed_max[1]}\n; print_bed_size = {print_bed_size[0]},{print_bed_size[1]}\n; first_layer_print_min = {first_layer_print_min[0]},{first_layer_print_min[1]}\n; first_layer_print_max = {first_layer_print_max[0]},{first_layer_print_max[1]}\n; first_layer_print_size = {first_layer_print_size[0]},{first_layer_print_size[1]}\n; first_layer_fan_speed = 2, {int(additional_cooling_fan_speed[initial_tool] * 255 / 100)}",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "max_layer_height": [
+ "0.42"
+ ],
+ "min_layer_height": [
+ "0.12"
+ ],
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_type": "hardened_steel",
+ "nozzle_volume": "107",
+ "parking_pos_retraction": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "printer_flush_multiplier": "1",
+ "printer_notes": "",
+ "printer_structure": "corexy",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "printing_by_object_gcode": "",
+ "purge_in_prime_tower": "0",
+ "retract_before_wipe": [
+ "0%"
+ ],
+ "retract_length_toolchange": [
+ "0"
+ ],
+ "retract_lift_above": [
+ "0"
+ ],
+ "retract_lift_below": [
+ "348"
+ ],
+ "retract_lift_enforce": [
+ "All Surfaces"
+ ],
+ "retract_on_top_layer": [
+ "1"
+ ],
+ "retract_restart_extra": [
+ "0"
+ ],
+ "retract_restart_extra_toolchange": [
+ "0"
+ ],
+ "retract_when_changing_layer": [
+ "1"
+ ],
+ "retraction_distances_when_cut": [
+ "0"
+ ],
+ "retraction_length": [
+ "0.4"
+ ],
+ "retraction_minimum_travel": [
+ "1"
+ ],
+ "retraction_speed": [
+ "30"
+ ],
+ "scan_first_layer": "0",
+ "silent_mode": "1",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "1",
+ "support_chamber_temp_control": "1",
+ "support_multi_bed_types": "1",
+ "template_custom_gcode": "",
+ "time_cost": "0",
+ "time_lapse_gcode": "",
+ "travel_slope": [
+ "3"
+ ],
+ "upward_compatible_machine": [],
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "wipe": [
+ "1"
+ ],
+ "wipe_distance": [
+ "2"
+ ],
+ "z_hop": [
+ "0.4"
+ ],
+ "z_hop_types": [
+ "Slope Lift"
+ ],
+ "z_offset": "0"
+}
diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..fa706c6327
--- /dev/null
+++ b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,252 @@
+{
+ "type": "machine",
+ "name": "Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_machine_common",
+ "from": "system",
+ "setting_id": "Anycubic Kobra S1 Max 0.8 nozzle",
+ "instantiation": "true",
+ "printer_technology": "FFF",
+ "printer_settings_id": "Anycubic Kobra S1 Max 0.8 nozzle",
+ "printer_model": "Anycubic Kobra S1 Max",
+ "printer_variant": "0.8",
+ "nozzle_diameter": [
+ "0.8"
+ ],
+ "default_print_profile": "0.40mm Standard @Anycubic Kobra S1 Max 0.8 nozzle",
+ "default_filament_profile": [
+ "Anycubic PLA @Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "disable_m73": "0",
+ "gcode_flavor": "klipper",
+ "printable_area": [
+ "0x0",
+ "350x0",
+ "350x350",
+ "0x350"
+ ],
+ "printable_height": "350",
+ "thumbnails": "230x110/PNG",
+ "thumbnails_format": "PNG",
+ "thumbnails_internal": "512x512/PNG/top",
+ "thumbnails_internal_switch": "1",
+ "adaptive_bed_mesh_margin": "0",
+ "auxiliary_fan": "1",
+ "bbl_use_printhost": "0",
+ "bed_custom_model": "",
+ "bed_custom_texture": "",
+ "bed_exclude_area": [],
+ "bed_mesh_max": "0,0",
+ "bed_mesh_min": "0,0",
+ "bed_mesh_probe_distance": "0,0",
+ "before_layer_change_gcode": "{if layer_num==0} ; PURGE LINE\nM204 P500\nSET_VELOCITY_LIMIT SQUARE_CORNER_VELOCITY=9\nG1 Z0.75 F900 ; for object exclusion\nG1 X135 Y352 F18000\nG1 Z.25 F900\nG1 E0.8 F2400\nG1 E0.6 F2400\nG1 F3000\nG1 X205 Y352 E3.72454\nG1 X205 Y352.45 E.0252\nG1 X135 Y352.45 E3.72454\nG1 X135 Y352.02 E.02305\nG1 Z0.5 F600\n{endif}\n",
+ "best_object_pos": "0.5,0.5",
+ "change_extrusion_role_gcode": "",
+ "change_filament_gcode": "; FLUSH_START\n;@2026-04-03 S1M\n;;; M400 P0\n;_GP_INLINE_ESTIMATED_PRINTING_TIME_PLACEHOLDER\n{local flush_length_= flush_length}\n{local loops_=max(1,int((flush_length_+89.9) / 90))}\n{local extrude_length_=flush_length_ / loops_}\n{local time_flush_=int(extrude_length_ * loops_ * 300)}\n;;; M400 P{time_flush_} ; ={flush_length_}*300\n\n; retract and z hop\n; G1 E-0.4 F2400\n; G1 Z{toolchange_z+0.6} F600\n\n; MOVE_TO_IMPACT_POSITION\n;;; G1 X352 Y23 F18000\n;;; G1 X356.5 F6000\n;;; M400\n\n; cut filament\n;;; G1 Y13\n;;; G1 Y23 F600\n;;; M400 P76250\n;;; M400 P35780\n\nT[next_extruder] ; change extruder\n\n; MOVE_TO_PRE_SWEEP_POSITION_SAFE\n;;; G1 Y0 F12000\n;;; G1 X0 F12000\n\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; MOVE_TO_PRE_SWEEP_POSITION\n;;; G1 Y375 F12000\n;;; G1 X105 F12000\n;;; M400\n\n; MOVE_TO_SWEEP_POSITION\n;;; G1 X87 F6000\n;;; G1 Y375 F12000\n;;; M400\n\n; EXIT_THROW_POSITION\n;;; G1 Z{toolchange_z+2.1} F6000\n;;; G1 X105 F12000\n;;; G1 Y352 F12000\n;;; G1 Z{toolchange_z} F600\n;;; G1 E0.4 F2400\n;;; M400\n;_GP_INLINE_ESTIMATED_PRINTING_TIME_PLACEHOLDER\n; FLUSH_END\n",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "deretraction_speed": [
+ "0"
+ ],
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "enable_long_retraction_when_cut": "0",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "340",
+ "extruder_clearance_height_to_rod": "30",
+ "extruder_clearance_radius": "55",
+ "extruder_colour": [
+ "FF4D4F"
+ ],
+ "extruder_offset": [
+ "0x0"
+ ],
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "head_wrap_detect_zone": [],
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": "; AFTER_LAYER_CHANGE [layer_num] @ [layer_z]mm",
+ "long_retractions_when_cut": [
+ "0"
+ ],
+ "machine_end_gcode": "M400\nM140 S0 ; turn off heatbed\nM104 S0 ; turn off temperature\nM141 S0 ; turn off box temperature\nM106 P1 S0 ; turn off fan\nM106 P2 S0\nM106 P3 S0\nM84; disable motors \n; disable stepper motors",
+ "machine_load_filament_time": "0",
+ "machine_max_acceleration_e": [
+ "5000",
+ "5000",
+ "5000"
+ ],
+ "machine_max_acceleration_extruding": [
+ "20000",
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_retracting": [
+ "5000",
+ "5000",
+ "5000"
+ ],
+ "machine_max_acceleration_travel": [
+ "20000",
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_x": [
+ "20000",
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_y": [
+ "20000",
+ "20000",
+ "20000"
+ ],
+ "machine_max_acceleration_z": [
+ "400",
+ "400",
+ "400"
+ ],
+ "machine_max_jerk_e": [
+ "1",
+ "1",
+ "1"
+ ],
+ "machine_max_jerk_x": [
+ "15",
+ "15",
+ "15"
+ ],
+ "machine_max_jerk_y": [
+ "15",
+ "15",
+ "15"
+ ],
+ "machine_max_jerk_z": [
+ "1",
+ "1",
+ "1"
+ ],
+ "machine_max_speed_e": [
+ "80",
+ "40",
+ "104"
+ ],
+ "machine_max_speed_x": [
+ "600",
+ "300",
+ "780"
+ ],
+ "machine_max_speed_y": [
+ "600",
+ "300",
+ "780"
+ ],
+ "machine_max_speed_z": [
+ "10",
+ "5",
+ "13"
+ ],
+ "machine_min_extruding_rate": [
+ "0",
+ "0",
+ "0"
+ ],
+ "machine_min_travel_rate": [
+ "0",
+ "0",
+ "0"
+ ],
+ "machine_pause_gcode": "M600",
+ "machine_start_gcode": "G9111 bedTemp=[first_layer_bed_temperature] extruderTemp=[first_layer_temperature[initial_tool]]\nM117\n; print_bed_min = {print_bed_min[0]},{print_bed_min[1]}\n; print_bed_max = {print_bed_max[0]},{print_bed_max[1]}\n; print_bed_size = {print_bed_size[0]},{print_bed_size[1]}\n; first_layer_print_min = {first_layer_print_min[0]},{first_layer_print_min[1]}\n; first_layer_print_max = {first_layer_print_max[0]},{first_layer_print_max[1]}\n; first_layer_print_size = {first_layer_print_size[0]},{first_layer_print_size[1]}\n; first_layer_fan_speed = 2, {int(additional_cooling_fan_speed[initial_tool] * 255 / 100)}",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "max_layer_height": [
+ "0.56"
+ ],
+ "min_layer_height": [
+ "0.16"
+ ],
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_type": "hardened_steel",
+ "nozzle_volume": "107",
+ "parking_pos_retraction": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "printer_flush_multiplier": "1",
+ "printer_notes": "",
+ "printer_structure": "corexy",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "printing_by_object_gcode": "",
+ "purge_in_prime_tower": "0",
+ "retract_before_wipe": [
+ "0%"
+ ],
+ "retract_length_toolchange": [
+ "0"
+ ],
+ "retract_lift_above": [
+ "0"
+ ],
+ "retract_lift_below": [
+ "348"
+ ],
+ "retract_lift_enforce": [
+ "All Surfaces"
+ ],
+ "retract_on_top_layer": [
+ "1"
+ ],
+ "retract_restart_extra": [
+ "0"
+ ],
+ "retract_restart_extra_toolchange": [
+ "0"
+ ],
+ "retract_when_changing_layer": [
+ "1"
+ ],
+ "retraction_distances_when_cut": [
+ "0"
+ ],
+ "retraction_length": [
+ "0.4"
+ ],
+ "retraction_minimum_travel": [
+ "1"
+ ],
+ "retraction_speed": [
+ "30"
+ ],
+ "scan_first_layer": "0",
+ "silent_mode": "1",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "0",
+ "support_chamber_temp_control": "1",
+ "support_multi_bed_types": "1",
+ "template_custom_gcode": "",
+ "time_cost": "0",
+ "time_lapse_gcode": "",
+ "travel_slope": [
+ "3"
+ ],
+ "upward_compatible_machine": [],
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "wipe": [
+ "1"
+ ],
+ "wipe_distance": [
+ "2"
+ ],
+ "z_hop": [
+ "0.4"
+ ],
+ "z_hop_types": [
+ "Slope Lift"
+ ],
+ "z_offset": "0"
+}
diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max.json b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max.json
new file mode 100644
index 0000000000..c47f2e7fa2
--- /dev/null
+++ b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 Max.json
@@ -0,0 +1,12 @@
+{
+ "type": "machine_model",
+ "machine_tech": "FFF",
+ "family": "Anycubic",
+ "name": "Anycubic Kobra S1 Max",
+ "model_id": "Anycubic Kobra S1 Max",
+ "nozzle_diameter": "0.4;0.25;0.6;0.8",
+ "bed_model": "Anycubic Kobra S1 Max_buildplate_model.stl",
+ "bed_texture": "Anycubic Kobra S1 Max_buildplate_texture.svg",
+ "hotend_model": "",
+ "default_materials": "Anycubic PLA @Anycubic Kobra S1 Max 0.4 nozzle"
+}
diff --git a/resources/profiles/Anycubic/process/0.06mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/process/0.06mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json
new file mode 100644
index 0000000000..a4f9f74e3c
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.06mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json
@@ -0,0 +1,323 @@
+{
+ "type": "process",
+ "name": "0.06mm Standard @Anycubic Kobra S1 Max 0.25 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.06mm Standard @Anycubic Kobra S1 Max 0.25 nozzle",
+ "layer_height": "0.06",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.25 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "5",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "4000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.3",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.15",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "0",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.3",
+ "inner_wall_speed": "120",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "2000",
+ "internal_solid_infill_line_width": "0.27",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.27",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.27",
+ "outer_wall_speed": "60",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_extra_rib_length": "0",
+ "prime_tower_fillet_wall": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_max_speed": "90",
+ "prime_tower_rib_wall": "1",
+ "prime_tower_rib_width": "8",
+ "prime_tower_skip_points": "1",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "4",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.3",
+ "sparse_infill_pattern": "gyroid",
+ "sparse_infill_speed": "100",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "0",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.06",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.27",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "100",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.06",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "7",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.27",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "120",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "4",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.08mm HighDetail @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.08mm HighDetail @Anycubic Kobra 3 0.4 nozzle.json
index e134a64791..be5df8d4b6 100644
--- a/resources/profiles/Anycubic/process/0.08mm HighDetail @Anycubic Kobra 3 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.08mm HighDetail @Anycubic Kobra 3 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "10000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "450",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
index 074fd98f18..fa758a8187 100644
--- a/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
@@ -201,10 +201,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "150",
@@ -271,7 +273,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json
new file mode 100644
index 0000000000..64f9ae67cc
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json
@@ -0,0 +1,323 @@
+{
+ "type": "process",
+ "name": "0.08mm Standard @Anycubic Kobra S1 Max 0.25 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.08mm Standard @Anycubic Kobra S1 Max 0.25 nozzle",
+ "layer_height": "0.08",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.25 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "5",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "4000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.3",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.15",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "0",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.3",
+ "inner_wall_speed": "120",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "2000",
+ "internal_solid_infill_line_width": "0.27",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.27",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.27",
+ "outer_wall_speed": "60",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_extra_rib_length": "0",
+ "prime_tower_fillet_wall": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_max_speed": "90",
+ "prime_tower_rib_wall": "1",
+ "prime_tower_rib_width": "8",
+ "prime_tower_skip_points": "1",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "4",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.3",
+ "sparse_infill_pattern": "gyroid",
+ "sparse_infill_speed": "100",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "0",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.08",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.27",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "100",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.08",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "7",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.27",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "120",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "4",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..3d95d09050
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,320 @@
+{
+ "type": "process",
+ "name": "0.08mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.08mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "layer_height": "0.08",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "7",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "4000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "80",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "0",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "120",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "50%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "120",
+ "ironing_angle": "-1",
+ "ironing_flow": "8%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "60",
+ "overhang_1_4_speed": "60",
+ "overhang_2_4_speed": "30",
+ "overhang_3_4_speed": "10",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "1",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "40",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "100",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "0",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.08",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "15",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.08",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "9",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "120",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "15",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_extra_spacing": "120%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_max_purge_speed": "90",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra X 0.4 nozzle.json
index 2fcb7a8b22..ce03d4d129 100644
--- a/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra X 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.08mm Standard @Anycubic Kobra X 0.4 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "100",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.10mm Detail @Anycubic Kobra 3 0.2 nozzle.json b/resources/profiles/Anycubic/process/0.10mm Detail @Anycubic Kobra 3 0.2 nozzle.json
index f133804659..2a216e90a3 100644
--- a/resources/profiles/Anycubic/process/0.10mm Detail @Anycubic Kobra 3 0.2 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.10mm Detail @Anycubic Kobra 3 0.2 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.22",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "4",
diff --git a/resources/profiles/Anycubic/process/0.10mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/process/0.10mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json
new file mode 100644
index 0000000000..92745cc003
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.10mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json
@@ -0,0 +1,323 @@
+{
+ "type": "process",
+ "name": "0.10mm Standard @Anycubic Kobra S1 Max 0.25 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.10mm Standard @Anycubic Kobra S1 Max 0.25 nozzle",
+ "layer_height": "0.1",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.25 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "5",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "4000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.3",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.15",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "0",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.3",
+ "inner_wall_speed": "120",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "2000",
+ "internal_solid_infill_line_width": "0.27",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.27",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.27",
+ "outer_wall_speed": "60",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_extra_rib_length": "0",
+ "prime_tower_fillet_wall": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_max_speed": "90",
+ "prime_tower_rib_wall": "1",
+ "prime_tower_rib_width": "8",
+ "prime_tower_skip_points": "1",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "4",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.3",
+ "sparse_infill_pattern": "gyroid",
+ "sparse_infill_speed": "100",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "0",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.1",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.27",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "100",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.1",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "7",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.27",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "120",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "4",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle.json
index 245347e3fd..f8ab5c8bd0 100644
--- a/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra 3 0.4 nozzle.json
index 15a0bf12b1..3a5d63fef9 100644
--- a/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra 3 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra 3 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "30%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "10000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "430",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra Neo 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra Neo 0.4 nozzle.json
index bf2a8d58e8..402386ae4f 100644
--- a/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra Neo 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.12mm Detail @Anycubic Kobra Neo 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.12mm High Quality @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.12mm High Quality @Anycubic Kobra X 0.4 nozzle.json
index df07c7fbf8..7b8a19ea17 100644
--- a/resources/profiles/Anycubic/process/0.12mm High Quality @Anycubic Kobra X 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.12mm High Quality @Anycubic Kobra X 0.4 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "80",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "3dhoneycomb",
"sparse_infill_speed": "180",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
index cb3f57a159..395994f87c 100644
--- a/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
@@ -201,10 +201,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "150",
@@ -271,7 +273,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json
new file mode 100644
index 0000000000..1dce201c94
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json
@@ -0,0 +1,323 @@
+{
+ "type": "process",
+ "name": "0.12mm Standard @Anycubic Kobra S1 Max 0.25 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.12mm Standard @Anycubic Kobra S1 Max 0.25 nozzle",
+ "layer_height": "0.12",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.25 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "5",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "4000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.3",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.15",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "0",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.3",
+ "inner_wall_speed": "120",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "2000",
+ "internal_solid_infill_line_width": "0.27",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.27",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.27",
+ "outer_wall_speed": "60",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_extra_rib_length": "0",
+ "prime_tower_fillet_wall": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_max_speed": "90",
+ "prime_tower_rib_wall": "1",
+ "prime_tower_rib_width": "8",
+ "prime_tower_skip_points": "1",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "4",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.3",
+ "sparse_infill_pattern": "gyroid",
+ "sparse_infill_speed": "100",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "0",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.12",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.27",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "100",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.12",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "7",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.27",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "120",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "4",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..693c1e7e0c
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,320 @@
+{
+ "type": "process",
+ "name": "0.12mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.12mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "layer_height": "0.12",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "5",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "4000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "180",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "0",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "50%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "180",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "60",
+ "overhang_1_4_speed": "60",
+ "overhang_2_4_speed": "30",
+ "overhang_3_4_speed": "10",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "1",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "40",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "180",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "0",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.12",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "20",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.12",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "7",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "15",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_extra_spacing": "120%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_max_purge_speed": "90",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra X 0.4 nozzle.json
index 4ec997a0db..85c47f9697 100644
--- a/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra X 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.12mm Standard @Anycubic Kobra X 0.4 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "180",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.14mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json b/resources/profiles/Anycubic/process/0.14mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json
new file mode 100644
index 0000000000..fdea0ece35
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.14mm Standard @Anycubic Kobra S1 Max 0.25 nozzle.json
@@ -0,0 +1,323 @@
+{
+ "type": "process",
+ "name": "0.14mm Standard @Anycubic Kobra S1 Max 0.25 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.14mm Standard @Anycubic Kobra S1 Max 0.25 nozzle",
+ "layer_height": "0.14",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.25 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "5",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "4000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.3",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.15",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "0",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.3",
+ "inner_wall_speed": "120",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "2000",
+ "internal_solid_infill_line_width": "0.27",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.27",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.27",
+ "outer_wall_speed": "60",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_extra_rib_length": "0",
+ "prime_tower_fillet_wall": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_max_speed": "90",
+ "prime_tower_rib_wall": "1",
+ "prime_tower_rib_width": "8",
+ "prime_tower_skip_points": "1",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "4",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.3",
+ "sparse_infill_pattern": "gyroid",
+ "sparse_infill_speed": "100",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "0",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.14",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.27",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "100",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.14",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "7",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.27",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "120",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "4",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.16mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..d158f88254
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.16mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,320 @@
+{
+ "type": "process",
+ "name": "0.16mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.16mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle",
+ "layer_height": "0.16",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "4",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "4000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "100",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "50",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "0",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "50%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "200",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "60",
+ "overhang_1_4_speed": "60",
+ "overhang_2_4_speed": "30",
+ "overhang_3_4_speed": "10",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "1",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "40",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "gyroid",
+ "sparse_infill_speed": "200",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "0",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.16",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "25",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.16",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "6",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "15",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_extra_spacing": "120%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_max_purge_speed": "90",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.16mm High Quality @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm High Quality @Anycubic Kobra X 0.4 nozzle.json
index 8f75948075..e15494d478 100644
--- a/resources/profiles/Anycubic/process/0.16mm High Quality @Anycubic Kobra X 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.16mm High Quality @Anycubic Kobra X 0.4 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "200",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle.json
index 12c6d8bd27..fdef77ff1a 100644
--- a/resources/profiles/Anycubic/process/0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "300",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle.json
index c23132bcfb..97f716e4e6 100644
--- a/resources/profiles/Anycubic/process/0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "30%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "300",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json
index a5668614a5..7d795f6f5f 100644
--- a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
index 283b342d49..9ea61a320d 100644
--- a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
@@ -201,10 +201,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "300",
@@ -271,7 +273,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra Neo 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra Neo 0.4 nozzle.json
index a2725e692f..fee307ecb7 100644
--- a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra Neo 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra Neo 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..cbe43a4076
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,320 @@
+{
+ "type": "process",
+ "name": "0.16mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.16mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "layer_height": "0.16",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "4",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "100",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "50",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "50%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "60",
+ "overhang_2_4_speed": "30",
+ "overhang_3_4_speed": "10",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "1",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "40",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "350",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "0",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.16",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "25",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.16",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "6",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "15",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_extra_spacing": "120%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_max_purge_speed": "90",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra X 0.4 nozzle.json
index a1b96bf53c..fb53ce7666 100644
--- a/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra X 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.16mm Standard @Anycubic Kobra X 0.4 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "350",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.18mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.18mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json
index eb4fcbf0f3..9b9e21adf0 100644
--- a/resources/profiles/Anycubic/process/0.18mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.18mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "80",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.62",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.18mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.18mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..d5ab647545
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.18mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,323 @@
+{
+ "type": "process",
+ "name": "0.18mm Standard @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.18mm Standard @Anycubic Kobra S1 Max 0.6 nozzle",
+ "layer_height": "0.18",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "5000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.62",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.3",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.62",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "5000",
+ "internal_solid_infill_line_width": "0.62",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.62",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.62",
+ "outer_wall_speed": "120",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "40",
+ "overhang_3_4_speed": "15",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_extra_rib_length": "0",
+ "prime_tower_fillet_wall": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_max_speed": "90",
+ "prime_tower_rib_wall": "1",
+ "prime_tower_rib_width": "8",
+ "prime_tower_skip_points": "1",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "40",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.62",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "100",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.18",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.62",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "100",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.18",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "0",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "3",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.62",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "5000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.20mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..30a033b0af
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.20mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,320 @@
+{
+ "type": "process",
+ "name": "0.20mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.20mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle",
+ "layer_height": "0.2",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "100",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "50",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "5000",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "60",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "1",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "40",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "250",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "0",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.2",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "15",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_extra_spacing": "120%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_max_purge_speed": "90",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0.05"
+}
diff --git a/resources/profiles/Anycubic/process/0.20mm High Quality @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm High Quality @Anycubic Kobra X 0.4 nozzle.json
index 9ec3d02de1..456ae972a9 100644
--- a/resources/profiles/Anycubic/process/0.20mm High Quality @Anycubic Kobra X 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.20mm High Quality @Anycubic Kobra X 0.4 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "200",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Max 0.4 nozzle.json
index 1952723c26..97407e08f3 100644
--- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Max 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Max 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "200",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json
index 87dba6f053..1864c98012 100644
--- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Plus 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Plus 0.4 nozzle.json
index af476d81f4..5c6f12d627 100644
--- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Plus 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Plus 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "200",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Pro 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Pro 0.4 nozzle.json
index 1a68255226..f8e9ed2ad2 100644
--- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Pro 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 2 Pro 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "200",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 0.4 nozzle.json
index d0c88dea58..c100066f8d 100644
--- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "30%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "300",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
index 5eaf61f432..5a774acaf5 100644
--- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
@@ -201,10 +201,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "300",
@@ -271,7 +273,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json
index bbda2c2422..997dc006b6 100644
--- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.82",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra Neo 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra Neo 0.4 nozzle.json
index 30d5c15c5e..0e2f229719 100644
--- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra Neo 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra Neo 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra S1 0.4 nozzle.json
index 6549cf28e9..3c5ae5367a 100644
--- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra S1 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra S1 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "270",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "outer wall/inner wall",
diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..327aaf2b73
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,320 @@
+{
+ "type": "process",
+ "name": "0.20mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.20mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "layer_height": "0.2",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "100",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "50",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "5000",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "1",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "40",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "300",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "0",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.2",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "15",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_extra_spacing": "120%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_max_purge_speed": "90",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0.05"
+}
diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra X 0.4 nozzle.json
index db1ff50f64..efd0162508 100644
--- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra X 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra X 0.4 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "300",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.24mm Draft @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.24mm Draft @Anycubic Kobra 3 0.4 nozzle.json
index 971bd32318..916e0a2f7f 100644
--- a/resources/profiles/Anycubic/process/0.24mm Draft @Anycubic Kobra 3 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.24mm Draft @Anycubic Kobra 3 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "30%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "200",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
index a2619bcd50..2581762c62 100644
--- a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
@@ -201,10 +201,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "150",
@@ -271,7 +273,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json
index 50c9dc9b2f..a86f754d77 100644
--- a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "80",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.62",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json
index ae710a3819..ec94279cf6 100644
--- a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.82",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..b732b322aa
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,320 @@
+{
+ "type": "process",
+ "name": "0.24mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.24mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "layer_height": "0.24",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "230",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "100",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "50",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "230",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "50%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "230",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "35",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "1",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "40",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "230",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "0",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "35",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.2",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "4",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "15",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_extra_spacing": "120%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_max_purge_speed": "90",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..cb9df3a011
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,323 @@
+{
+ "type": "process",
+ "name": "0.24mm Standard @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.24mm Standard @Anycubic Kobra S1 Max 0.6 nozzle",
+ "layer_height": "0.24",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "5000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.62",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.3",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.62",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "5000",
+ "internal_solid_infill_line_width": "0.62",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.62",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.62",
+ "outer_wall_speed": "120",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "40",
+ "overhang_3_4_speed": "15",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_extra_rib_length": "0",
+ "prime_tower_fillet_wall": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_max_speed": "90",
+ "prime_tower_rib_wall": "1",
+ "prime_tower_rib_width": "8",
+ "prime_tower_skip_points": "1",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "80",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.62",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "100",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.62",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_speed": "100",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.25",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "0",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "3",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.62",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "5000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..edd4a7a115
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,323 @@
+{
+ "type": "process",
+ "name": "0.24mm Standard @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.24mm Standard @Anycubic Kobra S1 Max 0.8 nozzle",
+ "layer_height": "0.24",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.15",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "100",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "50",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.82",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.4",
+ "initial_layer_speed": "30",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.82",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "5000",
+ "internal_solid_infill_line_width": "0.82",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.82",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "0",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.82",
+ "outer_wall_speed": "120",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "40",
+ "overhang_3_4_speed": "15",
+ "overhang_4_4_speed": "5",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "5",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_extra_rib_length": "0",
+ "prime_tower_fillet_wall": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_max_speed": "90",
+ "prime_tower_rib_wall": "1",
+ "prime_tower_rib_width": "8",
+ "prime_tower_skip_points": "1",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "80",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.82",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "100",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "50",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.82",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_speed": "100",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.25",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "0",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "3",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.82",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra X 0.4 nozzle.json
index d10b3941c2..04dda6f1a0 100644
--- a/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra X 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.24mm Standard @Anycubic Kobra X 0.4 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "230",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle.json
index 2e0a0c6882..dd3c9c0252 100644
--- a/resources/profiles/Anycubic/process/0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "120",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json
index c97ba652f2..e5109f344a 100644
--- a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "120",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
index e12f093307..fc6a501064 100644
--- a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra 3 Max 0.4 nozzle.json
@@ -201,10 +201,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "150",
@@ -271,7 +273,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra Neo 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra Neo 0.4 nozzle.json
index d55474718a..c6e64b4d06 100644
--- a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra Neo 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra Neo 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "120",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..04d8aad6f8
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra S1 Max 0.4 nozzle.json
@@ -0,0 +1,320 @@
+{
+ "type": "process",
+ "name": "0.28mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.28mm Standard @Anycubic Kobra S1 Max 0.4 nozzle",
+ "layer_height": "0.28",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.4 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "200",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "100",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "50",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "200",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "50%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "200",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "35",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "1",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "40",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "200",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "0",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "40",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.2",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "4",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "15",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_extra_spacing": "120%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_max_purge_speed": "90",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra X 0.4 nozzle.json
index 8c7d078634..dd6f188d40 100644
--- a/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra X 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.28mm Standard @Anycubic Kobra X 0.4 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "200",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/process/0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle.json
index 7ad0b29957..c1e05690d1 100644
--- a/resources/profiles/Anycubic/process/0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "30%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "200",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra 3 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra 3 0.6 nozzle.json
index 1449960c94..6c768da89e 100644
--- a/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra 3 0.6 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra 3 0.6 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "10000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.62",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "100",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json
index 723e5f30a1..cb390b04df 100644
--- a/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "80",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.62",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..6d116c8358
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.30mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,323 @@
+{
+ "type": "process",
+ "name": "0.30mm Standard @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.30mm Standard @Anycubic Kobra S1 Max 0.6 nozzle",
+ "layer_height": "0.3",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "5000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.62",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.3",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.62",
+ "inner_wall_speed": "120",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "5000",
+ "internal_solid_infill_line_width": "0.62",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.62",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.62",
+ "outer_wall_speed": "60",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "40",
+ "overhang_3_4_speed": "15",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_extra_rib_length": "0",
+ "prime_tower_fillet_wall": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_max_speed": "90",
+ "prime_tower_rib_wall": "1",
+ "prime_tower_rib_width": "8",
+ "prime_tower_skip_points": "1",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "4",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.62",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "100",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.62",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "100",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.25",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "0",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "3",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.62",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.32mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.32mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json
index d938dcf6e9..76fe68130f 100644
--- a/resources/profiles/Anycubic/process/0.32mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.32mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.82",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.32mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.32mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..0cdc37581a
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.32mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,323 @@
+{
+ "type": "process",
+ "name": "0.32mm Standard @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.32mm Standard @Anycubic Kobra S1 Max 0.8 nozzle",
+ "layer_height": "0.32",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.15",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "100",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "50",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.82",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.4",
+ "initial_layer_speed": "30",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.82",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "5000",
+ "internal_solid_infill_line_width": "0.82",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.82",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.82",
+ "outer_wall_speed": "120",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "40",
+ "overhang_3_4_speed": "15",
+ "overhang_4_4_speed": "5",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "5",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_extra_rib_length": "0",
+ "prime_tower_fillet_wall": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_max_speed": "90",
+ "prime_tower_rib_wall": "1",
+ "prime_tower_rib_width": "8",
+ "prime_tower_skip_points": "1",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "80",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.82",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "100",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "50",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.82",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_speed": "100",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.25",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "0",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "3",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.82",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.36mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.36mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json
index ee64ec6c4e..ce9a786c74 100644
--- a/resources/profiles/Anycubic/process/0.36mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.36mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "80",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.62",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.36mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.36mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..9069f4ea47
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.36mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,323 @@
+{
+ "type": "process",
+ "name": "0.36mm Standard @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.36mm Standard @Anycubic Kobra S1 Max 0.6 nozzle",
+ "layer_height": "0.36",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "5000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.62",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.3",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.62",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "5000",
+ "internal_solid_infill_line_width": "0.62",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.62",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.62",
+ "outer_wall_speed": "120",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "40",
+ "overhang_3_4_speed": "15",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_extra_rib_length": "0",
+ "prime_tower_fillet_wall": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_max_speed": "90",
+ "prime_tower_rib_wall": "1",
+ "prime_tower_rib_width": "8",
+ "prime_tower_skip_points": "1",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "80",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.62",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "100",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.62",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_speed": "100",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.25",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "0",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "3",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.62",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "5000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra 3 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra 3 0.8 nozzle.json
index d8a97a358e..d3fc636a72 100644
--- a/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra 3 0.8 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra 3 0.8 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.82",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "100",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json
index 716512b2d9..5292286451 100644
--- a/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.82",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..0046750514
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.40mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,323 @@
+{
+ "type": "process",
+ "name": "0.40mm Standard @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.40mm Standard @Anycubic Kobra S1 Max 0.8 nozzle",
+ "layer_height": "0.4",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.15",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "100",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "50",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.82",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.4",
+ "initial_layer_speed": "30",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.82",
+ "inner_wall_speed": "120",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "5000",
+ "internal_solid_infill_line_width": "0.82",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.82",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.82",
+ "outer_wall_speed": "60",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "40",
+ "overhang_3_4_speed": "15",
+ "overhang_4_4_speed": "5",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "5",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_extra_rib_length": "0",
+ "prime_tower_fillet_wall": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_max_speed": "90",
+ "prime_tower_rib_wall": "1",
+ "prime_tower_rib_width": "8",
+ "prime_tower_skip_points": "1",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "40",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.82",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "100",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "50",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.82",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_speed": "100",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.25",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "0",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "3",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.82",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.42mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.42mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json
index 96480e7a25..3c2eb20b9b 100644
--- a/resources/profiles/Anycubic/process/0.42mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.42mm Standard @Anycubic Kobra 3 Max 0.6 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "80",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.62",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.42mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json b/resources/profiles/Anycubic/process/0.42mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..e7f2ea817a
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.42mm Standard @Anycubic Kobra S1 Max 0.6 nozzle.json
@@ -0,0 +1,323 @@
+{
+ "type": "process",
+ "name": "0.42mm Standard @Anycubic Kobra S1 Max 0.6 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.42mm Standard @Anycubic Kobra S1 Max 0.6 nozzle",
+ "layer_height": "0.42",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.6 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "5000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.62",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.3",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.62",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "5000",
+ "internal_solid_infill_line_width": "0.62",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.62",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.62",
+ "outer_wall_speed": "120",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "40",
+ "overhang_3_4_speed": "15",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "10",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_extra_rib_length": "0",
+ "prime_tower_fillet_wall": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_max_speed": "90",
+ "prime_tower_rib_wall": "1",
+ "prime_tower_rib_width": "8",
+ "prime_tower_skip_points": "1",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "80",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.62",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "100",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.62",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_speed": "100",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.25",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "0",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "3",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.62",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "5000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.48mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.48mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json
index 72faf5285f..52a8025a8c 100644
--- a/resources/profiles/Anycubic/process/0.48mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json
+++ b/resources/profiles/Anycubic/process/0.48mm Standard @Anycubic Kobra 3 Max 0.8 nozzle.json
@@ -212,10 +212,12 @@
"smooth_coefficient": "40",
"smooth_speed_discontinuity_area": "1",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "5000",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.82",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100",
@@ -285,7 +287,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Anycubic/process/0.48mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.48mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..48f510cb13
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.48mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,323 @@
+{
+ "type": "process",
+ "name": "0.48mm Standard @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.48mm Standard @Anycubic Kobra S1 Max 0.8 nozzle",
+ "layer_height": "0.48",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.15",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "100",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "50",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.82",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.4",
+ "initial_layer_speed": "30",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.82",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "5000",
+ "internal_solid_infill_line_width": "0.82",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.82",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "0",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.82",
+ "outer_wall_speed": "120",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "40",
+ "overhang_3_4_speed": "15",
+ "overhang_4_4_speed": "5",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "5",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_extra_rib_length": "0",
+ "prime_tower_fillet_wall": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_max_speed": "90",
+ "prime_tower_rib_wall": "1",
+ "prime_tower_rib_width": "8",
+ "prime_tower_skip_points": "1",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "80",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.82",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "100",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "50",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.82",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_speed": "100",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.25",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "0",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "3",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.82",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Anycubic/process/0.56mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json b/resources/profiles/Anycubic/process/0.56mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..51da005e82
--- /dev/null
+++ b/resources/profiles/Anycubic/process/0.56mm Standard @Anycubic Kobra S1 Max 0.8 nozzle.json
@@ -0,0 +1,323 @@
+{
+ "type": "process",
+ "name": "0.56mm Standard @Anycubic Kobra S1 Max 0.8 nozzle",
+ "inherits": "fdm_process_common",
+ "from": "system",
+ "setting_id": "GP004",
+ "instantiation": "true",
+ "print_settings_id": "0.56mm Standard @Anycubic Kobra S1 Max 0.8 nozzle",
+ "layer_height": "0.56",
+ "compatible_printers": [
+ "Anycubic Kobra S1 Max 0.8 nozzle"
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.15",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers_condition": "",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{timestamp}-{if plate_name==\"\" then input_filename_base+\"_plate\" else plate_name endif}{\"(\"+plate_number+\")\"}_{filament_type[initial_tool]}_{layer_height}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "100",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "50",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.82",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.4",
+ "initial_layer_speed": "30",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "9",
+ "inner_wall_line_width": "0.82",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "5000",
+ "internal_solid_infill_line_width": "0.82",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lattice_angle_1": "-45",
+ "lattice_angle_2": "45",
+ "line_width": "0.82",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "0",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "0",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "9",
+ "outer_wall_line_width": "0.82",
+ "outer_wall_speed": "120",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "40",
+ "overhang_3_4_speed": "15",
+ "overhang_4_4_speed": "5",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "5",
+ "post_process": [],
+ "precise_outer_wall": "0",
+ "precise_z_height": "0",
+ "preheat_steps": "1",
+ "preheat_time": "0",
+ "prime_tower_brim_width": "5",
+ "prime_tower_extra_rib_length": "0",
+ "prime_tower_fillet_wall": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_max_speed": "90",
+ "prime_tower_rib_wall": "1",
+ "prime_tower_rib_width": "8",
+ "prime_tower_skip_points": "1",
+ "prime_tower_width": "30",
+ "prime_volume": "30",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "5",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "rotate_solid_infill_direction": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "30",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "1",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "1",
+ "seam_slope_min_length": "10",
+ "seam_slope_start_height": "10%",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "80",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.82",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "100",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "50",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.82",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_speed": "100",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.25",
+ "support_type": "tree(auto)",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "0",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "15%",
+ "top_shell_layers": "3",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.82",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "10000",
+ "travel_jerk": "9",
+ "travel_speed": "300",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_no_sparse_layers": "0",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Artillery.json b/resources/profiles/Artillery.json
index bf9e93f525..09fd18b30e 100644
--- a/resources/profiles/Artillery.json
+++ b/resources/profiles/Artillery.json
@@ -1,6 +1,6 @@
{
"name": "Artillery",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "0",
"description": "Artillery configurations",
"machine_model_list": [
diff --git a/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery M1 Pro 0.4 nozzle.json
index 93b8613da9..c89ee8e095 100644
--- a/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery M1 Pro 0.4 nozzle.json
+++ b/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery M1 Pro 0.4 nozzle.json
@@ -190,10 +190,12 @@
],
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "450",
@@ -251,7 +253,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
"wall_transition_angle": "10",
diff --git a/resources/profiles/Artillery/process/0.08mm High Quality @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/process/0.08mm High Quality @Artillery M1 Pro 0.2 nozzle.json
index 5123de081a..ce5ad5c7f1 100644
--- a/resources/profiles/Artillery/process/0.08mm High Quality @Artillery M1 Pro 0.2 nozzle.json
+++ b/resources/profiles/Artillery/process/0.08mm High Quality @Artillery M1 Pro 0.2 nozzle.json
@@ -195,10 +195,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.22",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "100",
@@ -265,7 +267,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "4",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Artillery/process/0.08mm High Quality @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.08mm High Quality @Artillery M1 Pro 0.4 nozzle.json
index 0d896ca2be..912a4cb702 100644
--- a/resources/profiles/Artillery/process/0.08mm High Quality @Artillery M1 Pro 0.4 nozzle.json
+++ b/resources/profiles/Artillery/process/0.08mm High Quality @Artillery M1 Pro 0.4 nozzle.json
@@ -186,10 +186,12 @@
],
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid",
"spiral_mode": "0",
@@ -250,7 +252,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Artillery/process/0.12mm Fine @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.12mm Fine @Artillery M1 Pro 0.4 nozzle.json
index 245473f07c..8384c1cdc6 100644
--- a/resources/profiles/Artillery/process/0.12mm Fine @Artillery M1 Pro 0.4 nozzle.json
+++ b/resources/profiles/Artillery/process/0.12mm Fine @Artillery M1 Pro 0.4 nozzle.json
@@ -188,10 +188,12 @@
],
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"spiral_mode": "0",
@@ -250,7 +252,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Artillery/process/0.12mm High Quality @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.12mm High Quality @Artillery M1 Pro 0.4 nozzle.json
index bdf9bdf87d..73eb6f2de0 100644
--- a/resources/profiles/Artillery/process/0.12mm High Quality @Artillery M1 Pro 0.4 nozzle.json
+++ b/resources/profiles/Artillery/process/0.12mm High Quality @Artillery M1 Pro 0.4 nozzle.json
@@ -187,10 +187,12 @@
],
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid",
"spiral_mode": "0",
@@ -250,7 +252,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Artillery/process/0.16mm High Quality @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.16mm High Quality @Artillery M1 Pro 0.4 nozzle.json
index 4fe81c286d..543be5a464 100644
--- a/resources/profiles/Artillery/process/0.16mm High Quality @Artillery M1 Pro 0.4 nozzle.json
+++ b/resources/profiles/Artillery/process/0.16mm High Quality @Artillery M1 Pro 0.4 nozzle.json
@@ -188,10 +188,12 @@
],
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"spiral_mode": "0",
@@ -250,7 +252,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery M1 Pro 0.4 nozzle.json
index 03c9cadacc..dd8991d970 100644
--- a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery M1 Pro 0.4 nozzle.json
+++ b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery M1 Pro 0.4 nozzle.json
@@ -191,10 +191,12 @@
],
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"spiral_mode": "0",
@@ -250,7 +252,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery M1 Pro 0.4 nozzle.json
index dadf30880e..a5e12d58e3 100644
--- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery M1 Pro 0.4 nozzle.json
+++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery M1 Pro 0.4 nozzle.json
@@ -192,10 +192,12 @@
],
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "270",
@@ -251,7 +253,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
"wall_transition_angle": "10",
diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X3Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X3Plus 0.4 nozzle.json
index 3acd94ae92..d2e8e3c47d 100644
--- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X3Plus 0.4 nozzle.json
+++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X3Plus 0.4 nozzle.json
@@ -181,10 +181,12 @@
],
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150",
@@ -250,7 +252,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_loops": "3",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X3Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X3Pro 0.4 nozzle.json
index 83760ac0f5..b550831c47 100644
--- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X3Pro 0.4 nozzle.json
+++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X3Pro 0.4 nozzle.json
@@ -181,10 +181,12 @@
],
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "150",
@@ -250,7 +252,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_loops": "3",
"wall_sequence": "outer wall/inner wall",
diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X4Plus 0.4 nozzle.json
index 8268b4c684..371cf4af0c 100644
--- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X4Plus 0.4 nozzle.json
+++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X4Plus 0.4 nozzle.json
@@ -181,10 +181,12 @@
],
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "200",
@@ -250,7 +252,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X4Pro 0.4 nozzle.json
index 2b46ef8cc0..c5314cf214 100644
--- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X4Pro 0.4 nozzle.json
+++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X4Pro 0.4 nozzle.json
@@ -181,10 +181,12 @@
],
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "200",
@@ -250,7 +252,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Artillery/process/0.20mm Strength @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.20mm Strength @Artillery M1 Pro 0.4 nozzle.json
index d49c0d1cc4..0a2eb73185 100644
--- a/resources/profiles/Artillery/process/0.20mm Strength @Artillery M1 Pro 0.4 nozzle.json
+++ b/resources/profiles/Artillery/process/0.20mm Strength @Artillery M1 Pro 0.4 nozzle.json
@@ -189,10 +189,12 @@
],
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "25%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "270",
@@ -251,7 +253,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_sequence": "inner wall/outer wall",
"wall_transition_angle": "10",
diff --git a/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.4 nozzle.json
index 15f13e26b3..4b4f738188 100644
--- a/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.4 nozzle.json
+++ b/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.4 nozzle.json
@@ -186,10 +186,12 @@
],
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "230",
@@ -250,7 +252,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.6 nozzle.json
index 16d057d881..cc263a85b1 100644
--- a/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.6 nozzle.json
+++ b/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.6 nozzle.json
@@ -195,10 +195,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.62",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "100",
@@ -265,7 +267,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.8 nozzle.json
index ce4ad73540..1dc4a6ac09 100644
--- a/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.8 nozzle.json
+++ b/resources/profiles/Artillery/process/0.24mm Draft @Artillery M1 Pro 0.8 nozzle.json
@@ -195,10 +195,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.82",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "100",
@@ -265,7 +267,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery M1 Pro 0.4 nozzle.json
index dcb8998cf6..652a43780e 100644
--- a/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery M1 Pro 0.4 nozzle.json
+++ b/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery M1 Pro 0.4 nozzle.json
@@ -188,10 +188,12 @@
],
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "200",
@@ -250,7 +252,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/BBL.json b/resources/profiles/BBL.json
index f24d6d8caf..1db299ab2e 100644
--- a/resources/profiles/BBL.json
+++ b/resources/profiles/BBL.json
@@ -1,7 +1,7 @@
{
"name": "Bambulab",
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
- "version": "02.01.00.14",
+ "version": "02.01.00.15",
"force_update": "0",
"description": "BBL configurations",
"machine_model_list": [
diff --git a/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle.json b/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle.json
index beeb01dd8a..b32ce9af25 100644
--- a/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle.json
+++ b/resources/profiles/BBL/machine/Bambu Lab X2D 0.4 nozzle.json
@@ -8,7 +8,7 @@
"change_filament_gcode": "======== X2D filament_change gcode ==========\n;===== 2026/04/08 =====\n\nM620 S[next_extruder]A B H[next_hotend]\n;M204 S9000\n{if toolchange_count > 1 && (z_hop_types[current_extruder] == 0 || z_hop_types[current_extruder] == 3)}\nG17\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{endif}\n\n;nozzle_change_gcode\n\nG1 Z{max_layer_z + 3.0} F1200\n\nM400\nM106 P1 S0\n\n{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n{endif}\n\n{if ((filament_type[current_extruder] == \"PLA\") || (filament_type[current_extruder] == \"PLA-CF\") || (filament_type[current_extruder] == \"PETG\")) && (nozzle_diameter[current_extruder] == 0.2)}\nM620.10 A0 F74.8347 L[flush_length] H{nozzle_diameter[current_extruder]} T{flush_temperatures[current_extruder]} P[old_filament_temp] S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[current_extruder]/2.4053*60} L[flush_length] H{nozzle_diameter[current_extruder]} T{flush_temperatures[current_extruder]} P[old_filament_temp] S1\n{endif}\n\n{if ((filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG\")) && (nozzle_diameter[next_extruder] == 0.2)}\nM620.10 A1 F74.8347 L[flush_length] H{nozzle_diameter[next_extruder]} T{flush_temperatures[next_extruder]} P[new_filament_temp] S1\n{else}\nM620.10 A1 F{flush_volumetric_speeds[next_extruder]/2.4053*60} L[flush_length] H{nozzle_diameter[next_extruder]} T{flush_temperatures[next_extruder]} P[new_filament_temp] S1\n{endif}\n\nM620.15 C{new_filament_temp - filament_cooling_before_tower[next_extruder]}\n\n{if long_retraction_when_cut}\nM620.11 P1 L0 I[current_extruder] B[current_hotend] E-{retraction_distance_when_cut} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{else}\nM620.11 P0 L0 I[current_extruder] B[current_hotend] E0\n{endif}\n\n{if long_retraction_when_ec}\nM620.11 K1 I[current_extruder] B[current_hotend] R{retraction_distance_when_ec} F{max((flush_volumetric_speeds[current_extruder]/2.4053*60), 200)}\n{else}\nM620.11 K0 I[current_extruder] B[current_hotend] R0\n{endif}\n\nM620.22 I[next_extruder] P1 ; enable remote extruder runout auto purge.\n \nT[next_extruder] H[next_hotend]\n\n;deretract\n{if filament_type[next_extruder] == \"TPU\"}\n{else}\n{if filament_type[next_extruder] == \"PA\"}\n;VG1 E1 F{max(new_filament_e_feedrate, 200)}\n;VG1 E1 F{max(new_filament_e_feedrate/2, 100)}\n{else}\n;VG1 E4 F{max(new_filament_e_feedrate, 200)}\n;VG1 E4 F{max(new_filament_e_feedrate/2, 100)}\n{endif}\n{endif}\n\n; VFLUSH_START\n{if flush_length>41.5}\n;VG1 E41.5 F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n;VG1 E{flush_length-41.5} F{new_filament_e_feedrate}\n{else}\n;VG1 E{flush_length} F{min(old_filament_e_feedrate,new_filament_e_feedrate)}\n{endif}\nSYNC T{ceil(flush_length / 125) * 5}\n; VFLUSH_END\n\nM1002 set_filament_type:{filament_type[next_extruder]}\n\nM400\nM83\n{if next_extruder < 255}\nM620.10 R{retract_length_toolchange[filament_map[next_extruder]-1]}\nM628 S0\n;VM109 S[new_filament_temp]\nM629\nM400\n\n;prime_tower_interface\n{if is_prime_tower_interface && filament_tower_interface_purge_volume !=0}\nG150.1\nM620.13 W0 L{filament_tower_interface_purge_volume} T{filament_tower_interface_print_temp} R0.0\n{endif}\n;prime_tower_interface\n\nM983.3 F{filament_max_volumetric_speed[next_extruder]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_extruder]-1]}\n\nM400\n\nG1 Z{max_layer_z + 3.0} F3000\n\n{else}\nG1 X[x_after_toolchange] Y[y_after_toolchange] Z[z_after_toolchange] F12000\n{endif}\n\n\nM621 S[next_extruder]A B\n\nM622.1 S0 ;for prev version, default skip\nM1002 judge_flag powerloss_resume_flag\nM622 J1\nM983.3 F{filament_max_volumetric_speed[next_extruder]/2.4} A0.4 R{retract_length_toolchange[filament_map[next_extruder]-1]}\nM400\nG1 Z{max_layer_z + 3.0} F3000\nM1002 set_flag powerloss_resume_flag=0\nM623\n\nM620.6 I[next_extruder] H[next_hotend] W1 ;enable ams air printing detect\n\n{if (filament_type[next_extruder] == \"TPU\")}\nM1015.3 S1 H[nozzle_diameter];enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[next_extruder] == \"PLA\") || (filament_type[next_extruder] == \"PETG\")\n || (filament_type[next_extruder] == \"PLA-CF\") || (filament_type[next_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H[nozzle_diameter] ;disable E air printing detect\n{endif}\n\n{if layer_z <= (initial_layer_print_height + 0.001)}\nM204 S[initial_layer_acceleration]\n{else}\nM204 S[travel_acceleration]\n{endif}\n\nG1 Y256 F18000\n\n\n{if (overall_chamber_temperature < 40)}\n{if (layer_num + 1 <= close_additional_fan_first_x_layers[next_extruder])}\n M106 P2 S{first_x_layer_fan_speed[next_extruder]*255.0/100.0 };set first x_layer fan\n\tM106 P10 S{first_x_layer_fan_speed[next_extruder]*255.0/100.0 };set first x_layer fan\n{elsif (layer_num + 1 < additional_fan_full_speed_layer[next_extruder] && additional_fan_full_speed_layer[next_extruder] > close_additional_fan_first_x_layers[next_extruder])}\n M106 P2 S{(first_x_layer_fan_speed[next_extruder] + (additional_cooling_fan_speed[next_extruder] - first_x_layer_fan_speed[next_extruder]) * (layer_num + 1 - close_additional_fan_first_x_layers[next_extruder]) / (additional_fan_full_speed_layer[next_extruder] - close_additional_fan_first_x_layers[next_extruder])) * 255.0/100.0}\n\tM106 P10 S{(first_x_layer_fan_speed[next_extruder] + (additional_cooling_fan_speed[next_extruder] - first_x_layer_fan_speed[next_extruder]) * (layer_num + 1 - close_additional_fan_first_x_layers[next_extruder]) / (additional_fan_full_speed_layer[next_extruder] - close_additional_fan_first_x_layers[next_extruder])) * 255.0/100.0}\n{else}\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R30 S35 U{max_additional_fan/100.0} V1.0 O40; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R35 S45 U{max_additional_fan/100.0} V0.5 O50; set PETG ND0.2 chamber autocooling\n {else}\n M142 P1 R35 S50 U{max_additional_fan/100.0} V0.5 O55; set PETG ND0.4 chamber autocooling\n {endif}\n {endif}\n{endif}\n{endif}\n;not set fan changing filament",
"layer_change_gcode": ";======== X2D layer_change gcode ==========\n;===== 2025/04/08 =====\n\n{if (layer_num + 1 == 1)}\n{if (overall_chamber_temperature >= 40)}\n ;not reset filter fan in first layer\n ;not reset fan\n{endif}\n{endif}\n\n{if (layer_num + 1 <= close_additional_fan_first_x_layers[current_extruder])}\n{if (overall_chamber_temperature < 40)}\n M106 P2 S{first_x_layer_fan_speed[current_extruder]*255.0/100.0}\n\tM106 P10 S{first_x_layer_fan_speed[current_extruder]*255.0/100.0}\n{endif}\n;not reset fan\n{elsif (layer_num + 1 < additional_fan_full_speed_layer[current_extruder] && additional_fan_full_speed_layer[current_extruder] > close_additional_fan_first_x_layers[current_extruder])}\n{if (overall_chamber_temperature < 40)}\n M106 P2 S{(first_x_layer_fan_speed[current_extruder] + (additional_cooling_fan_speed[current_extruder] - first_x_layer_fan_speed[current_extruder]) * (layer_num + 1 - close_additional_fan_first_x_layers[current_extruder]) / (additional_fan_full_speed_layer[current_extruder] - close_additional_fan_first_x_layers[current_extruder])) * 255.0/100.0}\n\tM106 P10 S{(first_x_layer_fan_speed[current_extruder] + (additional_cooling_fan_speed[current_extruder] - first_x_layer_fan_speed[current_extruder]) * (layer_num + 1 - close_additional_fan_first_x_layers[current_extruder]) / (additional_fan_full_speed_layer[current_extruder] - close_additional_fan_first_x_layers[current_extruder])) * 255.0/100.0}\n{endif}\n;not reset fan\n{elsif (layer_num + 1 == max(close_additional_fan_first_x_layers[current_extruder] + 1, additional_fan_full_speed_layer[current_extruder]))}\n{if (overall_chamber_temperature < 40)}\n ;updata chamber autocooling in Xth layer\n {if (min_vitrification_temperature <= 50)}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R30 S35 U{max_additional_fan/100.0} V1.0 O40; set PLA/TPU ND0.2 chamber autocooling\n {else}\n M142 P1 R30 S40 U{max_additional_fan/100.0} V1.0 O45; set PLA/TPU ND0.4 chamber autocooling\n {endif}\n {else}\n {if (nozzle_diameter == 0.2)}\n M142 P1 R35 S45 U{max_additional_fan/100.0} V0.5 O50; set PETG ND0.2 chamber autocooling\n {else}\n M142 P1 R35 S50 U{max_additional_fan/100.0} V0.5 O55; set PETG ND0.4 chamber autocooling\n {endif}\n {endif}\n{else}\n ;not reset filter fan in Xth layer\n{endif}\n;not reset fan\n{endif}\n\n\n; update layer progress\nM73 L{layer_num+1}\nM991 S0 P{layer_num} ;notify layer change\n",
"machine_end_gcode": ";======== X2D end gcode ==========\n;===== 2026/03/30 =====\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\n\nG90\nG1 Z{max_layer_z + 0.4} F900 ; lower z a little\nM1002 judge_flag timelapse_record_flag\nM622 J1\n G150.3\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S5 ;wait for last picture to be taken\nM623 ;end of \"timelapse_record_flag\"\n\nG90\nG1 Z{max_layer_z + 10} F900 ; lower z a little\n\nM140 S0 ; turn off bed\nM141 S0 ; turn off chamber heating\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off remote part cooling fan\nM106 P3 S0 ; turn off chamber cooling fan\nM106 P10 S0 ; turn off remote part1 cooling fan\n\n; pull back filament to AMS\nM620 S65279 B\n; M620.11 P1 L0 I65279 E-3\nT65279\nG150.1 F8000\nM621 S65279 B\n\nM620 S65535 B\n; M620.11 P1 L0 I65535 E-4\nT65535\nG150.1 F8000\nM621 S65535 B\n\nG150.3\n\nM104 S0 T0; turn off hotend\nM104 S0 T1; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\n{if (80.0 - max_layer_z/2) > 0}\n {if (max_layer_z + 80.0 - max_layer_z/2) < 256}\n G1 Z{max_layer_z + 80.0 - max_layer_z/2} F600\n G1 Z{max_layer_z + 78.0 - max_layer_z/2}\n {else}\n G1 Z256 F600\n G1 Z256\n {endif}\n{else}\n {if (max_layer_z + 4.0) < 256}\n G1 Z{max_layer_z + 4.0} F600\n G1 Z{max_layer_z + 2.0}\n {else}\n G1 Z256 F600\n G1 Z256\n {endif}\n{endif}\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM1015.3 S0 ;disable clog detect\nM1015.4 S0 K0 ;disable air printing detect\n\n;=====printer finish air purification=========\nM622.1 S0\nM1002 judge_flag print_finish_air_filt_flag\n\nM622 J1\nM1002 gcode_claim_action : 66\nM145 P1\nM106 P10 S255\nM400 S180\nM106 P10 S0\nM623\n\nM622 J2\nM1002 gcode_claim_action : 66\nM145 P0\nM106 P3 S255\nM400 S180\nM106 P3 S0\nM623\n;=====printer finish air purification=========\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A53 B10 L50 C53 D10 M50 E53 F10 N50 \nM1006 A57 B10 L50 C57 D10 M50 E57 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A53 B10 L50 C53 D10 M50 E53 F10 N50 \nM1006 A57 B10 L50 C57 D10 M50 E57 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A48 B10 L50 C48 D10 M50 E48 F10 N50 \nM1006 A0 B15 L0 C0 D15 M0 E0 F15 N0 \nM1006 A60 B10 L50 C60 D10 M50 E60 F10 N50 \nM1006 W\n;=====printer finish sound=========\nM400\nM18\n\n",
- "machine_start_gcode": ";M1002 set_flag extrude_cali_flag=1\n;M1002 set_flag g29_before_print_flag=1\n;M1002 set_flag auto_cali_toolhead_offset_flag=1\n;M1002 set_flag build_plate_detect_flag=1\n\n;======== X2D start gcode==========\n;===== 2026/05/08 =====\n\n M140 S[bed_temperature_initial_layer_single] ; heat heatbed first\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n M400\n ;M73 P99\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50 \nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50 \nM1006 A61 B9 L50 C61 D9 M50 E61 F9 N50 \nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50 \nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50 \nM1006 A61 B18 L50 C61 D18 M50 E61 F18 N50 \nM1006 W\n;=====printer start sound ===================\n\n M1012.1 T1100\n M620 M ;enable remap\n M622.1 S0\n G383.4\n \n;===== avoid end stop =================\n G91\n G380 S2 Z22 F1200\n G380 S2 Z-12 F1200\n G90\n;===== avoid end stop =================\n\n;===== reset machine status =================\n M204 S10000\n M630 S0 P1\n G90\n M17 D ; reset motor current to default\n M960 S5 P1 ; turn on logo lamp\n M220 S100 ;Reset Feedrate\n M1002 set_gcode_claim_speed_level: 5\n M221 S100 ;Reset Flowrate\n M73.2 R1.0 ;Reset left time magnitude\n G29.1 Z{+0.0} ; clear z-trim value first\n M983.1 M1\n M982.2 S1 ; turn on cog noise reduction\n;===== reset machine status =================\n\n;==== set airduct mode ==== \n{if (overall_chamber_temperature >= 40)}\nM145 P1 ; set airduct mode to heating mode for heating\nM106 P2 S0 ; turn off auxiliary fan\nM106 P10 S255 ; turn on filter fan\n{else}\nM145 P0 ; set airduct mode to cooling mode for cooling\nM106 P2 S255 ; turn on auxiliary fan for cooling\nM106 P10 S255 ; turn on auxiliary fan for cooling\nM106 P3 S127 ; turn on chamber fan for cooling\n;M140 S0 ; stop heatbed from heating\nM1002 gcode_claim_action : 29\nM191 S0 ; wait for chamber temp\nM106 P2 S102 ; turn on auxiliary fan\nM106 P10 S102 ; turn on chamber fan\nM142 P6 R30 S40 U0.6 V0.8 ; set PLA/TPU/PETG exhaust chamber autocooling\n{endif}\n;==== set airduct mode ==== \n\n;===== start to heat heatbed & hotend==========\n M1002 gcode_claim_action : 2\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]} \n \n ;===== set chamber temperature ==========\n {if (overall_chamber_temperature >= 40)}\n M145 P1 ; set airduct mode to heating mode\n M141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n {endif}\n;===== set chamber temperature ==========\n\n G29.2 S0 ; avoid invalid abl data\n\n;===== first homing start =====\n M1002 gcode_claim_action : 13\n G28 X T300 R\n G150.1 F8000 ; wipe mouth to avoid filament stick to heatbed\n G150.3\n M972 S24 P0\n M1002 gcode_claim_action : 74 ; Heatbed surface foreign object detection\n M972 S26 P0 C0\n G90\n M83\n G1 Y128 F30000\n G1 X128\n G28 Z P0 T400\n M400\n;===== first homign end =====\n\n;===== detection start =====\n M1002 gcode_claim_action : 11\n\n M104 S0 T0\n M104 S0 T1\n M562 P1 E0 B1\n M562 P2 E0 B1\n M18 E\n M400 P200\n M1028 S1\n M972 S19 P0 ;heatbed detection\n M972 S31 P0 ;toolhead camera dirt detection\n M1002 gcode_claim_action : 73 ; Build plate alignment detection\n M972 S34 P0 ;print plate deviation detection\n M1028 S0\n M562 P1 E1 B1\n M562 P2 E1 B1\n M17 D\n\n ;M400\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} T{filament_map[initial_no_support_extruder] % 2} ; rise temp in advance\n G151 P{filament_map[initial_no_support_extruder] % 2} M ; plug the heat nozzle\n {if max_print_z >= 145}\n M1002 gcode_claim_action : 75 ; Detect obstacles at the botton of the heated bed\n G3811 Z{max_print_z} ; Detect obstacles at the bottom of the heated bed\n {endif}\n;===== detection end =====\n\n;===== prepare print temperature and material ==========\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-40} A ; rise temp in advance\n M400\n M211 X0 Y0 Z0 ;turn off soft endstop\n M975 S1 ; turn on input shaping\n \n G29.2 S0 ; avoid invalid abl data\n G150.3\n{if ((filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG\")) && (nozzle_diameter[initial_no_support_extruder] == 0.2)}\nM620.10 A0 F74.8347 H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F74.8347 H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n{endif}\n \n M620.11 P0 L0 I[initial_no_support_extruder] B[initial_no_support_hotend] E0\n M620.11 K0 I[initial_no_support_extruder] B[initial_no_support_hotend] R0\n\n M620 S[initial_no_support_extruder]A H[initial_no_support_hotend] B ; switch material if AMS exist\n M620.22 I[initial_no_support_extruder] P1 ; enable remote extruder runout auto purge.\n M1002 gcode_claim_action : 4\n M1002 set_filament_type:UNKNOWN\n M400\n T[initial_no_support_extruder] H[initial_no_support_hotend]\n M400\n M628 S0\n M629\n M400\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M621 S[initial_no_support_extruder]A B\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n M400\n M106 P1 S0\n M400\n G29.2 S1\n;===== prepare print temperature and material ==========\n\n;===== auto extrude cali start =========================\n M975 S1\n M1002 judge_flag extrude_cali_flag\n M622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M623\n\n M622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n\n M622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n;===== auto extrude cali end =========================\n\n {if hold_chamber_temp_for_flat_print}\n G150.3\n M1002 gcode_claim_action : 58\n M104 S{first_layer_temperature[initial_no_support_extruder]}\n {if bed_temperature_initial_layer_single > 89}\n {if overall_chamber_temperature < 40}\n M1030 S1200\n SYNC R0 T1200\n {else}\n M1030 S600\n SYNC R0 T600\n {endif} \n {else}\n M1030 S300\n SYNC R0 T300\n {endif}\n M1030 C\n {endif}\n\n {if filament_type[current_extruder] == \"TPU\" || filament_type[current_extruder] == \"PVA\"}\n {else}\n M83\n G1 E-3 F1800\n M400 P500\n {endif}\n G150.2\n G150.1 F8000\n G150.2\n G150.1 F8000\n\n G91\n G1 Y-16 F12000 ; move away from the trash bin\n G90\n M400\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-80} A\n\n;===== wipe right nozzle start =====\n M1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n M400\n;===== wipe left nozzle end =====\n\n{if filament_type[current_extruder] == \"PC\"}\n M109 S170 A\n{else}\n M109 S140 A\n{endif}\n M106 S0 ; turn off fan , too noisy\n G91\n G1 Z5 F1200\n G90\n M400\n G150.1\n\n{if (overall_chamber_temperature >= 40)}\nM1002 gcode_claim_action : 49\nM191 S[overall_chamber_temperature] ; wait for chamber temp\n{endif}\n\n;===== z ofst cali start =====\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n G383 O0 M1 T140\n M400\n;===== z ofst cali end =====\nG90\nM83\nG0 Y200 F18000\n\n;===== bed leveling ==================================\n M1002 gcode_claim_action : 54\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n M109 S140 A\n M106 S0 ; turn off fan , too noisy\n M1002 judge_flag g29_before_print_flag\n M622 J1\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H R\n {else}\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {endif}\n M400\n M623\n \n M622 J2\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H R\n {else}\n G29 A2 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {endif}\n M400\n M623\n\n M622 J0\n G28 R\n M623\n G29.2 S1\n;===== bed leveling end ================================\n\n; cali eddy z pos\n;G383.13 T1 C1\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} A\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n G90\n G1 X128 Y128 F20000\n G1 Z5 F1200\n M400 P200\n M970.3 Q1 A5 K0 O1\n M974 Q1 S2 P0\n M970.3 Q0 A7 K0 O1\n M974 Q0 S2 P0\n M975 S1\n M400\n;===== mech mode sweep end =====\n\nM104 S[nozzle_temperature_initial_layer] A\nG150.3\n\n M400 P50\n M500 D1\n M400 S3\n;===== xy ofst cali start =====\nM1002 judge_flag auto_cali_toolhead_offset_flag\n\nM622 J0\n M1012.5 N1 R1\nM623\n\nM622 J1\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])}\n M620 D[initial_no_support_hotend]\n G383 O1 T{nozzle_temperature_initial_layer[initial_no_support_extruder]} L{initial_no_support_extruder}\n M141 S[overall_chamber_temperature]\nM623\n\nM622 J2\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])}\n M620 D[initial_no_support_hotend]\n G383.3 T{nozzle_temperature_initial_layer[initial_no_support_extruder]} L{initial_no_support_extruder}\n M141 S[overall_chamber_temperature]\nM623\n;===== xy ofst cali end =====\n\n M104 S[nozzle_temperature_initial_layer] A\n\n G150.3 ; move to garbage can to wait for temp\n\n;===== wait temperature reaching the reference value =======\n M140 S[bed_temperature_initial_layer_single] \n M190 S[bed_temperature_initial_layer_single] \n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off cooling fan\n \n;===== wait temperature reaching the reference value =======\n\n M1002 gcode_claim_action : 255\n M400\n M975 S1 ; turn on mech mode supression\n M983.4 S0 ; turn off deformation compensation \n\n;============switch again==================\n M211 X0 Y0 Z0 ;turn off soft endstop\n G91\n G1 Z6 F1200\n G90\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M620 S[initial_no_support_extruder]A H[initial_no_support_hotend] B\n M620.22 I[initial_no_support_extruder] P1 ; enable remote extruder runout auto purge.\n M400\n T[initial_no_support_extruder] H[initial_no_support_hotend]\n M400\n M628 S0\n M629\n M400\n M621 S[initial_no_support_extruder]A B\n;============switch again==================\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if bed_temperature_initial_layer_single > 70}\n {if curr_bed_type=='Textured PEI Plate'}\n G29.1 Z{-0.003} ; for Textured PEI Plate\n {else}\n G29.1 Z{0.017}\n {endif}\n {else}\n {if curr_bed_type=='Textured PEI Plate'}\n G29.1 Z{0.002} ; for Textured PEI Plate\n {else}\n G29.1 Z{0.022}\n {endif}\n {endif}\n\n;===== nozzle load line ===============================\nM1002 gcode_claim_action : 51\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 X100 Y0 F24000\n M400\n ;G130 O0 X100 Y-0.4 Z0.6 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053} L40 E20 D5\n G130 O0 X100 Y-0.2 Z0.6 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053} L40 E12 D4\nG90\n G90\n M83\n G1 Z1\n M400\n;===== noozle load line end ===========================\nM1002 gcode_claim_action : 0\n G29.99\n\n;M993 A1 B1 C1 ; nozzle cam detection allowed.\n\nM620.6 I[initial_no_support_extruder] H[initial_no_support_hotend] W1 ;enable ams air printing detect\n\n\n{if (filament_type[initial_no_support_extruder] == \"TPU\")}\nM1015.3 S1 H[nozzle_diameter];enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PETG\")\n || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H[nozzle_diameter] ;disable E air printing detect\n{endif}\n",
+ "machine_start_gcode": ";M1002 set_flag extrude_cali_flag=1\n;M1002 set_flag g29_before_print_flag=1\n;M1002 set_flag auto_cali_toolhead_offset_flag=1\n;M1002 set_flag build_plate_detect_flag=1\n\n;======== X2D start gcode==========\n;===== 2026/05/08 =====\n\n M140 S[bed_temperature_initial_layer_single] ; heat heatbed first\n M993 A0 B0 C0 ; nozzle cam detection not allowed.\n M400\n ;M73 P99\n\n;=====printer start sound ===================\nM17\nM400 S1\nM1006 S1\nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50 \nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50 \nM1006 A61 B9 L50 C61 D9 M50 E61 F9 N50 \nM1006 A53 B9 L50 C53 D9 M50 E53 F9 N50 \nM1006 A56 B9 L50 C56 D9 M50 E56 F9 N50 \nM1006 A61 B18 L50 C61 D18 M50 E61 F18 N50 \nM1006 W\n;=====printer start sound ===================\n\n M1012.1 T1100\n M620 M ;enable remap\n M622.1 S0\n G383.4\n \n;===== avoid end stop =================\n G91\n G380 S2 Z22 F1200\n G380 S2 Z-12 F1200\n G90\n;===== avoid end stop =================\n\n;===== reset machine status =================\n M204 S10000\n M630 S0 P1\n G90\n M17 D ; reset motor current to default\n M960 S5 P1 ; turn on logo lamp\n M220 S100 ;Reset Feedrate\n M1002 set_gcode_claim_speed_level: 5\n M221 S100 ;Reset Flowrate\n M73.2 R1.0 ;Reset left time magnitude\n G29.1 Z{+0.0} ; clear z-trim value first\n M983.1 M1\n M982.2 S1 ; turn on cog noise reduction\n;===== reset machine status =================\n\n;==== set airduct mode ==== \n{if (overall_chamber_temperature >= 40)}\nM145 P1 ; set airduct mode to heating mode for heating\nM106 P2 S0 ; turn off auxiliary fan\nM106 P10 S255 ; turn on filter fan\n{else}\nM145 P0 ; set airduct mode to cooling mode for cooling\nM106 P2 S255 ; turn on auxiliary fan for cooling\nM106 P10 S255 ; turn on auxiliary fan for cooling\nM106 P3 S127 ; turn on chamber fan for cooling\n;M140 S0 ; stop heatbed from heating\nM1002 gcode_claim_action : 29\nM191 S0 ; wait for chamber temp\nM106 P2 S102 ; turn on auxiliary fan\nM106 P10 S102 ; turn on chamber fan\nM142 P6 R30 S40 U0.6 V0.8 ; set PLA/TPU/PETG exhaust chamber autocooling\n{endif}\n;==== set airduct mode ==== \n\n;===== start to heat heatbed & hotend==========\n M1002 gcode_claim_action : 2\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]} \n \n ;===== set chamber temperature ==========\n {if (overall_chamber_temperature >= 40)}\n M145 P1 ; set airduct mode to heating mode\n M141 S[overall_chamber_temperature] ; Let Chamber begin to heat\n {endif}\n;===== set chamber temperature ==========\n\n G29.2 S0 ; avoid invalid abl data\n\n;===== first homing start =====\n M1002 gcode_claim_action : 13\n G28 X T300 R\n G150.1 F8000 ; wipe mouth to avoid filament stick to heatbed\n G150.3\n M972 S24 P0\n M1002 gcode_claim_action : 74 ; Heatbed surface foreign object detection\n M972 S26 P0 C0\n G90\n M83\n G1 Y128 F30000\n G1 X128\n G28 Z P0 T400\n M400\n;===== first homign end =====\n\n;===== detection start =====\n M1002 gcode_claim_action : 11\n\n M104 S0 T0\n M104 S0 T1\n M562 P1 E0 B1\n M562 P2 E0 B1\n M18 E\n M400 P200\n M1028 S1\n M972 S19 P0 ;heatbed detection\n M972 S31 P0 ;toolhead camera dirt detection\n M1002 gcode_claim_action : 73 ; Build plate alignment detection\n M972 S34 P0 ;print plate deviation detection\n M1028 S0\n M562 P1 E1 B1\n M562 P2 E1 B1\n M17 D\n\n ;M400\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} T{filament_map[initial_no_support_extruder] % 2} ; rise temp in advance\n G151 P{filament_map[initial_no_support_extruder] % 2} M ; plug the heat nozzle\n {if max_print_z >= 145}\n M1002 gcode_claim_action : 75 ; Detect obstacles at the botton of the heated bed\n G3811 Z{max_print_z} ; Detect obstacles at the bottom of the heated bed\n {endif}\n;===== detection end =====\n\n;===== prepare print temperature and material ==========\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-40} A ; rise temp in advance\n M400\n M211 X0 Y0 Z0 ;turn off soft endstop\n M975 S1 ; turn on input shaping\n \n G29.2 S0 ; avoid invalid abl data\n G150.3\n{if ((filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG\")) && (nozzle_diameter[initial_no_support_extruder] == 0.2)}\nM620.10 A0 F74.8347 H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F74.8347 H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n{else}\nM620.10 A0 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\nM620.10 A1 F{flush_volumetric_speeds[initial_no_support_extruder]/2.4053*60} H{nozzle_diameter[initial_no_support_extruder]} T{flush_temperatures[initial_no_support_extruder]} P{nozzle_temperature_initial_layer[initial_no_support_extruder]} S1\n{endif}\n \n M620.11 P0 L0 I[initial_no_support_extruder] B[initial_no_support_hotend] E0\n M620.11 K0 I[initial_no_support_extruder] B[initial_no_support_hotend] R0\n\n M620 S[initial_no_support_extruder]A H[initial_no_support_hotend] B ; switch material if AMS exist\n M620.22 I[initial_no_support_extruder] P1 ; enable remote extruder runout auto purge.\n M1002 gcode_claim_action : 4\n M1002 set_filament_type:UNKNOWN\n M400\n T[initial_no_support_extruder] H[initial_no_support_hotend]\n M400\n M628 S0\n M629\n M400\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M621 S[initial_no_support_extruder]A B\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n M400\n M106 P1 S0\n M400\n G29.2 S1\n;===== prepare print temperature and material ==========\n\n;===== auto extrude cali start =========================\n M975 S1\n M1002 judge_flag extrude_cali_flag\n M622 J0\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M623\n\n M622 J1\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n\n M622 J2\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M1002 gcode_claim_action : 8\n M109 S{nozzle_temperature[initial_no_support_extruder]}\n G90\n M83\n M983.3 F{filament_max_volumetric_speed[initial_no_support_extruder]/2.4} A0.4 ; cali dynamic extrusion compensation\n M400\n M106 P1 S255\n M400 S5\n M106 P1 S0\n G150.3\n M623\n;===== auto extrude cali end =========================\n\n {if hold_chamber_temp_for_flat_print}\n G150.3\n M1002 gcode_claim_action : 58\n M104 S{first_layer_temperature[initial_no_support_extruder]}\n {if bed_temperature_initial_layer_single > 89}\n {if overall_chamber_temperature < 40}\n M1030 S1200\n SYNC R0 T1200\n {else}\n M1030 S600\n SYNC R0 T600\n {endif} \n {else}\n M1030 S300\n SYNC R0 T300\n {endif}\n M1030 C\n {endif}\n\n {if filament_type[current_extruder] == \"TPU\" || filament_type[current_extruder] == \"PVA\"}\n {else}\n M83\n G1 E-3 F1800\n M400 P500\n {endif}\n G150.2\n G150.1 F8000\n G150.2\n G150.1 F8000\n\n G91\n G1 Y-16 F12000 ; move away from the trash bin\n G90\n M400\n\n M104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]-80} A\n\n;===== wipe right nozzle start =====\n M1002 gcode_claim_action : 14\n G150 T{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n M400\n;===== wipe left nozzle end =====\n\n{if filament_type[current_extruder] == \"PC\"}\n M109 S170 A\n{else}\n M109 S140 A\n{endif}\n M106 S0 ; turn off fan , too noisy\n G91\n G1 Z5 F1200\n G90\n M400\n G150.1\n\n{if (overall_chamber_temperature >= 40)}\nM1002 gcode_claim_action : 49\nM191 S[overall_chamber_temperature] ; wait for chamber temp\n{endif}\n\n;===== z ofst cali start =====\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n G383 O0 M1 T140\n M400\n;===== z ofst cali end =====\nG90\nM83\nG0 Y200 F18000\n\n;===== bed leveling ==================================\n M1002 gcode_claim_action : 54\n M190 S[bed_temperature_initial_layer_single]; ensure bed temp\n M109 S140 A\n M106 S0 ; turn off fan , too noisy\n M1002 judge_flag g29_before_print_flag\n M622 J1\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H R\n {else}\n G29 A1 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {endif}\n M400\n M623\n \n M622 J2\n M1002 gcode_claim_action : 1\n {if hold_chamber_temp_for_flat_print}\n G29 H R\n {else}\n G29 A2 X{first_layer_print_min[0]} Y{first_layer_print_min[1]} I{first_layer_print_size[0]} J{first_layer_print_size[1]} R\n {endif}\n M400\n M623\n\n M622 J0\n G28 R\n M623\n G29.2 S1\n;===== bed leveling end ================================\n\n; cali eddy z pos\n;G383.13 T1 C1\n\nM104 S{nozzle_temperature_initial_layer[initial_no_support_extruder]} A\n;===== mech mode sweep start =====\n M1002 gcode_claim_action : 3\n G90\n G1 X128 Y128 F20000\n G1 Z5 F1200\n M400 P200\n M970.3 Q1 A5 K0 O1\n M974 Q1 S2 P0\n M970.3 Q0 A7 K0 O1\n M974 Q0 S2 P0\n M975 S1\n M400\n;===== mech mode sweep end =====\n\nM104 S[nozzle_temperature_initial_layer] A\nG150.3\nM400 P50\n M500 D1\n M400 S3\n;===== xy ofst cali start =====\nM1002 judge_flag auto_cali_toolhead_offset_flag\n\nM622 J0\n M1012.5 N1 R1\nM623\n\nM622 J1\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])}\n M620 D[initial_no_support_hotend]\n G383 O1 T{nozzle_temperature_initial_layer[initial_no_support_extruder]} L{initial_no_support_extruder}\n M141 S[overall_chamber_temperature]\nM623\n\nM622 J2\n M1002 gcode_claim_action : 39\n M141 S0\n M620.17 T0 S{nozzle_temperature_initial_layer[(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])]} L{(first_non_support_filaments[0] != -1 ? first_non_support_filaments[0] : first_filaments[0])}\n M620.17 T1 S{nozzle_temperature_initial_layer[(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])]} L{(first_non_support_filaments[1] != -1 ? first_non_support_filaments[1] : first_filaments[1])}\n M620 D[initial_no_support_hotend]\n G383.3 T{nozzle_temperature_initial_layer[initial_no_support_extruder]} L{initial_no_support_extruder}\n M141 S[overall_chamber_temperature]\nM623\n;===== xy ofst cali end =====\n\n M104 S[nozzle_temperature_initial_layer] A\n\n G150.3 ; move to garbage can to wait for temp\n\n;===== wait temperature reaching the reference value =======\n M140 S[bed_temperature_initial_layer_single] \n M190 S[bed_temperature_initial_layer_single] \n\n ;========turn off light and fans =============\n M960 S1 P0 ; turn off laser\n M960 S2 P0 ; turn off laser\n M106 S0 ; turn off cooling fan\n \n;===== wait temperature reaching the reference value =======\n\n M1002 gcode_claim_action : 255\n M400\n M975 S1 ; turn on mech mode supression\n M983.4 S0 ; turn off deformation compensation \n\n;============switch again==================\n M211 X0 Y0 Z0 ;turn off soft endstop\n G91\n G1 Z6 F1200\n G90\n M1002 set_filament_type:{filament_type[initial_no_support_extruder]}\n M620 S[initial_no_support_extruder]A H[initial_no_support_hotend] B\n M620.22 I[initial_no_support_extruder] P1 ; enable remote extruder runout auto purge.\n M400\n T[initial_no_support_extruder] H[initial_no_support_hotend]\n M400\n M628 S0\n M629\n M400\n M621 S[initial_no_support_extruder]A B\n;============switch again==================\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n {if bed_temperature_initial_layer_single > 70}\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{-0.003} ; for Textured PEI Plate\n {else}\n G29.1 Z{0.017}\n {endif}\n {else}\n {if curr_bed_type==\"Textured PEI Plate\"}\n G29.1 Z{0.002} ; for Textured PEI Plate\n {else}\n G29.1 Z{0.022}\n {endif}\n {endif}\n\n;===== nozzle load line ===============================\nM1002 gcode_claim_action : 51\n G29.2 S1 ; ensure z comp turn on\n G90\n M83\n M109 S{nozzle_temperature_initial_layer[initial_no_support_extruder]}\n G0 X100 Y0 F24000\n M400\n ;G130 O0 X100 Y-0.4 Z0.6 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053} L40 E20 D5\n G130 O0 X100 Y-0.2 Z0.6 F{filament_max_volumetric_speed[initial_no_support_extruder]/2/2.4053} L40 E12 D4\nG90\n G90\n M83\n G1 Z1\n M400\n;===== noozle load line end ===========================\nM1002 gcode_claim_action : 0\n G29.99\n\n;M993 A1 B1 C1 ; nozzle cam detection allowed.\n\nM620.6 I[initial_no_support_extruder] H[initial_no_support_hotend] W1 ;enable ams air printing detect\n\n\n{if (filament_type[initial_no_support_extruder] == \"TPU\")}\nM1015.3 S1 H[nozzle_diameter];enable tpu clog detect\n{else}\nM1015.3 S0;disable tpu clog detect\n{endif}\n\n{if (filament_type[initial_no_support_extruder] == \"PLA\") || (filament_type[initial_no_support_extruder] == \"PETG\")\n || (filament_type[initial_no_support_extruder] == \"PLA-CF\") || (filament_type[initial_no_support_extruder] == \"PETG-CF\")}\nM1015.4 S1 K1 H[nozzle_diameter] ;enable E air printing detect\n{else}\nM1015.4 S0 K0 H[nozzle_diameter] ;disable E air printing detect\n{endif}\n",
"time_lapse_gcode": ";======== X2D timelapse gcode ========\n;======== 2025/08/15 ========\n; SKIPPABLE_START\n; SKIPTYPE: timelapse\nM622.1 S1 ; for prev firware, default turned on\n\nM1002 judge_flag timelapse_record_flag\n\nM622 J1\n\n{if !spiral_mode && !(has_timelapse_safe_pos && print_sequence != \"by object\") }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n M83\n G1 Z{max_layer_z + 0.4} F1200\n M400\n {endif}\n{endif}\n\n{if has_timelapse_safe_pos && print_sequence != \"by object\"}\nM9711 M{timelapse_type} E{most_used_physical_extruder_id} X{timelapse_pos_x} Y{timelapse_pos_y} Z{layer_z + 0.4} S11 C10 O0 T3000\n{else}\nM9711 M{timelapse_type} E{most_used_physical_extruder_id} Z{layer_z + 0.4} S11 C10 O0 T3000\n{endif}\n\n{if !spiral_mode && !(has_timelapse_safe_pos && print_sequence != \"by object\") }\n {if most_used_physical_extruder_id!= curr_physical_extruder_id || timelapse_type == 1}\n G90\n M83\n G1 Z{max_layer_z + 3.0} F1200\n G0 F18000\n {endif}\n{endif}\n\nM623\n; SKIPPABLE_END\n",
"nozzle_diameter": [
"0.4",
diff --git a/resources/profiles/CoLiDo.json b/resources/profiles/CoLiDo.json
index 88a7776661..b3b72a09f7 100644
--- a/resources/profiles/CoLiDo.json
+++ b/resources/profiles/CoLiDo.json
@@ -1,6 +1,6 @@
{
"name": "CoLiDo",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "0",
"description": "CoLiDo configurations",
"machine_model_list": [
diff --git a/resources/profiles/CoLiDo/process/fdm_process_colidodiy40_common.json b/resources/profiles/CoLiDo/process/fdm_process_colidodiy40_common.json
index b12228818a..b1a9fbe2b2 100644
--- a/resources/profiles/CoLiDo/process/fdm_process_colidodiy40_common.json
+++ b/resources/profiles/CoLiDo/process/fdm_process_colidodiy40_common.json
@@ -185,10 +185,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.4",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "270",
@@ -255,7 +257,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/CoLiDo/process/fdm_process_colidox16_common.json b/resources/profiles/CoLiDo/process/fdm_process_colidox16_common.json
index 3306fbda47..ac5b507cce 100644
--- a/resources/profiles/CoLiDo/process/fdm_process_colidox16_common.json
+++ b/resources/profiles/CoLiDo/process/fdm_process_colidox16_common.json
@@ -196,10 +196,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.4",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "90",
@@ -266,7 +268,8 @@
"tree_support_wall_count": "2",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Comgrow.json b/resources/profiles/Comgrow.json
index 45bbe6d8d4..6e7c43f58d 100644
--- a/resources/profiles/Comgrow.json
+++ b/resources/profiles/Comgrow.json
@@ -1,6 +1,6 @@
{
"name": "Comgrow",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "0",
"description": "Comgrow configurations",
"machine_model_list": [
diff --git a/resources/profiles/Comgrow/process/fdm_process_comgrow_common.json b/resources/profiles/Comgrow/process/fdm_process_comgrow_common.json
index b4441aa4a5..b926f2ee86 100644
--- a/resources/profiles/Comgrow/process/fdm_process_comgrow_common.json
+++ b/resources/profiles/Comgrow/process/fdm_process_comgrow_common.json
@@ -137,10 +137,12 @@
"slowdown_for_curled_perimeters": "0",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "10%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.4",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "200",
@@ -199,7 +201,8 @@
"tree_support_top_rate": "30%",
"tree_support_wall_count": "0",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "3",
diff --git a/resources/profiles/Creality.json b/resources/profiles/Creality.json
index 3d3536377b..3a4f448b14 100644
--- a/resources/profiles/Creality.json
+++ b/resources/profiles/Creality.json
@@ -1,6 +1,6 @@
{
"name": "Creality",
- "version": "02.03.02.72",
+ "version": "02.03.02.73",
"force_update": "0",
"description": "Creality configurations",
"machine_model_list": [
@@ -76,6 +76,10 @@
"name": "Creality Ender-3 V3 SE",
"sub_path": "machine/Creality Ender-3 V3 SE.json"
},
+ {
+ "name": "Creality Ender-3 V4",
+ "sub_path": "machine/Creality Ender-3 V4.json"
+ },
{
"name": "Creality Ender-5",
"sub_path": "machine/Creality Ender-5.json"
@@ -112,22 +116,42 @@
"name": "Creality K1",
"sub_path": "machine/Creality K1.json"
},
+ {
+ "name": "Creality K1_CFS-C",
+ "sub_path": "machine/Creality K1_CFS-C.json"
+ },
{
"name": "Creality K1 Max",
"sub_path": "machine/Creality K1 Max.json"
},
+ {
+ "name": "Creality K1 Max_CFS-C",
+ "sub_path": "machine/Creality K1 Max_CFS-C.json"
+ },
{
"name": "Creality K1 SE",
"sub_path": "machine/Creality K1 SE.json"
},
+ {
+ "name": "Creality K1 SE_CFS-C",
+ "sub_path": "machine/Creality K1 SE_CFS-C.json"
+ },
{
"name": "Creality K1C",
"sub_path": "machine/Creality K1C.json"
},
+ {
+ "name": "Creality K1C_CFS-C",
+ "sub_path": "machine/Creality K1C_CFS-C.json"
+ },
{
"name": "Creality K2",
"sub_path": "machine/Creality K2.json"
},
+ {
+ "name": "Creality K2 SE",
+ "sub_path": "machine/Creality K2 SE.json"
+ },
{
"name": "Creality K2 Plus",
"sub_path": "machine/Creality K2 Plus.json"
@@ -136,6 +160,10 @@
"name": "Creality K2 Pro",
"sub_path": "machine/Creality K2 Pro.json"
},
+ {
+ "name": "Creality SPARKX i7",
+ "sub_path": "machine/Creality SPARKX i7.json"
+ },
{
"name": "Creality Sermoon V1",
"sub_path": "machine/Creality Sermoon V1.json"
@@ -730,6 +758,10 @@
"name": "0.08mm SuperDetail @Creality K2 0.4 nozzle",
"sub_path": "process/0.08mm SuperDetail @Creality K2 0.4 nozzle.json"
},
+ {
+ "name": "0.06mm SuperDetail @Creality K2 Plus 0.2 nozzle",
+ "sub_path": "process/0.06mm SuperDetail @Creality K2 Plus 0.2 nozzle.json"
+ },
{
"name": "0.08mm SuperDetail @Creality K2 Plus 0.2 nozzle",
"sub_path": "process/0.08mm SuperDetail @Creality K2 Plus 0.2 nozzle.json"
@@ -1385,6 +1417,210 @@
{
"name": "0.36mm Chunky @Creality Ender5Pro (2019) 1.0",
"sub_path": "process/0.36mm Chunky @Creality Ender5Pro (2019) 1.0.json"
+ },
+ {
+ "name": "0.20mm Standard @Creality K1_CFS-C 0.4 nozzle",
+ "sub_path": "process/0.20mm Standard @Creality K1_CFS-C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Creality K1C_CFS-C 0.4 nozzle",
+ "sub_path": "process/0.20mm Standard @Creality K1C_CFS-C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Creality K1 SE_CFS-C 0.4 nozzle",
+ "sub_path": "process/0.20mm Standard @Creality K1 SE_CFS-C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.30mm Standard @Creality K1 SE 0.6 nozzle",
+ "sub_path": "process/0.30mm Standard @Creality K1 SE 0.6 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Creality K1 Max_CFS-C 0.4 nozzle",
+ "sub_path": "process/0.20mm Standard @Creality K1 Max_CFS-C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.40mm Standard @Creality SPARKX i7 0.8 nozzle",
+ "sub_path": "process/0.40mm Standard @Creality SPARKX i7 0.8 nozzle.json"
+ },
+ {
+ "name": "0.30mm Standard @Creality SPARKX i7 0.6 nozzle",
+ "sub_path": "process/0.30mm Standard @Creality SPARKX i7 0.6 nozzle.json"
+ },
+ {
+ "name": "0.08mm HueForge @Creality SPARKX i7 0.4 nozzle",
+ "sub_path": "process/0.08mm HueForge @Creality SPARKX i7 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Creality SPARKX i7 0.4 nozzle",
+ "sub_path": "process/0.20mm Standard @Creality SPARKX i7 0.4 nozzle.json"
+ },
+ {
+ "name": "0.08mm HueForge @Creality K2 0.4 nozzle",
+ "sub_path": "process/0.08mm HueForge @Creality K2 0.4 nozzle.json"
+ },
+ {
+ "name": "0.40mm Standard @Creality Hi 0.8 nozzle",
+ "sub_path": "process/0.40mm Standard @Creality Hi 0.8 nozzle.json"
+ },
+ {
+ "name": "0.08mm HueForge @Creality Hi 0.4 nozzle",
+ "sub_path": "process/0.08mm HueForge @Creality Hi 0.4 nozzle.json"
+ },
+ {
+ "name": "0.1mm Standard @Creality Hi 0.2 nozzle",
+ "sub_path": "process/0.1mm Standard @Creality Hi 0.2 nozzle.json"
+ },
+ {
+ "name": "0.16mm Standard @Creality K2 SE 0.4 nozzle",
+ "sub_path": "process/0.16mm Standard @Creality K2 SE 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Creality K2 SE 0.4 nozzle",
+ "sub_path": "process/0.20mm Standard @Creality K2 SE 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Standard @Creality K2 SE 0.4 nozzle",
+ "sub_path": "process/0.24mm Standard @Creality K2 SE 0.4 nozzle.json"
+ },
+ {
+ "name": "0.08mm HueForge @Creality K2 Pro 0.4 nozzle",
+ "sub_path": "process/0.08mm HueForge @Creality K2 Pro 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Standard @Creality Ender-3 V4 0.4 nozzle",
+ "sub_path": "process/0.20mm Standard @Creality Ender-3 V4 0.4 nozzle.json"
+ },
+ {
+ "name": "0.40mm Strength @Creality K2 Plus 0.8 nozzle",
+ "sub_path": "process/0.40mm Strength @Creality K2 Plus 0.8 nozzle.json"
+ },
+ {
+ "name": "0.30mm Strength @Creality K2 Plus 0.6 nozzle",
+ "sub_path": "process/0.30mm Strength @Creality K2 Plus 0.6 nozzle.json"
+ },
+ {
+ "name": "0.08mm HueForge @Creality K2 Plus 0.4 nozzle",
+ "sub_path": "process/0.08mm HueForge @Creality K2 Plus 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm High Quality @Creality K2 Plus 0.4 nozzle",
+ "sub_path": "process/0.20mm High Quality @Creality K2 Plus 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Strength @Creality K2 Plus 0.4 nozzle",
+ "sub_path": "process/0.20mm Strength @Creality K2 Plus 0.4 nozzle.json"
+ },
+ {
+ "name": "0.08mm SuperDetail @Creality SPARKX i7 0.4 nozzle",
+ "sub_path": "process/0.08mm SuperDetail @Creality SPARKX i7 0.4 nozzle.json"
+ },
+ {
+ "name": "0.12mm Fine @Creality SPARKX i7 0.4 nozzle",
+ "sub_path": "process/0.12mm Fine @Creality SPARKX i7 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Creality SPARKX i7 0.4 nozzle",
+ "sub_path": "process/0.16mm Optimal @Creality SPARKX i7 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Creality SPARKX i7 0.4 nozzle",
+ "sub_path": "process/0.24mm Draft @Creality SPARKX i7 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm SuperDraft @Creality SPARKX i7 0.4 nozzle",
+ "sub_path": "process/0.28mm SuperDraft @Creality SPARKX i7 0.4 nozzle.json"
+ },
+ {
+ "name": "0.10mm HighDetail @Creality SPARKX i7 0.2 nozzle",
+ "sub_path": "process/0.10mm HighDetail @Creality SPARKX i7 0.2 nozzle.json"
+ },
+ {
+ "name": "0.08mm SuperDetail @Creality K1 (0.4 nozzle)",
+ "sub_path": "process/0.08mm SuperDetail @Creality K1 (0.4 nozzle).json"
+ },
+ {
+ "name": "0.08mm SuperDetail @Creality K1 Max_CFS-C 0.4 nozzle",
+ "sub_path": "process/0.08mm SuperDetail @Creality K1 Max_CFS-C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.08mm SuperDetail @Creality K1C 0.4 nozzle",
+ "sub_path": "process/0.08mm SuperDetail @Creality K1C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.08mm SuperDetail @Creality K1C_CFS-C 0.4 nozzle",
+ "sub_path": "process/0.08mm SuperDetail @Creality K1C_CFS-C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.08mm SuperDetail @Creality K1Max (0.4 nozzle)",
+ "sub_path": "process/0.08mm SuperDetail @Creality K1Max (0.4 nozzle).json"
+ },
+ {
+ "name": "0.08mm SuperDetail @Creality K1_CFS-C 0.4 nozzle",
+ "sub_path": "process/0.08mm SuperDetail @Creality K1_CFS-C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Fine @Creality Ender-3 V4 0.4 nozzle",
+ "sub_path": "process/0.16mm Fine @Creality Ender-3 V4 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Creality K1 Max_CFS-C 0.4 nozzle",
+ "sub_path": "process/0.16mm Optimal @Creality K1 Max_CFS-C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Creality K1 SE_CFS-C 0.4 nozzle",
+ "sub_path": "process/0.16mm Optimal @Creality K1 SE_CFS-C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Creality K1C_CFS-C 0.4 nozzle",
+ "sub_path": "process/0.16mm Optimal @Creality K1C_CFS-C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Creality K1_CFS-C 0.4 nozzle",
+ "sub_path": "process/0.16mm Optimal @Creality K1_CFS-C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Creality Ender-3 V4 0.4 nozzle",
+ "sub_path": "process/0.24mm Draft @Creality Ender-3 V4 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Creality K1 Max_CFS-C 0.4 nozzle",
+ "sub_path": "process/0.24mm Draft @Creality K1 Max_CFS-C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Creality K1 SE_CFS-C 0.4 nozzle",
+ "sub_path": "process/0.24mm Draft @Creality K1 SE_CFS-C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Creality K1C_CFS-C 0.4 nozzle",
+ "sub_path": "process/0.24mm Draft @Creality K1C_CFS-C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Creality K1_CFS-C 0.4 nozzle",
+ "sub_path": "process/0.24mm Draft @Creality K1_CFS-C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm SuperDraft @Creality Ender-3 V4 0.4 nozzle",
+ "sub_path": "process/0.28mm SuperDraft @Creality Ender-3 V4 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm SuperDraft @Creality Hi 0.4 nozzle",
+ "sub_path": "process/0.28mm SuperDraft @Creality Hi 0.4 nozzle.json"
+ },
+ {
+ "name": "0.2mm Standard @Creality Ender-5 Max 0.4 nozzle",
+ "sub_path": "process/0.2mm Standard @Creality Ender-5 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.2mm Ultrafast @Creality Ender-5 Max 0.4 nozzle",
+ "sub_path": "process/0.2mm Ultrafast @Creality Ender-5 Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.30mm Standard @Creality Ender-5 Max 0.6 nozzle",
+ "sub_path": "process/0.30mm Standard @Creality Ender-5 Max 0.6 nozzle.json"
+ },
+ {
+ "name": "0.40mm Standard @Creality Ender-5 Max 0.8 nozzle",
+ "sub_path": "process/0.40mm Standard @Creality Ender-5 Max 0.8 nozzle.json"
}
],
"filament_list": [
@@ -1667,6 +1903,1934 @@
{
"name": "Creality Generic PLA Silk @K2-all",
"sub_path": "filament/Creality Generic PLA Silk @K2-all.json"
+ },
+ {
+ "name": "fdm_filament_pp",
+ "sub_path": "filament/fdm_filament_pp.json"
+ },
+ {
+ "name": "fdm_filament_pps",
+ "sub_path": "filament/fdm_filament_pps.json"
+ },
+ {
+ "name": "fdm_filament_pva",
+ "sub_path": "filament/fdm_filament_pva.json"
+ },
+ {
+ "name": "fdm_filament_petg",
+ "sub_path": "filament/fdm_filament_petg.json"
+ },
+ {
+ "name": "fdm_filament_hips",
+ "sub_path": "filament/fdm_filament_hips.json"
+ },
+ {
+ "name": "CR-ABS @Ender-3 V4-all",
+ "sub_path": "filament/CR-ABS @Ender-3 V4-all.json"
+ },
+ {
+ "name": "CR-ABS @Hi-all",
+ "sub_path": "filament/CR-ABS @Hi-all.json"
+ },
+ {
+ "name": "CR-ABS @K1 Max_CFS-C-all",
+ "sub_path": "filament/CR-ABS @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "CR-ABS @K1 SE-all",
+ "sub_path": "filament/CR-ABS @K1 SE-all.json"
+ },
+ {
+ "name": "CR-ABS @K1 SE_CFS-C-all",
+ "sub_path": "filament/CR-ABS @K1 SE_CFS-C-all.json"
+ },
+ {
+ "name": "CR-ABS @K1C-all",
+ "sub_path": "filament/CR-ABS @K1C-all.json"
+ },
+ {
+ "name": "CR-ABS @K1C_CFS-C-all",
+ "sub_path": "filament/CR-ABS @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "CR-ABS @K1_CFS-C-all",
+ "sub_path": "filament/CR-ABS @K1_CFS-C-all.json"
+ },
+ {
+ "name": "CR-ABS @K2 Plus-all",
+ "sub_path": "filament/CR-ABS @K2 Plus-all.json"
+ },
+ {
+ "name": "CR-ABS @K2 Pro-all",
+ "sub_path": "filament/CR-ABS @K2 Pro-all.json"
+ },
+ {
+ "name": "CR-ABS @K2 SE-all",
+ "sub_path": "filament/CR-ABS @K2 SE-all.json"
+ },
+ {
+ "name": "CR-ABS @K2-all",
+ "sub_path": "filament/CR-ABS @K2-all.json"
+ },
+ {
+ "name": "CR-Nylon @K1 Max_CFS-C-all",
+ "sub_path": "filament/CR-Nylon @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "CR-Nylon @K1C-all",
+ "sub_path": "filament/CR-Nylon @K1C-all.json"
+ },
+ {
+ "name": "CR-Nylon @K1C_CFS-C-all",
+ "sub_path": "filament/CR-Nylon @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "CR-Nylon @K1_CFS-C-all",
+ "sub_path": "filament/CR-Nylon @K1_CFS-C-all.json"
+ },
+ {
+ "name": "CR-Nylon @K2 Plus-all",
+ "sub_path": "filament/CR-Nylon @K2 Plus-all.json"
+ },
+ {
+ "name": "CR-PETG @Ender-3 V4-all",
+ "sub_path": "filament/CR-PETG @Ender-3 V4-all.json"
+ },
+ {
+ "name": "CR-PETG @Hi-all",
+ "sub_path": "filament/CR-PETG @Hi-all.json"
+ },
+ {
+ "name": "CR-PETG @K1 Max_CFS-C-all",
+ "sub_path": "filament/CR-PETG @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "CR-PETG @K1 SE-all",
+ "sub_path": "filament/CR-PETG @K1 SE-all.json"
+ },
+ {
+ "name": "CR-PETG @K1 SE_CFS-C-all",
+ "sub_path": "filament/CR-PETG @K1 SE_CFS-C-all.json"
+ },
+ {
+ "name": "CR-PETG @K1C-all",
+ "sub_path": "filament/CR-PETG @K1C-all.json"
+ },
+ {
+ "name": "CR-PETG @K1C_CFS-C-all",
+ "sub_path": "filament/CR-PETG @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "CR-PETG @K1_CFS-C-all",
+ "sub_path": "filament/CR-PETG @K1_CFS-C-all.json"
+ },
+ {
+ "name": "CR-PETG @K2 Plus-all",
+ "sub_path": "filament/CR-PETG @K2 Plus-all.json"
+ },
+ {
+ "name": "CR-PETG @K2 Pro-all",
+ "sub_path": "filament/CR-PETG @K2 Pro-all.json"
+ },
+ {
+ "name": "CR-PETG @K2 SE-all",
+ "sub_path": "filament/CR-PETG @K2 SE-all.json"
+ },
+ {
+ "name": "CR-PETG @K2-all",
+ "sub_path": "filament/CR-PETG @K2-all.json"
+ },
+ {
+ "name": "CR-PETG @SPARKX i7-all",
+ "sub_path": "filament/CR-PETG @SPARKX i7-all.json"
+ },
+ {
+ "name": "CR-PLA @Ender-3 V4-all",
+ "sub_path": "filament/CR-PLA @Ender-3 V4-all.json"
+ },
+ {
+ "name": "CR-PLA @Hi-all",
+ "sub_path": "filament/CR-PLA @Hi-all.json"
+ },
+ {
+ "name": "CR-PLA @K1 Max_CFS-C-all",
+ "sub_path": "filament/CR-PLA @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "CR-PLA @K1 SE-all",
+ "sub_path": "filament/CR-PLA @K1 SE-all.json"
+ },
+ {
+ "name": "CR-PLA @K1 SE_CFS-C-all",
+ "sub_path": "filament/CR-PLA @K1 SE_CFS-C-all.json"
+ },
+ {
+ "name": "CR-PLA @K1C-all",
+ "sub_path": "filament/CR-PLA @K1C-all.json"
+ },
+ {
+ "name": "CR-PLA @K1C_CFS-C-all",
+ "sub_path": "filament/CR-PLA @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "CR-PLA @K1_CFS-C-all",
+ "sub_path": "filament/CR-PLA @K1_CFS-C-all.json"
+ },
+ {
+ "name": "CR-PLA @K2 Plus-all",
+ "sub_path": "filament/CR-PLA @K2 Plus-all.json"
+ },
+ {
+ "name": "CR-PLA @K2 Pro-all",
+ "sub_path": "filament/CR-PLA @K2 Pro-all.json"
+ },
+ {
+ "name": "CR-PLA @K2 SE-all",
+ "sub_path": "filament/CR-PLA @K2 SE-all.json"
+ },
+ {
+ "name": "CR-PLA @K2-all",
+ "sub_path": "filament/CR-PLA @K2-all.json"
+ },
+ {
+ "name": "CR-PLA @SPARKX i7-all",
+ "sub_path": "filament/CR-PLA @SPARKX i7-all.json"
+ },
+ {
+ "name": "CR-PLA Carbon @K1 Max_CFS-C-all",
+ "sub_path": "filament/CR-PLA Carbon @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "CR-PLA Carbon @K1C-all",
+ "sub_path": "filament/CR-PLA Carbon @K1C-all.json"
+ },
+ {
+ "name": "CR-PLA Carbon @K1C_CFS-C-all",
+ "sub_path": "filament/CR-PLA Carbon @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "CR-PLA Carbon @K1_CFS-C-all",
+ "sub_path": "filament/CR-PLA Carbon @K1_CFS-C-all.json"
+ },
+ {
+ "name": "CR-PLA Carbon @K2 Plus-all",
+ "sub_path": "filament/CR-PLA Carbon @K2 Plus-all.json"
+ },
+ {
+ "name": "CR-PLA Fluo @K1 Max_CFS-C-all",
+ "sub_path": "filament/CR-PLA Fluo @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "CR-PLA Fluo @K1C-all",
+ "sub_path": "filament/CR-PLA Fluo @K1C-all.json"
+ },
+ {
+ "name": "CR-PLA Fluo @K1C_CFS-C-all",
+ "sub_path": "filament/CR-PLA Fluo @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "CR-PLA Fluo @K1_CFS-C-all",
+ "sub_path": "filament/CR-PLA Fluo @K1_CFS-C-all.json"
+ },
+ {
+ "name": "CR-PLA Fluo @K2 Plus-all",
+ "sub_path": "filament/CR-PLA Fluo @K2 Plus-all.json"
+ },
+ {
+ "name": "CR-PLA Fluo @K2 Pro-all",
+ "sub_path": "filament/CR-PLA Fluo @K2 Pro-all.json"
+ },
+ {
+ "name": "CR-PLA Fluo @K2-all",
+ "sub_path": "filament/CR-PLA Fluo @K2-all.json"
+ },
+ {
+ "name": "CR-PLA Fluo @SPARKX i7-all",
+ "sub_path": "filament/CR-PLA Fluo @SPARKX i7-all.json"
+ },
+ {
+ "name": "CR-PLA Matte @Ender-3 V4-all",
+ "sub_path": "filament/CR-PLA Matte @Ender-3 V4-all.json"
+ },
+ {
+ "name": "CR-PLA Matte @K1 Max_CFS-C-all",
+ "sub_path": "filament/CR-PLA Matte @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "CR-PLA Matte @K1C-all",
+ "sub_path": "filament/CR-PLA Matte @K1C-all.json"
+ },
+ {
+ "name": "CR-PLA Matte @K1C_CFS-C-all",
+ "sub_path": "filament/CR-PLA Matte @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "CR-PLA Matte @K1_CFS-C-all",
+ "sub_path": "filament/CR-PLA Matte @K1_CFS-C-all.json"
+ },
+ {
+ "name": "CR-PLA Matte @K2 Plus-all",
+ "sub_path": "filament/CR-PLA Matte @K2 Plus-all.json"
+ },
+ {
+ "name": "CR-PLA Matte @K2 Pro-all",
+ "sub_path": "filament/CR-PLA Matte @K2 Pro-all.json"
+ },
+ {
+ "name": "CR-PLA Matte @K2-all",
+ "sub_path": "filament/CR-PLA Matte @K2-all.json"
+ },
+ {
+ "name": "CR-PLA Matte @SPARKX i7-all",
+ "sub_path": "filament/CR-PLA Matte @SPARKX i7-all.json"
+ },
+ {
+ "name": "CR-Silk @Ender-3 V4-all",
+ "sub_path": "filament/CR-Silk @Ender-3 V4-all.json"
+ },
+ {
+ "name": "CR-Silk @Hi-all",
+ "sub_path": "filament/CR-Silk @Hi-all.json"
+ },
+ {
+ "name": "CR-Silk @K1 Max_CFS-C-all",
+ "sub_path": "filament/CR-Silk @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "CR-Silk @K1 SE-all",
+ "sub_path": "filament/CR-Silk @K1 SE-all.json"
+ },
+ {
+ "name": "CR-Silk @K1 SE_CFS-C-all",
+ "sub_path": "filament/CR-Silk @K1 SE_CFS-C-all.json"
+ },
+ {
+ "name": "CR-Silk @K1C-all",
+ "sub_path": "filament/CR-Silk @K1C-all.json"
+ },
+ {
+ "name": "CR-Silk @K1C_CFS-C-all",
+ "sub_path": "filament/CR-Silk @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "CR-Silk @K1_CFS-C-all",
+ "sub_path": "filament/CR-Silk @K1_CFS-C-all.json"
+ },
+ {
+ "name": "CR-Silk @K2 Plus-all",
+ "sub_path": "filament/CR-Silk @K2 Plus-all.json"
+ },
+ {
+ "name": "CR-Silk @K2 Pro-all",
+ "sub_path": "filament/CR-Silk @K2 Pro-all.json"
+ },
+ {
+ "name": "CR-Silk @K2 SE-all",
+ "sub_path": "filament/CR-Silk @K2 SE-all.json"
+ },
+ {
+ "name": "CR-Silk @K2-all",
+ "sub_path": "filament/CR-Silk @K2-all.json"
+ },
+ {
+ "name": "CR-Silk @SPARKX i7-all",
+ "sub_path": "filament/CR-Silk @SPARKX i7-all.json"
+ },
+ {
+ "name": "CR-TPU @K1 Max_CFS-C-all",
+ "sub_path": "filament/CR-TPU @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "CR-TPU @K1C-all",
+ "sub_path": "filament/CR-TPU @K1C-all.json"
+ },
+ {
+ "name": "CR-TPU @K1C_CFS-C-all",
+ "sub_path": "filament/CR-TPU @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "CR-TPU @K1_CFS-C-all",
+ "sub_path": "filament/CR-TPU @K1_CFS-C-all.json"
+ },
+ {
+ "name": "CR-TPU @K2 Plus-all",
+ "sub_path": "filament/CR-TPU @K2 Plus-all.json"
+ },
+ {
+ "name": "CR-TPU @K2 Pro-all",
+ "sub_path": "filament/CR-TPU @K2 Pro-all.json"
+ },
+ {
+ "name": "CR-TPU @K2-all",
+ "sub_path": "filament/CR-TPU @K2-all.json"
+ },
+ {
+ "name": "CR-TPU @SPARKX i7-all",
+ "sub_path": "filament/CR-TPU @SPARKX i7-all.json"
+ },
+ {
+ "name": "CR-Wood @K1 Max_CFS-C-all",
+ "sub_path": "filament/CR-Wood @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "CR-Wood @K1C-all",
+ "sub_path": "filament/CR-Wood @K1C-all.json"
+ },
+ {
+ "name": "CR-Wood @K1C_CFS-C-all",
+ "sub_path": "filament/CR-Wood @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "CR-Wood @K1_CFS-C-all",
+ "sub_path": "filament/CR-Wood @K1_CFS-C-all.json"
+ },
+ {
+ "name": "CR-Wood @K2 Plus-all",
+ "sub_path": "filament/CR-Wood @K2 Plus-all.json"
+ },
+ {
+ "name": "EN-PLA+ @K1 Max_CFS-C-all",
+ "sub_path": "filament/EN-PLA+ @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "EN-PLA+ @K1C-all",
+ "sub_path": "filament/EN-PLA+ @K1C-all.json"
+ },
+ {
+ "name": "EN-PLA+ @K1C_CFS-C-all",
+ "sub_path": "filament/EN-PLA+ @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "EN-PLA+ @K1_CFS-C-all",
+ "sub_path": "filament/EN-PLA+ @K1_CFS-C-all.json"
+ },
+ {
+ "name": "EN-PLA+ @K2 Plus-all",
+ "sub_path": "filament/EN-PLA+ @K2 Plus-all.json"
+ },
+ {
+ "name": "EN-PLA+ @K2 Pro-all",
+ "sub_path": "filament/EN-PLA+ @K2 Pro-all.json"
+ },
+ {
+ "name": "EN-PLA+ @K2-all",
+ "sub_path": "filament/EN-PLA+ @K2-all.json"
+ },
+ {
+ "name": "EN-PLA+ @SPARKX i7-all",
+ "sub_path": "filament/EN-PLA+ @SPARKX i7-all.json"
+ },
+ {
+ "name": "ENDER FAST PLA @Hi-all",
+ "sub_path": "filament/ENDER FAST PLA @Hi-all.json"
+ },
+ {
+ "name": "ENDER FAST PLA @K2 Plus-all",
+ "sub_path": "filament/ENDER FAST PLA @K2 Plus-all.json"
+ },
+ {
+ "name": "ENDER FAST PLA @K2 Pro-all",
+ "sub_path": "filament/ENDER FAST PLA @K2 Pro-all.json"
+ },
+ {
+ "name": "ENDER FAST PLA @K2-all",
+ "sub_path": "filament/ENDER FAST PLA @K2-all.json"
+ },
+ {
+ "name": "ENDER FAST PLA @SPARKX i7-all",
+ "sub_path": "filament/ENDER FAST PLA @SPARKX i7-all.json"
+ },
+ {
+ "name": "Ender-PLA @Ender-3 V4-all",
+ "sub_path": "filament/Ender-PLA @Ender-3 V4-all.json"
+ },
+ {
+ "name": "Ender-PLA @Hi-all",
+ "sub_path": "filament/Ender-PLA @Hi-all.json"
+ },
+ {
+ "name": "Ender-PLA @K1 Max_CFS-C-all",
+ "sub_path": "filament/Ender-PLA @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Ender-PLA @K1C-all",
+ "sub_path": "filament/Ender-PLA @K1C-all.json"
+ },
+ {
+ "name": "Ender-PLA @K1C_CFS-C-all",
+ "sub_path": "filament/Ender-PLA @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Ender-PLA @K1_CFS-C-all",
+ "sub_path": "filament/Ender-PLA @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Ender-PLA @K2 Plus-all",
+ "sub_path": "filament/Ender-PLA @K2 Plus-all.json"
+ },
+ {
+ "name": "Ender-PLA @K2 Pro-all",
+ "sub_path": "filament/Ender-PLA @K2 Pro-all.json"
+ },
+ {
+ "name": "Ender-PLA @K2-all",
+ "sub_path": "filament/Ender-PLA @K2-all.json"
+ },
+ {
+ "name": "Ender-PLA @SPARKX i7-all",
+ "sub_path": "filament/Ender-PLA @SPARKX i7-all.json"
+ },
+ {
+ "name": "Generic ABS @Ender-3 V4-all",
+ "sub_path": "filament/Generic ABS @Ender-3 V4-all.json"
+ },
+ {
+ "name": "Generic ABS @Hi-all",
+ "sub_path": "filament/Generic ABS @Hi-all.json"
+ },
+ {
+ "name": "Generic ABS @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic ABS @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic ABS @K1 SE-all",
+ "sub_path": "filament/Generic ABS @K1 SE-all.json"
+ },
+ {
+ "name": "Generic ABS @K1 SE_CFS-C-all",
+ "sub_path": "filament/Generic ABS @K1 SE_CFS-C-all.json"
+ },
+ {
+ "name": "Generic ABS @K1C-all",
+ "sub_path": "filament/Generic ABS @K1C-all.json"
+ },
+ {
+ "name": "Generic ABS @K1C_CFS-C-all",
+ "sub_path": "filament/Generic ABS @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic ABS @K1_CFS-C-all",
+ "sub_path": "filament/Generic ABS @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic ABS @K2 Plus-all",
+ "sub_path": "filament/Generic ABS @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic ABS @K2 Pro-all",
+ "sub_path": "filament/Generic ABS @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic ABS @K2 SE-all",
+ "sub_path": "filament/Generic ABS @K2 SE-all.json"
+ },
+ {
+ "name": "Generic ABS @K2-all",
+ "sub_path": "filament/Generic ABS @K2-all.json"
+ },
+ {
+ "name": "Generic ASA @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic ASA @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic ASA @K1 SE-all",
+ "sub_path": "filament/Generic ASA @K1 SE-all.json"
+ },
+ {
+ "name": "Generic ASA @K1 SE_CFS-C-all",
+ "sub_path": "filament/Generic ASA @K1 SE_CFS-C-all.json"
+ },
+ {
+ "name": "Generic ASA @K1C-all",
+ "sub_path": "filament/Generic ASA @K1C-all.json"
+ },
+ {
+ "name": "Generic ASA @K1C_CFS-C-all",
+ "sub_path": "filament/Generic ASA @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic ASA @K1_CFS-C-all",
+ "sub_path": "filament/Generic ASA @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic ASA @K2 Plus-all",
+ "sub_path": "filament/Generic ASA @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic ASA @K2 Pro-all",
+ "sub_path": "filament/Generic ASA @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic ASA @K2 SE-all",
+ "sub_path": "filament/Generic ASA @K2 SE-all.json"
+ },
+ {
+ "name": "Generic ASA @K2-all",
+ "sub_path": "filament/Generic ASA @K2-all.json"
+ },
+ {
+ "name": "Generic ASA-CF @K2 Plus-all",
+ "sub_path": "filament/Generic ASA-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic BVOH @Hi-all",
+ "sub_path": "filament/Generic BVOH @Hi-all.json"
+ },
+ {
+ "name": "Generic BVOH @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic BVOH @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic BVOH @K1C-all",
+ "sub_path": "filament/Generic BVOH @K1C-all.json"
+ },
+ {
+ "name": "Generic BVOH @K1C_CFS-C-all",
+ "sub_path": "filament/Generic BVOH @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic BVOH @K1_CFS-C-all",
+ "sub_path": "filament/Generic BVOH @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic BVOH @K2 Plus-all",
+ "sub_path": "filament/Generic BVOH @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic BVOH @K2 Pro-all",
+ "sub_path": "filament/Generic BVOH @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic BVOH @K2-all",
+ "sub_path": "filament/Generic BVOH @K2-all.json"
+ },
+ {
+ "name": "Generic HIPS @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic HIPS @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic HIPS @K1C-all",
+ "sub_path": "filament/Generic HIPS @K1C-all.json"
+ },
+ {
+ "name": "Generic HIPS @K1C_CFS-C-all",
+ "sub_path": "filament/Generic HIPS @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic HIPS @K1_CFS-C-all",
+ "sub_path": "filament/Generic HIPS @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic HIPS @K2 Plus-all",
+ "sub_path": "filament/Generic HIPS @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PA @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic PA @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PA @K1C-all",
+ "sub_path": "filament/Generic PA @K1C-all.json"
+ },
+ {
+ "name": "Generic PA @K1C_CFS-C-all",
+ "sub_path": "filament/Generic PA @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PA @K1_CFS-C-all",
+ "sub_path": "filament/Generic PA @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PA @K2 Plus-all",
+ "sub_path": "filament/Generic PA @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PA @K2 Pro-all",
+ "sub_path": "filament/Generic PA @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic PA @K2-all",
+ "sub_path": "filament/Generic PA @K2-all.json"
+ },
+ {
+ "name": "Generic PA-CF @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic PA-CF @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PA-CF @K1C-all",
+ "sub_path": "filament/Generic PA-CF @K1C-all.json"
+ },
+ {
+ "name": "Generic PA-CF @K1C_CFS-C-all",
+ "sub_path": "filament/Generic PA-CF @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PA-CF @K1_CFS-C-all",
+ "sub_path": "filament/Generic PA-CF @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PA-CF @K2 Plus-all",
+ "sub_path": "filament/Generic PA-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PA12-CF @K2 Plus-all",
+ "sub_path": "filament/Generic PA12-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PA6-CF @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic PA6-CF @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PA6-CF @K1C-all",
+ "sub_path": "filament/Generic PA6-CF @K1C-all.json"
+ },
+ {
+ "name": "Generic PA6-CF @K1C_CFS-C-all",
+ "sub_path": "filament/Generic PA6-CF @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PA6-CF @K1_CFS-C-all",
+ "sub_path": "filament/Generic PA6-CF @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PA6-CF @K2 Plus-all",
+ "sub_path": "filament/Generic PA6-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PA6-CF @K2 Pro-all",
+ "sub_path": "filament/Generic PA6-CF @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic PA6-GF @K2 Plus-all",
+ "sub_path": "filament/Generic PA6-GF @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PA612-CF @K2 Plus-all",
+ "sub_path": "filament/Generic PA612-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PA612-CF @K2 Pro-all",
+ "sub_path": "filament/Generic PA612-CF @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic PAHT-CF @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic PAHT-CF @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PAHT-CF @K1C-all",
+ "sub_path": "filament/Generic PAHT-CF @K1C-all.json"
+ },
+ {
+ "name": "Generic PAHT-CF @K1C_CFS-C-all",
+ "sub_path": "filament/Generic PAHT-CF @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PAHT-CF @K1_CFS-C-all",
+ "sub_path": "filament/Generic PAHT-CF @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PAHT-CF @K2 Plus-all",
+ "sub_path": "filament/Generic PAHT-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PAHT-CF @K2 Pro-all",
+ "sub_path": "filament/Generic PAHT-CF @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic PAHT-CF @K2-all",
+ "sub_path": "filament/Generic PAHT-CF @K2-all.json"
+ },
+ {
+ "name": "Generic PC @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic PC @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PC @K1C-all",
+ "sub_path": "filament/Generic PC @K1C-all.json"
+ },
+ {
+ "name": "Generic PC @K1C_CFS-C-all",
+ "sub_path": "filament/Generic PC @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PC @K1_CFS-C-all",
+ "sub_path": "filament/Generic PC @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PC @K2 Plus-all",
+ "sub_path": "filament/Generic PC @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PC @K2 Pro-all",
+ "sub_path": "filament/Generic PC @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic PCTG @K2 Plus-all",
+ "sub_path": "filament/Generic PCTG @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PET @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic PET @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PET @K1C-all",
+ "sub_path": "filament/Generic PET @K1C-all.json"
+ },
+ {
+ "name": "Generic PET @K1C_CFS-C-all",
+ "sub_path": "filament/Generic PET @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PET @K1_CFS-C-all",
+ "sub_path": "filament/Generic PET @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PET @K2 Plus-all",
+ "sub_path": "filament/Generic PET @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PET @K2 Pro-all",
+ "sub_path": "filament/Generic PET @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic PET @K2-all",
+ "sub_path": "filament/Generic PET @K2-all.json"
+ },
+ {
+ "name": "Generic PET-CF @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic PET-CF @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PET-CF @K1C-all",
+ "sub_path": "filament/Generic PET-CF @K1C-all.json"
+ },
+ {
+ "name": "Generic PET-CF @K1C_CFS-C-all",
+ "sub_path": "filament/Generic PET-CF @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PET-CF @K1_CFS-C-all",
+ "sub_path": "filament/Generic PET-CF @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PET-CF @K2 Plus-all",
+ "sub_path": "filament/Generic PET-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PET-CF @K2 Pro-all",
+ "sub_path": "filament/Generic PET-CF @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic PETG @Ender-3 V4-all",
+ "sub_path": "filament/Generic PETG @Ender-3 V4-all.json"
+ },
+ {
+ "name": "Generic PETG @Hi-all",
+ "sub_path": "filament/Generic PETG @Hi-all.json"
+ },
+ {
+ "name": "Generic PETG @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic PETG @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PETG @K1 SE-all",
+ "sub_path": "filament/Generic PETG @K1 SE-all.json"
+ },
+ {
+ "name": "Generic PETG @K1 SE_CFS-C-all",
+ "sub_path": "filament/Generic PETG @K1 SE_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PETG @K1C-all",
+ "sub_path": "filament/Generic PETG @K1C-all.json"
+ },
+ {
+ "name": "Generic PETG @K1C_CFS-C-all",
+ "sub_path": "filament/Generic PETG @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PETG @K1_CFS-C-all",
+ "sub_path": "filament/Generic PETG @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PETG @K2 Plus-all",
+ "sub_path": "filament/Generic PETG @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PETG @K2 Pro-all",
+ "sub_path": "filament/Generic PETG @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic PETG @K2 SE-all",
+ "sub_path": "filament/Generic PETG @K2 SE-all.json"
+ },
+ {
+ "name": "Generic PETG @K2-all",
+ "sub_path": "filament/Generic PETG @K2-all.json"
+ },
+ {
+ "name": "Generic PETG @SPARKX i7-all",
+ "sub_path": "filament/Generic PETG @SPARKX i7-all.json"
+ },
+ {
+ "name": "Generic PETG-CF @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic PETG-CF @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PETG-CF @K1C-all",
+ "sub_path": "filament/Generic PETG-CF @K1C-all.json"
+ },
+ {
+ "name": "Generic PETG-CF @K1C_CFS-C-all",
+ "sub_path": "filament/Generic PETG-CF @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PETG-CF @K1_CFS-C-all",
+ "sub_path": "filament/Generic PETG-CF @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PETG-CF @K2 Plus-all",
+ "sub_path": "filament/Generic PETG-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PETG-CF @K2 Pro-all",
+ "sub_path": "filament/Generic PETG-CF @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic PETG-CF @K2-all",
+ "sub_path": "filament/Generic PETG-CF @K2-all.json"
+ },
+ {
+ "name": "Generic PETG-CF @SPARKX i7-all",
+ "sub_path": "filament/Generic PETG-CF @SPARKX i7-all.json"
+ },
+ {
+ "name": "Generic PETG-GF @K2 Plus-all",
+ "sub_path": "filament/Generic PETG-GF @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PETG-GF @K2 Pro-all",
+ "sub_path": "filament/Generic PETG-GF @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic PETG-GF @K2-all",
+ "sub_path": "filament/Generic PETG-GF @K2-all.json"
+ },
+ {
+ "name": "Generic PLA @Ender-3 V4-all",
+ "sub_path": "filament/Generic PLA @Ender-3 V4-all.json"
+ },
+ {
+ "name": "Generic PLA @Hi-all",
+ "sub_path": "filament/Generic PLA @Hi-all.json"
+ },
+ {
+ "name": "Generic PLA @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic PLA @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PLA @K1 SE-all",
+ "sub_path": "filament/Generic PLA @K1 SE-all.json"
+ },
+ {
+ "name": "Generic PLA @K1 SE_CFS-C-all",
+ "sub_path": "filament/Generic PLA @K1 SE_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PLA @K1C-all",
+ "sub_path": "filament/Generic PLA @K1C-all.json"
+ },
+ {
+ "name": "Generic PLA @K1C_CFS-C-all",
+ "sub_path": "filament/Generic PLA @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PLA @K1_CFS-C-all",
+ "sub_path": "filament/Generic PLA @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PLA @K2 Plus-all",
+ "sub_path": "filament/Generic PLA @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PLA @K2 Pro-all",
+ "sub_path": "filament/Generic PLA @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic PLA @K2 SE-all",
+ "sub_path": "filament/Generic PLA @K2 SE-all.json"
+ },
+ {
+ "name": "Generic PLA @K2-all",
+ "sub_path": "filament/Generic PLA @K2-all.json"
+ },
+ {
+ "name": "Generic PLA @SPARKX i7-all",
+ "sub_path": "filament/Generic PLA @SPARKX i7-all.json"
+ },
+ {
+ "name": "Generic PLA-CF @Ender-3 V4-all",
+ "sub_path": "filament/Generic PLA-CF @Ender-3 V4-all.json"
+ },
+ {
+ "name": "Generic PLA-CF @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic PLA-CF @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PLA-CF @K1 SE-all",
+ "sub_path": "filament/Generic PLA-CF @K1 SE-all.json"
+ },
+ {
+ "name": "Generic PLA-CF @K1 SE_CFS-C-all",
+ "sub_path": "filament/Generic PLA-CF @K1 SE_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PLA-CF @K1C-all",
+ "sub_path": "filament/Generic PLA-CF @K1C-all.json"
+ },
+ {
+ "name": "Generic PLA-CF @K1C_CFS-C-all",
+ "sub_path": "filament/Generic PLA-CF @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PLA-CF @K1_CFS-C-all",
+ "sub_path": "filament/Generic PLA-CF @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PLA-CF @K2 Plus-all",
+ "sub_path": "filament/Generic PLA-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PLA-CF @K2 Pro-all",
+ "sub_path": "filament/Generic PLA-CF @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic PLA-CF @K2 SE-all",
+ "sub_path": "filament/Generic PLA-CF @K2 SE-all.json"
+ },
+ {
+ "name": "Generic PLA-CF @K2-all",
+ "sub_path": "filament/Generic PLA-CF @K2-all.json"
+ },
+ {
+ "name": "Generic PLA-CF @SPARKX i7-all",
+ "sub_path": "filament/Generic PLA-CF @SPARKX i7-all.json"
+ },
+ {
+ "name": "Generic PLA-Silk @Ender-3 V4-all",
+ "sub_path": "filament/Generic PLA-Silk @Ender-3 V4-all.json"
+ },
+ {
+ "name": "Generic PLA-Silk @Hi-all",
+ "sub_path": "filament/Generic PLA-Silk @Hi-all.json"
+ },
+ {
+ "name": "Generic PLA-Silk @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic PLA-Silk @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PLA-Silk @K1 SE-all",
+ "sub_path": "filament/Generic PLA-Silk @K1 SE-all.json"
+ },
+ {
+ "name": "Generic PLA-Silk @K1 SE_CFS-C-all",
+ "sub_path": "filament/Generic PLA-Silk @K1 SE_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PLA-Silk @K1C-all",
+ "sub_path": "filament/Generic PLA-Silk @K1C-all.json"
+ },
+ {
+ "name": "Generic PLA-Silk @K1C_CFS-C-all",
+ "sub_path": "filament/Generic PLA-Silk @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PLA-Silk @K1_CFS-C-all",
+ "sub_path": "filament/Generic PLA-Silk @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PLA-Silk @K2 Plus-all",
+ "sub_path": "filament/Generic PLA-Silk @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PLA-Silk @K2 Pro-all",
+ "sub_path": "filament/Generic PLA-Silk @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic PLA-Silk @K2 SE-all",
+ "sub_path": "filament/Generic PLA-Silk @K2 SE-all.json"
+ },
+ {
+ "name": "Generic PLA-Silk @K2-all",
+ "sub_path": "filament/Generic PLA-Silk @K2-all.json"
+ },
+ {
+ "name": "Generic PLA-Silk @SPARKX i7-all",
+ "sub_path": "filament/Generic PLA-Silk @SPARKX i7-all.json"
+ },
+ {
+ "name": "Generic PP @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic PP @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PP @K1C-all",
+ "sub_path": "filament/Generic PP @K1C-all.json"
+ },
+ {
+ "name": "Generic PP @K1C_CFS-C-all",
+ "sub_path": "filament/Generic PP @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PP @K1_CFS-C-all",
+ "sub_path": "filament/Generic PP @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PP @K2 Plus-all",
+ "sub_path": "filament/Generic PP @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PP @K2 Pro-all",
+ "sub_path": "filament/Generic PP @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic PP @K2-all",
+ "sub_path": "filament/Generic PP @K2-all.json"
+ },
+ {
+ "name": "Generic PP-CF @K2 Plus-all",
+ "sub_path": "filament/Generic PP-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PPS @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic PPS @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PPS @K1C-all",
+ "sub_path": "filament/Generic PPS @K1C-all.json"
+ },
+ {
+ "name": "Generic PPS @K1C_CFS-C-all",
+ "sub_path": "filament/Generic PPS @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PPS @K1_CFS-C-all",
+ "sub_path": "filament/Generic PPS @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PPS @K2 Plus-all",
+ "sub_path": "filament/Generic PPS @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PPS-CF @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic PPS-CF @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PPS-CF @K1C-all",
+ "sub_path": "filament/Generic PPS-CF @K1C-all.json"
+ },
+ {
+ "name": "Generic PPS-CF @K1C_CFS-C-all",
+ "sub_path": "filament/Generic PPS-CF @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PPS-CF @K1_CFS-C-all",
+ "sub_path": "filament/Generic PPS-CF @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PPS-CF @K2 Plus-all",
+ "sub_path": "filament/Generic PPS-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PVA @Hi-all",
+ "sub_path": "filament/Generic PVA @Hi-all.json"
+ },
+ {
+ "name": "Generic PVA @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic PVA @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PVA @K1C-all",
+ "sub_path": "filament/Generic PVA @K1C-all.json"
+ },
+ {
+ "name": "Generic PVA @K1C_CFS-C-all",
+ "sub_path": "filament/Generic PVA @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PVA @K1_CFS-C-all",
+ "sub_path": "filament/Generic PVA @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic PVA @K2 Plus-all",
+ "sub_path": "filament/Generic PVA @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic PVA @K2 Pro-all",
+ "sub_path": "filament/Generic PVA @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic PVA @K2-all",
+ "sub_path": "filament/Generic PVA @K2-all.json"
+ },
+ {
+ "name": "Generic Support for PA @K2 Plus-all",
+ "sub_path": "filament/Generic Support for PA @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic Support for PLA @K2 Plus-all",
+ "sub_path": "filament/Generic Support for PLA @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic TPU 64D @K2 Plus-all",
+ "sub_path": "filament/Generic TPU 64D @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic TPU 64D @SPARKX i7-all",
+ "sub_path": "filament/Generic TPU 64D @SPARKX i7-all.json"
+ },
+ {
+ "name": "Generic TPU @Ender-3 V4-all",
+ "sub_path": "filament/Generic TPU @Ender-3 V4-all.json"
+ },
+ {
+ "name": "Generic TPU @K1 Max_CFS-C-all",
+ "sub_path": "filament/Generic TPU @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Generic TPU @K1 SE-all",
+ "sub_path": "filament/Generic TPU @K1 SE-all.json"
+ },
+ {
+ "name": "Generic TPU @K1 SE_CFS-C-all",
+ "sub_path": "filament/Generic TPU @K1 SE_CFS-C-all.json"
+ },
+ {
+ "name": "Generic TPU @K1C-all",
+ "sub_path": "filament/Generic TPU @K1C-all.json"
+ },
+ {
+ "name": "Generic TPU @K1C_CFS-C-all",
+ "sub_path": "filament/Generic TPU @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Generic TPU @K1_CFS-C-all",
+ "sub_path": "filament/Generic TPU @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Generic TPU @K2 Plus-all",
+ "sub_path": "filament/Generic TPU @K2 Plus-all.json"
+ },
+ {
+ "name": "Generic TPU @K2 Pro-all",
+ "sub_path": "filament/Generic TPU @K2 Pro-all.json"
+ },
+ {
+ "name": "Generic TPU @K2 SE-all",
+ "sub_path": "filament/Generic TPU @K2 SE-all.json"
+ },
+ {
+ "name": "Generic TPU @K2-all",
+ "sub_path": "filament/Generic TPU @K2-all.json"
+ },
+ {
+ "name": "Generic TPU @SPARKX i7-all",
+ "sub_path": "filament/Generic TPU @SPARKX i7-all.json"
+ },
+ {
+ "name": "HP Ultra PLA @K1 Max_CFS-C-all",
+ "sub_path": "filament/HP Ultra PLA @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "HP Ultra PLA @K1C-all",
+ "sub_path": "filament/HP Ultra PLA @K1C-all.json"
+ },
+ {
+ "name": "HP Ultra PLA @K1C_CFS-C-all",
+ "sub_path": "filament/HP Ultra PLA @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "HP Ultra PLA @K1_CFS-C-all",
+ "sub_path": "filament/HP Ultra PLA @K1_CFS-C-all.json"
+ },
+ {
+ "name": "HP Ultra PLA @K2 Plus-all",
+ "sub_path": "filament/HP Ultra PLA @K2 Plus-all.json"
+ },
+ {
+ "name": "HP-ASA @K1 Max_CFS-C-all",
+ "sub_path": "filament/HP-ASA @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "HP-ASA @K1C-all",
+ "sub_path": "filament/HP-ASA @K1C-all.json"
+ },
+ {
+ "name": "HP-ASA @K1C_CFS-C-all",
+ "sub_path": "filament/HP-ASA @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "HP-ASA @K1_CFS-C-all",
+ "sub_path": "filament/HP-ASA @K1_CFS-C-all.json"
+ },
+ {
+ "name": "HP-ASA @K2 Plus-all",
+ "sub_path": "filament/HP-ASA @K2 Plus-all.json"
+ },
+ {
+ "name": "HP-ASA @K2 Pro-all",
+ "sub_path": "filament/HP-ASA @K2 Pro-all.json"
+ },
+ {
+ "name": "HP-ASA @K2 SE-all",
+ "sub_path": "filament/HP-ASA @K2 SE-all.json"
+ },
+ {
+ "name": "HP-ASA @K2-all",
+ "sub_path": "filament/HP-ASA @K2-all.json"
+ },
+ {
+ "name": "HP-TPU @Ender-3 V4-all",
+ "sub_path": "filament/HP-TPU @Ender-3 V4-all.json"
+ },
+ {
+ "name": "HP-TPU @Hi-all",
+ "sub_path": "filament/HP-TPU @Hi-all.json"
+ },
+ {
+ "name": "HP-TPU @K1 Max_CFS-C-all",
+ "sub_path": "filament/HP-TPU @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "HP-TPU @K1 SE-all",
+ "sub_path": "filament/HP-TPU @K1 SE-all.json"
+ },
+ {
+ "name": "HP-TPU @K1 SE_CFS-C-all",
+ "sub_path": "filament/HP-TPU @K1 SE_CFS-C-all.json"
+ },
+ {
+ "name": "HP-TPU @K1C-all",
+ "sub_path": "filament/HP-TPU @K1C-all.json"
+ },
+ {
+ "name": "HP-TPU @K1C_CFS-C-all",
+ "sub_path": "filament/HP-TPU @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "HP-TPU @K1_CFS-C-all",
+ "sub_path": "filament/HP-TPU @K1_CFS-C-all.json"
+ },
+ {
+ "name": "HP-TPU @K2 Plus-all",
+ "sub_path": "filament/HP-TPU @K2 Plus-all.json"
+ },
+ {
+ "name": "HP-TPU @K2 Pro-all",
+ "sub_path": "filament/HP-TPU @K2 Pro-all.json"
+ },
+ {
+ "name": "HP-TPU @K2 SE-all",
+ "sub_path": "filament/HP-TPU @K2 SE-all.json"
+ },
+ {
+ "name": "HP-TPU @K2-all",
+ "sub_path": "filament/HP-TPU @K2-all.json"
+ },
+ {
+ "name": "HP-TPU @SPARKX i7-all",
+ "sub_path": "filament/HP-TPU @SPARKX i7-all.json"
+ },
+ {
+ "name": "Hyper ABS @Ender-3 V4-all",
+ "sub_path": "filament/Hyper ABS @Ender-3 V4-all.json"
+ },
+ {
+ "name": "Hyper ABS @Hi-all",
+ "sub_path": "filament/Hyper ABS @Hi-all.json"
+ },
+ {
+ "name": "Hyper ABS @K1 Max_CFS-C-all",
+ "sub_path": "filament/Hyper ABS @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper ABS @K1 SE-all",
+ "sub_path": "filament/Hyper ABS @K1 SE-all.json"
+ },
+ {
+ "name": "Hyper ABS @K1 SE_CFS-C-all",
+ "sub_path": "filament/Hyper ABS @K1 SE_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper ABS @K1C-all",
+ "sub_path": "filament/Hyper ABS @K1C-all.json"
+ },
+ {
+ "name": "Hyper ABS @K1C_CFS-C-all",
+ "sub_path": "filament/Hyper ABS @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper ABS @K1_CFS-C-all",
+ "sub_path": "filament/Hyper ABS @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper ABS @K2 Plus-all",
+ "sub_path": "filament/Hyper ABS @K2 Plus-all.json"
+ },
+ {
+ "name": "Hyper ABS @K2 Pro-all",
+ "sub_path": "filament/Hyper ABS @K2 Pro-all.json"
+ },
+ {
+ "name": "Hyper ABS @K2 SE-all",
+ "sub_path": "filament/Hyper ABS @K2 SE-all.json"
+ },
+ {
+ "name": "Hyper ABS @K2-all",
+ "sub_path": "filament/Hyper ABS @K2-all.json"
+ },
+ {
+ "name": "Hyper L-W PLA @Hi-all",
+ "sub_path": "filament/Hyper L-W PLA @Hi-all.json"
+ },
+ {
+ "name": "Hyper L-W PLA @K1 Max_CFS-C-all",
+ "sub_path": "filament/Hyper L-W PLA @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper L-W PLA @K1 SE-all",
+ "sub_path": "filament/Hyper L-W PLA @K1 SE-all.json"
+ },
+ {
+ "name": "Hyper L-W PLA @K1 SE_CFS-C-all",
+ "sub_path": "filament/Hyper L-W PLA @K1 SE_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper L-W PLA @K1C-all",
+ "sub_path": "filament/Hyper L-W PLA @K1C-all.json"
+ },
+ {
+ "name": "Hyper L-W PLA @K1C_CFS-C-all",
+ "sub_path": "filament/Hyper L-W PLA @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper L-W PLA @K1_CFS-C-all",
+ "sub_path": "filament/Hyper L-W PLA @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper L-W PLA @K2 Plus-all",
+ "sub_path": "filament/Hyper L-W PLA @K2 Plus-all.json"
+ },
+ {
+ "name": "Hyper L-W PLA @K2 Pro-all",
+ "sub_path": "filament/Hyper L-W PLA @K2 Pro-all.json"
+ },
+ {
+ "name": "Hyper L-W PLA @K2-all",
+ "sub_path": "filament/Hyper L-W PLA @K2-all.json"
+ },
+ {
+ "name": "Hyper Luminous @Hi-all",
+ "sub_path": "filament/Hyper Luminous @Hi-all.json"
+ },
+ {
+ "name": "Hyper Luminous @K1C-all",
+ "sub_path": "filament/Hyper Luminous @K1C-all.json"
+ },
+ {
+ "name": "Hyper Luminous @K2 Plus-all",
+ "sub_path": "filament/Hyper Luminous @K2 Plus-all.json"
+ },
+ {
+ "name": "Hyper Luminous @K2 Pro-all",
+ "sub_path": "filament/Hyper Luminous @K2 Pro-all.json"
+ },
+ {
+ "name": "Hyper Luminous @K2-all",
+ "sub_path": "filament/Hyper Luminous @K2-all.json"
+ },
+ {
+ "name": "Hyper Luminous @SPARKX i7-all",
+ "sub_path": "filament/Hyper Luminous @SPARKX i7-all.json"
+ },
+ {
+ "name": "Hyper Marble @Hi-all",
+ "sub_path": "filament/Hyper Marble @Hi-all.json"
+ },
+ {
+ "name": "Hyper Marble @K1 Max_CFS-C-all",
+ "sub_path": "filament/Hyper Marble @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper Marble @K1C-all",
+ "sub_path": "filament/Hyper Marble @K1C-all.json"
+ },
+ {
+ "name": "Hyper Marble @K1C_CFS-C-all",
+ "sub_path": "filament/Hyper Marble @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper Marble @K1_CFS-C-all",
+ "sub_path": "filament/Hyper Marble @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper Marble @K2 Plus-all",
+ "sub_path": "filament/Hyper Marble @K2 Plus-all.json"
+ },
+ {
+ "name": "Hyper Marble @K2 Pro-all",
+ "sub_path": "filament/Hyper Marble @K2 Pro-all.json"
+ },
+ {
+ "name": "Hyper Marble @K2 SE-all",
+ "sub_path": "filament/Hyper Marble @K2 SE-all.json"
+ },
+ {
+ "name": "Hyper Marble @K2-all",
+ "sub_path": "filament/Hyper Marble @K2-all.json"
+ },
+ {
+ "name": "Hyper Marble @SPARKX i7-all",
+ "sub_path": "filament/Hyper Marble @SPARKX i7-all.json"
+ },
+ {
+ "name": "Hyper PA6-CF @K2 Plus-all",
+ "sub_path": "filament/Hyper PA6-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "Hyper PA6-CF @K2 Pro-all",
+ "sub_path": "filament/Hyper PA6-CF @K2 Pro-all.json"
+ },
+ {
+ "name": "Hyper PA612-CF @K2 Plus-all",
+ "sub_path": "filament/Hyper PA612-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "Hyper PA612-CF @K2 Pro-all",
+ "sub_path": "filament/Hyper PA612-CF @K2 Pro-all.json"
+ },
+ {
+ "name": "Hyper PAHT-CF @K1 Max_CFS-C-all",
+ "sub_path": "filament/Hyper PAHT-CF @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PAHT-CF @K1C-all",
+ "sub_path": "filament/Hyper PAHT-CF @K1C-all.json"
+ },
+ {
+ "name": "Hyper PAHT-CF @K1C_CFS-C-all",
+ "sub_path": "filament/Hyper PAHT-CF @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PAHT-CF @K1_CFS-C-all",
+ "sub_path": "filament/Hyper PAHT-CF @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PAHT-CF @K2 Plus-all",
+ "sub_path": "filament/Hyper PAHT-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "Hyper PAHT-CF @K2 Pro-all",
+ "sub_path": "filament/Hyper PAHT-CF @K2 Pro-all.json"
+ },
+ {
+ "name": "Hyper PAHT-CF @K2-all",
+ "sub_path": "filament/Hyper PAHT-CF @K2-all.json"
+ },
+ {
+ "name": "Hyper PC @K2 Plus-all",
+ "sub_path": "filament/Hyper PC @K2 Plus-all.json"
+ },
+ {
+ "name": "Hyper PC @K2 Pro-all",
+ "sub_path": "filament/Hyper PC @K2 Pro-all.json"
+ },
+ {
+ "name": "Hyper PETG @Ender-3 V4-all",
+ "sub_path": "filament/Hyper PETG @Ender-3 V4-all.json"
+ },
+ {
+ "name": "Hyper PETG @Hi-all",
+ "sub_path": "filament/Hyper PETG @Hi-all.json"
+ },
+ {
+ "name": "Hyper PETG @K1 Max_CFS-C-all",
+ "sub_path": "filament/Hyper PETG @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PETG @K1 SE-all",
+ "sub_path": "filament/Hyper PETG @K1 SE-all.json"
+ },
+ {
+ "name": "Hyper PETG @K1 SE_CFS-C-all",
+ "sub_path": "filament/Hyper PETG @K1 SE_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PETG @K1C-all",
+ "sub_path": "filament/Hyper PETG @K1C-all.json"
+ },
+ {
+ "name": "Hyper PETG @K1C_CFS-C-all",
+ "sub_path": "filament/Hyper PETG @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PETG @K1_CFS-C-all",
+ "sub_path": "filament/Hyper PETG @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PETG @K2 Plus-all",
+ "sub_path": "filament/Hyper PETG @K2 Plus-all.json"
+ },
+ {
+ "name": "Hyper PETG @K2 Pro-all",
+ "sub_path": "filament/Hyper PETG @K2 Pro-all.json"
+ },
+ {
+ "name": "Hyper PETG @K2 SE-all",
+ "sub_path": "filament/Hyper PETG @K2 SE-all.json"
+ },
+ {
+ "name": "Hyper PETG @K2-all",
+ "sub_path": "filament/Hyper PETG @K2-all.json"
+ },
+ {
+ "name": "Hyper PETG @SPARKX i7-all",
+ "sub_path": "filament/Hyper PETG @SPARKX i7-all.json"
+ },
+ {
+ "name": "Hyper PETG-CF @K1 Max_CFS-C-all",
+ "sub_path": "filament/Hyper PETG-CF @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PETG-CF @K1C-all",
+ "sub_path": "filament/Hyper PETG-CF @K1C-all.json"
+ },
+ {
+ "name": "Hyper PETG-CF @K1C_CFS-C-all",
+ "sub_path": "filament/Hyper PETG-CF @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PETG-CF @K1_CFS-C-all",
+ "sub_path": "filament/Hyper PETG-CF @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PETG-CF @K2 Plus-all",
+ "sub_path": "filament/Hyper PETG-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "Hyper PETG-CF @K2 Pro-all",
+ "sub_path": "filament/Hyper PETG-CF @K2 Pro-all.json"
+ },
+ {
+ "name": "Hyper PETG-CF @K2-all",
+ "sub_path": "filament/Hyper PETG-CF @K2-all.json"
+ },
+ {
+ "name": "Hyper PETG-CF @SPARKX i7-all",
+ "sub_path": "filament/Hyper PETG-CF @SPARKX i7-all.json"
+ },
+ {
+ "name": "Hyper PETG-GF @K1C-all",
+ "sub_path": "filament/Hyper PETG-GF @K1C-all.json"
+ },
+ {
+ "name": "Hyper PETG-GF @K2 Plus-all",
+ "sub_path": "filament/Hyper PETG-GF @K2 Plus-all.json"
+ },
+ {
+ "name": "Hyper PETG-GF @K2 Pro-all",
+ "sub_path": "filament/Hyper PETG-GF @K2 Pro-all.json"
+ },
+ {
+ "name": "Hyper PETG-GF @K2-all",
+ "sub_path": "filament/Hyper PETG-GF @K2-all.json"
+ },
+ {
+ "name": "Hyper PLA @Ender-3 V4-all",
+ "sub_path": "filament/Hyper PLA @Ender-3 V4-all.json"
+ },
+ {
+ "name": "Hyper PLA @Hi-all",
+ "sub_path": "filament/Hyper PLA @Hi-all.json"
+ },
+ {
+ "name": "Hyper PLA @K1 Max_CFS-C-all",
+ "sub_path": "filament/Hyper PLA @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PLA @K1 SE-all",
+ "sub_path": "filament/Hyper PLA @K1 SE-all.json"
+ },
+ {
+ "name": "Hyper PLA @K1 SE_CFS-C-all",
+ "sub_path": "filament/Hyper PLA @K1 SE_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PLA @K1C-all",
+ "sub_path": "filament/Hyper PLA @K1C-all.json"
+ },
+ {
+ "name": "Hyper PLA @K1C_CFS-C-all",
+ "sub_path": "filament/Hyper PLA @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PLA @K1_CFS-C-all",
+ "sub_path": "filament/Hyper PLA @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PLA @K2 Plus-all",
+ "sub_path": "filament/Hyper PLA @K2 Plus-all.json"
+ },
+ {
+ "name": "Hyper PLA @K2 Pro-all",
+ "sub_path": "filament/Hyper PLA @K2 Pro-all.json"
+ },
+ {
+ "name": "Hyper PLA @K2 SE-all",
+ "sub_path": "filament/Hyper PLA @K2 SE-all.json"
+ },
+ {
+ "name": "Hyper PLA @K2-all",
+ "sub_path": "filament/Hyper PLA @K2-all.json"
+ },
+ {
+ "name": "Hyper PLA @SPARKX i7-all",
+ "sub_path": "filament/Hyper PLA @SPARKX i7-all.json"
+ },
+ {
+ "name": "Hyper PLA-CF @Ender-3 V4-all",
+ "sub_path": "filament/Hyper PLA-CF @Ender-3 V4-all.json"
+ },
+ {
+ "name": "Hyper PLA-CF @Hi-all",
+ "sub_path": "filament/Hyper PLA-CF @Hi-all.json"
+ },
+ {
+ "name": "Hyper PLA-CF @K1 Max_CFS-C-all",
+ "sub_path": "filament/Hyper PLA-CF @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PLA-CF @K1 SE-all",
+ "sub_path": "filament/Hyper PLA-CF @K1 SE-all.json"
+ },
+ {
+ "name": "Hyper PLA-CF @K1 SE_CFS-C-all",
+ "sub_path": "filament/Hyper PLA-CF @K1 SE_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PLA-CF @K1C-all",
+ "sub_path": "filament/Hyper PLA-CF @K1C-all.json"
+ },
+ {
+ "name": "Hyper PLA-CF @K1C_CFS-C-all",
+ "sub_path": "filament/Hyper PLA-CF @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PLA-CF @K1_CFS-C-all",
+ "sub_path": "filament/Hyper PLA-CF @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper PLA-CF @K2 Plus-all",
+ "sub_path": "filament/Hyper PLA-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "Hyper PLA-CF @K2 Pro-all",
+ "sub_path": "filament/Hyper PLA-CF @K2 Pro-all.json"
+ },
+ {
+ "name": "Hyper PLA-CF @K2 SE-all",
+ "sub_path": "filament/Hyper PLA-CF @K2 SE-all.json"
+ },
+ {
+ "name": "Hyper PLA-CF @K2-all",
+ "sub_path": "filament/Hyper PLA-CF @K2-all.json"
+ },
+ {
+ "name": "Hyper PLA-CF @SPARKX i7-all",
+ "sub_path": "filament/Hyper PLA-CF @SPARKX i7-all.json"
+ },
+ {
+ "name": "Hyper PPA-CF @K2 Plus-all",
+ "sub_path": "filament/Hyper PPA-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "Hyper PPA-CF @K2 Pro-all",
+ "sub_path": "filament/Hyper PPA-CF @K2 Pro-all.json"
+ },
+ {
+ "name": "Hyper Stardust @Hi-all",
+ "sub_path": "filament/Hyper Stardust @Hi-all.json"
+ },
+ {
+ "name": "Hyper Stardust @K1 Max_CFS-C-all",
+ "sub_path": "filament/Hyper Stardust @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper Stardust @K1C-all",
+ "sub_path": "filament/Hyper Stardust @K1C-all.json"
+ },
+ {
+ "name": "Hyper Stardust @K1C_CFS-C-all",
+ "sub_path": "filament/Hyper Stardust @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper Stardust @K1_CFS-C-all",
+ "sub_path": "filament/Hyper Stardust @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Hyper Stardust @K2 Plus-all",
+ "sub_path": "filament/Hyper Stardust @K2 Plus-all.json"
+ },
+ {
+ "name": "Hyper Stardust @K2 Pro-all",
+ "sub_path": "filament/Hyper Stardust @K2 Pro-all.json"
+ },
+ {
+ "name": "Hyper Stardust @K2 SE-all",
+ "sub_path": "filament/Hyper Stardust @K2 SE-all.json"
+ },
+ {
+ "name": "Hyper Stardust @K2-all",
+ "sub_path": "filament/Hyper Stardust @K2-all.json"
+ },
+ {
+ "name": "Hyper Stardust @SPARKX i7-all",
+ "sub_path": "filament/Hyper Stardust @SPARKX i7-all.json"
+ },
+ {
+ "name": "Panchroma PLA Matte @K2 Plus-all",
+ "sub_path": "filament/Panchroma PLA Matte @K2 Plus-all.json"
+ },
+ {
+ "name": "Panchroma PLA Satin @K2 Plus-all",
+ "sub_path": "filament/Panchroma PLA Satin @K2 Plus-all.json"
+ },
+ {
+ "name": "PolySonic PLA @K2 Plus-all",
+ "sub_path": "filament/PolySonic PLA @K2 Plus-all.json"
+ },
+ {
+ "name": "PolySonic PLA Pro @K2 Plus-all",
+ "sub_path": "filament/PolySonic PLA Pro @K2 Plus-all.json"
+ },
+ {
+ "name": "Soleyin Basic PETG @Hi-all",
+ "sub_path": "filament/Soleyin Basic PETG @Hi-all.json"
+ },
+ {
+ "name": "Soleyin Basic PETG @K1C-all",
+ "sub_path": "filament/Soleyin Basic PETG @K1C-all.json"
+ },
+ {
+ "name": "Soleyin Basic PETG @K2 Plus-all",
+ "sub_path": "filament/Soleyin Basic PETG @K2 Plus-all.json"
+ },
+ {
+ "name": "Soleyin Basic PETG @K2 Pro-all",
+ "sub_path": "filament/Soleyin Basic PETG @K2 Pro-all.json"
+ },
+ {
+ "name": "Soleyin Basic PETG @K2-all",
+ "sub_path": "filament/Soleyin Basic PETG @K2-all.json"
+ },
+ {
+ "name": "Soleyin Basic PETG @SPARKX i7-all",
+ "sub_path": "filament/Soleyin Basic PETG @SPARKX i7-all.json"
+ },
+ {
+ "name": "Soleyin Ultra PLA @Ender-3 V4-all",
+ "sub_path": "filament/Soleyin Ultra PLA @Ender-3 V4-all.json"
+ },
+ {
+ "name": "Soleyin Ultra PLA @Hi-all",
+ "sub_path": "filament/Soleyin Ultra PLA @Hi-all.json"
+ },
+ {
+ "name": "Soleyin Ultra PLA @K1 Max_CFS-C-all",
+ "sub_path": "filament/Soleyin Ultra PLA @K1 Max_CFS-C-all.json"
+ },
+ {
+ "name": "Soleyin Ultra PLA @K1C-all",
+ "sub_path": "filament/Soleyin Ultra PLA @K1C-all.json"
+ },
+ {
+ "name": "Soleyin Ultra PLA @K1C_CFS-C-all",
+ "sub_path": "filament/Soleyin Ultra PLA @K1C_CFS-C-all.json"
+ },
+ {
+ "name": "Soleyin Ultra PLA @K1_CFS-C-all",
+ "sub_path": "filament/Soleyin Ultra PLA @K1_CFS-C-all.json"
+ },
+ {
+ "name": "Soleyin Ultra PLA @K2 Plus-all",
+ "sub_path": "filament/Soleyin Ultra PLA @K2 Plus-all.json"
+ },
+ {
+ "name": "Soleyin Ultra PLA @K2 Pro-all",
+ "sub_path": "filament/Soleyin Ultra PLA @K2 Pro-all.json"
+ },
+ {
+ "name": "Soleyin Ultra PLA @K2 SE-all",
+ "sub_path": "filament/Soleyin Ultra PLA @K2 SE-all.json"
+ },
+ {
+ "name": "Soleyin Ultra PLA @K2-all",
+ "sub_path": "filament/Soleyin Ultra PLA @K2-all.json"
+ },
+ {
+ "name": "Soleyin Ultra PLA @SPARKX i7-all",
+ "sub_path": "filament/Soleyin Ultra PLA @SPARKX i7-all.json"
+ },
+ {
+ "name": "eSUN ABS+ @K2 Plus-all",
+ "sub_path": "filament/eSUN ABS+ @K2 Plus-all.json"
+ },
+ {
+ "name": "eSUN ASA+ @K2 Plus-all",
+ "sub_path": "filament/eSUN ASA+ @K2 Plus-all.json"
+ },
+ {
+ "name": "eSUN PET-Basic @K2 Plus-all",
+ "sub_path": "filament/eSUN PET-Basic @K2 Plus-all.json"
+ },
+ {
+ "name": "eSUN PETG @K2 Plus-all",
+ "sub_path": "filament/eSUN PETG @K2 Plus-all.json"
+ },
+ {
+ "name": "eSUN PETG+HS @K2 Plus-all",
+ "sub_path": "filament/eSUN PETG+HS @K2 Plus-all.json"
+ },
+ {
+ "name": "eSUN PETG-Basic @K2 Plus-all",
+ "sub_path": "filament/eSUN PETG-Basic @K2 Plus-all.json"
+ },
+ {
+ "name": "eSUN PLA+ @K2 Plus-all",
+ "sub_path": "filament/eSUN PLA+ @K2 Plus-all.json"
+ },
+ {
+ "name": "eSUN PLA-CF @K2 Plus-all",
+ "sub_path": "filament/eSUN PLA-CF @K2 Plus-all.json"
+ },
+ {
+ "name": "eSUN PLA-HS @K2 Plus-all",
+ "sub_path": "filament/eSUN PLA-HS @K2 Plus-all.json"
+ },
+ {
+ "name": "eSUN PLA-LW @K2 Plus-all",
+ "sub_path": "filament/eSUN PLA-LW @K2 Plus-all.json"
+ },
+ {
+ "name": "eSUN PLA-Lite @K2 Plus-all",
+ "sub_path": "filament/eSUN PLA-Lite @K2 Plus-all.json"
+ },
+ {
+ "name": "eSUN PLA-Matte @K2 Plus-all",
+ "sub_path": "filament/eSUN PLA-Matte @K2 Plus-all.json"
+ },
+ {
+ "name": "eSUN PLA-Silk @K2 Plus-all",
+ "sub_path": "filament/eSUN PLA-Silk @K2 Plus-all.json"
}
],
"machine_list": [
@@ -1858,6 +4022,10 @@
"name": "Creality Ender-3 V3 SE 0.8 nozzle",
"sub_path": "machine/Creality Ender-3 V3 SE 0.8 nozzle.json"
},
+ {
+ "name": "Creality Ender-3 V4 0.4 nozzle",
+ "sub_path": "machine/Creality Ender-3 V4 0.4 nozzle.json"
+ },
{
"name": "Creality Ender-5 0.4 nozzle",
"sub_path": "machine/Creality Ender-5 0.4 nozzle.json"
@@ -1914,6 +4082,10 @@
"name": "Creality Ender-6 0.4 nozzle",
"sub_path": "machine/Creality Ender-6 0.4 nozzle.json"
},
+ {
+ "name": "Creality Hi 0.2 nozzle",
+ "sub_path": "machine/Creality Hi 0.2 nozzle.json"
+ },
{
"name": "Creality Hi 0.4 nozzle",
"sub_path": "machine/Creality Hi 0.4 nozzle.json"
@@ -1922,6 +4094,10 @@
"name": "Creality Hi 0.6 nozzle",
"sub_path": "machine/Creality Hi 0.6 nozzle.json"
},
+ {
+ "name": "Creality Hi 0.8 nozzle",
+ "sub_path": "machine/Creality Hi 0.8 nozzle.json"
+ },
{
"name": "Creality K1 (0.4 nozzle)",
"sub_path": "machine/Creality K1 (0.4 nozzle).json"
@@ -1934,6 +4110,10 @@
"name": "Creality K1 (0.8 nozzle)",
"sub_path": "machine/Creality K1 (0.8 nozzle).json"
},
+ {
+ "name": "Creality K1_CFS-C 0.4 nozzle",
+ "sub_path": "machine/Creality K1_CFS-C 0.4 nozzle.json"
+ },
{
"name": "Creality K1 Max (0.4 nozzle)",
"sub_path": "machine/Creality K1 Max (0.4 nozzle).json"
@@ -1946,10 +4126,26 @@
"name": "Creality K1 Max (0.8 nozzle)",
"sub_path": "machine/Creality K1 Max (0.8 nozzle).json"
},
+ {
+ "name": "Creality K1 Max_CFS-C 0.4 nozzle",
+ "sub_path": "machine/Creality K1 Max_CFS-C 0.4 nozzle.json"
+ },
{
"name": "Creality K1 SE 0.4 nozzle",
"sub_path": "machine/Creality K1 SE 0.4 nozzle.json"
},
+ {
+ "name": "Creality K1 SE 0.6 nozzle",
+ "sub_path": "machine/Creality K1 SE 0.6 nozzle.json"
+ },
+ {
+ "name": "Creality K1 SE 0.8 nozzle",
+ "sub_path": "machine/Creality K1 SE 0.8 nozzle.json"
+ },
+ {
+ "name": "Creality K1 SE_CFS-C 0.4 nozzle",
+ "sub_path": "machine/Creality K1 SE_CFS-C 0.4 nozzle.json"
+ },
{
"name": "Creality K1C 0.4 nozzle",
"sub_path": "machine/Creality K1C 0.4 nozzle.json"
@@ -1962,6 +4158,10 @@
"name": "Creality K1C 0.8 nozzle",
"sub_path": "machine/Creality K1C 0.8 nozzle.json"
},
+ {
+ "name": "Creality K1C_CFS-C 0.4 nozzle",
+ "sub_path": "machine/Creality K1C_CFS-C 0.4 nozzle.json"
+ },
{
"name": "Creality K2 0.2 nozzle",
"sub_path": "machine/Creality K2 0.2 nozzle.json"
@@ -2010,9 +4210,29 @@
"name": "Creality K2 Pro 0.8 nozzle",
"sub_path": "machine/Creality K2 Pro 0.8 nozzle.json"
},
+ {
+ "name": "Creality K2 SE 0.4 nozzle",
+ "sub_path": "machine/Creality K2 SE 0.4 nozzle.json"
+ },
{
"name": "Creality Sermoon V1 0.4 nozzle",
"sub_path": "machine/Creality Sermoon V1 0.4 nozzle.json"
+ },
+ {
+ "name": "Creality SPARKX i7 0.2 nozzle",
+ "sub_path": "machine/Creality SPARKX i7 0.2 nozzle.json"
+ },
+ {
+ "name": "Creality SPARKX i7 0.4 nozzle",
+ "sub_path": "machine/Creality SPARKX i7 0.4 nozzle.json"
+ },
+ {
+ "name": "Creality SPARKX i7 0.6 nozzle",
+ "sub_path": "machine/Creality SPARKX i7 0.6 nozzle.json"
+ },
+ {
+ "name": "Creality SPARKX i7 0.8 nozzle",
+ "sub_path": "machine/Creality SPARKX i7 0.8 nozzle.json"
}
]
-}
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/Creality Ender-3 V4_cover.png b/resources/profiles/Creality/Creality Ender-3 V4_cover.png
new file mode 100644
index 0000000000..ac4526fed0
Binary files /dev/null and b/resources/profiles/Creality/Creality Ender-3 V4_cover.png differ
diff --git a/resources/profiles/Creality/Creality K1 Max_CFS-C_cover.png b/resources/profiles/Creality/Creality K1 Max_CFS-C_cover.png
new file mode 100644
index 0000000000..52499b572b
Binary files /dev/null and b/resources/profiles/Creality/Creality K1 Max_CFS-C_cover.png differ
diff --git a/resources/profiles/Creality/Creality K1 SE_CFS-C_cover.png b/resources/profiles/Creality/Creality K1 SE_CFS-C_cover.png
new file mode 100644
index 0000000000..f7ce98e840
Binary files /dev/null and b/resources/profiles/Creality/Creality K1 SE_CFS-C_cover.png differ
diff --git a/resources/profiles/Creality/Creality K1C_CFS-C_cover.png b/resources/profiles/Creality/Creality K1C_CFS-C_cover.png
new file mode 100644
index 0000000000..2d49bc6f46
Binary files /dev/null and b/resources/profiles/Creality/Creality K1C_CFS-C_cover.png differ
diff --git a/resources/profiles/Creality/Creality K1_CFS-C_cover.png b/resources/profiles/Creality/Creality K1_CFS-C_cover.png
new file mode 100644
index 0000000000..f91158f668
Binary files /dev/null and b/resources/profiles/Creality/Creality K1_CFS-C_cover.png differ
diff --git a/resources/profiles/Creality/Creality K2 SE_cover.png b/resources/profiles/Creality/Creality K2 SE_cover.png
new file mode 100644
index 0000000000..c335885597
Binary files /dev/null and b/resources/profiles/Creality/Creality K2 SE_cover.png differ
diff --git a/resources/profiles/Creality/Creality SPARKX i7_cover.png b/resources/profiles/Creality/Creality SPARKX i7_cover.png
new file mode 100644
index 0000000000..076d521faa
Binary files /dev/null and b/resources/profiles/Creality/Creality SPARKX i7_cover.png differ
diff --git a/resources/profiles/Creality/creality_SPARKX_buildplate_model.stl b/resources/profiles/Creality/creality_SPARKX_buildplate_model.stl
new file mode 100644
index 0000000000..91de14606e
Binary files /dev/null and b/resources/profiles/Creality/creality_SPARKX_buildplate_model.stl differ
diff --git a/resources/profiles/Creality/filament/CR-ABS @Ender-3 V4-all.json b/resources/profiles/Creality/filament/CR-ABS @Ender-3 V4-all.json
new file mode 100644
index 0000000000..f86cabcd7a
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-ABS @Ender-3 V4-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-ABS @Ender-5 Max-all.json b/resources/profiles/Creality/filament/CR-ABS @Ender-5 Max-all.json
new file mode 100644
index 0000000000..a3afc7f1a1
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-ABS @Ender-5 Max-all.json
@@ -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"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-ABS @Hi-all.json b/resources/profiles/Creality/filament/CR-ABS @Hi-all.json
new file mode 100644
index 0000000000..8f9bee0878
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-ABS @Hi-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-ABS @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-ABS @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..6f582521c1
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-ABS @K1 Max_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-ABS @K1 SE-all.json b/resources/profiles/Creality/filament/CR-ABS @K1 SE-all.json
new file mode 100644
index 0000000000..cbd2277aa7
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-ABS @K1 SE-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-ABS @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/CR-ABS @K1 SE_CFS-C-all.json
new file mode 100644
index 0000000000..a53906a2a2
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-ABS @K1 SE_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-ABS @K1C-all.json b/resources/profiles/Creality/filament/CR-ABS @K1C-all.json
new file mode 100644
index 0000000000..29691a866e
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-ABS @K1C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-ABS @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-ABS @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..5688a80353
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-ABS @K1C_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-ABS @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-ABS @K1_CFS-C-all.json
new file mode 100644
index 0000000000..dc80c92809
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-ABS @K1_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-ABS @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-ABS @K2 Plus-all.json
new file mode 100644
index 0000000000..8b26e9a6d2
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-ABS @K2 Plus-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-ABS @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-ABS @K2 Pro-all.json
new file mode 100644
index 0000000000..3551543ae8
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-ABS @K2 Pro-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-ABS @K2 SE-all.json b/resources/profiles/Creality/filament/CR-ABS @K2 SE-all.json
new file mode 100644
index 0000000000..7ff05b770c
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-ABS @K2 SE-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-ABS @K2-all.json b/resources/profiles/Creality/filament/CR-ABS @K2-all.json
new file mode 100644
index 0000000000..41546fec3f
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-ABS @K2-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Nylon @Ender-5 Max-all.json b/resources/profiles/Creality/filament/CR-Nylon @Ender-5 Max-all.json
new file mode 100644
index 0000000000..a9baf15a46
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Nylon @Ender-5 Max-all.json
@@ -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"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Nylon @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Nylon @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..0c1f547c5b
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Nylon @K1 Max_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Nylon @K1C-all.json b/resources/profiles/Creality/filament/CR-Nylon @K1C-all.json
new file mode 100644
index 0000000000..67ae4202b0
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Nylon @K1C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Nylon @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Nylon @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..b1e79273ab
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Nylon @K1C_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Nylon @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Nylon @K1_CFS-C-all.json
new file mode 100644
index 0000000000..cd5298156e
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Nylon @K1_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Nylon @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-Nylon @K2 Plus-all.json
new file mode 100644
index 0000000000..ea5ad21606
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Nylon @K2 Plus-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PETG @Ender-3 V4-all.json b/resources/profiles/Creality/filament/CR-PETG @Ender-3 V4-all.json
new file mode 100644
index 0000000000..0b02050f86
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PETG @Ender-3 V4-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PETG @Ender-5 Max-all.json b/resources/profiles/Creality/filament/CR-PETG @Ender-5 Max-all.json
new file mode 100644
index 0000000000..13310a16c3
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PETG @Ender-5 Max-all.json
@@ -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"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PETG @Hi-all.json b/resources/profiles/Creality/filament/CR-PETG @Hi-all.json
new file mode 100644
index 0000000000..b6ae1ae821
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PETG @Hi-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PETG @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PETG @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..8e10dfc5bc
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PETG @K1 Max_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PETG @K1 SE-all.json b/resources/profiles/Creality/filament/CR-PETG @K1 SE-all.json
new file mode 100644
index 0000000000..84a67b0948
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PETG @K1 SE-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PETG @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PETG @K1 SE_CFS-C-all.json
new file mode 100644
index 0000000000..07341168eb
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PETG @K1 SE_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PETG @K1C-all.json b/resources/profiles/Creality/filament/CR-PETG @K1C-all.json
new file mode 100644
index 0000000000..2184840110
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PETG @K1C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PETG @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PETG @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..7f3205e445
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PETG @K1C_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PETG @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PETG @K1_CFS-C-all.json
new file mode 100644
index 0000000000..c822121a3f
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PETG @K1_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PETG @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-PETG @K2 Plus-all.json
new file mode 100644
index 0000000000..d4a359f809
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PETG @K2 Plus-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PETG @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-PETG @K2 Pro-all.json
new file mode 100644
index 0000000000..648ddfe0bb
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PETG @K2 Pro-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PETG @K2 SE-all.json b/resources/profiles/Creality/filament/CR-PETG @K2 SE-all.json
new file mode 100644
index 0000000000..c6d5abb141
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PETG @K2 SE-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PETG @K2-all.json b/resources/profiles/Creality/filament/CR-PETG @K2-all.json
new file mode 100644
index 0000000000..01a2177157
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PETG @K2-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PETG @SPARKX i7-all.json b/resources/profiles/Creality/filament/CR-PETG @SPARKX i7-all.json
new file mode 100644
index 0000000000..13f771e425
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PETG @SPARKX i7-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA @Ender-3 V4-all.json b/resources/profiles/Creality/filament/CR-PLA @Ender-3 V4-all.json
new file mode 100644
index 0000000000..1916397a42
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA @Ender-3 V4-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA @Ender-5 Max-all.json b/resources/profiles/Creality/filament/CR-PLA @Ender-5 Max-all.json
new file mode 100644
index 0000000000..0d09d9214a
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA @Ender-5 Max-all.json
@@ -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"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA @Hi-all.json b/resources/profiles/Creality/filament/CR-PLA @Hi-all.json
new file mode 100644
index 0000000000..b9028ee7ef
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA @Hi-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..f8d7151b60
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA @K1 Max_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA @K1 SE-all.json b/resources/profiles/Creality/filament/CR-PLA @K1 SE-all.json
new file mode 100644
index 0000000000..b3c159dbcb
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA @K1 SE-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA @K1 SE_CFS-C-all.json
new file mode 100644
index 0000000000..580bebf3fc
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA @K1 SE_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA @K1C-all.json b/resources/profiles/Creality/filament/CR-PLA @K1C-all.json
new file mode 100644
index 0000000000..4cd480d74f
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA @K1C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..bf32753b0e
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA @K1C_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA @K1_CFS-C-all.json
new file mode 100644
index 0000000000..be5bdaaa76
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA @K1_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-PLA @K2 Plus-all.json
new file mode 100644
index 0000000000..099aafc137
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA @K2 Plus-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-PLA @K2 Pro-all.json
new file mode 100644
index 0000000000..fdfbbef1c5
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA @K2 Pro-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA @K2 SE-all.json b/resources/profiles/Creality/filament/CR-PLA @K2 SE-all.json
new file mode 100644
index 0000000000..c58a5f3a8c
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA @K2 SE-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA @K2-all.json b/resources/profiles/Creality/filament/CR-PLA @K2-all.json
new file mode 100644
index 0000000000..5c15a48b32
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA @K2-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA @SPARKX i7-all.json b/resources/profiles/Creality/filament/CR-PLA @SPARKX i7-all.json
new file mode 100644
index 0000000000..ff98272efd
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA @SPARKX i7-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Carbon @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Carbon @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..3bcf4b771e
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Carbon @K1 Max_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Carbon @K1C-all.json b/resources/profiles/Creality/filament/CR-PLA Carbon @K1C-all.json
new file mode 100644
index 0000000000..19f7b646ef
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Carbon @K1C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Carbon @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Carbon @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..c2d4ad14b8
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Carbon @K1C_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Carbon @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Carbon @K1_CFS-C-all.json
new file mode 100644
index 0000000000..2fab455cf8
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Carbon @K1_CFS-C-all.json
@@ -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"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Carbon @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-PLA Carbon @K2 Plus-all.json
new file mode 100644
index 0000000000..bb25b5d474
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Carbon @K2 Plus-all.json
@@ -0,0 +1,164 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Carbon @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": [
+ "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}"
+ ],
+ "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 K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "13001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..f412a907c5
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K1 Max_CFS-C-all.json
@@ -0,0 +1,156 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Fluo @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": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "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": "15001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @K1C-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @K1C-all.json
new file mode 100644
index 0000000000..6097fab341
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K1C-all.json
@@ -0,0 +1,157 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Fluo @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": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "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": "15001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..a672a0c8e3
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K1C_CFS-C-all.json
@@ -0,0 +1,157 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Fluo @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": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "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": "15001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @K1_CFS-C-all.json
new file mode 100644
index 0000000000..6a4d7eeef7
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K1_CFS-C-all.json
@@ -0,0 +1,157 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Fluo @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": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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",
+ "cool_cds_fan_start_at_height": "0.5",
+ "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": "15001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Plus-all.json
new file mode 100644
index 0000000000..44f6ce2bd6
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Plus-all.json
@@ -0,0 +1,158 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Fluo @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.044",
+ "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": "15001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Pro-all.json
new file mode 100644
index 0000000000..118bb40ec7
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Pro-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Fluo @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": [
+ "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",
+ "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.2,195],[1.3,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "15001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @K2-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @K2-all.json
new file mode 100644
index 0000000000..927f479b67
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K2-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Fluo @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": [
+ "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",
+ "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,200],[1.0,200],[1.2,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "15001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @SPARKX i7-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @SPARKX i7-all.json
new file mode 100644
index 0000000000..e268cb99b7
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Fluo @SPARKX i7-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Fluo @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": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "55"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "55"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "55"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "55"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "18"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "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": [
+ "1"
+ ],
+ "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"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "0",
+ "chamber_temperature": "35",
+ "customized_plate_temp": "55",
+ "customized_plate_temp_initial_layer": "55",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "1",
+ "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": "[[0.6,210],[1.2,220]]",
+ "pressure_advance": "0.036",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "15001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @Ender-3 V4-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @Ender-3 V4-all.json
new file mode 100644
index 0000000000..20b07cfbb3
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Matte @Ender-3 V4-all.json
@@ -0,0 +1,153 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Matte @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": [
+ "19"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "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": [
+ "14"
+ ],
+ "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": "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_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": "[[1.0,200],[1.2,220]]",
+ "pressure_advance": "0.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "filament_id": "14001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..8617f0bd2d
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Matte @K1 Max_CFS-C-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Matte @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": [
+ "19"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "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"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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": "[[1.1,190], [1.5,190], [1.6,220]]",
+ "pressure_advance": "0.042",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "14001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @K1C-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @K1C-all.json
new file mode 100644
index 0000000000..5091b27949
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Matte @K1C-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Matte @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": [
+ "19"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "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": [
+ "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"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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": "[[1.1,190], [1.5,190], [1.6,220]]",
+ "pressure_advance": "0.042",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "14001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..da9bf93f17
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Matte @K1C_CFS-C-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Matte @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": [
+ "19"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "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"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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": "[[1.1,190], [1.5,190], [1.6,220]]",
+ "pressure_advance": "0.042",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "14001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @K1_CFS-C-all.json
new file mode 100644
index 0000000000..9416e6a7a7
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Matte @K1_CFS-C-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Matte @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": [
+ "19"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "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"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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": "[[1.1,190], [1.5,190], [1.6,220]]",
+ "pressure_advance": "0.042",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "14001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @K2 Plus-all.json
new file mode 100644
index 0000000000..10d0756967
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Matte @K2 Plus-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Matte @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": [
+ "19"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "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": "14001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @K2 Pro-all.json
new file mode 100644
index 0000000000..4b497c0ecf
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Matte @K2 Pro-all.json
@@ -0,0 +1,164 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Matte @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": [
+ "19"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "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.2,195],[1.3,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "14001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @K2-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @K2-all.json
new file mode 100644
index 0000000000..8a5b4921ca
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Matte @K2-all.json
@@ -0,0 +1,164 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Matte @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": [
+ "19"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "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,200],[1.0,200],[1.2,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "14001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @SPARKX i7-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @SPARKX i7-all.json
new file mode 100644
index 0000000000..bb985bdf97
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-PLA Matte @SPARKX i7-all.json
@@ -0,0 +1,170 @@
+{
+ "type": "filament",
+ "name": "CR-PLA Matte @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": [
+ "50"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "80"
+ ],
+ "filament_cost": [
+ "19"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "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": [
+ "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": [
+ "55"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "55"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "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": "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": "[[1.0,190],[1.2,220]]",
+ "pressure_advance": "0.23",
+ "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": "14001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Silk @Ender-3 V4-all.json b/resources/profiles/Creality/filament/CR-Silk @Ender-3 V4-all.json
new file mode 100644
index 0000000000..ba00c7dcf3
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Silk @Ender-3 V4-all.json
@@ -0,0 +1,150 @@
+{
+ "type": "filament",
+ "name": "CR-Silk @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": [
+ "30"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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.4"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "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"
+ ],
+ "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,210],[1.0,210],[1.2,220]]",
+ "pressure_advance": "0.048",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "filament_id": "05001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Silk @Ender-5 Max-all.json b/resources/profiles/Creality/filament/CR-Silk @Ender-5 Max-all.json
new file mode 100644
index 0000000000..887ee3d0dd
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Silk @Ender-5 Max-all.json
@@ -0,0 +1,157 @@
+{
+ "type": "filament",
+ "name": "CR-Silk @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_cost": [
+ "22"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "35"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "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": [
+ "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": [
+ "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_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": "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": "55",
+ "epoxy_resin_plate_temp_initial_layer": "55",
+ "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],[1.2,220]]",
+ "pressure_advance": "0.048",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-5 Max 0.4 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Silk @Hi-all.json b/resources/profiles/Creality/filament/CR-Silk @Hi-all.json
new file mode 100644
index 0000000000..ac8192b054
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Silk @Hi-all.json
@@ -0,0 +1,145 @@
+{
+ "type": "filament",
+ "name": "CR-Silk @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": [
+ "22"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": [
+ "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": [
+ "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"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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,195],[1.2,195],[1.4,220]]",
+ "pressure_advance": "0.026",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "filament_id": "05001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Silk @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Silk @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..8253537996
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Silk @K1 Max_CFS-C-all.json
@@ -0,0 +1,160 @@
+{
+ "type": "filament",
+ "name": "CR-Silk @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": [
+ "22"
+ ],
+ "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": [
+ "10"
+ ],
+ "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.6"
+ ],
+ "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": "0",
+ "chamber_temperature": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "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": "[[0.8,190], [1.2,190], [1.3,220]]",
+ "pressure_advance": "0.052",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "05001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Silk @K1 SE-all.json b/resources/profiles/Creality/filament/CR-Silk @K1 SE-all.json
new file mode 100644
index 0000000000..81877f44e0
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Silk @K1 SE-all.json
@@ -0,0 +1,147 @@
+{
+ "type": "filament",
+ "name": "CR-Silk @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"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "filament_cost": [
+ "22"
+ ],
+ "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": [
+ "10"
+ ],
+ "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"
+ ],
+ "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": "[[1.0,190],[5.0,200],[12.0,210],[18.0,220]]",
+ "pressure_advance": "0.042",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE 0.4 nozzle"
+ ],
+ "filament_id": "05001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Silk @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Silk @K1 SE_CFS-C-all.json
new file mode 100644
index 0000000000..54a129d682
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Silk @K1 SE_CFS-C-all.json
@@ -0,0 +1,147 @@
+{
+ "type": "filament",
+ "name": "CR-Silk @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"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "filament_cost": [
+ "22"
+ ],
+ "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": [
+ "10"
+ ],
+ "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"
+ ],
+ "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": "[[1.0,190],[5.0,200],[12.0,210],[18.0,220]]",
+ "pressure_advance": "0.042",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "05001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Silk @K1C-all.json b/resources/profiles/Creality/filament/CR-Silk @K1C-all.json
new file mode 100644
index 0000000000..60fea44107
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Silk @K1C-all.json
@@ -0,0 +1,162 @@
+{
+ "type": "filament",
+ "name": "CR-Silk @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": [
+ "22"
+ ],
+ "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": [
+ "10"
+ ],
+ "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.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "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": "0",
+ "chamber_temperature": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "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": "[[0.8,190], [1.2,190], [1.3,220]]",
+ "pressure_advance": "0.052",
+ "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": "05001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Silk @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Silk @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..2442840791
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Silk @K1C_CFS-C-all.json
@@ -0,0 +1,160 @@
+{
+ "type": "filament",
+ "name": "CR-Silk @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": [
+ "22"
+ ],
+ "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": [
+ "10"
+ ],
+ "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.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "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": "0",
+ "chamber_temperature": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "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": "[[0.8,190], [1.2,190], [1.3,220]]",
+ "pressure_advance": "0.052",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "05001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Silk @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Silk @K1_CFS-C-all.json
new file mode 100644
index 0000000000..6adf6b81e9
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Silk @K1_CFS-C-all.json
@@ -0,0 +1,160 @@
+{
+ "type": "filament",
+ "name": "CR-Silk @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": [
+ "22"
+ ],
+ "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": [
+ "10"
+ ],
+ "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.6"
+ ],
+ "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"
+ ],
+ "filament_end_gcode": [
+ ";filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "0",
+ "chamber_temperature": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "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": "[[0.8,190], [1.2,190], [1.3,220]]",
+ "pressure_advance": "0.052",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "05001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Silk @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-Silk @K2 Plus-all.json
new file mode 100644
index 0000000000..8b07d595fc
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Silk @K2 Plus-all.json
@@ -0,0 +1,167 @@
+{
+ "type": "filament",
+ "name": "CR-Silk @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": [
+ "22"
+ ],
+ "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": [
+ "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": [
+ "0.8"
+ ],
+ "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": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "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": "05001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Silk @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-Silk @K2 Pro-all.json
new file mode 100644
index 0000000000..5de03e0825
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Silk @K2 Pro-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "CR-Silk @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": [
+ "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": [
+ "22"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": [
+ "0.4"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": "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": "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",
+ "material_flow_temp_graph": "[[0.8,195],[1.2,195],[1.4,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "05001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Silk @K2 SE-all.json b/resources/profiles/Creality/filament/CR-Silk @K2 SE-all.json
new file mode 100644
index 0000000000..eff35d2314
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Silk @K2 SE-all.json
@@ -0,0 +1,146 @@
+{
+ "type": "filament",
+ "name": "CR-Silk @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": [
+ "22"
+ ],
+ "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": [
+ "10"
+ ],
+ "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.4"
+ ],
+ "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": [
+ "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": "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,190],[1.2,190],[1.3,220]]",
+ "pressure_advance": "0.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 SE 0.4 nozzle"
+ ],
+ "filament_id": "05001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Silk @K2-all.json b/resources/profiles/Creality/filament/CR-Silk @K2-all.json
new file mode 100644
index 0000000000..84f914b020
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Silk @K2-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "CR-Silk @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": [
+ "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": [
+ "22"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": [
+ "0.4"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": "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": "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",
+ "material_flow_temp_graph": "[[0.8,195],[1.2,195],[1.4,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "05001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Silk @SPARKX i7-all.json b/resources/profiles/Creality/filament/CR-Silk @SPARKX i7-all.json
new file mode 100644
index 0000000000..36d4e1d932
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Silk @SPARKX i7-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "CR-Silk @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": [
+ "50"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "80"
+ ],
+ "filament_cost": [
+ "22"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "1.8"
+ ],
+ "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": [
+ "55"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "55"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "0",
+ "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": "0",
+ "material_flow_temp_graph": "[[1.0,190],[1.2,220]]",
+ "pressure_advance": "0.13",
+ "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": "05001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-TPU @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-TPU @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..824549ed9a
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-TPU @K1 Max_CFS-C-all.json
@@ -0,0 +1,171 @@
+{
+ "type": "filament",
+ "name": "CR-TPU @K1 Max_CFS-C-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "filament_density": [
+ "1.12"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "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": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "210"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "customized_plate_temp": "40",
+ "customized_plate_temp_initial_layer": "40",
+ "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.4",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "16001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-TPU @K1C-all.json b/resources/profiles/Creality/filament/CR-TPU @K1C-all.json
new file mode 100644
index 0000000000..c5fe5163d3
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-TPU @K1C-all.json
@@ -0,0 +1,171 @@
+{
+ "type": "filament",
+ "name": "CR-TPU @K1C-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "filament_density": [
+ "1.12"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "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": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "210"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "customized_plate_temp": "40",
+ "customized_plate_temp_initial_layer": "40",
+ "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.4",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "16001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-TPU @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-TPU @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..57f4f42a74
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-TPU @K1C_CFS-C-all.json
@@ -0,0 +1,171 @@
+{
+ "type": "filament",
+ "name": "CR-TPU @K1C_CFS-C-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "filament_density": [
+ "1.12"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "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": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "210"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "customized_plate_temp": "40",
+ "customized_plate_temp_initial_layer": "40",
+ "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.4",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "16001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-TPU @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-TPU @K1_CFS-C-all.json
new file mode 100644
index 0000000000..e0d674d79a
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-TPU @K1_CFS-C-all.json
@@ -0,0 +1,171 @@
+{
+ "type": "filament",
+ "name": "CR-TPU @K1_CFS-C-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "filament_density": [
+ "1.12"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "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": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "210"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "customized_plate_temp": "40",
+ "customized_plate_temp_initial_layer": "40",
+ "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.4",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "16001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-TPU @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-TPU @K2 Plus-all.json
new file mode 100644
index 0000000000..ce93eb2cb8
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-TPU @K2 Plus-all.json
@@ -0,0 +1,170 @@
+{
+ "type": "filament",
+ "name": "CR-TPU @K2 Plus-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "40"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "filament_density": [
+ "1.12"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1.02"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "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": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "210"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "0",
+ "enable_special_area_additional_cooling_fan": "0",
+ "epoxy_resin_plate_temp": "30",
+ "epoxy_resin_plate_temp_initial_layer": "30",
+ "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.34",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "16001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-TPU @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-TPU @K2 Pro-all.json
new file mode 100644
index 0000000000..b120cd3308
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-TPU @K2 Pro-all.json
@@ -0,0 +1,175 @@
+{
+ "type": "filament",
+ "name": "CR-TPU @K2 Pro-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "40"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_cost": [
+ "24"
+ ],
+ "filament_density": [
+ "1.12"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1.02"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "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": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "210"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "40",
+ "customized_plate_temp_initial_layer": "40",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "0",
+ "enable_special_area_additional_cooling_fan": "0",
+ "epoxy_resin_plate_temp": "30",
+ "epoxy_resin_plate_temp_initial_layer": "30",
+ "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.34",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "16001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-TPU @K2-all.json b/resources/profiles/Creality/filament/CR-TPU @K2-all.json
new file mode 100644
index 0000000000..c6b36db5ce
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-TPU @K2-all.json
@@ -0,0 +1,175 @@
+{
+ "type": "filament",
+ "name": "CR-TPU @K2-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "40"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_cost": [
+ "24"
+ ],
+ "filament_density": [
+ "1.12"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1.5"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "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": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "210"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "40",
+ "customized_plate_temp_initial_layer": "40",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "0",
+ "enable_special_area_additional_cooling_fan": "0",
+ "epoxy_resin_plate_temp": "30",
+ "epoxy_resin_plate_temp_initial_layer": "30",
+ "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.4",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "16001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-TPU @SPARKX i7-all.json b/resources/profiles/Creality/filament/CR-TPU @SPARKX i7-all.json
new file mode 100644
index 0000000000..dfa0eb41db
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-TPU @SPARKX i7-all.json
@@ -0,0 +1,179 @@
+{
+ "type": "filament",
+ "name": "CR-TPU @SPARKX i7-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "40"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "60"
+ ],
+ "filament_density": [
+ "1.12"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1.12"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "1.8"
+ ],
+ "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": [
+ "1"
+ ],
+ "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": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "210"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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",
+ "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.34",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "16001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Wood @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Wood @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..015d77cd17
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Wood @K1 Max_CFS-C-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "CR-Wood @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": [
+ "23"
+ ],
+ "filament_density": [
+ "1.22"
+ ],
+ "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": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "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": "17001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Wood @K1C-all.json b/resources/profiles/Creality/filament/CR-Wood @K1C-all.json
new file mode 100644
index 0000000000..4682997375
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Wood @K1C-all.json
@@ -0,0 +1,160 @@
+{
+ "type": "filament",
+ "name": "CR-Wood @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": [
+ "23"
+ ],
+ "filament_density": [
+ "1.22"
+ ],
+ "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": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "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": "17001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Wood @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Wood @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..4544ea376a
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Wood @K1C_CFS-C-all.json
@@ -0,0 +1,160 @@
+{
+ "type": "filament",
+ "name": "CR-Wood @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": [
+ "23"
+ ],
+ "filament_density": [
+ "1.22"
+ ],
+ "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": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "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": "17001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Wood @K1_CFS-C-all.json b/resources/profiles/Creality/filament/CR-Wood @K1_CFS-C-all.json
new file mode 100644
index 0000000000..684baa63ab
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Wood @K1_CFS-C-all.json
@@ -0,0 +1,160 @@
+{
+ "type": "filament",
+ "name": "CR-Wood @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": [
+ "23"
+ ],
+ "filament_density": [
+ "1.22"
+ ],
+ "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": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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",
+ "cool_cds_fan_start_at_height": "0.5",
+ "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": "17001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/CR-Wood @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-Wood @K2 Plus-all.json
new file mode 100644
index 0000000000..791e93252a
--- /dev/null
+++ b/resources/profiles/Creality/filament/CR-Wood @K2 Plus-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "CR-Wood @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": [
+ "23"
+ ],
+ "filament_density": [
+ "1.22"
+ ],
+ "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": [
+ "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}"
+ ],
+ "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.044",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "17001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..f9ef845e22
--- /dev/null
+++ b/resources/profiles/Creality/filament/EN-PLA+ @K1 Max_CFS-C-all.json
@@ -0,0 +1,158 @@
+{
+ "type": "filament",
+ "name": "EN-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": [
+ "90"
+ ],
+ "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": [
+ "23"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "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": [
+ "2"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "Slope Lift"
+ ],
+ "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\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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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": "[[1.0,200], [1.1,210], [1.4,220]]",
+ "pressure_advance": "0.036",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "09001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K1C-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K1C-all.json
new file mode 100644
index 0000000000..d61eb86038
--- /dev/null
+++ b/resources/profiles/Creality/filament/EN-PLA+ @K1C-all.json
@@ -0,0 +1,158 @@
+{
+ "type": "filament",
+ "name": "EN-PLA+ @K1C-all",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "90"
+ ],
+ "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": [
+ "23"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "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": [
+ "2"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "Slope Lift"
+ ],
+ "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\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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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": "[[1.0,200], [1.1,210], [1.4,220]]",
+ "pressure_advance": "0.036",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "09001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..7409ecd709
--- /dev/null
+++ b/resources/profiles/Creality/filament/EN-PLA+ @K1C_CFS-C-all.json
@@ -0,0 +1,158 @@
+{
+ "type": "filament",
+ "name": "EN-PLA+ @K1C_CFS-C-all",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "90"
+ ],
+ "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": [
+ "23"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "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": [
+ "2"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "Slope Lift"
+ ],
+ "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\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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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": "[[1.0,200], [1.1,210], [1.4,220]]",
+ "pressure_advance": "0.036",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "09001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K1_CFS-C-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K1_CFS-C-all.json
new file mode 100644
index 0000000000..a0d70444d9
--- /dev/null
+++ b/resources/profiles/Creality/filament/EN-PLA+ @K1_CFS-C-all.json
@@ -0,0 +1,158 @@
+{
+ "type": "filament",
+ "name": "EN-PLA+ @K1_CFS-C-all",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "90"
+ ],
+ "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": [
+ "23"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "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": [
+ "2"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "Slope Lift"
+ ],
+ "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\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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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": "[[1.0,200], [1.1,210], [1.4,220]]",
+ "pressure_advance": "0.036",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "09001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K2 Plus-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K2 Plus-all.json
new file mode 100644
index 0000000000..5d784a30e1
--- /dev/null
+++ b/resources/profiles/Creality/filament/EN-PLA+ @K2 Plus-all.json
@@ -0,0 +1,155 @@
+{
+ "type": "filament",
+ "name": "EN-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": [
+ "23"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "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": [
+ "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": "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 K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "09001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K2 Pro-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K2 Pro-all.json
new file mode 100644
index 0000000000..c7e21f60dd
--- /dev/null
+++ b/resources/profiles/Creality/filament/EN-PLA+ @K2 Pro-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "EN-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": [
+ "23"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "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",
+ "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.2,195],[1.3,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "09001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K2-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K2-all.json
new file mode 100644
index 0000000000..3fda247230
--- /dev/null
+++ b/resources/profiles/Creality/filament/EN-PLA+ @K2-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "EN-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": [
+ "23"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "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",
+ "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,200],[1.0,200],[1.2,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "09001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/EN-PLA+ @SPARKX i7-all.json b/resources/profiles/Creality/filament/EN-PLA+ @SPARKX i7-all.json
new file mode 100644
index 0000000000..436f4742c5
--- /dev/null
+++ b/resources/profiles/Creality/filament/EN-PLA+ @SPARKX i7-all.json
@@ -0,0 +1,170 @@
+{
+ "type": "filament",
+ "name": "EN-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": [
+ "40"
+ ],
+ "filament_cost": [
+ "23"
+ ],
+ "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": [
+ "100%"
+ ],
+ "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": [
+ "55"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "55"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "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": "[[0.6,210],[1.2,220]]",
+ "pressure_advance": "0.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "09001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/ENDER FAST PLA @Hi-all.json b/resources/profiles/Creality/filament/ENDER FAST PLA @Hi-all.json
new file mode 100644
index 0000000000..e2918f2137
--- /dev/null
+++ b/resources/profiles/Creality/filament/ENDER FAST PLA @Hi-all.json
@@ -0,0 +1,146 @@
+{
+ "type": "filament",
+ "name": "ENDER FAST 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": [
+ "24"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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": [
+ "0.3"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "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"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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,195],[1.2,195],[1.5,220]]",
+ "pressure_advance": "0.048",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "filament_id": "09002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Plus-all.json
new file mode 100644
index 0000000000..bed0d9e0e6
--- /dev/null
+++ b/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Plus-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "ENDER FAST 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": [
+ "25"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "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": [
+ "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_layer_time": [
+ "6"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "53"
+ ],
+ "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",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "pressure_advance": "0.05",
+ "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": "09002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Pro-all.json
new file mode 100644
index 0000000000..1c2aee35a3
--- /dev/null
+++ b/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Pro-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "ENDER FAST 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": [
+ "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": [
+ "55"
+ ],
+ "filament_cost": [
+ "24"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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_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}"
+ ],
+ "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_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,195],[1.2,195],[1.5,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "09002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/ENDER FAST PLA @K2-all.json b/resources/profiles/Creality/filament/ENDER FAST PLA @K2-all.json
new file mode 100644
index 0000000000..3b6140450d
--- /dev/null
+++ b/resources/profiles/Creality/filament/ENDER FAST PLA @K2-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "ENDER FAST 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": [
+ "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": [
+ "55"
+ ],
+ "filament_cost": [
+ "24"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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_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}"
+ ],
+ "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_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,195],[1.2,195],[1.5,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "09002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/ENDER FAST PLA @SPARKX i7-all.json b/resources/profiles/Creality/filament/ENDER FAST PLA @SPARKX i7-all.json
new file mode 100644
index 0000000000..f18e7965ec
--- /dev/null
+++ b/resources/profiles/Creality/filament/ENDER FAST PLA @SPARKX i7-all.json
@@ -0,0 +1,176 @@
+{
+ "type": "filament",
+ "name": "ENDER FAST 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": [
+ "40"
+ ],
+ "filament_cost": [
+ "25"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "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": [
+ "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": [
+ "1"
+ ],
+ "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"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "53"
+ ],
+ "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": "[[0.6,210],[1.2,220]]",
+ "pressure_advance": "0.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "09002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Ender-PLA @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Ender-PLA @Ender-3 V4-all.json
new file mode 100644
index 0000000000..843a01d580
--- /dev/null
+++ b/resources/profiles/Creality/filament/Ender-PLA @Ender-3 V4-all.json
@@ -0,0 +1,147 @@
+{
+ "type": "filament",
+ "name": "Ender-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_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": [
+ "10"
+ ],
+ "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": "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_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": "[[1.0,200],[1.2,220]]",
+ "pressure_advance": "0.024",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "filament_id": "08001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Ender-PLA @Hi-all.json b/resources/profiles/Creality/filament/Ender-PLA @Hi-all.json
new file mode 100644
index 0000000000..f5595db898
--- /dev/null
+++ b/resources/profiles/Creality/filament/Ender-PLA @Hi-all.json
@@ -0,0 +1,157 @@
+{
+ "type": "filament",
+ "name": "Ender-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"
+ ],
+ "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_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": [
+ "100"
+ ],
+ "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_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}"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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.5,195],[1.0,195],[1.2,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "filament_id": "08001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Ender-PLA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Ender-PLA @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..8d91cb361e
--- /dev/null
+++ b/resources/profiles/Creality/filament/Ender-PLA @K1 Max_CFS-C-all.json
@@ -0,0 +1,155 @@
+{
+ "type": "filament",
+ "name": "Ender-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_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "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": [
+ "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"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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": "[[1.0,200], [1.1,210], [1.4,220]]",
+ "pressure_advance": "0.048",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "08001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Ender-PLA @K1C-all.json b/resources/profiles/Creality/filament/Ender-PLA @K1C-all.json
new file mode 100644
index 0000000000..f3d0a961ca
--- /dev/null
+++ b/resources/profiles/Creality/filament/Ender-PLA @K1C-all.json
@@ -0,0 +1,155 @@
+{
+ "type": "filament",
+ "name": "Ender-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_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "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": [
+ "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"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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": "[[1.0,200], [1.1,210], [1.4,220]]",
+ "pressure_advance": "0.048",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "08001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Ender-PLA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Ender-PLA @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..7df3be0f55
--- /dev/null
+++ b/resources/profiles/Creality/filament/Ender-PLA @K1C_CFS-C-all.json
@@ -0,0 +1,155 @@
+{
+ "type": "filament",
+ "name": "Ender-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_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "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": [
+ "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"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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": "[[1.0,200], [1.1,210], [1.4,220]]",
+ "pressure_advance": "0.048",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "08001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Ender-PLA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Ender-PLA @K1_CFS-C-all.json
new file mode 100644
index 0000000000..ed8d932b3b
--- /dev/null
+++ b/resources/profiles/Creality/filament/Ender-PLA @K1_CFS-C-all.json
@@ -0,0 +1,155 @@
+{
+ "type": "filament",
+ "name": "Ender-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_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "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": [
+ "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"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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": "[[1.0,200], [1.1,210], [1.4,220]]",
+ "pressure_advance": "0.048",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "08001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Ender-PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/Ender-PLA @K2 Plus-all.json
new file mode 100644
index 0000000000..9622ce948d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Ender-PLA @K2 Plus-all.json
@@ -0,0 +1,152 @@
+{
+ "type": "filament",
+ "name": "Ender-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_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": [
+ "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": "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 K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "08001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Ender-PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/Ender-PLA @K2 Pro-all.json
new file mode 100644
index 0000000000..82af096bd6
--- /dev/null
+++ b/resources/profiles/Creality/filament/Ender-PLA @K2 Pro-all.json
@@ -0,0 +1,158 @@
+{
+ "type": "filament",
+ "name": "Ender-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_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",
+ "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.2,195],[1.3,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "08001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Ender-PLA @K2-all.json b/resources/profiles/Creality/filament/Ender-PLA @K2-all.json
new file mode 100644
index 0000000000..57849c693c
--- /dev/null
+++ b/resources/profiles/Creality/filament/Ender-PLA @K2-all.json
@@ -0,0 +1,158 @@
+{
+ "type": "filament",
+ "name": "Ender-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_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",
+ "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,200],[1.0,200],[1.2,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "08001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Ender-PLA @SPARKX i7-all.json b/resources/profiles/Creality/filament/Ender-PLA @SPARKX i7-all.json
new file mode 100644
index 0000000000..929095e9b9
--- /dev/null
+++ b/resources/profiles/Creality/filament/Ender-PLA @SPARKX i7-all.json
@@ -0,0 +1,167 @@
+{
+ "type": "filament",
+ "name": "Ender-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": [
+ "40"
+ ],
+ "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": [
+ "100%"
+ ],
+ "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": [
+ "55"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "55"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "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": "[[0.6,210],[1.2,220]]",
+ "pressure_advance": "0.034",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "08001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ABS @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Generic ABS @Ender-3 V4-all.json
new file mode 100644
index 0000000000..9dcacb2902
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ABS @Ender-3 V4-all.json
@@ -0,0 +1,171 @@
+{
+ "type": "filament",
+ "name": "Generic 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_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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "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}\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": "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": "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.026",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "filament_id": "00004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ABS @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Generic ABS @Ender-5 Max-all.json
new file mode 100644
index 0000000000..c96bed99b3
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ABS @Ender-5 Max-all.json
@@ -0,0 +1,163 @@
+{
+ "type": "filament",
+ "name": "Generic 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.24"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "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"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "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.034",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-5 Max 0.4 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ABS @Hi-all.json b/resources/profiles/Creality/filament/Generic ABS @Hi-all.json
new file mode 100644
index 0000000000..f23ddb234e
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ABS @Hi-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "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": [
+ "16"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "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": [
+ "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": "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.048",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "filament_id": "00004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ABS @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic ABS @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..3bc3c7c3a7
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ABS @K1 Max_CFS-C-all.json
@@ -0,0 +1,150 @@
+{
+ "type": "filament",
+ "name": "Generic 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_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": [
+ "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": [
+ "Generic"
+ ],
+ "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": [
+ "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": "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.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ABS @K1 SE-all.json b/resources/profiles/Creality/filament/Generic ABS @K1 SE-all.json
new file mode 100644
index 0000000000..219b392f56
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ABS @K1 SE-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "Generic 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_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "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.044",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE 0.4 nozzle"
+ ],
+ "filament_id": "00004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ABS @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Generic ABS @K1 SE_CFS-C-all.json
new file mode 100644
index 0000000000..ec798a8dd7
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ABS @K1 SE_CFS-C-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "Generic 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_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "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.044",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ABS @K1C-all.json b/resources/profiles/Creality/filament/Generic ABS @K1C-all.json
new file mode 100644
index 0000000000..b90c6bad01
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ABS @K1C-all.json
@@ -0,0 +1,150 @@
+{
+ "type": "filament",
+ "name": "Generic 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_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": [
+ "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": [
+ "Generic"
+ ],
+ "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": [
+ "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": "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.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "00004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ABS @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic ABS @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..3cae95dc90
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ABS @K1C_CFS-C-all.json
@@ -0,0 +1,150 @@
+{
+ "type": "filament",
+ "name": "Generic 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_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": [
+ "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": [
+ "Generic"
+ ],
+ "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": [
+ "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": "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.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ABS @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic ABS @K1_CFS-C-all.json
new file mode 100644
index 0000000000..04d587cb5f
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ABS @K1_CFS-C-all.json
@@ -0,0 +1,150 @@
+{
+ "type": "filament",
+ "name": "Generic 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_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": [
+ "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": [
+ "Generic"
+ ],
+ "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": [
+ "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": "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.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ABS @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic ABS @K2 Plus-all.json
new file mode 100644
index 0000000000..458a9a2483
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ABS @K2 Plus-all.json
@@ -0,0 +1,158 @@
+{
+ "type": "filament",
+ "name": "Generic 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_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": [
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "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_layer": "2",
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle",
+ "Creality K2 Plus 0.6 nozzle",
+ "Creality K2 Plus 0.8 nozzle"
+ ],
+ "filament_id": "00004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ABS @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic ABS @K2 Pro-all.json
new file mode 100644
index 0000000000..5defa04c03
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ABS @K2 Pro-all.json
@@ -0,0 +1,157 @@
+{
+ "type": "filament",
+ "name": "Generic 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_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": [
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "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": "50",
+ "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.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ABS @K2 SE-all.json b/resources/profiles/Creality/filament/Generic ABS @K2 SE-all.json
new file mode 100644
index 0000000000..7f571b1f7a
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ABS @K2 SE-all.json
@@ -0,0 +1,179 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "20"
+ ],
+ "filament_cost": [
+ "15"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "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": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "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.044",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 SE 0.4 nozzle"
+ ],
+ "filament_id": "00004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ABS @K2-all.json b/resources/profiles/Creality/filament/Generic ABS @K2-all.json
new file mode 100644
index 0000000000..400e12eed4
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ABS @K2-all.json
@@ -0,0 +1,163 @@
+{
+ "type": "filament",
+ "name": "Generic 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_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": [
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "250"
+ ],
+ "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",
+ "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.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "00004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ASA @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Generic ASA @Ender-5 Max-all.json
new file mode 100644
index 0000000000..3d2282461f
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ASA @Ender-5 Max-all.json
@@ -0,0 +1,175 @@
+{
+ "type": "filament",
+ "name": "Generic ASA @Ender-5 Max-all",
+ "inherits": "fdm_filament_asa",
+ "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": [
+ "90"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "90"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "70"
+ ],
+ "fan_min_speed": [
+ "20"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "35"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "1"
+ ],
+ "filament_retraction_speed": [
+ "35"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "textured_plate_temp": [
+ "90"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "90"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "0",
+ "chamber_temperature": "55",
+ "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,240],[8.0,250],[12.0,260]]",
+ "pressure_advance": "0.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-5 Max 0.4 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ASA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic ASA @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..cb8a8172c1
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ASA @K1 Max_CFS-C-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "Generic ASA @K1 Max_CFS-C-all",
+ "inherits": "fdm_filament_asa",
+ "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_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.1"
+ ],
+ "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": [
+ "1"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "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}\n"
+ ],
+ "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.044",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00007"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ASA @K1 SE-all.json b/resources/profiles/Creality/filament/Generic ASA @K1 SE-all.json
new file mode 100644
index 0000000000..0748a5d2e1
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ASA @K1 SE-all.json
@@ -0,0 +1,171 @@
+{
+ "type": "filament",
+ "name": "Generic ASA @K1 SE-all",
+ "inherits": "fdm_filament_asa",
+ "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_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "20"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.1"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "14"
+ ],
+ "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": "55",
+ "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.044",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE 0.4 nozzle"
+ ],
+ "filament_id": "00007"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ASA @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Generic ASA @K1 SE_CFS-C-all.json
new file mode 100644
index 0000000000..980ddcb95d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ASA @K1 SE_CFS-C-all.json
@@ -0,0 +1,171 @@
+{
+ "type": "filament",
+ "name": "Generic ASA @K1 SE_CFS-C-all",
+ "inherits": "fdm_filament_asa",
+ "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_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "20"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.1"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "14"
+ ],
+ "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": "55",
+ "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.044",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00007"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ASA @K1C-all.json b/resources/profiles/Creality/filament/Generic ASA @K1C-all.json
new file mode 100644
index 0000000000..f714b8e4f5
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ASA @K1C-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "Generic ASA @K1C-all",
+ "inherits": "fdm_filament_asa",
+ "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_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.1"
+ ],
+ "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": [
+ "1"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "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}\n"
+ ],
+ "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.044",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "00007"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ASA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic ASA @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..dd749741f0
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ASA @K1C_CFS-C-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "Generic ASA @K1C_CFS-C-all",
+ "inherits": "fdm_filament_asa",
+ "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_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.1"
+ ],
+ "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": [
+ "1"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "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}\n"
+ ],
+ "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.044",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00007"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ASA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic ASA @K1_CFS-C-all.json
new file mode 100644
index 0000000000..cfa349f1d6
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ASA @K1_CFS-C-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "Generic ASA @K1_CFS-C-all",
+ "inherits": "fdm_filament_asa",
+ "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_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.1"
+ ],
+ "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": [
+ "1"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "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}\n"
+ ],
+ "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.044",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00007"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ASA @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic ASA @K2 Plus-all.json
new file mode 100644
index 0000000000..7577891b92
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ASA @K2 Plus-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "Generic ASA @K2 Plus-all",
+ "inherits": "fdm_filament_asa",
+ "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_cooling_layer_time": [
+ "40"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.1"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "5"
+ ],
+ "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_layer": "2",
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00007"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ASA @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic ASA @K2 Pro-all.json
new file mode 100644
index 0000000000..f57faabbb5
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ASA @K2 Pro-all.json
@@ -0,0 +1,160 @@
+{
+ "type": "filament",
+ "name": "Generic ASA @K2 Pro-all",
+ "inherits": "fdm_filament_asa",
+ "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_cooling_layer_time": [
+ "40"
+ ],
+ "fan_max_speed": [
+ "90"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.1"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "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": "1",
+ "chamber_temperature": "50",
+ "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.032",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00007"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ASA @K2 SE-all.json b/resources/profiles/Creality/filament/Generic ASA @K2 SE-all.json
new file mode 100644
index 0000000000..86ae9dca6f
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ASA @K2 SE-all.json
@@ -0,0 +1,176 @@
+{
+ "type": "filament",
+ "name": "Generic ASA @K2 SE-all",
+ "inherits": "fdm_filament_asa",
+ "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": [
+ "30"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "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"
+ ],
+ "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.044",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 SE 0.4 nozzle"
+ ],
+ "filament_id": "00007"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ASA @K2-all.json b/resources/profiles/Creality/filament/Generic ASA @K2-all.json
new file mode 100644
index 0000000000..2419947adf
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ASA @K2-all.json
@@ -0,0 +1,169 @@
+{
+ "type": "filament",
+ "name": "Generic ASA @K2-all",
+ "inherits": "fdm_filament_asa",
+ "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_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "90"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.1"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "20"
+ ],
+ "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": "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 0.4 nozzle"
+ ],
+ "filament_id": "00007"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic ASA-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic ASA-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..71ee9185fd
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic ASA-CF @K2 Plus-all.json
@@ -0,0 +1,148 @@
+{
+ "type": "filament",
+ "name": "Generic ASA-CF @K2 Plus-all",
+ "inherits": "fdm_filament_common",
+ "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": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "40"
+ ],
+ "fan_max_speed": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.2"
+ ],
+ "filament_flow_ratio": [
+ "0.92"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "filament_type": [
+ "ASA-CF"
+ ],
+ "hot_plate_temp": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "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": [
+ "110"
+ ],
+ "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_layer": "2",
+ "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": "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",
+ "pressure_advance": "0.036",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00033"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic BVOH @Hi-all.json b/resources/profiles/Creality/filament/Generic BVOH @Hi-all.json
new file mode 100644
index 0000000000..79ab7469f7
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic BVOH @Hi-all.json
@@ -0,0 +1,131 @@
+{
+ "type": "filament",
+ "name": "Generic BVOH @Hi-all",
+ "inherits": "fdm_filament_common",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "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": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "150"
+ ],
+ "filament_density": [
+ "1.138"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retraction_length": [
+ "0.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_soluble": [
+ "1"
+ ],
+ "filament_type": [
+ "BVOH"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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}"
+ ],
+ "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": "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",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "filament_adhesiveness_category": "797",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "filament_id": "00010"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic BVOH @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic BVOH @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..bb0f70816d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic BVOH @K1 Max_CFS-C-all.json
@@ -0,0 +1,162 @@
+{
+ "type": "filament",
+ "name": "Generic BVOH @K1 Max_CFS-C-all",
+ "inherits": "fdm_filament_common",
+ "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_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "80"
+ ],
+ "filament_density": [
+ "1.138"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "7"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "1"
+ ],
+ "filament_type": [
+ "BVOH"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "nozzle_temperature": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "210"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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",
+ "filament_adhesiveness_category": "797",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00010"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic BVOH @K1C-all.json b/resources/profiles/Creality/filament/Generic BVOH @K1C-all.json
new file mode 100644
index 0000000000..47387ac3be
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic BVOH @K1C-all.json
@@ -0,0 +1,163 @@
+{
+ "type": "filament",
+ "name": "Generic BVOH @K1C-all",
+ "inherits": "fdm_filament_common",
+ "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_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "80"
+ ],
+ "filament_density": [
+ "1.138"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "7"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "1"
+ ],
+ "filament_type": [
+ "BVOH"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "nozzle_temperature": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "210"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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",
+ "filament_adhesiveness_category": "797",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "00010"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic BVOH @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic BVOH @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..1c3b1ddaf1
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic BVOH @K1C_CFS-C-all.json
@@ -0,0 +1,163 @@
+{
+ "type": "filament",
+ "name": "Generic BVOH @K1C_CFS-C-all",
+ "inherits": "fdm_filament_common",
+ "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_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "80"
+ ],
+ "filament_density": [
+ "1.138"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "7"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "1"
+ ],
+ "filament_type": [
+ "BVOH"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "nozzle_temperature": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "210"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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",
+ "filament_adhesiveness_category": "797",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00010"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic BVOH @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic BVOH @K1_CFS-C-all.json
new file mode 100644
index 0000000000..f9e153ea8d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic BVOH @K1_CFS-C-all.json
@@ -0,0 +1,163 @@
+{
+ "type": "filament",
+ "name": "Generic BVOH @K1_CFS-C-all",
+ "inherits": "fdm_filament_common",
+ "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_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "80"
+ ],
+ "filament_density": [
+ "1.138"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "7"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "1"
+ ],
+ "filament_type": [
+ "BVOH"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "nozzle_temperature": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "210"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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",
+ "filament_adhesiveness_category": "797",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00010"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic BVOH @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic BVOH @K2 Plus-all.json
new file mode 100644
index 0000000000..1a77b66aee
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic BVOH @K2 Plus-all.json
@@ -0,0 +1,144 @@
+{
+ "type": "filament",
+ "name": "Generic BVOH @K2 Plus-all",
+ "inherits": "fdm_filament_common",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "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": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "80"
+ ],
+ "filament_density": [
+ "1.138"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "filament_retract_before_wipe": [
+ "80"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_soluble": [
+ "1"
+ ],
+ "filament_type": [
+ "BVOH"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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_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",
+ "filament_adhesiveness_category": "797",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00010"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic BVOH @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic BVOH @K2 Pro-all.json
new file mode 100644
index 0000000000..f2785bd214
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic BVOH @K2 Pro-all.json
@@ -0,0 +1,144 @@
+{
+ "type": "filament",
+ "name": "Generic BVOH @K2 Pro-all",
+ "inherits": "fdm_filament_common",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "50"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "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": [
+ "55"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "150"
+ ],
+ "filament_density": [
+ "1.138"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "1"
+ ],
+ "filament_type": [
+ "BVOH"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "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}"
+ ],
+ "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": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "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.04",
+ "support_material_interface_fan_speed": "-1",
+ "filament_adhesiveness_category": "797",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00010"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic BVOH @K2-all.json b/resources/profiles/Creality/filament/Generic BVOH @K2-all.json
new file mode 100644
index 0000000000..5e1ae13b4c
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic BVOH @K2-all.json
@@ -0,0 +1,144 @@
+{
+ "type": "filament",
+ "name": "Generic BVOH @K2-all",
+ "inherits": "fdm_filament_common",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "50"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "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": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "55"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "150"
+ ],
+ "filament_density": [
+ "1.138"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_soluble": [
+ "1"
+ ],
+ "filament_type": [
+ "BVOH"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "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}"
+ ],
+ "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": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "filament_adhesiveness_category": "797",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "00010"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic HIPS @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic HIPS @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..b25fc35a47
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic HIPS @K1 Max_CFS-C-all.json
@@ -0,0 +1,173 @@
+{
+ "type": "filament",
+ "name": "Generic HIPS @K1 Max_CFS-C-all",
+ "inherits": "fdm_filament_hips",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.05"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "4"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "HIPS"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "textured_plate_temp": [
+ "100"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "100"
+ ],
+ "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": "50",
+ "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": "00012"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic HIPS @K1C-all.json b/resources/profiles/Creality/filament/Generic HIPS @K1C-all.json
new file mode 100644
index 0000000000..3db0e2301d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic HIPS @K1C-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "Generic HIPS @K1C-all",
+ "inherits": "fdm_filament_hips",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.05"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "4"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "HIPS"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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\n"
+ ],
+ "filament_end_gcode": [
+ ";filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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": "00012"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic HIPS @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic HIPS @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..25bd7619a3
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic HIPS @K1C_CFS-C-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "Generic HIPS @K1C_CFS-C-all",
+ "inherits": "fdm_filament_hips",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.05"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "4"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "HIPS"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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\n"
+ ],
+ "filament_end_gcode": [
+ ";filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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": "00012"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic HIPS @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic HIPS @K1_CFS-C-all.json
new file mode 100644
index 0000000000..6255580656
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic HIPS @K1_CFS-C-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "Generic HIPS @K1_CFS-C-all",
+ "inherits": "fdm_filament_hips",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.05"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "4"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "HIPS"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "50",
+ "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": "00012"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic HIPS @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic HIPS @K2 Plus-all.json
new file mode 100644
index 0000000000..5fb87af569
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic HIPS @K2 Plus-all.json
@@ -0,0 +1,144 @@
+{
+ "type": "filament",
+ "name": "Generic HIPS @K2 Plus-all",
+ "inherits": "fdm_filament_hips",
+ "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"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.05"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_type": [
+ "HIPS"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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_layer": "2",
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00012"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..db666376de
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA @K1 Max_CFS-C-all.json
@@ -0,0 +1,167 @@
+{
+ "type": "filament",
+ "name": "Generic PA @K1 Max_CFS-C-all",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "fan_cooling_layer_time": [
+ "5"
+ ],
+ "fan_max_speed": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "50"
+ ],
+ "filament_density": [
+ "1.12"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "2"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "40"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "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.01",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00008"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA @K1C-all.json b/resources/profiles/Creality/filament/Generic PA @K1C-all.json
new file mode 100644
index 0000000000..f07abd2ebb
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA @K1C-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "Generic PA @K1C-all",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "fan_cooling_layer_time": [
+ "5"
+ ],
+ "fan_max_speed": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "50"
+ ],
+ "filament_density": [
+ "1.12"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "2"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "40"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "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": "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.01",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "00008"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..74dbec0e75
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA @K1C_CFS-C-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "Generic PA @K1C_CFS-C-all",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "fan_cooling_layer_time": [
+ "5"
+ ],
+ "fan_max_speed": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "50"
+ ],
+ "filament_density": [
+ "1.12"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "2"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "40"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "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.01",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00008"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA @K1_CFS-C-all.json
new file mode 100644
index 0000000000..f96feee9e2
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA @K1_CFS-C-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "Generic PA @K1_CFS-C-all",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "fan_cooling_layer_time": [
+ "5"
+ ],
+ "fan_max_speed": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "50"
+ ],
+ "filament_density": [
+ "1.12"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "2"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "40"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "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.01",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00008"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PA @K2 Plus-all.json
new file mode 100644
index 0000000000..ef5efd2838
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA @K2 Plus-all.json
@@ -0,0 +1,183 @@
+{
+ "type": "filament",
+ "name": "Generic PA @K2 Plus-all",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "additional_cooling_fan_speed": [
+ "70"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "50"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "50"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "2"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "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.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00008"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PA @K2 Pro-all.json
new file mode 100644
index 0000000000..710e2355cd
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA @K2 Pro-all.json
@@ -0,0 +1,196 @@
+{
+ "type": "filament",
+ "name": "Generic PA @K2 Pro-all",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "80"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "50"
+ ],
+ "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": [
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "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": [
+ "12"
+ ],
+ "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",
+ "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",
+ "pressure_advance": "0.058",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00008"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA @K2-all.json b/resources/profiles/Creality/filament/Generic PA @K2-all.json
new file mode 100644
index 0000000000..9bbb1cb7ec
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA @K2-all.json
@@ -0,0 +1,196 @@
+{
+ "type": "filament",
+ "name": "Generic PA @K2-all",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "80"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "50"
+ ],
+ "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": [
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "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": [
+ "12"
+ ],
+ "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": "0",
+ "chamber_temperature": "50",
+ "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.058",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "00008"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA-CF @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..2795f4997e
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA-CF @K1 Max_CFS-C-all.json
@@ -0,0 +1,152 @@
+{
+ "type": "filament",
+ "name": "Generic PA-CF @K1 Max_CFS-C-all",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "fan_cooling_layer_time": [
+ "5"
+ ],
+ "fan_max_speed": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "45"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "2"
+ ],
+ "nozzle_temperature": [
+ "280"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "40"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "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": "50",
+ "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.01",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00009"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PA-CF @K1C-all.json
new file mode 100644
index 0000000000..c0ae293003
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA-CF @K1C-all.json
@@ -0,0 +1,153 @@
+{
+ "type": "filament",
+ "name": "Generic PA-CF @K1C-all",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "fan_cooling_layer_time": [
+ "5"
+ ],
+ "fan_max_speed": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "45"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "2"
+ ],
+ "nozzle_temperature": [
+ "280"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "40"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "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": "50",
+ "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.01",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "00009"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA-CF @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..0746c394bd
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA-CF @K1C_CFS-C-all.json
@@ -0,0 +1,153 @@
+{
+ "type": "filament",
+ "name": "Generic PA-CF @K1C_CFS-C-all",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "fan_cooling_layer_time": [
+ "5"
+ ],
+ "fan_max_speed": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "45"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "2"
+ ],
+ "nozzle_temperature": [
+ "280"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "40"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "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": "50",
+ "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.01",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00009"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA-CF @K1_CFS-C-all.json
new file mode 100644
index 0000000000..b0c356786d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA-CF @K1_CFS-C-all.json
@@ -0,0 +1,153 @@
+{
+ "type": "filament",
+ "name": "Generic PA-CF @K1_CFS-C-all",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "fan_cooling_layer_time": [
+ "5"
+ ],
+ "fan_max_speed": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "45"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "2"
+ ],
+ "nozzle_temperature": [
+ "280"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "40"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "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": "50",
+ "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.01",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00009"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PA-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..2b2d62ac12
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA-CF @K2 Plus-all.json
@@ -0,0 +1,182 @@
+{
+ "type": "filament",
+ "name": "Generic PA-CF @K2 Plus-all",
+ "inherits": "fdm_filament_pa",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "60"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "60"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "45"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "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": [
+ "1.5"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "2"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "nozzle_temperature": [
+ "280"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ],
+ "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": "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",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle",
+ "Creality K2 Plus 0.6 nozzle",
+ "Creality K2 Plus 0.8 nozzle"
+ ],
+ "filament_id": "00009"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA12-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PA12-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..955acd3b3c
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA12-CF @K2 Plus-all.json
@@ -0,0 +1,182 @@
+{
+ "type": "filament",
+ "name": "Generic PA12-CF @K2 Plus-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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "60"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "60"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "120"
+ ],
+ "filament_density": [
+ "1.06"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ],
+ "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": "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",
+ "pressure_advance": "0.048",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00025"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA6-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA6-CF @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..d77b7ffcb6
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA6-CF @K1 Max_CFS-C-all.json
@@ -0,0 +1,188 @@
+{
+ "type": "filament",
+ "name": "Generic PA6-CF @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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "50"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "50"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "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": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "00015"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA6-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PA6-CF @K1C-all.json
new file mode 100644
index 0000000000..2010f82937
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA6-CF @K1C-all.json
@@ -0,0 +1,189 @@
+{
+ "type": "filament",
+ "name": "Generic PA6-CF @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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "50"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "50"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "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": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "00015"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA6-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA6-CF @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..6e33d60b0e
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA6-CF @K1C_CFS-C-all.json
@@ -0,0 +1,189 @@
+{
+ "type": "filament",
+ "name": "Generic PA6-CF @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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "50"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "50"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "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": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "00015"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA6-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PA6-CF @K1_CFS-C-all.json
new file mode 100644
index 0000000000..e579e40909
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA6-CF @K1_CFS-C-all.json
@@ -0,0 +1,189 @@
+{
+ "type": "filament",
+ "name": "Generic PA6-CF @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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "50"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "50"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "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": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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",
+ "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": "00015"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA6-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PA6-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..94f06e7db2
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA6-CF @K2 Plus-all.json
@@ -0,0 +1,191 @@
+{
+ "type": "filament",
+ "name": "Generic PA6-CF @K2 Plus-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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "60"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "60"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "50"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "nozzle_temperature": [
+ "300"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ],
+ "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": "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",
+ "pressure_advance": "0.048",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00015"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA6-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PA6-CF @K2 Pro-all.json
new file mode 100644
index 0000000000..f3102313d4
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA6-CF @K2 Pro-all.json
@@ -0,0 +1,193 @@
+{
+ "type": "filament",
+ "name": "Generic PA6-CF @K2 Pro-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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "50"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "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": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "nozzle_temperature": [
+ "300"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ],
+ "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",
+ "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_toolchange_delay": "0",
+ "filament_unload_time": "0",
+ "filament_unloading_speed": "90",
+ "filament_unloading_speed_start": "100",
+ "material_flow_dependent_temperature": "0",
+ "pressure_advance": "0.048",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00015"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA6-GF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PA6-GF @K2 Plus-all.json
new file mode 100644
index 0000000000..c9bcff9034
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA6-GF @K2 Plus-all.json
@@ -0,0 +1,153 @@
+{
+ "type": "filament",
+ "name": "Generic PA6-GF @K2 Plus-all",
+ "inherits": "fdm_filament_common",
+ "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": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "45"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "45"
+ ],
+ "fan_cooling_layer_time": [
+ "20"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "42"
+ ],
+ "filament_density": [
+ "1.2"
+ ],
+ "filament_flow_ratio": [
+ "0.88"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "filament_retract_before_wipe": [
+ "80"
+ ],
+ "filament_retraction_length": [
+ "0.5"
+ ],
+ "filament_type": [
+ "PA-GF"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "290"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "60"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "2"
+ ],
+ "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 "
+ ],
+ "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": "100",
+ "customized_plate_temp_initial_layer": "100",
+ "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_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": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00034"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA612-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PA612-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..73b2e2084d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA612-CF @K2 Plus-all.json
@@ -0,0 +1,182 @@
+{
+ "type": "filament",
+ "name": "Generic PA612-CF @K2 Plus-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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "60"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "60"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "70"
+ ],
+ "filament_density": [
+ "1.17"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ],
+ "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": "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",
+ "pressure_advance": "0.048",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00022"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PA612-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PA612-CF @K2 Pro-all.json
new file mode 100644
index 0000000000..757f121585
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PA612-CF @K2 Pro-all.json
@@ -0,0 +1,184 @@
+{
+ "type": "filament",
+ "name": "Generic PA612-CF @K2 Pro-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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "70"
+ ],
+ "filament_density": [
+ "1.17"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "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": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ],
+ "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",
+ "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_toolchange_delay": "0",
+ "filament_unload_time": "0",
+ "filament_unloading_speed": "90",
+ "filament_unloading_speed_start": "100",
+ "material_flow_dependent_temperature": "0",
+ "pressure_advance": "0.048",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00022"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PAHT-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PAHT-CF @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..a3ab90075e
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K1 Max_CFS-C-all.json
@@ -0,0 +1,197 @@
+{
+ "type": "filament",
+ "name": "Generic PAHT-CF @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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "80"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "100"
+ ],
+ "filament_density": [
+ "1.2"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "nozzle_temperature": [
+ "300"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "300"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "300"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "textured_plate_temp": [
+ "80"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "80"
+ ],
+ "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"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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": "00016"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PAHT-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PAHT-CF @K1C-all.json
new file mode 100644
index 0000000000..24f3c64007
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K1C-all.json
@@ -0,0 +1,198 @@
+{
+ "type": "filament",
+ "name": "Generic PAHT-CF @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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "80"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "100"
+ ],
+ "filament_density": [
+ "1.2"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "nozzle_temperature": [
+ "300"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "300"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "300"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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\n"
+ ],
+ "filament_end_gcode": [
+ ";filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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": "00016"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PAHT-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PAHT-CF @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..603d21e928
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K1C_CFS-C-all.json
@@ -0,0 +1,198 @@
+{
+ "type": "filament",
+ "name": "Generic PAHT-CF @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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "80"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "100"
+ ],
+ "filament_density": [
+ "1.2"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "nozzle_temperature": [
+ "300"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "300"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "300"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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\n"
+ ],
+ "filament_end_gcode": [
+ ";filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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": "00016"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PAHT-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PAHT-CF @K1_CFS-C-all.json
new file mode 100644
index 0000000000..b17098080b
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K1_CFS-C-all.json
@@ -0,0 +1,198 @@
+{
+ "type": "filament",
+ "name": "Generic PAHT-CF @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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "80"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "100"
+ ],
+ "filament_density": [
+ "1.2"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "nozzle_temperature": [
+ "300"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "300"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "300"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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}"
+ ],
+ "filament_end_gcode": [
+ ";filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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": "00016"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..87de64d972
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Plus-all.json
@@ -0,0 +1,197 @@
+{
+ "type": "filament",
+ "name": "Generic PAHT-CF @K2 Plus-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": [
+ "3"
+ ],
+ "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": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "100"
+ ],
+ "filament_density": [
+ "1.2"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature": [
+ "300"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "300"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "300"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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_layer": "2",
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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.036",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle",
+ "Creality K2 Plus 0.6 nozzle",
+ "Creality K2 Plus 0.8 nozzle"
+ ],
+ "filament_id": "00016"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Pro-all.json
new file mode 100644
index 0000000000..3853bf54db
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Pro-all.json
@@ -0,0 +1,184 @@
+{
+ "type": "filament",
+ "name": "Generic PAHT-CF @K2 Pro-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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "100"
+ ],
+ "filament_density": [
+ "1.2"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "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": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "50",
+ "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": "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.042",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00016"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PAHT-CF @K2-all.json b/resources/profiles/Creality/filament/Generic PAHT-CF @K2-all.json
new file mode 100644
index 0000000000..809d617bfa
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K2-all.json
@@ -0,0 +1,184 @@
+{
+ "type": "filament",
+ "name": "Generic PAHT-CF @K2-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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "100"
+ ],
+ "filament_density": [
+ "1.2"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "50",
+ "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": "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.036",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "00016"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PC @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PC @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..d196ff38ed
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PC @K1 Max_CFS-C-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "Generic PC @K1 Max_CFS-C-all",
+ "inherits": "fdm_filament_pc",
+ "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": [
+ "110"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "filament_density": [
+ "1.18"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00021"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PC @K1C-all.json b/resources/profiles/Creality/filament/Generic PC @K1C-all.json
new file mode 100644
index 0000000000..0e2d6c96e1
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PC @K1C-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "Generic PC @K1C-all",
+ "inherits": "fdm_filament_pc",
+ "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": [
+ "110"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "filament_density": [
+ "1.18"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "00021"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PC @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PC @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..1bf63972b2
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PC @K1C_CFS-C-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "Generic PC @K1C_CFS-C-all",
+ "inherits": "fdm_filament_pc",
+ "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": [
+ "110"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "filament_density": [
+ "1.18"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00021"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PC @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PC @K1_CFS-C-all.json
new file mode 100644
index 0000000000..8e4bc89aa6
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PC @K1_CFS-C-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "Generic PC @K1_CFS-C-all",
+ "inherits": "fdm_filament_pc",
+ "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": [
+ "110"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "filament_density": [
+ "1.18"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00021"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PC @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PC @K2 Plus-all.json
new file mode 100644
index 0000000000..24d1091757
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PC @K2 Plus-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "Generic PC @K2 Plus-all",
+ "inherits": "fdm_filament_pc",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "110"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "110"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "filament_cost": [
+ "100"
+ ],
+ "filament_density": [
+ "1.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": [
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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_layer": "2",
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00021"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PC @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PC @K2 Pro-all.json
new file mode 100644
index 0000000000..939280a0eb
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PC @K2 Pro-all.json
@@ -0,0 +1,169 @@
+{
+ "type": "filament",
+ "name": "Generic PC @K2 Pro-all",
+ "inherits": "fdm_filament_pc",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "filament_cost": [
+ "40"
+ ],
+ "filament_density": [
+ "1.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": [
+ "nil"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "50",
+ "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00021"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PCTG @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PCTG @K2 Plus-all.json
new file mode 100644
index 0000000000..eb652b1188
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PCTG @K2 Plus-all.json
@@ -0,0 +1,150 @@
+{
+ "type": "filament",
+ "name": "Generic PCTG @K2 Plus-all",
+ "inherits": "fdm_filament_common",
+ "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": [
+ "45"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "45"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "40"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "14"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_type": [
+ "PCTG"
+ ],
+ "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": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "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 "
+ ],
+ "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": "70",
+ "customized_plate_temp_initial_layer": "70",
+ "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": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "pressure_advance": "0.13",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00032"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PET @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PET @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..2997083adf
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PET @K1 Max_CFS-C-all.json
@@ -0,0 +1,188 @@
+{
+ "type": "filament",
+ "name": "Generic PET @K1 Max_CFS-C-all",
+ "inherits": "fdm_filament_pet",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "50"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.28"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PET"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "70"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "70"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "230"
+ ],
+ "nozzle_temperature_range_low": [
+ "210"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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}\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": "00020"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PET @K1C-all.json b/resources/profiles/Creality/filament/Generic PET @K1C-all.json
new file mode 100644
index 0000000000..7fd91d6fb3
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PET @K1C-all.json
@@ -0,0 +1,189 @@
+{
+ "type": "filament",
+ "name": "Generic PET @K1C-all",
+ "inherits": "fdm_filament_pet",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "50"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.28"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PET"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "70"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "70"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "230"
+ ],
+ "nozzle_temperature_range_low": [
+ "210"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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}\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": "00020"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PET @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PET @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..029888f2df
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PET @K1C_CFS-C-all.json
@@ -0,0 +1,189 @@
+{
+ "type": "filament",
+ "name": "Generic PET @K1C_CFS-C-all",
+ "inherits": "fdm_filament_pet",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "50"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.28"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PET"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "70"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "70"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "230"
+ ],
+ "nozzle_temperature_range_low": [
+ "210"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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}\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": "00020"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PET @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PET @K1_CFS-C-all.json
new file mode 100644
index 0000000000..f713c802f9
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PET @K1_CFS-C-all.json
@@ -0,0 +1,189 @@
+{
+ "type": "filament",
+ "name": "Generic PET @K1_CFS-C-all",
+ "inherits": "fdm_filament_pet",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "50"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.28"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PET"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "70"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "70"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "230"
+ ],
+ "nozzle_temperature_range_low": [
+ "210"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "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": "00020"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PET @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PET @K2 Plus-all.json
new file mode 100644
index 0000000000..1638d071f6
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PET @K2 Plus-all.json
@@ -0,0 +1,192 @@
+{
+ "type": "filament",
+ "name": "Generic PET @K2 Plus-all",
+ "inherits": "fdm_filament_pet",
+ "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": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.28"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "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_type": [
+ "PET"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "95"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "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": "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",
+ "pressure_advance": "0.1",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00020"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PET @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PET @K2 Pro-all.json
new file mode 100644
index 0000000000..daf375c971
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PET @K2 Pro-all.json
@@ -0,0 +1,193 @@
+{
+ "type": "filament",
+ "name": "Generic PET @K2 Pro-all",
+ "inherits": "fdm_filament_pet",
+ "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"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.28"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "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_type": [
+ "PET"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "95"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "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": "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.13",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00020"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PET @K2-all.json b/resources/profiles/Creality/filament/Generic PET @K2-all.json
new file mode 100644
index 0000000000..2336b9404e
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PET @K2-all.json
@@ -0,0 +1,193 @@
+{
+ "type": "filament",
+ "name": "Generic PET @K2-all",
+ "inherits": "fdm_filament_pet",
+ "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"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.28"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "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_type": [
+ "PET"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "95"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "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.1",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "00020"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PET-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PET-CF @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..1e07976b9d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PET-CF @K1 Max_CFS-C-all.json
@@ -0,0 +1,176 @@
+{
+ "type": "filament",
+ "name": "Generic PET-CF @K1 Max_CFS-C-all",
+ "inherits": "fdm_filament_pet",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "90"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PET-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "nozzle_temperature": [
+ "290"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "290"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "40",
+ "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": "00013"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PET-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PET-CF @K1C-all.json
new file mode 100644
index 0000000000..5777ca035f
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PET-CF @K1C-all.json
@@ -0,0 +1,177 @@
+{
+ "type": "filament",
+ "name": "Generic PET-CF @K1C-all",
+ "inherits": "fdm_filament_pet",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "90"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PET-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "nozzle_temperature": [
+ "290"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "290"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "40",
+ "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": "00013"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PET-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PET-CF @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..53758a5f54
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PET-CF @K1C_CFS-C-all.json
@@ -0,0 +1,177 @@
+{
+ "type": "filament",
+ "name": "Generic PET-CF @K1C_CFS-C-all",
+ "inherits": "fdm_filament_pet",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "90"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PET-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "nozzle_temperature": [
+ "290"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "290"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "40",
+ "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": "00013"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PET-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PET-CF @K1_CFS-C-all.json
new file mode 100644
index 0000000000..844e1b65e8
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PET-CF @K1_CFS-C-all.json
@@ -0,0 +1,177 @@
+{
+ "type": "filament",
+ "name": "Generic PET-CF @K1_CFS-C-all",
+ "inherits": "fdm_filament_pet",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "90"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PET-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "nozzle_temperature": [
+ "290"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "290"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "40",
+ "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": "00013"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PET-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PET-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..234d8cdd17
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PET-CF @K2 Plus-all.json
@@ -0,0 +1,195 @@
+{
+ "type": "filament",
+ "name": "Generic PET-CF @K2 Plus-all",
+ "inherits": "fdm_filament_pet",
+ "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": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "90"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PET-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature": [
+ "290"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "290"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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_layer": "2",
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "40",
+ "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.034",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00013"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PET-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PET-CF @K2 Pro-all.json
new file mode 100644
index 0000000000..501add5ed4
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PET-CF @K2 Pro-all.json
@@ -0,0 +1,193 @@
+{
+ "type": "filament",
+ "name": "Generic PET-CF @K2 Pro-all",
+ "inherits": "fdm_filament_pet",
+ "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"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "90"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PET-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature": [
+ "290"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "290"
+ ],
+ "nozzle_temperature_range_high": [
+ "300"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "1",
+ "chamber_temperature": "40",
+ "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.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00013"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Generic PETG @Ender-3 V4-all.json
new file mode 100644
index 0000000000..5eb55e15fb
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG @Ender-3 V4-all.json
@@ -0,0 +1,150 @@
+{
+ "type": "filament",
+ "name": "Generic 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.24"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "14"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "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": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "16"
+ ],
+ "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": "00003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Generic PETG @Ender-5 Max-all.json
new file mode 100644
index 0000000000..40cf82de3e
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG @Ender-5 Max-all.json
@@ -0,0 +1,163 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "60"
+ ],
+ "fan_min_speed": [
+ "20"
+ ],
+ "filament_cost": [
+ "14"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "14"
+ ],
+ "filament_retract_before_wipe": [
+ "90%"
+ ],
+ "filament_retraction_length": [
+ "0.4"
+ ],
+ "filament_retraction_minimum_travel": [
+ "1"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "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"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "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": "[[0.8,230],[1.0,240]]",
+ "pressure_advance": "0.064",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-5 Max 0.4 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG @Hi-all.json b/resources/profiles/Creality/filament/Generic PETG @Hi-all.json
new file mode 100644
index 0000000000..79d8a6eb54
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG @Hi-all.json
@@ -0,0 +1,151 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "50"
+ ],
+ "filament_cost": [
+ "14"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "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": [
+ "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": "35",
+ "cool_cds_fan_start_at_height": "0.5",
+ "cool_special_cds_fan_speed": "0",
+ "default_filament_colour": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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": "[[0.8,220],[1.1,220],[1.3,250]]",
+ "pressure_advance": "0.078",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "filament_id": "00003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PETG @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..c303cd2346
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG @K1 Max_CFS-C-all.json
@@ -0,0 +1,156 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "35"
+ ],
+ "fan_max_speed": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "14"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_when_changing_layer": [
+ "1"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_wipe": [
+ "1"
+ ],
+ "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_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 > 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": "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": "[[1.0,235], [1.3,250]]",
+ "pressure_advance": "0.08",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG @K1 SE-all.json b/resources/profiles/Creality/filament/Generic PETG @K1 SE-all.json
new file mode 100644
index 0000000000..5f730209bb
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG @K1 SE-all.json
@@ -0,0 +1,144 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "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": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "14"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "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": [
+ "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": "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,240]]",
+ "pressure_advance": "0.086",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE 0.4 nozzle"
+ ],
+ "filament_id": "00003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PETG @K1 SE_CFS-C-all.json
new file mode 100644
index 0000000000..9b49b2a0a7
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG @K1 SE_CFS-C-all.json
@@ -0,0 +1,144 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "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": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "14"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "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": [
+ "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": "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,240]]",
+ "pressure_advance": "0.086",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG @K1C-all.json b/resources/profiles/Creality/filament/Generic PETG @K1C-all.json
new file mode 100644
index 0000000000..9d63399bdd
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG @K1C-all.json
@@ -0,0 +1,156 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "35"
+ ],
+ "fan_max_speed": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "14"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_when_changing_layer": [
+ "1"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_wipe": [
+ "1"
+ ],
+ "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_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 > 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": "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": "[[1.0,235], [1.3,250]]",
+ "pressure_advance": "0.08",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "00003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PETG @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..0751a94525
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG @K1C_CFS-C-all.json
@@ -0,0 +1,156 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "35"
+ ],
+ "fan_max_speed": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "14"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_when_changing_layer": [
+ "1"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_wipe": [
+ "1"
+ ],
+ "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_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 > 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": "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": "[[1.0,235], [1.3,250]]",
+ "pressure_advance": "0.08",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PETG @K1_CFS-C-all.json
new file mode 100644
index 0000000000..ef5b2cfa1f
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG @K1_CFS-C-all.json
@@ -0,0 +1,156 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "35"
+ ],
+ "fan_max_speed": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "14"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_when_changing_layer": [
+ "1"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_wipe": [
+ "1"
+ ],
+ "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_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 > 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": "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": "[[1.0,235], [1.3,250]]",
+ "pressure_advance": "0.08",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PETG @K2 Plus-all.json
new file mode 100644
index 0000000000..f98f479485
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG @K2 Plus-all.json
@@ -0,0 +1,142 @@
+{
+ "type": "filament",
+ "name": "Generic 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"
+ ],
+ "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.27"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "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"
+ ],
+ "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": "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": "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.1",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle",
+ "Creality K2 Plus 0.6 nozzle",
+ "Creality K2 Plus 0.8 nozzle"
+ ],
+ "filament_id": "00003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PETG @K2 Pro-all.json
new file mode 100644
index 0000000000..8b1ea84cf0
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG @K2 Pro-all.json
@@ -0,0 +1,153 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "55"
+ ],
+ "fan_cooling_layer_time": [
+ "35"
+ ],
+ "fan_max_speed": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "14"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "filament_retract_before_wipe": [
+ "80%"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "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": [
+ "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": "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_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.1,220],[1.3,250]]",
+ "pressure_advance": "0.07",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG @K2 SE-all.json b/resources/profiles/Creality/filament/Generic PETG @K2 SE-all.json
new file mode 100644
index 0000000000..9d486c6b4a
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG @K2 SE-all.json
@@ -0,0 +1,152 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "80"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "35"
+ ],
+ "fan_max_speed": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "14"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "filament_retract_before_wipe": [
+ "80%"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "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": [
+ "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": "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": "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.08",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 SE 0.4 nozzle"
+ ],
+ "filament_id": "00003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG @K2-all.json b/resources/profiles/Creality/filament/Generic PETG @K2-all.json
new file mode 100644
index 0000000000..b8cac262bb
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG @K2-all.json
@@ -0,0 +1,153 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "70"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "70"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "55"
+ ],
+ "fan_cooling_layer_time": [
+ "35"
+ ],
+ "fan_max_speed": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "14"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "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": [
+ "95"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "16"
+ ],
+ "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": "0",
+ "chamber_temperature": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "cool_special_cds_fan_speed": "0",
+ "customized_plate_temp": "70",
+ "customized_plate_temp_initial_layer": "70",
+ "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.0,220],[1.2,250]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "00003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG @SPARKX i7-all.json b/resources/profiles/Creality/filament/Generic PETG @SPARKX i7-all.json
new file mode 100644
index 0000000000..340277968f
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG @SPARKX i7-all.json
@@ -0,0 +1,163 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "14"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "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": [
+ "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": [
+ "70"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "70"
+ ],
+ "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": "0",
+ "customized_plate_temp": "70",
+ "customized_plate_temp_initial_layer": "70",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "1",
+ "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": "[[1.0,240],[1.2,250]]",
+ "pressure_advance": "0.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle",
+ "Creality SPARKX i7 0.6 nozzle",
+ "Creality SPARKX i7 0.8 nozzle"
+ ],
+ "filament_id": "00003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..9da2c4cdaa
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG-CF @K1 Max_CFS-C-all.json
@@ -0,0 +1,167 @@
+{
+ "type": "filament",
+ "name": "Generic PETG-CF @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": [
+ "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": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "50"
+ ],
+ "filament_cost": [
+ "70"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "nozzle_temperature": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "250"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "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{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": "00014"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @K1C-all.json
new file mode 100644
index 0000000000..4edd9d272c
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG-CF @K1C-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "Generic PETG-CF @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": [
+ "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": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "50"
+ ],
+ "filament_cost": [
+ "70"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "nozzle_temperature": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "250"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "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{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": "00014"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..2bdfd562bb
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG-CF @K1C_CFS-C-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "Generic PETG-CF @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": [
+ "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": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "50"
+ ],
+ "filament_cost": [
+ "70"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "nozzle_temperature": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "250"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "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{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": "00014"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @K1_CFS-C-all.json
new file mode 100644
index 0000000000..96b88acade
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG-CF @K1_CFS-C-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "Generic PETG-CF @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": [
+ "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": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "50"
+ ],
+ "filament_cost": [
+ "70"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "nozzle_temperature": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "250"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "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{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",
+ "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": "00014"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..bdba57f0b9
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG-CF @K2 Plus-all.json
@@ -0,0 +1,149 @@
+{
+ "type": "filament",
+ "name": "Generic PETG-CF @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": [
+ "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": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "50"
+ ],
+ "filament_cost": [
+ "70"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "nozzle_temperature": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "250"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "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{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": "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",
+ "pressure_advance": "0.02",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00014"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @K2 Pro-all.json
new file mode 100644
index 0000000000..d791b74105
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG-CF @K2 Pro-all.json
@@ -0,0 +1,143 @@
+{
+ "type": "filament",
+ "name": "Generic PETG-CF @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": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "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": [
+ "70"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_flow_ratio": [
+ "0.94"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "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_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.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00014"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @K2-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @K2-all.json
new file mode 100644
index 0000000000..6fbf4f1c4d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG-CF @K2-all.json
@@ -0,0 +1,140 @@
+{
+ "type": "filament",
+ "name": "Generic PETG-CF @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": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "70"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "70"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "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": [
+ "70"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "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_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.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "00014"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @SPARKX i7-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @SPARKX i7-all.json
new file mode 100644
index 0000000000..237f456aa5
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG-CF @SPARKX i7-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "Generic PETG-CF @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": [
+ "90"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "90"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "90"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "14"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "textured_plate_temp": [
+ "80"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "80"
+ ],
+ "filament_start_gcode": [
+ ";filament start gcode"
+ ],
+ "filament_end_gcode": [
+ ";filament end gcode \n"
+ ],
+ "activate_chamber_layer": "2",
+ "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": "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": "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.6,240],[1.2,260]]",
+ "pressure_advance": "0.024",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "00014"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG-GF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PETG-GF @K2 Plus-all.json
new file mode 100644
index 0000000000..f49582c056
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG-GF @K2 Plus-all.json
@@ -0,0 +1,152 @@
+{
+ "type": "filament",
+ "name": "Generic PETG-GF @K2 Plus-all",
+ "inherits": "fdm_filament_common",
+ "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": [
+ "90"
+ ],
+ "fan_min_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "17"
+ ],
+ "filament_density": [
+ "1.28"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retraction_length": [
+ "0.5"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PETG-GF"
+ ],
+ "hot_plate_temp": [
+ "70"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "70"
+ ],
+ "nozzle_temperature": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "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": "1",
+ "chamber_temperature": "35",
+ "cool_cds_fan_start_at_height": "0.5",
+ "cool_special_cds_fan_speed": "0",
+ "customized_plate_temp": "70",
+ "customized_plate_temp_initial_layer": "70",
+ "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",
+ "pressure_advance": "0.08",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00027"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG-GF @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PETG-GF @K2 Pro-all.json
new file mode 100644
index 0000000000..97818fbe9a
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG-GF @K2 Pro-all.json
@@ -0,0 +1,143 @@
+{
+ "type": "filament",
+ "name": "Generic PETG-GF @K2 Pro-all",
+ "inherits": "fdm_filament_common",
+ "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"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "17"
+ ],
+ "filament_density": [
+ "1.28"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_type": [
+ "PETG-GF"
+ ],
+ "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": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "50",
+ "cool_cds_fan_start_at_height": "0.5",
+ "cool_special_cds_fan_speed": "0",
+ "customized_plate_temp": "70",
+ "customized_plate_temp_initial_layer": "70",
+ "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",
+ "pressure_advance": "0.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00027"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PETG-GF @K2-all.json b/resources/profiles/Creality/filament/Generic PETG-GF @K2-all.json
new file mode 100644
index 0000000000..7cd65d60f9
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PETG-GF @K2-all.json
@@ -0,0 +1,146 @@
+{
+ "type": "filament",
+ "name": "Generic PETG-GF @K2-all",
+ "inherits": "fdm_filament_common",
+ "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": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "55"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "17"
+ ],
+ "filament_density": [
+ "1.28"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_type": [
+ "PETG-GF"
+ ],
+ "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": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "50",
+ "cool_cds_fan_start_at_height": "0.5",
+ "cool_special_cds_fan_speed": "0",
+ "customized_plate_temp": "70",
+ "customized_plate_temp_initial_layer": "70",
+ "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",
+ "pressure_advance": "0.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "00027"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Generic PLA @Ender-3 V4-all.json
new file mode 100644
index 0000000000..4fe5f0c538
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA @Ender-3 V4-all.json
@@ -0,0 +1,144 @@
+{
+ "type": "filament",
+ "name": "Generic 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_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "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": [
+ "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}\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,210],[1.0,210],[1.2,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "filament_id": "00001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Generic PLA @Ender-5 Max-all.json
new file mode 100644
index 0000000000..d19a64ded0
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA @Ender-5 Max-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "0"
+ ],
+ "cool_plate_temp": [
+ "45"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "45"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "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": [
+ "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": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "1"
+ ],
+ "filament_retraction_speed": [
+ "35"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "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": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "210"
+ ],
+ "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_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": "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": "55",
+ "epoxy_resin_plate_temp_initial_layer": "55",
+ "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,190],[1.0,210]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-5 Max 0.4 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA @Hi-all.json b/resources/profiles/Creality/filament/Generic PLA @Hi-all.json
new file mode 100644
index 0000000000..ade6b04155
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA @Hi-all.json
@@ -0,0 +1,144 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "30"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "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": [
+ "100"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "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"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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,195],[1.2,195],[1.5,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle",
+ "Creality Hi 0.6 nozzle",
+ "Creality Hi 0.8 nozzle"
+ ],
+ "filament_id": "00001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..2a5931bc67
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA @K1 Max_CFS-C-all.json
@@ -0,0 +1,160 @@
+{
+ "type": "filament",
+ "name": "Generic 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_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "45"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "14"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "1"
+ ],
+ "filament_retraction_length": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "45"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "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"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "0",
+ "chamber_temperature": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "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": "[[1.0,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": "00001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA @K1 SE-all.json b/resources/profiles/Creality/filament/Generic PLA @K1 SE-all.json
new file mode 100644
index 0000000000..7d6061c32f
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA @K1 SE-all.json
@@ -0,0 +1,141 @@
+{
+ "type": "filament",
+ "name": "Generic 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_density": [
+ "1.25"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": "[[1.0,190],[5.0,200],[12.0,210],[18.0,230]]",
+ "pressure_advance": "0.044",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE 0.4 nozzle"
+ ],
+ "filament_id": "00001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA @K1 SE_CFS-C-all.json
new file mode 100644
index 0000000000..d995a87a67
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA @K1 SE_CFS-C-all.json
@@ -0,0 +1,141 @@
+{
+ "type": "filament",
+ "name": "Generic 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_density": [
+ "1.25"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": "[[1.0,190],[5.0,200],[12.0,210],[18.0,230]]",
+ "pressure_advance": "0.044",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA @K1C-all.json b/resources/profiles/Creality/filament/Generic PLA @K1C-all.json
new file mode 100644
index 0000000000..f2a793a802
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA @K1C-all.json
@@ -0,0 +1,160 @@
+{
+ "type": "filament",
+ "name": "Generic 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_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "45"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "14"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "1"
+ ],
+ "filament_retraction_length": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "45"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "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"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "0",
+ "chamber_temperature": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "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": "[[1.0,200],[1.3,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "00001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..18f2869f7a
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA @K1C_CFS-C-all.json
@@ -0,0 +1,160 @@
+{
+ "type": "filament",
+ "name": "Generic 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_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "45"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "14"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "1"
+ ],
+ "filament_retraction_length": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "45"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "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"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "0",
+ "chamber_temperature": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "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": "[[1.0,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": "00001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA @K1_CFS-C-all.json
new file mode 100644
index 0000000000..ea835e8a08
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA @K1_CFS-C-all.json
@@ -0,0 +1,160 @@
+{
+ "type": "filament",
+ "name": "Generic 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_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "45"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "14"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "1"
+ ],
+ "filament_retraction_length": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "45"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "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"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "0",
+ "chamber_temperature": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "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": "[[1.0,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": "00001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PLA @K2 Plus-all.json
new file mode 100644
index 0000000000..fb7258977e
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA @K2 Plus-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Generic PLA @K2 Plus-all",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "80"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "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_density": [
+ "1.25"
+ ],
+ "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": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "6"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "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 K2 Plus 0.4 nozzle",
+ "Creality K2 Plus 0.6 nozzle",
+ "Creality K2 Plus 0.8 nozzle"
+ ],
+ "filament_id": "00001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PLA @K2 Pro-all.json
new file mode 100644
index 0000000000..9a976c6a63
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA @K2 Pro-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "55"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "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": [
+ "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}"
+ ],
+ "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": "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_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,195],[1.2,195],[1.5,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA @K2 SE-all.json b/resources/profiles/Creality/filament/Generic PLA @K2 SE-all.json
new file mode 100644
index 0000000000..325bb27760
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA @K2 SE-all.json
@@ -0,0 +1,140 @@
+{
+ "type": "filament",
+ "name": "Generic 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_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": [
+ "Generic"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": "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,200],[1.2,200],[1.3,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 SE 0.4 nozzle"
+ ],
+ "filament_id": "00001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA @K2-all.json b/resources/profiles/Creality/filament/Generic PLA @K2-all.json
new file mode 100644
index 0000000000..8582cebf5e
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA @K2-all.json
@@ -0,0 +1,162 @@
+{
+ "type": "filament",
+ "name": "Generic 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": [
+ "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": [
+ "55"
+ ],
+ "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": [
+ "14"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "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}"
+ ],
+ "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": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "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",
+ "material_flow_temp_graph": "[[0.8,190],[1.2,190],[1.5,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "00001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA @SPARKX i7-all.json b/resources/profiles/Creality/filament/Generic PLA @SPARKX i7-all.json
new file mode 100644
index 0000000000..442a978381
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA @SPARKX i7-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Generic 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_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "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": [
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "55"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "55"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ],
+ "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": "55",
+ "customized_plate_temp_initial_layer": "55",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "1",
+ "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.2,210],[0.6,220]]",
+ "pressure_advance": "0.12",
+ "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": "00001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @Ender-3 V4-all.json
new file mode 100644
index 0000000000..e34f9872a8
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-CF @Ender-3 V4-all.json
@@ -0,0 +1,156 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-CF @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": [
+ "30"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "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": [
+ "1"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PLA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": "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_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": "[[1.0,210],[1.2,220]]",
+ "pressure_advance": "0.028",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "filament_id": "00006"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @Ender-5 Max-all.json
new file mode 100644
index 0000000000..828a76daa0
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-CF @Ender-5 Max-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-CF @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": [
+ "0"
+ ],
+ "cool_plate_temp": [
+ "45"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "45"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "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_type": [
+ "PLA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "50"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "50"
+ ],
+ "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_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": "[[1.0,190],[1.2,220]]",
+ "pressure_advance": "0.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-5 Max 0.4 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..e90daf4a21
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-CF @K1 Max_CFS-C-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-CF @K1 Max_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"
+ ],
+ "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": [
+ "30"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "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": [
+ "100%"
+ ],
+ "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_type": [
+ "PLA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "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"
+ ],
+ "temperature_vitrification": [
+ "50"
+ ],
+ "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": "0",
+ "chamber_temperature": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "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.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00006"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K1 SE-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K1 SE-all.json
new file mode 100644
index 0000000000..4dcb9c4ac0
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-CF @K1 SE-all.json
@@ -0,0 +1,150 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-CF @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"
+ ],
+ "fan_cooling_layer_time": [
+ "60"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "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_type": [
+ "PLA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": "[[1.0,190],[5.0,200],[14.0,210],[23.0,220]]",
+ "pressure_advance": "0.052",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE 0.4 nozzle"
+ ],
+ "filament_id": "00006"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K1 SE_CFS-C-all.json
new file mode 100644
index 0000000000..75da2ed43f
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-CF @K1 SE_CFS-C-all.json
@@ -0,0 +1,150 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-CF @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"
+ ],
+ "fan_cooling_layer_time": [
+ "60"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "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_type": [
+ "PLA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": "[[1.0,190],[5.0,200],[14.0,210],[23.0,220]]",
+ "pressure_advance": "0.052",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00006"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K1C-all.json
new file mode 100644
index 0000000000..9d7e142b1e
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-CF @K1C-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-CF @K1C-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": [
+ "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": [
+ "30"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "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": [
+ "100%"
+ ],
+ "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_type": [
+ "PLA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "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"
+ ],
+ "temperature_vitrification": [
+ "50"
+ ],
+ "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": "0",
+ "chamber_temperature": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "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.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "00006"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..26c5f3e671
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-CF @K1C_CFS-C-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-CF @K1C_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"
+ ],
+ "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": [
+ "30"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "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": [
+ "100%"
+ ],
+ "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_type": [
+ "PLA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "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"
+ ],
+ "temperature_vitrification": [
+ "50"
+ ],
+ "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": "0",
+ "chamber_temperature": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "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.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00006"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K1_CFS-C-all.json
new file mode 100644
index 0000000000..b77c0fdffb
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-CF @K1_CFS-C-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-CF @K1_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"
+ ],
+ "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": [
+ "30"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "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": [
+ "100%"
+ ],
+ "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_type": [
+ "PLA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "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"
+ ],
+ "temperature_vitrification": [
+ "50"
+ ],
+ "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": "0",
+ "chamber_temperature": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "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.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00006"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..c95758b4cf
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-CF @K2 Plus-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-CF @K2 Plus-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": [
+ "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": [
+ "30"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "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"
+ ],
+ "temperature_vitrification": [
+ "50"
+ ],
+ "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": "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00006"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K2 Pro-all.json
new file mode 100644
index 0000000000..0b4a9b0dd3
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-CF @K2 Pro-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-CF @K2 Pro-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": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "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": "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": "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00006"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K2 SE-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K2 SE-all.json
new file mode 100644
index 0000000000..d6bd3ea4d4
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-CF @K2 SE-all.json
@@ -0,0 +1,146 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-CF @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": [
+ "30"
+ ],
+ "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": [
+ "100%"
+ ],
+ "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_type": [
+ "PLA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 SE 0.4 nozzle"
+ ],
+ "filament_id": "00006"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K2-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K2-all.json
new file mode 100644
index 0000000000..85a09d6540
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-CF @K2-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-CF @K2-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": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "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": "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": "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "00006"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @SPARKX i7-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @SPARKX i7-all.json
new file mode 100644
index 0000000000..ff196a9ebc
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-CF @SPARKX i7-all.json
@@ -0,0 +1,183 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-CF @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": [
+ "40"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PLA-CF"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "1"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "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": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "50"
+ ],
+ "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": "All Surfaces",
+ "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,210][1.2,230]]",
+ "pressure_advance": "0.023",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "00006"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @Ender-3 V4-all.json
new file mode 100644
index 0000000000..4237b09809
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-Silk @Ender-3 V4-all.json
@@ -0,0 +1,147 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-Silk @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_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "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": [
+ "16"
+ ],
+ "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,210],[1.0,210],[1.2,220]]",
+ "pressure_advance": "0.068",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "filament_id": "00002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @Ender-5 Max-all.json
new file mode 100644
index 0000000000..94f452aeb2
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-Silk @Ender-5 Max-all.json
@@ -0,0 +1,155 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-Silk @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": [
+ "0"
+ ],
+ "cool_plate_temp": [
+ "45"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "45"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "1"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "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": [
+ "14"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ],
+ "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": "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": "55",
+ "epoxy_resin_plate_temp_initial_layer": "55",
+ "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,190],[1.0,220]]",
+ "pressure_advance": "0.044",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-5 Max 0.4 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @Hi-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @Hi-all.json
new file mode 100644
index 0000000000..55161e548f
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-Silk @Hi-all.json
@@ -0,0 +1,144 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-Silk @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_density": [
+ "1.25"
+ ],
+ "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": [
+ "0.5"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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"
+ ],
+ "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"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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.5,195],[1.0,195],[1.2,220]]",
+ "pressure_advance": "0.026",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "filament_id": "00002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..521c167636
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K1 Max_CFS-C-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-Silk @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": [
+ "55"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "55"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "55"
+ ],
+ "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": [
+ "10"
+ ],
+ "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.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "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}"
+ ],
+ "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",
+ "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": "[[0.8,205], [1.1,205], [1.4,220]]",
+ "pressure_advance": "0.052",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K1 SE-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K1 SE-all.json
new file mode 100644
index 0000000000..fe441fdd77
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K1 SE-all.json
@@ -0,0 +1,144 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-Silk @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"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "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": [
+ "8"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "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"
+ ],
+ "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": "[[1.0,190],[5.0,200],[12.0,210],[18.0,220]]",
+ "pressure_advance": "0.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE 0.4 nozzle"
+ ],
+ "filament_id": "00002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K1 SE_CFS-C-all.json
new file mode 100644
index 0000000000..d56525f82f
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K1 SE_CFS-C-all.json
@@ -0,0 +1,144 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-Silk @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"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "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": [
+ "8"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "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"
+ ],
+ "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": "[[1.0,190],[5.0,200],[12.0,210],[18.0,220]]",
+ "pressure_advance": "0.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K1C-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K1C-all.json
new file mode 100644
index 0000000000..84a1e0b247
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K1C-all.json
@@ -0,0 +1,163 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-Silk @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": [
+ "55"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "55"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "55"
+ ],
+ "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": [
+ "10"
+ ],
+ "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.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "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"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "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 "
+ ],
+ "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",
+ "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": "[[0.8,205], [1.1,205], [1.4,220]]",
+ "pressure_advance": "0.052",
+ "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": "00002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..d79751dc45
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K1C_CFS-C-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-Silk @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": [
+ "55"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "55"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "55"
+ ],
+ "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": [
+ "10"
+ ],
+ "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.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "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"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "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 "
+ ],
+ "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",
+ "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": "[[0.8,205], [1.1,205], [1.4,220]]",
+ "pressure_advance": "0.052",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K1_CFS-C-all.json
new file mode 100644
index 0000000000..36bdadab2f
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K1_CFS-C-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-Silk @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": [
+ "55"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "55"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "55"
+ ],
+ "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": [
+ "10"
+ ],
+ "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.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "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"
+ ],
+ "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",
+ "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": "[[0.8,205], [1.1,205], [1.4,220]]",
+ "pressure_advance": "0.052",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Plus-all.json
new file mode 100644
index 0000000000..88cdbd7f20
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Plus-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-Silk @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": [
+ "55"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "55"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "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"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "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 "
+ ],
+ "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 K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Pro-all.json
new file mode 100644
index 0000000000..4b7986d701
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Pro-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-Silk @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": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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": [
+ "0.4"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "10"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "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": "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": "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",
+ "material_flow_temp_graph": "[[0.8,195],[1.2,195],[1.4,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K2 SE-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K2 SE-all.json
new file mode 100644
index 0000000000..01fb3b2ca6
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K2 SE-all.json
@@ -0,0 +1,137 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-Silk @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_deretraction_speed": [
+ "40"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "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": [
+ "0.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "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": [
+ "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": "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": "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.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 SE 0.4 nozzle"
+ ],
+ "filament_id": "00002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K2-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K2-all.json
new file mode 100644
index 0000000000..c39bffe31c
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K2-all.json
@@ -0,0 +1,162 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-Silk @K2-all",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "95"
+ ],
+ "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_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "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": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "14"
+ ],
+ "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": "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": "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",
+ "material_flow_temp_graph": "[[0.5,190],[1.0,190],[1.2,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "00002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @SPARKX i7-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @SPARKX i7-all.json
new file mode 100644
index 0000000000..da182e69da
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PLA-Silk @SPARKX i7-all.json
@@ -0,0 +1,167 @@
+{
+ "type": "filament",
+ "name": "Generic PLA-Silk @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_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "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": [
+ "0.4"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "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"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ],
+ "filament_start_gcode": [
+ ";filament start gcode"
+ ],
+ "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": "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.3,215],[1.6,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "00002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PP @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PP @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..00bccafe2d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PP @K1 Max_CFS-C-all.json
@@ -0,0 +1,158 @@
+{
+ "type": "filament",
+ "name": "Generic PP @K1 Max_CFS-C-all",
+ "inherits": "fdm_filament_pp",
+ "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_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "40"
+ ],
+ "filament_density": [
+ "0.91"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PP"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "nozzle_temperature": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "50",
+ "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": "00019"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PP @K1C-all.json b/resources/profiles/Creality/filament/Generic PP @K1C-all.json
new file mode 100644
index 0000000000..d5b50bb581
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PP @K1C-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "Generic PP @K1C-all",
+ "inherits": "fdm_filament_pp",
+ "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_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "40"
+ ],
+ "filament_density": [
+ "0.91"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PP"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "nozzle_temperature": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "50",
+ "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": "00019"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PP @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PP @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..f0cab01d8f
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PP @K1C_CFS-C-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "Generic PP @K1C_CFS-C-all",
+ "inherits": "fdm_filament_pp",
+ "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_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "40"
+ ],
+ "filament_density": [
+ "0.91"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PP"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "nozzle_temperature": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "50",
+ "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": "00019"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PP @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PP @K1_CFS-C-all.json
new file mode 100644
index 0000000000..b8c6ccba8d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PP @K1_CFS-C-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "Generic PP @K1_CFS-C-all",
+ "inherits": "fdm_filament_pp",
+ "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_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "30"
+ ],
+ "filament_cost": [
+ "40"
+ ],
+ "filament_density": [
+ "0.91"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PP"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "nozzle_temperature": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "50",
+ "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": "00019"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PP @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PP @K2 Plus-all.json
new file mode 100644
index 0000000000..83ffec6d27
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PP @K2 Plus-all.json
@@ -0,0 +1,144 @@
+{
+ "type": "filament",
+ "name": "Generic PP @K2 Plus-all",
+ "inherits": "fdm_filament_pp",
+ "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": [
+ "40"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "40"
+ ],
+ "filament_density": [
+ "0.91"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retraction_length": [
+ "1.5"
+ ],
+ "filament_type": [
+ "PP"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "240"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "30",
+ "epoxy_resin_plate_temp_initial_layer": "30",
+ "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.08",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00019"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PP @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PP @K2 Pro-all.json
new file mode 100644
index 0000000000..71313bed4d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PP @K2 Pro-all.json
@@ -0,0 +1,142 @@
+{
+ "type": "filament",
+ "name": "Generic PP @K2 Pro-all",
+ "inherits": "fdm_filament_pp",
+ "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": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "40"
+ ],
+ "filament_density": [
+ "0.91"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_type": [
+ "PP"
+ ],
+ "hot_plate_temp": [
+ "45"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "45"
+ ],
+ "nozzle_temperature": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "255"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "textured_plate_temp": [
+ "45"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "45"
+ ],
+ "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": "45",
+ "customized_plate_temp_initial_layer": "45",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "0",
+ "enable_special_area_additional_cooling_fan": "0",
+ "epoxy_resin_plate_temp": "35",
+ "epoxy_resin_plate_temp_initial_layer": "35",
+ "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.08",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00019"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PP @K2-all.json b/resources/profiles/Creality/filament/Generic PP @K2-all.json
new file mode 100644
index 0000000000..bdc713b298
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PP @K2-all.json
@@ -0,0 +1,142 @@
+{
+ "type": "filament",
+ "name": "Generic PP @K2-all",
+ "inherits": "fdm_filament_pp",
+ "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": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "40"
+ ],
+ "filament_density": [
+ "0.91"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_type": [
+ "PP"
+ ],
+ "hot_plate_temp": [
+ "45"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "45"
+ ],
+ "nozzle_temperature": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "255"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "textured_plate_temp": [
+ "45"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "45"
+ ],
+ "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": "50",
+ "cool_cds_fan_start_at_height": "0.5",
+ "cool_special_cds_fan_speed": "0",
+ "customized_plate_temp": "45",
+ "customized_plate_temp_initial_layer": "45",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "0",
+ "enable_special_area_additional_cooling_fan": "0",
+ "epoxy_resin_plate_temp": "35",
+ "epoxy_resin_plate_temp_initial_layer": "35",
+ "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.08",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "00019"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PP-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PP-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..d176077873
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PP-CF @K2 Plus-all.json
@@ -0,0 +1,150 @@
+{
+ "type": "filament",
+ "name": "Generic PP-CF @K2 Plus-all",
+ "inherits": "fdm_filament_common",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "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": [
+ "45"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "45"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "23"
+ ],
+ "filament_density": [
+ "1.01"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_type": [
+ "PP-CF"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "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"
+ ],
+ "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}"
+ ],
+ "filament_end_gcode": [
+ ";filament end gcode "
+ ],
+ "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": "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": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "pressure_advance": "0.02",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00031"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PPS @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PPS @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..17b2f3d25c
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PPS @K1 Max_CFS-C-all.json
@@ -0,0 +1,173 @@
+{
+ "type": "filament",
+ "name": "Generic PPS @K1 Max_CFS-C-all",
+ "inherits": "fdm_filament_pps",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "100"
+ ],
+ "filament_density": [
+ "1.38"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PPS"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "320"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "320"
+ ],
+ "nozzle_temperature_range_high": [
+ "350"
+ ],
+ "nozzle_temperature_range_low": [
+ "320"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "textured_plate_temp": [
+ "100"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "100"
+ ],
+ "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": "60",
+ "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": "00017"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PPS @K1C-all.json b/resources/profiles/Creality/filament/Generic PPS @K1C-all.json
new file mode 100644
index 0000000000..869e317bb1
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PPS @K1C-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "Generic PPS @K1C-all",
+ "inherits": "fdm_filament_pps",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "100"
+ ],
+ "filament_density": [
+ "1.38"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PPS"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "320"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "320"
+ ],
+ "nozzle_temperature_range_high": [
+ "350"
+ ],
+ "nozzle_temperature_range_low": [
+ "320"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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\n"
+ ],
+ "filament_end_gcode": [
+ ";filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "60",
+ "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": "00017"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PPS @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PPS @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..6232426840
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PPS @K1C_CFS-C-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "Generic PPS @K1C_CFS-C-all",
+ "inherits": "fdm_filament_pps",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "100"
+ ],
+ "filament_density": [
+ "1.38"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PPS"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "320"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "320"
+ ],
+ "nozzle_temperature_range_high": [
+ "350"
+ ],
+ "nozzle_temperature_range_low": [
+ "320"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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\n"
+ ],
+ "filament_end_gcode": [
+ ";filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "60",
+ "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": "00017"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PPS @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PPS @K1_CFS-C-all.json
new file mode 100644
index 0000000000..d89fe2bbb5
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PPS @K1_CFS-C-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "Generic PPS @K1_CFS-C-all",
+ "inherits": "fdm_filament_pps",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "100"
+ ],
+ "filament_density": [
+ "1.38"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PPS"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "320"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "320"
+ ],
+ "nozzle_temperature_range_high": [
+ "350"
+ ],
+ "nozzle_temperature_range_low": [
+ "320"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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",
+ "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": "00017"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PPS @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PPS @K2 Plus-all.json
new file mode 100644
index 0000000000..488dee4301
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PPS @K2 Plus-all.json
@@ -0,0 +1,151 @@
+{
+ "type": "filament",
+ "name": "Generic PPS @K2 Plus-all",
+ "inherits": "fdm_filament_pps",
+ "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": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "100"
+ ],
+ "filament_density": [
+ "1.38"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_flow_ratio": [
+ "0.99"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "2"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retraction_length": [
+ "0.4"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PPS"
+ ],
+ "hot_plate_temp": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature": [
+ "310"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "310"
+ ],
+ "nozzle_temperature_range_high": [
+ "350"
+ ],
+ "nozzle_temperature_range_low": [
+ "300"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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_layer": "2",
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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_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.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00017"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PPS-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PPS-CF @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..e9c6e714c0
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PPS-CF @K1 Max_CFS-C-all.json
@@ -0,0 +1,173 @@
+{
+ "type": "filament",
+ "name": "Generic PPS-CF @K1 Max_CFS-C-all",
+ "inherits": "fdm_filament_pps",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "130"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PPS-CF"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "305"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "305"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "305"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "textured_plate_temp": [
+ "100"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "100"
+ ],
+ "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": "60",
+ "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": "00018"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PPS-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PPS-CF @K1C-all.json
new file mode 100644
index 0000000000..68aedffc0c
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PPS-CF @K1C-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "Generic PPS-CF @K1C-all",
+ "inherits": "fdm_filament_pps",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "130"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PPS-CF"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "305"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "305"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "305"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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\n"
+ ],
+ "filament_end_gcode": [
+ ";filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "60",
+ "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": "00018"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PPS-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PPS-CF @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..882ab1eb20
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PPS-CF @K1C_CFS-C-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "Generic PPS-CF @K1C_CFS-C-all",
+ "inherits": "fdm_filament_pps",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "130"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PPS-CF"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "305"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "305"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "305"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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\n"
+ ],
+ "filament_end_gcode": [
+ ";filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "60",
+ "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": "00018"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PPS-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PPS-CF @K1_CFS-C-all.json
new file mode 100644
index 0000000000..f692cf4659
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PPS-CF @K1_CFS-C-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "Generic PPS-CF @K1_CFS-C-all",
+ "inherits": "fdm_filament_pps",
+ "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": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "130"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_flow_ratio": [
+ "0.926"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PPS-CF"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "hot_plate_temp": [
+ "100"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "100"
+ ],
+ "nozzle_temperature": [
+ "305"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "305"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "305"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "3"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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",
+ "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": "00018"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PPS-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PPS-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..78dfc79d8a
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PPS-CF @K2 Plus-all.json
@@ -0,0 +1,144 @@
+{
+ "type": "filament",
+ "name": "Generic PPS-CF @K2 Plus-all",
+ "inherits": "fdm_filament_pps",
+ "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": [
+ "105"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "130"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "filament_retract_before_wipe": [
+ "80"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_type": [
+ "PPS-CF"
+ ],
+ "hot_plate_temp": [
+ "105"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "105"
+ ],
+ "nozzle_temperature": [
+ "310"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "310"
+ ],
+ "nozzle_temperature_range_high": [
+ "350"
+ ],
+ "nozzle_temperature_range_low": [
+ "300"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "textured_plate_temp": [
+ "105"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "105"
+ ],
+ "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_layer": "2",
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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.058",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00018"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PVA @Hi-all.json b/resources/profiles/Creality/filament/Generic PVA @Hi-all.json
new file mode 100644
index 0000000000..707f056416
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PVA @Hi-all.json
@@ -0,0 +1,136 @@
+{
+ "type": "filament",
+ "name": "Generic PVA @Hi-all",
+ "inherits": "fdm_filament_common",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "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_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "80"
+ ],
+ "filament_density": [
+ "1.37"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_retraction_length": [
+ "0.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_soluble": [
+ "1"
+ ],
+ "filament_type": [
+ "PVA"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "225"
+ ],
+ "nozzle_temperature_range_low": [
+ "215"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "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}\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}"
+ ],
+ "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": "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",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "filament_id": "00011"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PVA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PVA @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..94eabaeb72
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PVA @K1 Max_CFS-C-all.json
@@ -0,0 +1,128 @@
+{
+ "type": "filament",
+ "name": "Generic PVA @K1 Max_CFS-C-all",
+ "inherits": "fdm_filament_common",
+ "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_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "80"
+ ],
+ "filament_density": [
+ "1.37"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "filament_soluble": [
+ "1"
+ ],
+ "filament_type": [
+ "PVA"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "225"
+ ],
+ "nozzle_temperature_range_low": [
+ "215"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "4"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "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": "60",
+ "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": "00011"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PVA @K1C-all.json b/resources/profiles/Creality/filament/Generic PVA @K1C-all.json
new file mode 100644
index 0000000000..e29b5be7c2
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PVA @K1C-all.json
@@ -0,0 +1,129 @@
+{
+ "type": "filament",
+ "name": "Generic PVA @K1C-all",
+ "inherits": "fdm_filament_common",
+ "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_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "80"
+ ],
+ "filament_density": [
+ "1.37"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "filament_soluble": [
+ "1"
+ ],
+ "filament_type": [
+ "PVA"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "225"
+ ],
+ "nozzle_temperature_range_low": [
+ "215"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "4"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "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": "60",
+ "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": "00011"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PVA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PVA @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..c3a49fceca
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PVA @K1C_CFS-C-all.json
@@ -0,0 +1,129 @@
+{
+ "type": "filament",
+ "name": "Generic PVA @K1C_CFS-C-all",
+ "inherits": "fdm_filament_common",
+ "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_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "80"
+ ],
+ "filament_density": [
+ "1.37"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "filament_soluble": [
+ "1"
+ ],
+ "filament_type": [
+ "PVA"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "225"
+ ],
+ "nozzle_temperature_range_low": [
+ "215"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "4"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "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": "60",
+ "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": "00011"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PVA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic PVA @K1_CFS-C-all.json
new file mode 100644
index 0000000000..4fb477e6a4
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PVA @K1_CFS-C-all.json
@@ -0,0 +1,129 @@
+{
+ "type": "filament",
+ "name": "Generic PVA @K1_CFS-C-all",
+ "inherits": "fdm_filament_common",
+ "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_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "80"
+ ],
+ "filament_density": [
+ "1.37"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "filament_soluble": [
+ "1"
+ ],
+ "filament_type": [
+ "PVA"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "225"
+ ],
+ "nozzle_temperature_range_low": [
+ "215"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "4"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "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",
+ "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": "00011"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PVA @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PVA @K2 Plus-all.json
new file mode 100644
index 0000000000..02c0a87eab
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PVA @K2 Plus-all.json
@@ -0,0 +1,146 @@
+{
+ "type": "filament",
+ "name": "Generic PVA @K2 Plus-all",
+ "inherits": "fdm_filament_common",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "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_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "80"
+ ],
+ "filament_density": [
+ "1.37"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_soluble": [
+ "1"
+ ],
+ "filament_type": [
+ "PVA"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "225"
+ ],
+ "nozzle_temperature_range_low": [
+ "215"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "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_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.4 nozzle"
+ ],
+ "filament_id": "00011"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PVA @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PVA @K2 Pro-all.json
new file mode 100644
index 0000000000..29cbfda211
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PVA @K2 Pro-all.json
@@ -0,0 +1,143 @@
+{
+ "type": "filament",
+ "name": "Generic PVA @K2 Pro-all",
+ "inherits": "fdm_filament_common",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "50"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "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": [
+ "55"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "80"
+ ],
+ "filament_density": [
+ "1.37"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_soluble": [
+ "1"
+ ],
+ "filament_type": [
+ "PVA"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "225"
+ ],
+ "nozzle_temperature_range_low": [
+ "215"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "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}"
+ ],
+ "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": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "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.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00011"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic PVA @K2-all.json b/resources/profiles/Creality/filament/Generic PVA @K2-all.json
new file mode 100644
index 0000000000..be69564800
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic PVA @K2-all.json
@@ -0,0 +1,143 @@
+{
+ "type": "filament",
+ "name": "Generic PVA @K2-all",
+ "inherits": "fdm_filament_common",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "50"
+ ],
+ "close_fan_the_first_x_layers": [
+ "1"
+ ],
+ "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": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "55"
+ ],
+ "fan_cooling_layer_time": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "100"
+ ],
+ "filament_cost": [
+ "80"
+ ],
+ "filament_density": [
+ "1.37"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_soluble": [
+ "1"
+ ],
+ "filament_type": [
+ "PVA"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "225"
+ ],
+ "nozzle_temperature_range_low": [
+ "215"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "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}"
+ ],
+ "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": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "00011"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic Support for PA @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic Support for PA @K2 Plus-all.json
new file mode 100644
index 0000000000..cf4b26380f
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic Support for PA @K2 Plus-all.json
@@ -0,0 +1,179 @@
+{
+ "type": "filament",
+ "name": "Generic Support for PA @K2 Plus-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": [
+ "3"
+ ],
+ "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": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "38"
+ ],
+ "filament_density": [
+ "1.17"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "0%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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}"
+ ],
+ "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": "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",
+ "pressure_advance": "0.034",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00023"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic Support for PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic Support for PLA @K2 Plus-all.json
new file mode 100644
index 0000000000..3c09b615e4
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic Support for PLA @K2 Plus-all.json
@@ -0,0 +1,162 @@
+{
+ "type": "filament",
+ "name": "Generic Support for PLA @K2 Plus-all",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "60"
+ ],
+ "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": [
+ "55"
+ ],
+ "filament_cost": [
+ "36"
+ ],
+ "filament_density": [
+ "1.28"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "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}"
+ ],
+ "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",
+ "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 K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00024"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic TPU 64D @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic TPU 64D @K2 Plus-all.json
new file mode 100644
index 0000000000..3024bc3be1
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic TPU 64D @K2 Plus-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "Generic TPU 64D @K2 Plus-all",
+ "inherits": "fdm_filament_tpu",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "40"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_cost": [
+ "0"
+ ],
+ "filament_density": [
+ "1.15"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "215"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "0",
+ "enable_special_area_additional_cooling_fan": "0",
+ "epoxy_resin_plate_temp": "30",
+ "epoxy_resin_plate_temp_initial_layer": "30",
+ "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.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00026"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic TPU 64D @SPARKX i7-all.json b/resources/profiles/Creality/filament/Generic TPU 64D @SPARKX i7-all.json
new file mode 100644
index 0000000000..0497d7fd30
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic TPU 64D @SPARKX i7-all.json
@@ -0,0 +1,185 @@
+{
+ "type": "filament",
+ "name": "Generic TPU 64D @SPARKX i7-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "40"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "40"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "40"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "80"
+ ],
+ "filament_cost": [
+ "0"
+ ],
+ "filament_density": [
+ "1.15"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1.1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "215"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "40",
+ "customized_plate_temp_initial_layer": "40",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "1",
+ "enable_special_area_additional_cooling_fan": "0",
+ "epoxy_resin_plate_temp": "30",
+ "epoxy_resin_plate_temp_initial_layer": "30",
+ "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.28",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "00026"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic TPU @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Generic TPU @Ender-3 V4-all.json
new file mode 100644
index 0000000000..e8489cb041
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic TPU @Ender-3 V4-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "Generic TPU @Ender-3 V4-all",
+ "inherits": "fdm_filament_tpu",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "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": [
+ "25"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "1.6"
+ ],
+ "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": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "40",
+ "customized_plate_temp_initial_layer": "40",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "1",
+ "enable_special_area_additional_cooling_fan": "0",
+ "epoxy_resin_plate_temp": "30",
+ "epoxy_resin_plate_temp_initial_layer": "30",
+ "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,210],[1.0,210],[1.2,220]]",
+ "pressure_advance": "0.46",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "filament_id": "00005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic TPU @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Generic TPU @Ender-5 Max-all.json
new file mode 100644
index 0000000000..c0bf47eed7
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic TPU @Ender-5 Max-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Generic TPU @Ender-5 Max-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "45"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "45"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_cost": [
+ "25"
+ ],
+ "filament_deretraction_speed": [
+ "35"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "35"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "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": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "210"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "50"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "50"
+ ],
+ "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": "0",
+ "material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
+ "pressure_advance": "0.4",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-5 Max 0.4 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic TPU @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Generic TPU @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..c353526ee7
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic TPU @K1 Max_CFS-C-all.json
@@ -0,0 +1,150 @@
+{
+ "type": "filament",
+ "name": "Generic TPU @K1 Max_CFS-C-all",
+ "inherits": "fdm_filament_tpu",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_cost": [
+ "25"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "35"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "35"
+ ],
+ "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": "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": "00005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic TPU @K1 SE-all.json b/resources/profiles/Creality/filament/Generic TPU @K1 SE-all.json
new file mode 100644
index 0000000000..ee092fbcaa
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic TPU @K1 SE-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "Generic TPU @K1 SE-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_cost": [
+ "25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "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": [
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "35"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "35"
+ ],
+ "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.4",
+ "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",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "pressure_advance": "0.8",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE 0.4 nozzle"
+ ],
+ "filament_id": "00005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic TPU @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Generic TPU @K1 SE_CFS-C-all.json
new file mode 100644
index 0000000000..fafd514d7a
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic TPU @K1 SE_CFS-C-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "Generic TPU @K1 SE_CFS-C-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_cost": [
+ "25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "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": [
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "35"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "35"
+ ],
+ "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.4",
+ "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",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "pressure_advance": "0.8",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "00005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic TPU @K1C-all.json b/resources/profiles/Creality/filament/Generic TPU @K1C-all.json
new file mode 100644
index 0000000000..0eef4febc2
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic TPU @K1C-all.json
@@ -0,0 +1,151 @@
+{
+ "type": "filament",
+ "name": "Generic TPU @K1C-all",
+ "inherits": "fdm_filament_tpu",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_cost": [
+ "25"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "35"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "35"
+ ],
+ "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",
+ "cool_cds_fan_start_at_height": "0.5",
+ "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": "00005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic TPU @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Generic TPU @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..6d448d6143
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic TPU @K1C_CFS-C-all.json
@@ -0,0 +1,151 @@
+{
+ "type": "filament",
+ "name": "Generic TPU @K1C_CFS-C-all",
+ "inherits": "fdm_filament_tpu",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_cost": [
+ "25"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "35"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "35"
+ ],
+ "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",
+ "cool_cds_fan_start_at_height": "0.5",
+ "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": "00005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic TPU @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Generic TPU @K1_CFS-C-all.json
new file mode 100644
index 0000000000..b8bbbc3a95
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic TPU @K1_CFS-C-all.json
@@ -0,0 +1,151 @@
+{
+ "type": "filament",
+ "name": "Generic TPU @K1_CFS-C-all",
+ "inherits": "fdm_filament_tpu",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_cost": [
+ "25"
+ ],
+ "filament_deretraction_speed": [
+ "0"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "0"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "0"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Normal Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "35"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "35"
+ ],
+ "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": "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": "00005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic TPU @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic TPU @K2 Plus-all.json
new file mode 100644
index 0000000000..38c08a0dc0
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic TPU @K2 Plus-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "Generic TPU @K2 Plus-all",
+ "inherits": "fdm_filament_tpu",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "40"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_cost": [
+ "25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "0",
+ "enable_special_area_additional_cooling_fan": "0",
+ "epoxy_resin_plate_temp": "30",
+ "epoxy_resin_plate_temp_initial_layer": "30",
+ "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.3",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic TPU @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic TPU @K2 Pro-all.json
new file mode 100644
index 0000000000..94cb080eec
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic TPU @K2 Pro-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Generic TPU @K2 Pro-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "40"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_cost": [
+ "25"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "40",
+ "customized_plate_temp_initial_layer": "40",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "0",
+ "enable_special_area_additional_cooling_fan": "0",
+ "epoxy_resin_plate_temp": "30",
+ "epoxy_resin_plate_temp_initial_layer": "30",
+ "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.3",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "00005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic TPU @K2 SE-all.json b/resources/profiles/Creality/filament/Generic TPU @K2 SE-all.json
new file mode 100644
index 0000000000..e920d51b40
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic TPU @K2 SE-all.json
@@ -0,0 +1,158 @@
+{
+ "type": "filament",
+ "name": "Generic TPU @K2 SE-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_cost": [
+ "25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "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_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "35"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "35"
+ ],
+ "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.4",
+ "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": "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",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "pressure_advance": "0.4",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 SE 0.4 nozzle"
+ ],
+ "filament_id": "00005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic TPU @K2-all.json b/resources/profiles/Creality/filament/Generic TPU @K2-all.json
new file mode 100644
index 0000000000..a3c35ca023
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic TPU @K2-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Generic TPU @K2-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "40"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_cost": [
+ "25"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1.5"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "40",
+ "customized_plate_temp_initial_layer": "40",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "0",
+ "enable_special_area_additional_cooling_fan": "0",
+ "epoxy_resin_plate_temp": "30",
+ "epoxy_resin_plate_temp_initial_layer": "30",
+ "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.3",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "00005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Generic TPU @SPARKX i7-all.json b/resources/profiles/Creality/filament/Generic TPU @SPARKX i7-all.json
new file mode 100644
index 0000000000..196ab19657
--- /dev/null
+++ b/resources/profiles/Creality/filament/Generic TPU @SPARKX i7-all.json
@@ -0,0 +1,172 @@
+{
+ "type": "filament",
+ "name": "Generic TPU @SPARKX i7-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "40"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "40"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "40"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "80"
+ ],
+ "filament_cost": [
+ "25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1.1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "1.8"
+ ],
+ "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": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "40",
+ "customized_plate_temp_initial_layer": "40",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "1",
+ "enable_special_area_additional_cooling_fan": "0",
+ "epoxy_resin_plate_temp": "30",
+ "epoxy_resin_plate_temp_initial_layer": "30",
+ "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.4",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "00005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP Ultra PLA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/HP Ultra PLA @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..fb78d1dac9
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP Ultra PLA @K1 Max_CFS-C-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "HP Ultra 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": [
+ "19"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "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": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "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": "18001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP Ultra PLA @K1C-all.json b/resources/profiles/Creality/filament/HP Ultra PLA @K1C-all.json
new file mode 100644
index 0000000000..3c3bb3de55
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP Ultra PLA @K1C-all.json
@@ -0,0 +1,160 @@
+{
+ "type": "filament",
+ "name": "HP Ultra 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": [
+ "19"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "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": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "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": "18001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP Ultra PLA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/HP Ultra PLA @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..40f27d553a
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP Ultra PLA @K1C_CFS-C-all.json
@@ -0,0 +1,160 @@
+{
+ "type": "filament",
+ "name": "HP Ultra 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": [
+ "19"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "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": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "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": "18001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP Ultra PLA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/HP Ultra PLA @K1_CFS-C-all.json
new file mode 100644
index 0000000000..115b3b4318
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP Ultra PLA @K1_CFS-C-all.json
@@ -0,0 +1,160 @@
+{
+ "type": "filament",
+ "name": "HP Ultra 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": [
+ "19"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "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": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "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": "18001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP Ultra PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/HP Ultra PLA @K2 Plus-all.json
new file mode 100644
index 0000000000..06b454e58e
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP Ultra PLA @K2 Plus-all.json
@@ -0,0 +1,158 @@
+{
+ "type": "filament",
+ "name": "HP Ultra 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": [
+ "19"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "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": [
+ "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": "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 K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "18001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-ASA @Ender-5 Max-all.json b/resources/profiles/Creality/filament/HP-ASA @Ender-5 Max-all.json
new file mode 100644
index 0000000000..b4ba326deb
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-ASA @Ender-5 Max-all.json
@@ -0,0 +1,175 @@
+{
+ "type": "filament",
+ "name": "HP-ASA @Ender-5 Max-all",
+ "inherits": "fdm_filament_asa",
+ "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": [
+ "90"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "90"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "20"
+ ],
+ "filament_cost": [
+ "29"
+ ],
+ "filament_density": [
+ "1.15"
+ ],
+ "filament_deretraction_speed": [
+ "35"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.88"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "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"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "90"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "90"
+ ],
+ "filament_start_gcode": [
+ "; filament start gcode\n"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "0",
+ "chamber_temperature": "55",
+ "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,240],[8.0,250],[12.0,260]]",
+ "pressure_advance": "0.032",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-5 Max 0.4 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-ASA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/HP-ASA @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..9961723962
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-ASA @K1 Max_CFS-C-all.json
@@ -0,0 +1,171 @@
+{
+ "type": "filament",
+ "name": "HP-ASA @K1 Max_CFS-C-all",
+ "inherits": "fdm_filament_asa",
+ "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": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "29"
+ ],
+ "filament_density": [
+ "1.15"
+ ],
+ "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": [
+ "100%"
+ ],
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "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": "100",
+ "epoxy_resin_plate_temp_initial_layer": "100",
+ "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.046",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "19001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-ASA @K1C-all.json b/resources/profiles/Creality/filament/HP-ASA @K1C-all.json
new file mode 100644
index 0000000000..f8508360a6
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-ASA @K1C-all.json
@@ -0,0 +1,171 @@
+{
+ "type": "filament",
+ "name": "HP-ASA @K1C-all",
+ "inherits": "fdm_filament_asa",
+ "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": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "29"
+ ],
+ "filament_density": [
+ "1.15"
+ ],
+ "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": [
+ "100%"
+ ],
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "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": "100",
+ "epoxy_resin_plate_temp_initial_layer": "100",
+ "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.046",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "19001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-ASA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/HP-ASA @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..422c22c92c
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-ASA @K1C_CFS-C-all.json
@@ -0,0 +1,171 @@
+{
+ "type": "filament",
+ "name": "HP-ASA @K1C_CFS-C-all",
+ "inherits": "fdm_filament_asa",
+ "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": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "29"
+ ],
+ "filament_density": [
+ "1.15"
+ ],
+ "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": [
+ "100%"
+ ],
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "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": "100",
+ "epoxy_resin_plate_temp_initial_layer": "100",
+ "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.046",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "19001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-ASA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/HP-ASA @K1_CFS-C-all.json
new file mode 100644
index 0000000000..8d9eaabd99
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-ASA @K1_CFS-C-all.json
@@ -0,0 +1,171 @@
+{
+ "type": "filament",
+ "name": "HP-ASA @K1_CFS-C-all",
+ "inherits": "fdm_filament_asa",
+ "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": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "29"
+ ],
+ "filament_density": [
+ "1.15"
+ ],
+ "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": [
+ "100%"
+ ],
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "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": "100",
+ "epoxy_resin_plate_temp_initial_layer": "100",
+ "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.046",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "19001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-ASA @K2 Plus-all.json b/resources/profiles/Creality/filament/HP-ASA @K2 Plus-all.json
new file mode 100644
index 0000000000..18e30acd72
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-ASA @K2 Plus-all.json
@@ -0,0 +1,179 @@
+{
+ "type": "filament",
+ "name": "HP-ASA @K2 Plus-all",
+ "inherits": "fdm_filament_asa",
+ "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": [
+ "90"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "90"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "fan_cooling_layer_time": [
+ "40"
+ ],
+ "fan_max_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "29"
+ ],
+ "filament_density": [
+ "1.15"
+ ],
+ "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": [
+ "0.8"
+ ],
+ "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": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "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": "1",
+ "chamber_temperature": "50",
+ "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": "19001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-ASA @K2 Pro-all.json b/resources/profiles/Creality/filament/HP-ASA @K2 Pro-all.json
new file mode 100644
index 0000000000..cf4f93b0f8
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-ASA @K2 Pro-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "HP-ASA @K2 Pro-all",
+ "inherits": "fdm_filament_asa",
+ "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_cooling_layer_time": [
+ "40"
+ ],
+ "fan_max_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "29"
+ ],
+ "filament_density": [
+ "1.15"
+ ],
+ "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": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "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": "1",
+ "chamber_temperature": "50",
+ "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"
+ ],
+ "filament_id": "19001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-ASA @K2 SE-all.json b/resources/profiles/Creality/filament/HP-ASA @K2 SE-all.json
new file mode 100644
index 0000000000..c7c0792e19
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-ASA @K2 SE-all.json
@@ -0,0 +1,176 @@
+{
+ "type": "filament",
+ "name": "HP-ASA @K2 SE-all",
+ "inherits": "fdm_filament_asa",
+ "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": [
+ "29"
+ ],
+ "filament_density": [
+ "1.15"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "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": [
+ "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"
+ ],
+ "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.044",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 SE 0.4 nozzle"
+ ],
+ "filament_id": "19001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-ASA @K2-all.json b/resources/profiles/Creality/filament/HP-ASA @K2-all.json
new file mode 100644
index 0000000000..6a4b0f77b7
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-ASA @K2-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "HP-ASA @K2-all",
+ "inherits": "fdm_filament_asa",
+ "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_cooling_layer_time": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "29"
+ ],
+ "filament_density": [
+ "1.15"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "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"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "20"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "60"
+ ],
+ "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 0.4 nozzle"
+ ],
+ "filament_id": "19001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-TPU @Ender-3 V4-all.json b/resources/profiles/Creality/filament/HP-TPU @Ender-3 V4-all.json
new file mode 100644
index 0000000000..c378d0e217
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-TPU @Ender-3 V4-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "HP-TPU @Ender-3 V4-all",
+ "inherits": "fdm_filament_tpu",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "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": [
+ "28"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "2"
+ ],
+ "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": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "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": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "40",
+ "customized_plate_temp_initial_layer": "40",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "0",
+ "enable_special_area_additional_cooling_fan": "0",
+ "epoxy_resin_plate_temp": "30",
+ "epoxy_resin_plate_temp_initial_layer": "30",
+ "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,210],[1.0,210],[1.2,220]]",
+ "pressure_advance": "0.36",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "filament_id": "10001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-TPU @Ender-5 Max-all.json b/resources/profiles/Creality/filament/HP-TPU @Ender-5 Max-all.json
new file mode 100644
index 0000000000..07b7074c70
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-TPU @Ender-5 Max-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "HP-TPU @Ender-5 Max-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "45"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "45"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "35"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "2.5"
+ ],
+ "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": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "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": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "210"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "50"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "50"
+ ],
+ "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": "0",
+ "material_flow_temp_graph": "[[3.0,210], [10.0,220], [12.0,230]]",
+ "pressure_advance": "0.4",
+ "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"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-TPU @Hi-all.json b/resources/profiles/Creality/filament/HP-TPU @Hi-all.json
new file mode 100644
index 0000000000..4484d9a3c5
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-TPU @Hi-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "HP-TPU @Hi-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "40"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "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": [
+ "2"
+ ],
+ "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": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "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": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "pressure_advance": "0.36",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "filament_id": "10001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-TPU @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/HP-TPU @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..65e4ee7c9e
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-TPU @K1 Max_CFS-C-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "HP-TPU @K1 Max_CFS-C-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "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"
+ ],
+ "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": [
+ "Slope Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "0",
+ "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": "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.32",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "10001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-TPU @K1 SE-all.json b/resources/profiles/Creality/filament/HP-TPU @K1 SE-all.json
new file mode 100644
index 0000000000..d6cad98be9
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-TPU @K1 SE-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "HP-TPU @K1 SE-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_cost": [
+ "28"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3.5"
+ ],
+ "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": [
+ "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": [
+ "Auto Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "nozzle_temperature": [
+ "215"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "215"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "35"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "35"
+ ],
+ "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.4",
+ "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",
+ "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 SE 0.4 nozzle"
+ ],
+ "filament_id": "10001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-TPU @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/HP-TPU @K1 SE_CFS-C-all.json
new file mode 100644
index 0000000000..dc105409b8
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-TPU @K1 SE_CFS-C-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "HP-TPU @K1 SE_CFS-C-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_cost": [
+ "28"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3.5"
+ ],
+ "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": [
+ "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": [
+ "Auto Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "nozzle_temperature": [
+ "215"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "215"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "35"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "35"
+ ],
+ "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.4",
+ "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",
+ "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 SE_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "10001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-TPU @K1C-all.json b/resources/profiles/Creality/filament/HP-TPU @K1C-all.json
new file mode 100644
index 0000000000..0881b96efc
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-TPU @K1C-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "HP-TPU @K1C-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "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"
+ ],
+ "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": [
+ "Slope Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "0",
+ "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": "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.32",
+ "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": "10001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-TPU @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/HP-TPU @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..a6ccad9c7b
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-TPU @K1C_CFS-C-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "HP-TPU @K1C_CFS-C-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "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"
+ ],
+ "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": [
+ "Slope Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "0",
+ "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": "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.32",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "10001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-TPU @K1_CFS-C-all.json b/resources/profiles/Creality/filament/HP-TPU @K1_CFS-C-all.json
new file mode 100644
index 0000000000..b40c64ae47
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-TPU @K1_CFS-C-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "HP-TPU @K1_CFS-C-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "35"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "35"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "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"
+ ],
+ "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": [
+ "Slope Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "0",
+ "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": "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.32",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "10001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-TPU @K2 Plus-all.json b/resources/profiles/Creality/filament/HP-TPU @K2 Plus-all.json
new file mode 100644
index 0000000000..b8487fbf9e
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-TPU @K2 Plus-all.json
@@ -0,0 +1,172 @@
+{
+ "type": "filament",
+ "name": "HP-TPU @K2 Plus-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "40"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "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": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "0",
+ "enable_special_area_additional_cooling_fan": "0",
+ "epoxy_resin_plate_temp": "30",
+ "epoxy_resin_plate_temp_initial_layer": "30",
+ "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.4",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle",
+ "Creality K2 Plus 0.6 nozzle",
+ "Creality K2 Plus 0.8 nozzle"
+ ],
+ "filament_id": "10001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-TPU @K2 Pro-all.json b/resources/profiles/Creality/filament/HP-TPU @K2 Pro-all.json
new file mode 100644
index 0000000000..d77486de52
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-TPU @K2 Pro-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "HP-TPU @K2 Pro-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "40"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "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": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "30",
+ "epoxy_resin_plate_temp_initial_layer": "30",
+ "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.4",
+ "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": "10001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-TPU @K2 SE-all.json b/resources/profiles/Creality/filament/HP-TPU @K2 SE-all.json
new file mode 100644
index 0000000000..c3b7e45f76
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-TPU @K2 SE-all.json
@@ -0,0 +1,176 @@
+{
+ "type": "filament",
+ "name": "HP-TPU @K2 SE-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "40"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "40"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "40"
+ ],
+ "filament_cost": [
+ "28"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "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": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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.4",
+ "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": "[[1.0,190],[1.2,190],[1.3,220]]",
+ "pressure_advance": "0.4",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 SE 0.4 nozzle"
+ ],
+ "filament_id": "10001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-TPU @K2-all.json b/resources/profiles/Creality/filament/HP-TPU @K2-all.json
new file mode 100644
index 0000000000..ac4c6bca93
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-TPU @K2-all.json
@@ -0,0 +1,169 @@
+{
+ "type": "filament",
+ "name": "HP-TPU @K2-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "40"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "3"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "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": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "0",
+ "enable_special_area_additional_cooling_fan": "0",
+ "epoxy_resin_plate_temp": "30",
+ "epoxy_resin_plate_temp_initial_layer": "30",
+ "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.4",
+ "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": "10001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/HP-TPU @SPARKX i7-all.json b/resources/profiles/Creality/filament/HP-TPU @SPARKX i7-all.json
new file mode 100644
index 0000000000..1095d8b540
--- /dev/null
+++ b/resources/profiles/Creality/filament/HP-TPU @SPARKX i7-all.json
@@ -0,0 +1,183 @@
+{
+ "type": "filament",
+ "name": "HP-TPU @SPARKX i7-all",
+ "inherits": "fdm_filament_tpu",
+ "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": [
+ "40"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "40"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "35"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "35"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "80"
+ ],
+ "filament_cost": [
+ "28"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1.1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "2"
+ ],
+ "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": [
+ "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": [
+ "40"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "40"
+ ],
+ "nozzle_temperature": [
+ "220"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "220"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "nozzle_temperature_range_low": [
+ "190"
+ ],
+ "overhang_fan_threshold": [
+ "50%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "textured_plate_temp": [
+ "40"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "40"
+ ],
+ "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": "40",
+ "customized_plate_temp_initial_layer": "40",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "1",
+ "enable_special_area_additional_cooling_fan": "0",
+ "epoxy_resin_plate_temp": "30",
+ "epoxy_resin_plate_temp_initial_layer": "30",
+ "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.4",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle",
+ "Creality SPARKX i7 0.6 nozzle",
+ "Creality SPARKX i7 0.8 nozzle"
+ ],
+ "filament_id": "10001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper ABS @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Hyper ABS @Ender-3 V4-all.json
new file mode 100644
index 0000000000..b45ad1b482
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper ABS @Ender-3 V4-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "22"
+ ],
+ "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": [
+ "23"
+ ],
+ "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_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": [
+ "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}\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": "90",
+ "customized_plate_temp_initial_layer": "90",
+ "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_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.038",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "filament_id": "03001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper ABS @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Hyper ABS @Ender-5 Max-all.json
new file mode 100644
index 0000000000..ca7a7d66a7
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper ABS @Ender-5 Max-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "20"
+ ],
+ "fan_min_speed": [
+ "20"
+ ],
+ "filament_cost": [
+ "15"
+ ],
+ "filament_density": [
+ "1.08"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.92"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "60"
+ ],
+ "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": [
+ "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"
+ ],
+ "overhang_fan_speed": [
+ "20"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "5"
+ ],
+ "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": "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": "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": "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,230],[5.0,250],[10.0,260]]",
+ "pressure_advance": "0.025",
+ "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"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper ABS @Hi-all.json b/resources/profiles/Creality/filament/Hyper ABS @Hi-all.json
new file mode 100644
index 0000000000..765b2c82a8
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper ABS @Hi-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "Hyper 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"
+ ],
+ "eng_plate_temp": [
+ "80"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "70"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "22"
+ ],
+ "filament_density": [
+ "1.08"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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.02",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "filament_id": "03001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper ABS @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper ABS @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..bf0184ecc6
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper ABS @K1 Max_CFS-C-all.json
@@ -0,0 +1,169 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "80"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "80"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "80"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "22"
+ ],
+ "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": [
+ "23"
+ ],
+ "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": [
+ "0.6"
+ ],
+ "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": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "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": [
+ "80"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "80"
+ ],
+ "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": "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": "[[3.0,210], [10.0,220], [12.0,230]]",
+ "pressure_advance": "0.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "03001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper ABS @K1 SE-all.json b/resources/profiles/Creality/filament/Hyper ABS @K1 SE-all.json
new file mode 100644
index 0000000000..d3a94446e9
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper ABS @K1 SE-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "80"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "80"
+ ],
+ "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": [
+ "22"
+ ],
+ "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": [
+ "23"
+ ],
+ "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": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "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": [
+ "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}"
+ ],
+ "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": "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,20],[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": "03001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper ABS @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper ABS @K1 SE_CFS-C-all.json
new file mode 100644
index 0000000000..743f5adecc
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper ABS @K1 SE_CFS-C-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "80"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "80"
+ ],
+ "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": [
+ "22"
+ ],
+ "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": [
+ "23"
+ ],
+ "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": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "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": [
+ "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}"
+ ],
+ "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": "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,20],[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": "03001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper ABS @K1C-all.json b/resources/profiles/Creality/filament/Hyper ABS @K1C-all.json
new file mode 100644
index 0000000000..5faac6bafa
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper ABS @K1C-all.json
@@ -0,0 +1,170 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "80"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "80"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "80"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "22"
+ ],
+ "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": [
+ "23"
+ ],
+ "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": [
+ "2"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "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": [
+ "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}"
+ ],
+ "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": "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.03",
+ "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": "03001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper ABS @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper ABS @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..843f49d5b9
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper ABS @K1C_CFS-C-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "80"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "80"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "80"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "22"
+ ],
+ "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": [
+ "23"
+ ],
+ "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": [
+ "2"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "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": [
+ "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}"
+ ],
+ "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": "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.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "03001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper ABS @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper ABS @K1_CFS-C-all.json
new file mode 100644
index 0000000000..baef2eb4ce
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper ABS @K1_CFS-C-all.json
@@ -0,0 +1,169 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "80"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "80"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "80"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "22"
+ ],
+ "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": [
+ "23"
+ ],
+ "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": [
+ "0.6"
+ ],
+ "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": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "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": [
+ "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}"
+ ],
+ "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": "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": "[[3.0,210], [10.0,220], [12.0,230]]",
+ "pressure_advance": "0.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "03001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper ABS @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper ABS @K2 Plus-all.json
new file mode 100644
index 0000000000..3d3d251df7
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper ABS @K2 Plus-all.json
@@ -0,0 +1,167 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "80"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "80"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "80"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "22"
+ ],
+ "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": [
+ "2"
+ ],
+ "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": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "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}"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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.03",
+ "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": "03001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper ABS @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper ABS @K2 Pro-all.json
new file mode 100644
index 0000000000..e73e9545cd
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper ABS @K2 Pro-all.json
@@ -0,0 +1,169 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "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": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "22"
+ ],
+ "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": [
+ "23"
+ ],
+ "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": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "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": [
+ "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}"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "03001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper ABS @K2 SE-all.json b/resources/profiles/Creality/filament/Hyper ABS @K2 SE-all.json
new file mode 100644
index 0000000000..9b128b2330
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper ABS @K2 SE-all.json
@@ -0,0 +1,176 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "22"
+ ],
+ "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": [
+ "23"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "80%"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "1"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe": [
+ "1"
+ ],
+ "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"
+ ],
+ "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": "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.02",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 SE 0.4 nozzle"
+ ],
+ "filament_id": "03001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper ABS @K2-all.json b/resources/profiles/Creality/filament/Hyper ABS @K2-all.json
new file mode 100644
index 0000000000..20be7b85dc
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper ABS @K2-all.json
@@ -0,0 +1,167 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "80"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "80"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "80"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "22"
+ ],
+ "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": [
+ "23"
+ ],
+ "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": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "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": [
+ "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}"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "03001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @Hi-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @Hi-all.json
new file mode 100644
index 0000000000..92f146279e
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper L-W PLA @Hi-all.json
@@ -0,0 +1,149 @@
+{
+ "type": "filament",
+ "name": "Hyper L-W 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"
+ ],
+ "fan_min_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "48.9"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.84"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "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": [
+ "0.6"
+ ],
+ "filament_retraction_minimum_travel": [
+ "3"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "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": "0",
+ "customized_plate_temp_initial_layer": "0",
+ "default_filament_colour": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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",
+ "pressure_advance": "0.09",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "filament_id": "01002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..82e0fe76b3
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K1 Max_CFS-C-all.json
@@ -0,0 +1,170 @@
+{
+ "type": "filament",
+ "name": "Hyper L-W 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": [
+ "0"
+ ],
+ "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_min_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "48.9"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.85"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "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": [
+ "0.6"
+ ],
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "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}"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "0",
+ "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_long_retractions_when_cut": "nil",
+ "filament_multitool_ramming": "0",
+ "filament_multitool_ramming_flow": "10",
+ "filament_multitool_ramming_volume": "10",
+ "filament_ramming_parameters": "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6",
+ "filament_retract_lift_above": "nil",
+ "filament_retract_lift_below": "nil",
+ "filament_retract_lift_enforce": "nil",
+ "filament_retraction_distances_when_cut": "nil",
+ "filament_shrink": "100%",
+ "filament_shrinkage_compensation_z": "100%",
+ "filament_stamping_distance": "0",
+ "filament_stamping_loading_speed": "0",
+ "filament_toolchange_delay": "0",
+ "filament_unload_time": "0",
+ "filament_unloading_speed": "90",
+ "filament_unloading_speed_start": "100",
+ "idle_temperature": "0",
+ "material_flow_dependent_temperature": "0",
+ "pellet_flow_coefficient": "0.4157",
+ "pressure_advance": "0.09",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "01002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K1 SE-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K1 SE-all.json
new file mode 100644
index 0000000000..68f823f0cb
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K1 SE-all.json
@@ -0,0 +1,148 @@
+{
+ "type": "filament",
+ "name": "Hyper L-W 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"
+ ],
+ "fan_min_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "48.9"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.85"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "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": [
+ "0.6"
+ ],
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "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": "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.09",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE 0.4 nozzle"
+ ],
+ "filament_id": "01002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K1 SE_CFS-C-all.json
new file mode 100644
index 0000000000..2ee911c6f1
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K1 SE_CFS-C-all.json
@@ -0,0 +1,148 @@
+{
+ "type": "filament",
+ "name": "Hyper L-W 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"
+ ],
+ "fan_min_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "48.9"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.85"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "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": [
+ "0.6"
+ ],
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "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": "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.09",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "01002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K1C-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K1C-all.json
new file mode 100644
index 0000000000..da2fea04b7
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K1C-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Hyper L-W PLA @K1C-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": [
+ "50"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "48.9"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.85"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "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": [
+ "0.6"
+ ],
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "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": "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": "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",
+ "pressure_advance": "0.09",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "01002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..88332fb5d5
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K1C_CFS-C-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Hyper L-W PLA @K1C_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"
+ ],
+ "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_min_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "48.9"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.85"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "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": [
+ "0.6"
+ ],
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "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": "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": "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",
+ "pressure_advance": "0.09",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "01002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K1_CFS-C-all.json
new file mode 100644
index 0000000000..526607d93d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K1_CFS-C-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Hyper L-W PLA @K1_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"
+ ],
+ "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_min_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "48.9"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.85"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "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": [
+ "0.6"
+ ],
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "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": "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": "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",
+ "pressure_advance": "0.09",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "01002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K2 Plus-all.json
new file mode 100644
index 0000000000..2d242459f8
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K2 Plus-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "Hyper L-W PLA @K2 Plus-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": [
+ "50"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "45"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "45"
+ ],
+ "fan_min_speed": [
+ "50"
+ ],
+ "filament_cost": [
+ "48.9"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.85"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "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": [
+ "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": [
+ "270"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "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 "
+ ],
+ "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": "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_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": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "pressure_advance": "0.1",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "01002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K2 Pro-all.json
new file mode 100644
index 0000000000..62ec983476
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K2 Pro-all.json
@@ -0,0 +1,169 @@
+{
+ "type": "filament",
+ "name": "Hyper L-W 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"
+ ],
+ "fan_min_speed": [
+ "50"
+ ],
+ "filament_cost": [
+ "48.9"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.76"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "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",
+ "pressure_advance": "0.1",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "01002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper L-W PLA @K2-all.json b/resources/profiles/Creality/filament/Hyper L-W PLA @K2-all.json
new file mode 100644
index 0000000000..c582a85ce0
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K2-all.json
@@ -0,0 +1,169 @@
+{
+ "type": "filament",
+ "name": "Hyper L-W 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"
+ ],
+ "fan_min_speed": [
+ "50"
+ ],
+ "filament_cost": [
+ "48.9"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.85"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "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": [
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "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",
+ "pressure_advance": "0.1",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "01002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Luminous @Hi-all.json b/resources/profiles/Creality/filament/Hyper Luminous @Hi-all.json
new file mode 100644
index 0000000000..42c1c0ad5c
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Luminous @Hi-all.json
@@ -0,0 +1,140 @@
+{
+ "type": "filament",
+ "name": "Hyper Luminous @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": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "filament_cost": [
+ "28.9"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "21"
+ ],
+ "filament_minimal_purge_on_wipe_tower": [
+ "15"
+ ],
+ "filament_retract_before_wipe": [
+ "90%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "Slope Lift"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "filament_start_gcode": [
+ ";filament start gcode"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "0",
+ "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": "0",
+ "filament_retract_lift_below": "299",
+ "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,195],[1.2,195],[1.5,220]]",
+ "pressure_advance": "0.052",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle",
+ "Creality Hi 0.6 nozzle",
+ "Creality Hi 0.8 nozzle"
+ ],
+ "filament_id": "01003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Luminous @K1C-all.json b/resources/profiles/Creality/filament/Hyper Luminous @K1C-all.json
new file mode 100644
index 0000000000..d8ce75f23c
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Luminous @K1C-all.json
@@ -0,0 +1,167 @@
+{
+ "type": "filament",
+ "name": "Hyper Luminous @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": [
+ "28.9"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.99"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "21"
+ ],
+ "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": [
+ "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"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "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": "0",
+ "chamber_temperature": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "cool_special_cds_fan_speed": "0",
+ "customized_plate_temp": "55",
+ "customized_plate_temp_initial_layer": "55",
+ "default_filament_colour": "\"\"",
+ "dont_slow_down_outer_wall": "0",
+ "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.8,210], [1.2,210], [1.3,220]]",
+ "pressure_advance": "0.05",
+ "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": "01003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Luminous @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper Luminous @K2 Plus-all.json
new file mode 100644
index 0000000000..764f3bb1e9
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Luminous @K2 Plus-all.json
@@ -0,0 +1,164 @@
+{
+ "type": "filament",
+ "name": "Hyper Luminous @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": [
+ "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": [
+ "28.9"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.99"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "21"
+ ],
+ "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"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "textured_plate_temp": [
+ "50"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "50"
+ ],
+ "filament_start_gcode": [
+ ";filament start gcode"
+ ],
+ "filament_end_gcode": [
+ " ; filament end gcode"
+ ],
+ "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": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "default_filament_colour": "\"\"",
+ "dont_slow_down_outer_wall": "0",
+ "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,210],[1.2,210],[1.5,220]]",
+ "pressure_advance": "0.042",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle",
+ "Creality K2 Plus 0.6 nozzle",
+ "Creality K2 Plus 0.8 nozzle"
+ ],
+ "filament_id": "01003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Luminous @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper Luminous @K2 Pro-all.json
new file mode 100644
index 0000000000..5988cac327
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Luminous @K2 Pro-all.json
@@ -0,0 +1,164 @@
+{
+ "type": "filament",
+ "name": "Hyper Luminous @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": [
+ "28.9"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.99"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "21"
+ ],
+ "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"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "textured_plate_temp": [
+ "50"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "50"
+ ],
+ "filament_start_gcode": [
+ ";filament start gcode"
+ ],
+ "filament_end_gcode": [
+ " ; filament end gcode"
+ ],
+ "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": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "default_filament_colour": "\"\"",
+ "dont_slow_down_outer_wall": "0",
+ "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,210],[1.2,210],[1.5,220]]",
+ "pressure_advance": "0.042",
+ "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": "01003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Luminous @K2-all.json b/resources/profiles/Creality/filament/Hyper Luminous @K2-all.json
new file mode 100644
index 0000000000..01104f4cef
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Luminous @K2-all.json
@@ -0,0 +1,164 @@
+{
+ "type": "filament",
+ "name": "Hyper Luminous @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": [
+ "28.9"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.99"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "21"
+ ],
+ "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"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "textured_plate_temp": [
+ "50"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "50"
+ ],
+ "filament_start_gcode": [
+ ";filament start gcode"
+ ],
+ "filament_end_gcode": [
+ " ; filament end gcode"
+ ],
+ "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": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "default_filament_colour": "\"\"",
+ "dont_slow_down_outer_wall": "0",
+ "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,210],[1.0,210],[1.2,220]]",
+ "pressure_advance": "0.042",
+ "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": "01003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Luminous @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper Luminous @SPARKX i7-all.json
new file mode 100644
index 0000000000..d6b582ba15
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Luminous @SPARKX i7-all.json
@@ -0,0 +1,183 @@
+{
+ "type": "filament",
+ "name": "Hyper Luminous @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": [
+ "60"
+ ],
+ "filament_cost": [
+ "28.9"
+ ],
+ "filament_density": [
+ "1.3"
+ ],
+ "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": [
+ "nil"
+ ],
+ "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": [
+ "1"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "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": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "0",
+ "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": "[[0.6,210],[1.2,220]]",
+ "pressure_advance": "0.028",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "01003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Marble @Hi-all.json b/resources/profiles/Creality/filament/Hyper Marble @Hi-all.json
new file mode 100644
index 0000000000..4d5d8c8a89
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Marble @Hi-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "Hyper Marble @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": [
+ "23.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "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": [
+ "100"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "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_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"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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.5,220]]",
+ "pressure_advance": "0.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "filament_id": "29001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Marble @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper Marble @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..e4de323f9b
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Marble @K1 Max_CFS-C-all.json
@@ -0,0 +1,164 @@
+{
+ "type": "filament",
+ "name": "Hyper Marble @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": [
+ "23.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "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": [
+ "80%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "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": [
+ "10"
+ ],
+ "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}"
+ ],
+ "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": "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": "0",
+ "filament_retract_lift_below": "299",
+ "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "29001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Marble @K1C-all.json b/resources/profiles/Creality/filament/Hyper Marble @K1C-all.json
new file mode 100644
index 0000000000..b525070bba
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Marble @K1C-all.json
@@ -0,0 +1,164 @@
+{
+ "type": "filament",
+ "name": "Hyper Marble @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": [
+ "23.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "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": [
+ "80%"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": "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": "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "29001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Marble @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper Marble @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..64a25f3f0d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Marble @K1C_CFS-C-all.json
@@ -0,0 +1,164 @@
+{
+ "type": "filament",
+ "name": "Hyper Marble @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": [
+ "23.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "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": [
+ "80%"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": "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": "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "29001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Marble @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper Marble @K1_CFS-C-all.json
new file mode 100644
index 0000000000..e7873abdb6
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Marble @K1_CFS-C-all.json
@@ -0,0 +1,164 @@
+{
+ "type": "filament",
+ "name": "Hyper Marble @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": [
+ "23.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "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": [
+ "80%"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": "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": "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "29001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Marble @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper Marble @K2 Plus-all.json
new file mode 100644
index 0000000000..d317b1b7b3
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Marble @K2 Plus-all.json
@@ -0,0 +1,164 @@
+{
+ "type": "filament",
+ "name": "Hyper Marble @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": [
+ "55"
+ ],
+ "filament_cost": [
+ "23.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "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": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "35"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "3"
+ ],
+ "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": "[[1.2,200],[1.1,200],[1.2,220]]",
+ "pressure_advance": "0.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "29001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Marble @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper Marble @K2 Pro-all.json
new file mode 100644
index 0000000000..ad582e46ea
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Marble @K2 Pro-all.json
@@ -0,0 +1,164 @@
+{
+ "type": "filament",
+ "name": "Hyper Marble @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": [
+ "23.9"
+ ],
+ "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": [
+ "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": [
+ "10"
+ ],
+ "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,200],[1.0,200],[1.2,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "29001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Marble @K2 SE-all.json b/resources/profiles/Creality/filament/Hyper Marble @K2 SE-all.json
new file mode 100644
index 0000000000..0bb2fffb6b
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Marble @K2 SE-all.json
@@ -0,0 +1,146 @@
+{
+ "type": "filament",
+ "name": "Hyper Marble @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": [
+ "23.9"
+ ],
+ "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": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "1"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "3"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "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": "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": "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": "0",
+ "filament_retract_lift_below": "244",
+ "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": "29001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Marble @K2-all.json b/resources/profiles/Creality/filament/Hyper Marble @K2-all.json
new file mode 100644
index 0000000000..232efedb3d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Marble @K2-all.json
@@ -0,0 +1,164 @@
+{
+ "type": "filament",
+ "name": "Hyper Marble @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": [
+ "23.9"
+ ],
+ "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": [
+ "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": [
+ "10"
+ ],
+ "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,210],[1.0,210],[1.2,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "29001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Marble @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper Marble @SPARKX i7-all.json
new file mode 100644
index 0000000000..b443ca672b
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Marble @SPARKX i7-all.json
@@ -0,0 +1,176 @@
+{
+ "type": "filament",
+ "name": "Hyper Marble @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": [
+ "60"
+ ],
+ "filament_cost": [
+ "23.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "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": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe": [
+ "1"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "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"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "14"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "textured_plate_temp": [
+ "50"
+ ],
+ "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": "[[0.6,210],[1.2,220]]",
+ "pressure_advance": "0.03",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "29001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..aa6511a476
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Plus-all.json
@@ -0,0 +1,199 @@
+{
+ "type": "filament",
+ "name": "Hyper PA6-CF @K2 Plus-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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "60"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "60"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "45.9"
+ ],
+ "filament_density": [
+ "1.1"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-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": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "nozzle_temperature": [
+ "300"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "300"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "290"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ],
+ "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",
+ "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": "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",
+ "pressure_advance": "0.048",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "12005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Pro-all.json
new file mode 100644
index 0000000000..20ee2712c7
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Pro-all.json
@@ -0,0 +1,199 @@
+{
+ "type": "filament",
+ "name": "Hyper PA6-CF @K2 Pro-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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "45.9"
+ ],
+ "filament_density": [
+ "1.1"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-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": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "nozzle_temperature": [
+ "300"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "300"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "290"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ],
+ "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",
+ "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_toolchange_delay": "0",
+ "filament_unload_time": "0",
+ "filament_unloading_speed": "90",
+ "filament_unloading_speed_start": "100",
+ "material_flow_dependent_temperature": "0",
+ "pressure_advance": "0.048",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "12005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..32d1fd35f7
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Plus-all.json
@@ -0,0 +1,193 @@
+{
+ "type": "filament",
+ "name": "Hyper PA612-CF @K2 Plus-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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "60"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "60"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "59.9"
+ ],
+ "filament_density": [
+ "1.03"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-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": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "290"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ],
+ "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",
+ "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": "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",
+ "pressure_advance": "0.048",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "12004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Pro-all.json
new file mode 100644
index 0000000000..3a88950203
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Pro-all.json
@@ -0,0 +1,193 @@
+{
+ "type": "filament",
+ "name": "Hyper PA612-CF @K2 Pro-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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "59.9"
+ ],
+ "filament_density": [
+ "1.03"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-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": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "290"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ],
+ "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",
+ "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_toolchange_delay": "0",
+ "filament_unload_time": "0",
+ "filament_unloading_speed": "90",
+ "filament_unloading_speed_start": "100",
+ "material_flow_dependent_temperature": "0",
+ "pressure_advance": "0.048",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "12004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PAHT-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..6d0eeeea89
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1 Max_CFS-C-all.json
@@ -0,0 +1,196 @@
+{
+ "type": "filament",
+ "name": "Hyper PAHT-CF @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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "80"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "74.9"
+ ],
+ "filament_density": [
+ "1.06"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "4"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-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": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature": [
+ "300"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "300"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "textured_plate_temp": [
+ "90"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "90"
+ ],
+ "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"
+ ],
+ "activate_chamber_temp_control": "0",
+ "chamber_temperature": "0",
+ "customized_plate_temp": "0",
+ "customized_plate_temp_initial_layer": "0",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "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_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": "12003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C-all.json b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C-all.json
new file mode 100644
index 0000000000..10d257a464
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C-all.json
@@ -0,0 +1,197 @@
+{
+ "type": "filament",
+ "name": "Hyper PAHT-CF @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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "80"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "74.9"
+ ],
+ "filament_density": [
+ "1.06"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "4"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-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": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature": [
+ "300"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "300"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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}\n\n"
+ ],
+ "filament_end_gcode": [
+ ";filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "customized_plate_temp": "0",
+ "customized_plate_temp_initial_layer": "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.02",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "12003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..cea414ec93
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C_CFS-C-all.json
@@ -0,0 +1,197 @@
+{
+ "type": "filament",
+ "name": "Hyper PAHT-CF @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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "80"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "74.9"
+ ],
+ "filament_density": [
+ "1.06"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "4"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-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": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature": [
+ "300"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "300"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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}\n\n"
+ ],
+ "filament_end_gcode": [
+ ";filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "customized_plate_temp": "0",
+ "customized_plate_temp_initial_layer": "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.02",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "12003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PAHT-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1_CFS-C-all.json
new file mode 100644
index 0000000000..9039a93e53
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1_CFS-C-all.json
@@ -0,0 +1,197 @@
+{
+ "type": "filament",
+ "name": "Hyper PAHT-CF @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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "80"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "105"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "74.9"
+ ],
+ "filament_density": [
+ "1.06"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "4"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-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": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature": [
+ "300"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "300"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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",
+ "customized_plate_temp": "0",
+ "customized_plate_temp_initial_layer": "0",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "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.02",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "12003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..f11afb8240
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Plus-all.json
@@ -0,0 +1,194 @@
+{
+ "type": "filament",
+ "name": "Hyper PAHT-CF @K2 Plus-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": [
+ "3"
+ ],
+ "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": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "70"
+ ],
+ "filament_density": [
+ "1.06"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-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": [
+ "90"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "90"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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_layer": "2",
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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.036",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle",
+ "Creality K2 Plus 0.6 nozzle",
+ "Creality K2 Plus 0.8 nozzle"
+ ],
+ "filament_id": "12003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Pro-all.json
new file mode 100644
index 0000000000..4b16d06b17
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Pro-all.json
@@ -0,0 +1,184 @@
+{
+ "type": "filament",
+ "name": "Hyper PAHT-CF @K2 Pro-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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "74.9"
+ ],
+ "filament_density": [
+ "1.06"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "4"
+ ],
+ "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": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-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"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "50",
+ "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": "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.042",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "12003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PAHT-CF @K2-all.json b/resources/profiles/Creality/filament/Hyper PAHT-CF @K2-all.json
new file mode 100644
index 0000000000..23c52975f4
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K2-all.json
@@ -0,0 +1,184 @@
+{
+ "type": "filament",
+ "name": "Hyper PAHT-CF @K2-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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "74.9"
+ ],
+ "filament_density": [
+ "1.06"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "4"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-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"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "50",
+ "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": "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.036",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "12003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PC @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PC @K2 Plus-all.json
new file mode 100644
index 0000000000..0154737303
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PC @K2 Plus-all.json
@@ -0,0 +1,171 @@
+{
+ "type": "filament",
+ "name": "Hyper PC @K2 Plus-all",
+ "inherits": "fdm_filament_pc",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "110"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "110"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_max_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "100"
+ ],
+ "filament_density": [
+ "1.19"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "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": [
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "50",
+ "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_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.03",
+ "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": "07002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PC @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PC @K2 Pro-all.json
new file mode 100644
index 0000000000..3c9f464325
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PC @K2 Pro-all.json
@@ -0,0 +1,173 @@
+{
+ "type": "filament",
+ "name": "Hyper PC @K2 Pro-all",
+ "inherits": "fdm_filament_pc",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "0"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_max_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "37"
+ ],
+ "filament_density": [
+ "1.19"
+ ],
+ "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": [
+ "70%"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.6"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "270"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "50",
+ "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_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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "07002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Hyper PETG @Ender-3 V4-all.json
new file mode 100644
index 0000000000..e9160346e6
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG @Ender-3 V4-all.json
@@ -0,0 +1,150 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "25"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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": [
+ "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}\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": "1",
+ "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": "[[1.0,230],[1.2,250]]",
+ "pressure_advance": "0.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "filament_id": "06002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Hyper PETG @Ender-5 Max-all.json
new file mode 100644
index 0000000000..9a7e2161e0
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG @Ender-5 Max-all.json
@@ -0,0 +1,163 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "20"
+ ],
+ "filament_cost": [
+ "25"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "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": "[[0.8,220],[1.0,240]]",
+ "pressure_advance": "0.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-5 Max 0.4 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG @Hi-all.json b/resources/profiles/Creality/filament/Hyper PETG @Hi-all.json
new file mode 100644
index 0000000000..9a1786f481
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG @Hi-all.json
@@ -0,0 +1,149 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "25"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "filament_retraction_length": [
+ "1.5"
+ ],
+ "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": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "75"
+ ],
+ "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",
+ "default_filament_colour": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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_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.066",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "filament_id": "06002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PETG @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..8424d57876
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG @K1 Max_CFS-C-all.json
@@ -0,0 +1,153 @@
+{
+ "type": "filament",
+ "name": "Hyper 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"
+ ],
+ "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": [
+ "25"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_retraction_length": [
+ "1.5"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "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": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "75"
+ ],
+ "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}\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",
+ "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",
+ "material_flow_temp_graph": "[[1.0,220],[5.0,230],[14.0,240],[23.0,250]]",
+ "pressure_advance": "0.07",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "06002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG @K1 SE-all.json b/resources/profiles/Creality/filament/Hyper PETG @K1 SE-all.json
new file mode 100644
index 0000000000..1702856fdc
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG @K1 SE-all.json
@@ -0,0 +1,156 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "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": [
+ "25"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_retraction_length": [
+ "1.5"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "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_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "75"
+ ],
+ "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": "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": "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],[5.0,230],[14.0,240],[23.0,250]]",
+ "pressure_advance": "0.068",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE 0.4 nozzle"
+ ],
+ "filament_id": "06002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PETG @K1 SE_CFS-C-all.json
new file mode 100644
index 0000000000..f289a0c7c7
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG @K1 SE_CFS-C-all.json
@@ -0,0 +1,156 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "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": [
+ "25"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_retraction_length": [
+ "1.5"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "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_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "75"
+ ],
+ "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": "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": "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],[5.0,230],[14.0,240],[23.0,250]]",
+ "pressure_advance": "0.068",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "06002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG @K1C-all.json b/resources/profiles/Creality/filament/Hyper PETG @K1C-all.json
new file mode 100644
index 0000000000..49b1f1b352
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG @K1C-all.json
@@ -0,0 +1,155 @@
+{
+ "type": "filament",
+ "name": "Hyper 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"
+ ],
+ "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": [
+ "25"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_retraction_length": [
+ "1.5"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "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": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "75"
+ ],
+ "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}\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",
+ "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",
+ "material_flow_temp_graph": "[[1.0,220],[5.0,230],[14.0,240],[23.0,250]]",
+ "pressure_advance": "0.072",
+ "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": "06002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PETG @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..b9dbfc6b59
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG @K1C_CFS-C-all.json
@@ -0,0 +1,153 @@
+{
+ "type": "filament",
+ "name": "Hyper 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"
+ ],
+ "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": [
+ "25"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_retraction_length": [
+ "1.5"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "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": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "75"
+ ],
+ "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}\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",
+ "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",
+ "material_flow_temp_graph": "[[1.0,220],[5.0,230],[14.0,240],[23.0,250]]",
+ "pressure_advance": "0.072",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "06002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PETG @K1_CFS-C-all.json
new file mode 100644
index 0000000000..62a6f3a077
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG @K1_CFS-C-all.json
@@ -0,0 +1,156 @@
+{
+ "type": "filament",
+ "name": "Hyper 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"
+ ],
+ "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": [
+ "25"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_retraction_length": [
+ "1.5"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "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": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "75"
+ ],
+ "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}\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",
+ "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",
+ "material_flow_temp_graph": "[[1.0,220],[5.0,230],[14.0,240],[23.0,250]]",
+ "pressure_advance": "0.068",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "06002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PETG @K2 Plus-all.json
new file mode 100644
index 0000000000..8244577187
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG @K2 Plus-all.json
@@ -0,0 +1,149 @@
+{
+ "type": "filament",
+ "name": "Hyper 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"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "70"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "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": [
+ "24.99"
+ ],
+ "filament_density": [
+ "1.28"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "2"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "hot_plate_temp": [
+ "70"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "70"
+ ],
+ "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_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "74.3"
+ ],
+ "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": "06002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PETG @K2 Pro-all.json
new file mode 100644
index 0000000000..16f298023c
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG @K2 Pro-all.json
@@ -0,0 +1,150 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "70"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "70"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "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": [
+ "25"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "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_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "75"
+ ],
+ "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "06002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG @K2 SE-all.json b/resources/profiles/Creality/filament/Hyper PETG @K2 SE-all.json
new file mode 100644
index 0000000000..3a142caed7
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG @K2 SE-all.json
@@ -0,0 +1,158 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "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": [
+ "25"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "filament_retract_before_wipe": [
+ "90%"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "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_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "75"
+ ],
+ "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": "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": "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": "[[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": "06002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG @K2-all.json b/resources/profiles/Creality/filament/Hyper PETG @K2-all.json
new file mode 100644
index 0000000000..09fb4c4857
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG @K2-all.json
@@ -0,0 +1,148 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "70"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "70"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "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": [
+ "25"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "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_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "75"
+ ],
+ "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": "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "06002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper PETG @SPARKX i7-all.json
new file mode 100644
index 0000000000..7ae6336579
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG @SPARKX i7-all.json
@@ -0,0 +1,164 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "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": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "25"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "18"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "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": [
+ "14"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "75"
+ ],
+ "textured_plate_temp": [
+ "80"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "80"
+ ],
+ "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": "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": "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": "[[0.6,240],[1.2,260]]",
+ "pressure_advance": "0.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "06002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..4385043cc0
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K1 Max_CFS-C-all.json
@@ -0,0 +1,140 @@
+{
+ "type": "filament",
+ "name": "Hyper PETG-CF @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": [
+ "29.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "temperature_vitrification": [
+ "90"
+ ],
+ "textured_plate_temp": [
+ "80"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "80"
+ ],
+ "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",
+ "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_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.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "06003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @K1C-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @K1C-all.json
new file mode 100644
index 0000000000..6825d72dd9
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K1C-all.json
@@ -0,0 +1,139 @@
+{
+ "type": "filament",
+ "name": "Hyper PETG-CF @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": [
+ "29.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "temperature_vitrification": [
+ "90"
+ ],
+ "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}"
+ ],
+ "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": "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",
+ "pressure_advance": "0.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "06003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..35879943bc
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K1C_CFS-C-all.json
@@ -0,0 +1,139 @@
+{
+ "type": "filament",
+ "name": "Hyper PETG-CF @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": [
+ "29.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "temperature_vitrification": [
+ "90"
+ ],
+ "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}"
+ ],
+ "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": "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",
+ "pressure_advance": "0.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "06003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @K1_CFS-C-all.json
new file mode 100644
index 0000000000..6d15c42b65
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K1_CFS-C-all.json
@@ -0,0 +1,140 @@
+{
+ "type": "filament",
+ "name": "Hyper PETG-CF @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": [
+ "29.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "temperature_vitrification": [
+ "90"
+ ],
+ "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}"
+ ],
+ "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": "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_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.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "06003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..ff06b80c42
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Plus-all.json
@@ -0,0 +1,142 @@
+{
+ "type": "filament",
+ "name": "Hyper PETG-CF @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": [
+ "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": [
+ "29.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "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_toolchange_delay": "0",
+ "filament_unload_time": "0",
+ "filament_unloading_speed": "90",
+ "filament_unloading_speed_start": "100",
+ "material_flow_dependent_temperature": "0",
+ "pressure_advance": "0.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "06003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Pro-all.json
new file mode 100644
index 0000000000..379d524566
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Pro-all.json
@@ -0,0 +1,143 @@
+{
+ "type": "filament",
+ "name": "Hyper PETG-CF @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": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "70"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "70"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "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": [
+ "29.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_flow_ratio": [
+ "0.94"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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",
+ "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",
+ "pressure_advance": "0.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "06003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @K2-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @K2-all.json
new file mode 100644
index 0000000000..4a77e32984
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K2-all.json
@@ -0,0 +1,143 @@
+{
+ "type": "filament",
+ "name": "Hyper PETG-CF @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": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "70"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "70"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "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": [
+ "29.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "temperature_vitrification": [
+ "75"
+ ],
+ "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",
+ "pressure_advance": "0.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "06003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @SPARKX i7-all.json
new file mode 100644
index 0000000000..d8d5b34711
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG-CF @SPARKX i7-all.json
@@ -0,0 +1,167 @@
+{
+ "type": "filament",
+ "name": "Hyper PETG-CF @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": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "80"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "0"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "0"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "70"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "filament_type": [
+ "PETG-CF"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe": [
+ "1"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "nozzle_temperature": [
+ "260"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "260"
+ ],
+ "nozzle_temperature_range_high": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "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\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": "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": "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": "[[0.6,240],[1.2,260]]",
+ "pressure_advance": "0.028",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "06003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG-GF @K1C-all.json b/resources/profiles/Creality/filament/Hyper PETG-GF @K1C-all.json
new file mode 100644
index 0000000000..42b12a0f57
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG-GF @K1C-all.json
@@ -0,0 +1,149 @@
+{
+ "type": "filament",
+ "name": "Hyper PETG-GF @K1C-all",
+ "inherits": "fdm_filament_common",
+ "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": [
+ "29.9"
+ ],
+ "filament_density": [
+ "1.32"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_type": [
+ "PETG-GF"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "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": "1",
+ "chamber_temperature": "50",
+ "cool_cds_fan_start_at_height": "0.5",
+ "cool_special_cds_fan_speed": "0",
+ "customized_plate_temp": "70",
+ "customized_plate_temp_initial_layer": "70",
+ "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",
+ "pressure_advance": "0.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "06004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Plus-all.json
new file mode 100644
index 0000000000..e0f7076f52
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Plus-all.json
@@ -0,0 +1,143 @@
+{
+ "type": "filament",
+ "name": "Hyper PETG-GF @K2 Plus-all",
+ "inherits": "fdm_filament_common",
+ "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"
+ ],
+ "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": [
+ "29.9"
+ ],
+ "filament_density": [
+ "1.32"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_type": [
+ "PETG-GF"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "1",
+ "chamber_temperature": "50",
+ "cool_cds_fan_start_at_height": "0.5",
+ "cool_special_cds_fan_speed": "0",
+ "customized_plate_temp": "70",
+ "customized_plate_temp_initial_layer": "70",
+ "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",
+ "pressure_advance": "0.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "06004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Pro-all.json
new file mode 100644
index 0000000000..1d047665de
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Pro-all.json
@@ -0,0 +1,143 @@
+{
+ "type": "filament",
+ "name": "Hyper PETG-GF @K2 Pro-all",
+ "inherits": "fdm_filament_common",
+ "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": [
+ "29.9"
+ ],
+ "filament_density": [
+ "1.32"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_type": [
+ "PETG-GF"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "50",
+ "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",
+ "pressure_advance": "0.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "06004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PETG-GF @K2-all.json b/resources/profiles/Creality/filament/Hyper PETG-GF @K2-all.json
new file mode 100644
index 0000000000..0f426b753e
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PETG-GF @K2-all.json
@@ -0,0 +1,143 @@
+{
+ "type": "filament",
+ "name": "Hyper PETG-GF @K2-all",
+ "inherits": "fdm_filament_common",
+ "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": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "55"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "29.9"
+ ],
+ "filament_density": [
+ "1.32"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_type": [
+ "PETG-GF"
+ ],
+ "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": [
+ "260"
+ ],
+ "nozzle_temperature_range_low": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "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": "50",
+ "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",
+ "pressure_advance": "0.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "06004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Hyper PLA @Ender-3 V4-all.json
new file mode 100644
index 0000000000..acda60e5df
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA @Ender-3 V4-all.json
@@ -0,0 +1,150 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "30"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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,210],[1.0,210],[1.2,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "filament_id": "01001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Hyper PLA @Ender-5 Max-all.json
new file mode 100644
index 0000000000..8a7bc108f6
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA @Ender-5 Max-all.json
@@ -0,0 +1,160 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "0"
+ ],
+ "cool_plate_temp": [
+ "45"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "45"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_deretraction_speed": [
+ "35"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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": [
+ "1"
+ ],
+ "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": [
+ "55"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "45"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "45"
+ ],
+ "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": "55",
+ "customized_plate_temp_initial_layer": "45",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "1",
+ "enable_special_area_additional_cooling_fan": "0",
+ "epoxy_resin_plate_temp": "55",
+ "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_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": "[[1.0,190],[1.5,220]]",
+ "pressure_advance": "0.048",
+ "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"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA @Hi-all.json b/resources/profiles/Creality/filament/Hyper PLA @Hi-all.json
new file mode 100644
index 0000000000..da5d215ae3
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA @Hi-all.json
@@ -0,0 +1,146 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "30"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "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": [
+ "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"
+ ],
+ "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"
+ ],
+ "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": "[[2.2,200],[3.0,210],[10.0,215],[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",
+ "Creality Hi 0.6 nozzle",
+ "Creality Hi 0.8 nozzle"
+ ],
+ "filament_id": "01001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PLA @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..24e840bcc5
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA @K1 Max_CFS-C-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "30"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "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": [
+ "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 > 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": "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.8,190], [1.2,190], [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": "01001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA @K1 SE-all.json b/resources/profiles/Creality/filament/Hyper PLA @K1 SE-all.json
new file mode 100644
index 0000000000..cc8090f21f
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA @K1 SE-all.json
@@ -0,0 +1,140 @@
+{
+ "type": "filament",
+ "name": "Hyper 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_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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": [
+ "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": "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": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "pressure_advance": "0.038",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE 0.4 nozzle",
+ "Creality K1 SE 0.6 nozzle",
+ "Creality K1 SE 0.8 nozzle"
+ ],
+ "filament_id": "01001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PLA @K1 SE_CFS-C-all.json
new file mode 100644
index 0000000000..77818e4dc9
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA @K1 SE_CFS-C-all.json
@@ -0,0 +1,138 @@
+{
+ "type": "filament",
+ "name": "Hyper 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_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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": [
+ "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": "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": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "pressure_advance": "0.038",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "01001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA @K1C-all.json b/resources/profiles/Creality/filament/Hyper PLA @K1C-all.json
new file mode 100644
index 0000000000..206e54c964
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA @K1C-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "30"
+ ],
+ "filament_deretraction_speed": [
+ "35"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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": [
+ "35"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": "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": "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.8,200], [1.2,200], [1.3,220]]",
+ "pressure_advance": "0.05",
+ "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": "01001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PLA @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..e7cb477666
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA @K1C_CFS-C-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "30"
+ ],
+ "filament_deretraction_speed": [
+ "35"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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": [
+ "35"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": "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": "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.8,200], [1.2,200], [1.3,220]]",
+ "pressure_advance": "0.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "01001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PLA @K1_CFS-C-all.json
new file mode 100644
index 0000000000..e3670fb591
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA @K1_CFS-C-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "30"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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": [
+ "0.8"
+ ],
+ "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_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}"
+ ],
+ "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": "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.8,190], [1.2,190], [1.3,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "01001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PLA @K2 Plus-all.json
new file mode 100644
index 0000000000..eab3891e3b
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA @K2 Plus-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "30"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "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": [
+ "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",
+ "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 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": "01001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PLA @K2 Pro-all.json
new file mode 100644
index 0000000000..4d80eae23c
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA @K2 Pro-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "55"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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": [
+ "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}"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "30",
+ "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_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,195],[1.2,195],[1.5,220]]",
+ "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": "01001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA @K2 SE-all.json b/resources/profiles/Creality/filament/Hyper PLA @K2 SE-all.json
new file mode 100644
index 0000000000..96c06351c9
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA @K2 SE-all.json
@@ -0,0 +1,140 @@
+{
+ "type": "filament",
+ "name": "Hyper 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_deretraction_speed": [
+ "40"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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": [
+ "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": [
+ "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": "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": "01001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA @K2-all.json b/resources/profiles/Creality/filament/Hyper PLA @K2-all.json
new file mode 100644
index 0000000000..c2d9ec352b
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA @K2-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "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": [
+ "55"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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": [
+ "0.6"
+ ],
+ "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": [
+ "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}"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "30",
+ "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_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,190],[1.0,190],[1.2,220]]",
+ "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": "01001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper PLA @SPARKX i7-all.json
new file mode 100644
index 0000000000..8eb092ff74
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA @SPARKX i7-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "Hyper 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": [
+ "45"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "45"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "80"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "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": [
+ "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": [
+ "55"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "55"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ],
+ "filament_start_gcode": [
+ ";filament start gcode"
+ ],
+ "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": "55",
+ "customized_plate_temp_initial_layer": "55",
+ "default_filament_colour": "\"\"",
+ "dont_slow_down_outer_wall": "0",
+ "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": "0",
+ "material_flow_temp_graph": "[[1.0,205],[1.2,220]]",
+ "pressure_advance": "0.28",
+ "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": "01001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @Ender-3 V4-all.json
new file mode 100644
index 0000000000..91b7974d61
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA-CF @Ender-3 V4-all.json
@@ -0,0 +1,156 @@
+{
+ "type": "filament",
+ "name": "Hyper PLA-CF @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": [
+ "32"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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_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"
+ ],
+ "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": "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_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": "[[1.0,210],[1.2,220]]",
+ "pressure_advance": "0.028",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "filament_id": "02001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @Ender-5 Max-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @Ender-5 Max-all.json
new file mode 100644
index 0000000000..7a006b788e
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA-CF @Ender-5 Max-all.json
@@ -0,0 +1,163 @@
+{
+ "type": "filament",
+ "name": "Hyper PLA-CF @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_cost": [
+ "32"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "35"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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_type": [
+ "PLA-CF"
+ ],
+ "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": [
+ "50"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "50"
+ ],
+ "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": "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": "0",
+ "material_flow_temp_graph": "[[1.0,190],[1.2,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-5 Max 0.4 nozzle"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @Hi-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @Hi-all.json
new file mode 100644
index 0000000000..37c8b8668a
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA-CF @Hi-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "Hyper PLA-CF @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"
+ ],
+ "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": [
+ "32"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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}"
+ ],
+ "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": "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": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "filament_id": "02001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..d69c944bb1
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K1 Max_CFS-C-all.json
@@ -0,0 +1,156 @@
+{
+ "type": "filament",
+ "name": "Hyper PLA-CF @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": [
+ "32"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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"
+ ],
+ "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": "[[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": "02001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K1 SE-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K1 SE-all.json
new file mode 100644
index 0000000000..ea157a79df
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K1 SE-all.json
@@ -0,0 +1,150 @@
+{
+ "type": "filament",
+ "name": "Hyper PLA-CF @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"
+ ],
+ "fan_cooling_layer_time": [
+ "60"
+ ],
+ "filament_cost": [
+ "32"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "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": "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.036",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE 0.4 nozzle"
+ ],
+ "filament_id": "02001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K1 SE_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K1 SE_CFS-C-all.json
new file mode 100644
index 0000000000..7e8ac82297
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K1 SE_CFS-C-all.json
@@ -0,0 +1,150 @@
+{
+ "type": "filament",
+ "name": "Hyper PLA-CF @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"
+ ],
+ "fan_cooling_layer_time": [
+ "60"
+ ],
+ "filament_cost": [
+ "32"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "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": "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.036",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 SE_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "02001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K1C-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K1C-all.json
new file mode 100644
index 0000000000..b54a530ee1
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K1C-all.json
@@ -0,0 +1,157 @@
+{
+ "type": "filament",
+ "name": "Hyper PLA-CF @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": [
+ "32"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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"
+ ],
+ "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": "[[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": "02001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..c4a91a426d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K1C_CFS-C-all.json
@@ -0,0 +1,157 @@
+{
+ "type": "filament",
+ "name": "Hyper PLA-CF @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": [
+ "32"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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"
+ ],
+ "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": "[[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": "02001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K1_CFS-C-all.json
new file mode 100644
index 0000000000..3395485aa3
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K1_CFS-C-all.json
@@ -0,0 +1,157 @@
+{
+ "type": "filament",
+ "name": "Hyper PLA-CF @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": [
+ "32"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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"
+ ],
+ "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",
+ "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": "[[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": "02001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..697a6f41eb
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Plus-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Hyper PLA-CF @K2 Plus-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": [
+ "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": [
+ "32"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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": [
+ "1"
+ ],
+ "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}"
+ ],
+ "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_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.4 nozzle",
+ "Creality K2 Plus 0.6 nozzle",
+ "Creality K2 Plus 0.8 nozzle"
+ ],
+ "filament_id": "02001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Pro-all.json
new file mode 100644
index 0000000000..e29da4de9d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Pro-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Hyper PLA-CF @K2 Pro-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": [
+ "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": [
+ "32"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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": [
+ "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": [
+ "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": "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": "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 Pro 0.4 nozzle"
+ ],
+ "filament_id": "02001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K2 SE-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K2 SE-all.json
new file mode 100644
index 0000000000..233bd63922
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K2 SE-all.json
@@ -0,0 +1,149 @@
+{
+ "type": "filament",
+ "name": "Hyper PLA-CF @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": [
+ "32"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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_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"
+ ],
+ "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": "02001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K2-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K2-all.json
new file mode 100644
index 0000000000..ae9fa8b00d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K2-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Hyper PLA-CF @K2-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": [
+ "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": [
+ "32"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "23"
+ ],
+ "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": [
+ "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": [
+ "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": "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": "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 0.4 nozzle"
+ ],
+ "filament_id": "02001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @SPARKX i7-all.json
new file mode 100644
index 0000000000..9b4782b63b
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PLA-CF @SPARKX i7-all.json
@@ -0,0 +1,176 @@
+{
+ "type": "filament",
+ "name": "Hyper PLA-CF @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": [
+ "50"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "55"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "0"
+ ],
+ "eng_plate_temp": [
+ "55"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "50"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "32"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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": [
+ "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": [
+ "55"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "55"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "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": "0",
+ "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": "[[0.6,210],[1.2,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "02001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..e9198f0ad6
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Plus-all.json
@@ -0,0 +1,185 @@
+{
+ "type": "filament",
+ "name": "Hyper PPA-CF @K2 Plus-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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "50"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "89.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-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"
+ ],
+ "nozzle_temperature": [
+ "300"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "300"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "70"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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_layer": "2",
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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 Plus 0.4 nozzle",
+ "Creality K2 Plus 0.6 nozzle",
+ "Creality K2 Plus 0.8 nozzle"
+ ],
+ "filament_id": "12002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Pro-all.json
new file mode 100644
index 0000000000..c80dba4a31
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Pro-all.json
@@ -0,0 +1,181 @@
+{
+ "type": "filament",
+ "name": "Hyper PPA-CF @K2 Pro-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": [
+ "3"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "100"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "100"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_min_speed": [
+ "10"
+ ],
+ "filament_cost": [
+ "89.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.94"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "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": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PA-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"
+ ],
+ "nozzle_temperature": [
+ "300"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "300"
+ ],
+ "nozzle_temperature_range_high": [
+ "320"
+ ],
+ "nozzle_temperature_range_low": [
+ "280"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "10%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "50",
+ "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.044",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "12002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Stardust @Hi-all.json b/resources/profiles/Creality/filament/Hyper Stardust @Hi-all.json
new file mode 100644
index 0000000000..8e0c54075a
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Stardust @Hi-all.json
@@ -0,0 +1,156 @@
+{
+ "type": "filament",
+ "name": "Hyper Stardust @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": [
+ "26.9"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "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": [
+ "100"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "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_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"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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.5,220]]",
+ "pressure_advance": "0.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "filament_id": "01004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..dfaca6da59
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Stardust @K1 Max_CFS-C-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "Hyper Stardust @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": [
+ "26.9"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "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": [
+ "80%"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "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": [
+ "10"
+ ],
+ "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}"
+ ],
+ "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": "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "01004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K1C-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K1C-all.json
new file mode 100644
index 0000000000..9872d0861d
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Stardust @K1C-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "Hyper Stardust @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": [
+ "26.9"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "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": [
+ "80%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": "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": "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "01004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..6c281f5be2
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Stardust @K1C_CFS-C-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "Hyper Stardust @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": [
+ "26.9"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "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": [
+ "80%"
+ ],
+ "filament_retract_restart_extra": [
+ "0"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "0.8"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "filament_z_hop": [
+ "0.4"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": "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": "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": "0",
+ "filament_retract_lift_below": "249",
+ "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "01004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K1_CFS-C-all.json
new file mode 100644
index 0000000000..c192bf7033
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Stardust @K1_CFS-C-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "Hyper Stardust @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": [
+ "26.9"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "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": [
+ "80%"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": "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": "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.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "01004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K2 Plus-all.json
new file mode 100644
index 0000000000..76cbbd61d6
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Stardust @K2 Plus-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "Hyper Stardust @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": [
+ "55"
+ ],
+ "filament_cost": [
+ "26.9"
+ ],
+ "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": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "nil"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "35"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "3"
+ ],
+ "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": "[[1.2,200],[1.1,200],[1.2,220]]",
+ "pressure_advance": "0.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "01004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K2 Pro-all.json
new file mode 100644
index 0000000000..36e571bf29
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Stardust @K2 Pro-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "Hyper Stardust @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": [
+ "26.9"
+ ],
+ "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": [
+ "10"
+ ],
+ "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,200],[1.0,200],[1.2,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "01004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K2 SE-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K2 SE-all.json
new file mode 100644
index 0000000000..980129d8c3
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Stardust @K2 SE-all.json
@@ -0,0 +1,143 @@
+{
+ "type": "filament",
+ "name": "Hyper Stardust @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": [
+ "26.9"
+ ],
+ "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": [
+ "100%"
+ ],
+ "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": [
+ "3"
+ ],
+ "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": [
+ "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": "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": "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": "[[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": "01004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K2-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K2-all.json
new file mode 100644
index 0000000000..9668857109
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Stardust @K2-all.json
@@ -0,0 +1,161 @@
+{
+ "type": "filament",
+ "name": "Hyper Stardust @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": [
+ "26.9"
+ ],
+ "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": [
+ "10"
+ ],
+ "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,200],[1.0,200],[1.2,220]]",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "01004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Hyper Stardust @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper Stardust @SPARKX i7-all.json
new file mode 100644
index 0000000000..9ea280b81e
--- /dev/null
+++ b/resources/profiles/Creality/filament/Hyper Stardust @SPARKX i7-all.json
@@ -0,0 +1,179 @@
+{
+ "type": "filament",
+ "name": "Hyper Stardust @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": [
+ "60"
+ ],
+ "filament_cost": [
+ "26.9"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "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": [
+ "1"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe": [
+ "1"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "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": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "[[0.6,210],[1.2,220]]",
+ "pressure_advance": "0.028",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "01004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Panchroma PLA Matte @K2 Plus-all.json b/resources/profiles/Creality/filament/Panchroma PLA Matte @K2 Plus-all.json
new file mode 100644
index 0000000000..07e3d901dd
--- /dev/null
+++ b/resources/profiles/Creality/filament/Panchroma PLA Matte @K2 Plus-all.json
@@ -0,0 +1,169 @@
+{
+ "type": "filament",
+ "name": "Panchroma PLA Matte @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": [
+ "20.99"
+ ],
+ "filament_density": [
+ "1.31"
+ ],
+ "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": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Polymaker"
+ ],
+ "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": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "210"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "7"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "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": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "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 K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "P1003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Panchroma PLA Satin @K2 Plus-all.json b/resources/profiles/Creality/filament/Panchroma PLA Satin @K2 Plus-all.json
new file mode 100644
index 0000000000..4fa1dc24fb
--- /dev/null
+++ b/resources/profiles/Creality/filament/Panchroma PLA Satin @K2 Plus-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "Panchroma PLA Satin @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": [
+ "19.99"
+ ],
+ "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": [
+ "100%"
+ ],
+ "filament_retract_restart_extra": [
+ "nil"
+ ],
+ "filament_retract_when_changing_layer": [
+ "nil"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "Polymaker"
+ ],
+ "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": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "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": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "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 K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "P1001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/PolySonic PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/PolySonic PLA @K2 Plus-all.json
new file mode 100644
index 0000000000..11dfdde054
--- /dev/null
+++ b/resources/profiles/Creality/filament/PolySonic PLA @K2 Plus-all.json
@@ -0,0 +1,172 @@
+{
+ "type": "filament",
+ "name": "PolySonic PLA @K2 Plus-all",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "100"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "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": [
+ "24.99"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "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": [
+ "100%"
+ ],
+ "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": [
+ "Polymaker"
+ ],
+ "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": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "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": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "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 K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "P1004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/PolySonic PLA Pro @K2 Plus-all.json b/resources/profiles/Creality/filament/PolySonic PLA Pro @K2 Plus-all.json
new file mode 100644
index 0000000000..d7fe6c0d9f
--- /dev/null
+++ b/resources/profiles/Creality/filament/PolySonic PLA Pro @K2 Plus-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "PolySonic PLA Pro @K2 Plus-all",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "80"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "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": [
+ "29.99"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "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": [
+ "100%"
+ ],
+ "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": [
+ "Polymaker"
+ ],
+ "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"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "55"
+ ],
+ "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": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "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 K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "P1002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Soleyin Basic PETG @Hi-all.json b/resources/profiles/Creality/filament/Soleyin Basic PETG @Hi-all.json
new file mode 100644
index 0000000000..bc4a675758
--- /dev/null
+++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @Hi-all.json
@@ -0,0 +1,127 @@
+{
+ "type": "filament",
+ "name": "Soleyin Basic PETG @Hi-all",
+ "inherits": "fdm_filament_petg",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "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": [
+ "80"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "60"
+ ],
+ "filament_cost": [
+ "15.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_flow_ratio": [
+ "0.96"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "filament_retract_before_wipe": [
+ "90%"
+ ],
+ "filament_retraction_length": [
+ "0.4"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "filament_z_hop_types": [
+ "Slope Lift"
+ ],
+ "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"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "textured_plate_temp": [
+ "80"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "80"
+ ],
+ "customized_plate_temp": "80",
+ "customized_plate_temp_initial_layer": "80",
+ "enable_pressure_advance": "0",
+ "epoxy_resin_plate_temp": "70",
+ "epoxy_resin_plate_temp_initial_layer": "70",
+ "filament_retract_lift_above": "nil",
+ "filament_retract_lift_below": "nil",
+ "filament_retract_lift_enforce": "nil",
+ "material_flow_temp_graph": "[[0.6,220],[1.4,220],[1.7,250]]",
+ "pressure_advance": "0.06",
+ "default_filament_colour": "\"\"",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle",
+ "Creality Hi 0.6 nozzle",
+ "Creality Hi 0.8 nozzle"
+ ],
+ "filament_id": "06005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Soleyin Basic PETG @K1C-all.json b/resources/profiles/Creality/filament/Soleyin Basic PETG @K1C-all.json
new file mode 100644
index 0000000000..bca5772cf0
--- /dev/null
+++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @K1C-all.json
@@ -0,0 +1,130 @@
+{
+ "type": "filament",
+ "name": "Soleyin Basic PETG @K1C-all",
+ "inherits": "fdm_filament_petg",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "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": [
+ "80"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "80"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "15.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "30"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "filament_retract_before_wipe": [
+ "90%"
+ ],
+ "filament_retraction_length": [
+ "0.4"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "30"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "filament_z_hop_types": [
+ "Slope Lift"
+ ],
+ "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"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "textured_plate_temp": [
+ "80"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "80"
+ ],
+ "customized_plate_temp": "80",
+ "customized_plate_temp_initial_layer": "80",
+ "enable_pressure_advance": "0",
+ "epoxy_resin_plate_temp": "70",
+ "epoxy_resin_plate_temp_initial_layer": "70",
+ "filament_retract_lift_above": "nil",
+ "filament_retract_lift_below": "nil",
+ "filament_retract_lift_enforce": "nil",
+ "material_flow_temp_graph": "[[0.8,220], [1.2,220], [1.3,250]]",
+ "pressure_advance": "0.054",
+ "default_filament_colour": "\"\"",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle",
+ "Creality K1C 0.6 nozzle",
+ "Creality K1C 0.8 nozzle"
+ ],
+ "filament_id": "06005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Plus-all.json b/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Plus-all.json
new file mode 100644
index 0000000000..b52821d427
--- /dev/null
+++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Plus-all.json
@@ -0,0 +1,132 @@
+{
+ "type": "filament",
+ "name": "Soleyin Basic PETG @K2 Plus-all",
+ "inherits": "fdm_filament_petg",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "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": [
+ "70"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "70"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "15.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "filament_retract_before_wipe": [
+ "90%"
+ ],
+ "filament_retraction_minimum_travel": [
+ "1"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "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": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "230"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "80"
+ ],
+ "textured_plate_temp": [
+ "70"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "70"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "35",
+ "customized_plate_temp": "70",
+ "customized_plate_temp_initial_layer": "70",
+ "enable_pressure_advance": "0",
+ "epoxy_resin_plate_temp": "60",
+ "epoxy_resin_plate_temp_initial_layer": "60",
+ "filament_retract_lift_above": "nil",
+ "filament_retract_lift_below": "nil",
+ "filament_retract_lift_enforce": "nil",
+ "material_flow_temp_graph": "[[0.5,230],[1.2,230],[1.2,250]]",
+ "pressure_advance": "0.074",
+ "default_filament_colour": "\"\"",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle",
+ "Creality K2 Plus 0.6 nozzle",
+ "Creality K2 Plus 0.8 nozzle"
+ ],
+ "filament_id": "06005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Pro-all.json b/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Pro-all.json
new file mode 100644
index 0000000000..17a8ea6c3f
--- /dev/null
+++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Pro-all.json
@@ -0,0 +1,132 @@
+{
+ "type": "filament",
+ "name": "Soleyin Basic PETG @K2 Pro-all",
+ "inherits": "fdm_filament_petg",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "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": [
+ "70"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "70"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "15.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "filament_retract_before_wipe": [
+ "90%"
+ ],
+ "filament_retraction_minimum_travel": [
+ "1"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "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": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "230"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "80"
+ ],
+ "textured_plate_temp": [
+ "70"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "70"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "35",
+ "customized_plate_temp": "70",
+ "customized_plate_temp_initial_layer": "70",
+ "enable_pressure_advance": "0",
+ "epoxy_resin_plate_temp": "60",
+ "epoxy_resin_plate_temp_initial_layer": "60",
+ "filament_retract_lift_above": "nil",
+ "filament_retract_lift_below": "nil",
+ "filament_retract_lift_enforce": "nil",
+ "material_flow_temp_graph": "[[0.5,220],[1.2,220],[1.2,250]]",
+ "pressure_advance": "0.08",
+ "default_filament_colour": "\"\"",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle",
+ "Creality K2 Pro 0.6 nozzle",
+ "Creality K2 Pro 0.8 nozzle"
+ ],
+ "filament_id": "06005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Soleyin Basic PETG @K2-all.json b/resources/profiles/Creality/filament/Soleyin Basic PETG @K2-all.json
new file mode 100644
index 0000000000..48f2fb0d03
--- /dev/null
+++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @K2-all.json
@@ -0,0 +1,132 @@
+{
+ "type": "filament",
+ "name": "Soleyin Basic PETG @K2-all",
+ "inherits": "fdm_filament_petg",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "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": [
+ "70"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "70"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "15.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "filament_retract_before_wipe": [
+ "90%"
+ ],
+ "filament_retraction_minimum_travel": [
+ "1"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "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": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "230"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "80"
+ ],
+ "textured_plate_temp": [
+ "70"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "70"
+ ],
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "35",
+ "customized_plate_temp": "70",
+ "customized_plate_temp_initial_layer": "70",
+ "enable_pressure_advance": "0",
+ "epoxy_resin_plate_temp": "60",
+ "epoxy_resin_plate_temp_initial_layer": "60",
+ "filament_retract_lift_above": "nil",
+ "filament_retract_lift_below": "nil",
+ "filament_retract_lift_enforce": "nil",
+ "material_flow_temp_graph": "[[0.5,230],[1.2,230],[1.2,250]]",
+ "pressure_advance": "0.08",
+ "default_filament_colour": "\"\"",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle",
+ "Creality K2 0.6 nozzle",
+ "Creality K2 0.8 nozzle"
+ ],
+ "filament_id": "06005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Soleyin Basic PETG @SPARKX i7-all.json b/resources/profiles/Creality/filament/Soleyin Basic PETG @SPARKX i7-all.json
new file mode 100644
index 0000000000..549997c5b0
--- /dev/null
+++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @SPARKX i7-all.json
@@ -0,0 +1,122 @@
+{
+ "type": "filament",
+ "name": "Soleyin Basic PETG @SPARKX i7-all",
+ "inherits": "fdm_filament_petg",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "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": [
+ "80"
+ ],
+ "fan_cooling_layer_time": [
+ "80"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "15.9"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "40"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "12"
+ ],
+ "filament_retract_before_wipe": [
+ "100%"
+ ],
+ "filament_retraction_minimum_travel": [
+ "2"
+ ],
+ "filament_retraction_speed": [
+ "40"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_vendor": [
+ "Creality"
+ ],
+ "filament_wipe_distance": [
+ "2"
+ ],
+ "hot_plate_temp": [
+ "80"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "80"
+ ],
+ "nozzle_temperature": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "250"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "230"
+ ],
+ "overhang_fan_speed": [
+ "80"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "slow_down_layer_time": [
+ "14"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "90"
+ ],
+ "textured_plate_temp": [
+ "80"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "80"
+ ],
+ "customized_plate_temp": "80",
+ "customized_plate_temp_initial_layer": "80",
+ "enable_pressure_advance": "1",
+ "epoxy_resin_plate_temp": "70",
+ "epoxy_resin_plate_temp_initial_layer": "70",
+ "filament_retract_lift_above": "nil",
+ "filament_retract_lift_below": "nil",
+ "filament_retract_lift_enforce": "nil",
+ "material_flow_temp_graph": "[[0.6,240],[1.2,250]]",
+ "pressure_advance": "0.054",
+ "default_filament_colour": "\"\"",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "06005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @Ender-3 V4-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @Ender-3 V4-all.json
new file mode 100644
index 0000000000..e0e11ef6b1
--- /dev/null
+++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @Ender-3 V4-all.json
@@ -0,0 +1,153 @@
+{
+ "type": "filament",
+ "name": "Soleyin Ultra 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": [
+ "6"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.93"
+ ],
+ "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": [
+ "14"
+ ],
+ "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": "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_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": "[[1.0,200],[1.2,220]]",
+ "pressure_advance": "0.024",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "filament_id": "01601"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @Hi-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @Hi-all.json
new file mode 100644
index 0000000000..93a4acfea3
--- /dev/null
+++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @Hi-all.json
@@ -0,0 +1,146 @@
+{
+ "type": "filament",
+ "name": "Soleyin Ultra 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": [
+ "6"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "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"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "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"
+ ],
+ "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": "\"\"",
+ "dont_slow_down_outer_wall": "1",
+ "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,190],[1.0,190],[1.2,220]]",
+ "pressure_advance": "0.068",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "filament_id": "01601"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1 Max_CFS-C-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1 Max_CFS-C-all.json
new file mode 100644
index 0000000000..316b2b87f8
--- /dev/null
+++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1 Max_CFS-C-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "Soleyin Ultra 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": [
+ "6"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.99"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "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": [
+ "1"
+ ],
+ "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"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "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}"
+ ],
+ "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",
+ "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",
+ "pressure_advance": "0.066",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "01601"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C-all.json
new file mode 100644
index 0000000000..72785cfb4c
--- /dev/null
+++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "Soleyin Ultra 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": [
+ "6"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.99"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "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": [
+ "1"
+ ],
+ "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"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "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": "0",
+ "chamber_temperature": "0",
+ "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": "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",
+ "pressure_advance": "0.066",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "filament_id": "01601"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C_CFS-C-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C_CFS-C-all.json
new file mode 100644
index 0000000000..ecf91b8d73
--- /dev/null
+++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C_CFS-C-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "Soleyin Ultra 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": [
+ "6"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.99"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "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": [
+ "1"
+ ],
+ "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"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "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": "0",
+ "chamber_temperature": "0",
+ "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": "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",
+ "pressure_advance": "0.066",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "01601"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1_CFS-C-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1_CFS-C-all.json
new file mode 100644
index 0000000000..d14d1cb9fb
--- /dev/null
+++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1_CFS-C-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "Soleyin Ultra 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": [
+ "6"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.99"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "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": [
+ "1"
+ ],
+ "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"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "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": "0",
+ "chamber_temperature": "0",
+ "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": "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",
+ "pressure_advance": "0.074",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "filament_id": "01601"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Plus-all.json
new file mode 100644
index 0000000000..6ff60d9483
--- /dev/null
+++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Plus-all.json
@@ -0,0 +1,165 @@
+{
+ "type": "filament",
+ "name": "Soleyin Ultra 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": [
+ "6"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "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": [
+ "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"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "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": "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.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "01601"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Pro-all.json
new file mode 100644
index 0000000000..a53c164a79
--- /dev/null
+++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Pro-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "Soleyin Ultra PLA @K2 Pro-all",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "95"
+ ],
+ "complete_print_exhaust_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "0"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "0"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "50"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "55"
+ ],
+ "filament_cost": [
+ "6"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "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_layer_time": [
+ "14"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "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_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,190],[1.0,190],[1.2,220]]",
+ "pressure_advance": "0.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "filament_id": "01601"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 SE-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 SE-all.json
new file mode 100644
index 0000000000..40d0094134
--- /dev/null
+++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 SE-all.json
@@ -0,0 +1,150 @@
+{
+ "type": "filament",
+ "name": "Soleyin Ultra 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": [
+ "6"
+ ],
+ "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": [
+ "16"
+ ],
+ "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": [
+ "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"
+ ],
+ "temperature_vitrification": [
+ "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",
+ "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": "[[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": "01601"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2-all.json
new file mode 100644
index 0000000000..d229f278fc
--- /dev/null
+++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2-all.json
@@ -0,0 +1,168 @@
+{
+ "type": "filament",
+ "name": "Soleyin Ultra PLA @K2-all",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "95"
+ ],
+ "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": [
+ "55"
+ ],
+ "filament_cost": [
+ "6"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.97"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "16"
+ ],
+ "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_layer_time": [
+ "14"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "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": "0",
+ "chamber_temperature": "0",
+ "cool_cds_fan_start_at_height": "0.5",
+ "cool_special_cds_fan_speed": "100",
+ "customized_plate_temp": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "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",
+ "material_flow_temp_graph": "[[0.5,190],[1.0,190],[1.2,220]]",
+ "pressure_advance": "0.06",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "filament_id": "01601"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @SPARKX i7-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @SPARKX i7-all.json
new file mode 100644
index 0000000000..ad56b4e28f
--- /dev/null
+++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @SPARKX i7-all.json
@@ -0,0 +1,174 @@
+{
+ "type": "filament",
+ "name": "Soleyin Ultra 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": [
+ "6"
+ ],
+ "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": [
+ "10"
+ ],
+ "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": [
+ "0.6"
+ ],
+ "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": [
+ "55"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "55"
+ ],
+ "nozzle_temperature_range_high": [
+ "240"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "14"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "70"
+ ],
+ "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_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": "[[1.0,210],[1.2,220]]",
+ "pressure_advance": "0.05",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "filament_id": "01601"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/eSUN ABS+ @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN ABS+ @K2 Plus-all.json
new file mode 100644
index 0000000000..658269b4b7
--- /dev/null
+++ b/resources/profiles/Creality/filament/eSUN ABS+ @K2 Plus-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "eSUN 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": [
+ "12"
+ ],
+ "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": [
+ "eSUN"
+ ],
+ "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_layer": "2",
+ "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": "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",
+ "pressure_advance": "0.1",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "E3001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/eSUN ASA+ @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN ASA+ @K2 Plus-all.json
new file mode 100644
index 0000000000..f9fe3e5e8a
--- /dev/null
+++ b/resources/profiles/Creality/filament/eSUN ASA+ @K2 Plus-all.json
@@ -0,0 +1,159 @@
+{
+ "type": "filament",
+ "name": "eSUN ASA+ @K2 Plus-all",
+ "inherits": "fdm_filament_asa",
+ "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_cooling_layer_time": [
+ "40"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.1"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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": [
+ "eSUN"
+ ],
+ "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": [
+ "270"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "270"
+ ],
+ "nozzle_temperature_range_high": [
+ "280"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "5"
+ ],
+ "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_layer": "2",
+ "activate_chamber_temp_control": "1",
+ "chamber_temperature": "50",
+ "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",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "E4001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/eSUN PET-Basic @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PET-Basic @K2 Plus-all.json
new file mode 100644
index 0000000000..63e0385d94
--- /dev/null
+++ b/resources/profiles/Creality/filament/eSUN PET-Basic @K2 Plus-all.json
@@ -0,0 +1,189 @@
+{
+ "type": "filament",
+ "name": "eSUN PET-Basic @K2 Plus-all",
+ "inherits": "fdm_filament_pet",
+ "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": [
+ "105"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "105"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "20"
+ ],
+ "filament_density": [
+ "1.28"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "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": [
+ "PET"
+ ],
+ "filament_vendor": [
+ "eSUN"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "70"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "70"
+ ],
+ "nozzle_temperature": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "250"
+ ],
+ "nozzle_temperature_range_low": [
+ "250"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "110"
+ ],
+ "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": "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": "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",
+ "pressure_advance": "0.1",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "E8001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/eSUN PETG @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PETG @K2 Plus-all.json
new file mode 100644
index 0000000000..0e585921b9
--- /dev/null
+++ b/resources/profiles/Creality/filament/eSUN PETG @K2 Plus-all.json
@@ -0,0 +1,87 @@
+{
+ "type": "filament",
+ "name": "eSUN PETG @K2 Plus-all",
+ "inherits": "fdm_filament_petg",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "cool_plate_temp": [
+ "70"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "70"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "22"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "5"
+ ],
+ "filament_retract_before_wipe": [
+ "70%"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_vendor": [
+ "eSUN"
+ ],
+ "hot_plate_temp": [
+ "70"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "70"
+ ],
+ "nozzle_temperature": [
+ "255"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "255"
+ ],
+ "nozzle_temperature_range_high": [
+ "270"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "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}"
+ ],
+ "customized_plate_temp": "70",
+ "customized_plate_temp_initial_layer": "70",
+ "epoxy_resin_plate_temp": "60",
+ "epoxy_resin_plate_temp_initial_layer": "60",
+ "pressure_advance": "0.1",
+ "default_filament_colour": "\"\"",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "E2001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/eSUN PETG+HS @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PETG+HS @K2 Plus-all.json
new file mode 100644
index 0000000000..aef215351c
--- /dev/null
+++ b/resources/profiles/Creality/filament/eSUN PETG+HS @K2 Plus-all.json
@@ -0,0 +1,84 @@
+{
+ "type": "filament",
+ "name": "eSUN PETG+HS @K2 Plus-all",
+ "inherits": "fdm_filament_petg",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "cool_plate_temp": [
+ "70"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "70"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "22"
+ ],
+ "filament_density": [
+ "1.26"
+ ],
+ "filament_max_volumetric_speed": [
+ "7"
+ ],
+ "filament_retract_before_wipe": [
+ "70%"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_vendor": [
+ "eSUN"
+ ],
+ "hot_plate_temp": [
+ "70"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "70"
+ ],
+ "nozzle_temperature": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "250"
+ ],
+ "nozzle_temperature_range_high": [
+ "270"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "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}"
+ ],
+ "customized_plate_temp": "70",
+ "customized_plate_temp_initial_layer": "70",
+ "epoxy_resin_plate_temp": "60",
+ "epoxy_resin_plate_temp_initial_layer": "60",
+ "pressure_advance": "0.1",
+ "default_filament_colour": "\"\"",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "E2002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/eSUN PETG-Basic @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PETG-Basic @K2 Plus-all.json
new file mode 100644
index 0000000000..026abb8026
--- /dev/null
+++ b/resources/profiles/Creality/filament/eSUN PETG-Basic @K2 Plus-all.json
@@ -0,0 +1,87 @@
+{
+ "type": "filament",
+ "name": "eSUN PETG-Basic @K2 Plus-all",
+ "inherits": "fdm_filament_petg",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "cool_plate_temp": [
+ "70"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "70"
+ ],
+ "fan_cooling_layer_time": [
+ "30"
+ ],
+ "fan_max_speed": [
+ "80"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "filament_cost": [
+ "22"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_max_volumetric_speed": [
+ "8"
+ ],
+ "filament_retract_before_wipe": [
+ "70%"
+ ],
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_vendor": [
+ "eSUN"
+ ],
+ "hot_plate_temp": [
+ "70"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "70"
+ ],
+ "nozzle_temperature": [
+ "250"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "250"
+ ],
+ "nozzle_temperature_range_high": [
+ "270"
+ ],
+ "overhang_fan_speed": [
+ "90"
+ ],
+ "overhang_fan_threshold": [
+ "25%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "1"
+ ],
+ "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}"
+ ],
+ "customized_plate_temp": "70",
+ "customized_plate_temp_initial_layer": "70",
+ "epoxy_resin_plate_temp": "60",
+ "epoxy_resin_plate_temp_initial_layer": "60",
+ "pressure_advance": "0.1",
+ "default_filament_colour": "\"\"",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "E2003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/eSUN PLA+ @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PLA+ @K2 Plus-all.json
new file mode 100644
index 0000000000..0c96e7adc8
--- /dev/null
+++ b/resources/profiles/Creality/filament/eSUN PLA+ @K2 Plus-all.json
@@ -0,0 +1,163 @@
+{
+ "type": "filament",
+ "name": "eSUN PLA+ @K2 Plus-all",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "100"
+ ],
+ "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_density": [
+ "1.23"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "eSUN"
+ ],
+ "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_low": [
+ "210"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "6"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "53"
+ ],
+ "textured_plate_temp": [
+ "55"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "55"
+ ],
+ "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": "55",
+ "customized_plate_temp_initial_layer": "55",
+ "default_filament_colour": "\"\"",
+ "enable_overhang_bridge_fan": "1",
+ "enable_pressure_advance": "0",
+ "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",
+ "pressure_advance": "0.04",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "E1001"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/eSUN PLA-CF @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PLA-CF @K2 Plus-all.json
new file mode 100644
index 0000000000..c6eebf3172
--- /dev/null
+++ b/resources/profiles/Creality/filament/eSUN PLA-CF @K2 Plus-all.json
@@ -0,0 +1,78 @@
+{
+ "type": "filament",
+ "name": "eSUN PLA-CF @K2 Plus-all",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "additional_cooling_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "50"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "50"
+ ],
+ "filament_cost": [
+ "28"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_max_volumetric_speed": [
+ "11"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_type": [
+ "PLA-CF"
+ ],
+ "filament_vendor": [
+ "eSUN"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "nozzle_temperature": [
+ "230"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "230"
+ ],
+ "slow_down_layer_time": [
+ "6"
+ ],
+ "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}"
+ ],
+ "customized_plate_temp": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "epoxy_resin_plate_temp": "40",
+ "epoxy_resin_plate_temp_initial_layer": "40",
+ "pressure_advance": "0.04",
+ "default_filament_colour": "\"\"",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "E1005"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/eSUN PLA-HS @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PLA-HS @K2 Plus-all.json
new file mode 100644
index 0000000000..77828ed8da
--- /dev/null
+++ b/resources/profiles/Creality/filament/eSUN PLA-HS @K2 Plus-all.json
@@ -0,0 +1,69 @@
+{
+ "type": "filament",
+ "name": "eSUN PLA-HS @K2 Plus-all",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "additional_cooling_fan_speed": [
+ "80"
+ ],
+ "cool_plate_temp": [
+ "50"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "50"
+ ],
+ "filament_cost": [
+ "25"
+ ],
+ "filament_density": [
+ "1.25"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "filament_max_volumetric_speed": [
+ "18"
+ ],
+ "filament_retract_before_wipe": [
+ "100"
+ ],
+ "filament_retraction_length": [
+ "1.2"
+ ],
+ "filament_vendor": [
+ "eSUN"
+ ],
+ "hot_plate_temp": [
+ "50"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "50"
+ ],
+ "slow_down_layer_time": [
+ "6"
+ ],
+ "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}"
+ ],
+ "customized_plate_temp": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "epoxy_resin_plate_temp": "40",
+ "epoxy_resin_plate_temp_initial_layer": "40",
+ "pressure_advance": "0.04",
+ "default_filament_colour": "\"\"",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "E1006"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/eSUN PLA-LW @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PLA-LW @K2 Plus-all.json
new file mode 100644
index 0000000000..945dbe5ad6
--- /dev/null
+++ b/resources/profiles/Creality/filament/eSUN PLA-LW @K2 Plus-all.json
@@ -0,0 +1,169 @@
+{
+ "type": "filament",
+ "name": "eSUN PLA-LW @K2 Plus-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": [
+ "50"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "50"
+ ],
+ "during_print_exhaust_fan_speed": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "45"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "45"
+ ],
+ "fan_min_speed": [
+ "50"
+ ],
+ "filament_cost": [
+ "30"
+ ],
+ "filament_density": [
+ "1.2"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.86"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "6"
+ ],
+ "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": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "eSUN"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "1"
+ ],
+ "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": [
+ "270"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "12"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "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 "
+ ],
+ "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": "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",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "pressure_advance": "0.1",
+ "support_material_interface_fan_speed": "-1",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "00035"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/eSUN PLA-Lite @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PLA-Lite @K2 Plus-all.json
new file mode 100644
index 0000000000..fef7aaf481
--- /dev/null
+++ b/resources/profiles/Creality/filament/eSUN PLA-Lite @K2 Plus-all.json
@@ -0,0 +1,169 @@
+{
+ "type": "filament",
+ "name": "eSUN PLA-Lite @K2 Plus-all",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "100"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "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": [
+ "19"
+ ],
+ "filament_density": [
+ "1.23"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "13"
+ ],
+ "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.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "eSUN"
+ ],
+ "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_low": [
+ "210"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "53"
+ ],
+ "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": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "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 K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "E1004"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/eSUN PLA-Matte @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PLA-Matte @K2 Plus-all.json
new file mode 100644
index 0000000000..5f57f0494c
--- /dev/null
+++ b/resources/profiles/Creality/filament/eSUN PLA-Matte @K2 Plus-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "eSUN PLA-Matte @K2 Plus-all",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "100"
+ ],
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "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_density": [
+ "1.33"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "14"
+ ],
+ "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.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "eSUN"
+ ],
+ "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_low": [
+ "210"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "51"
+ ],
+ "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": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "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 K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "E1003"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/eSUN PLA-Silk @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PLA-Silk @K2 Plus-all.json
new file mode 100644
index 0000000000..b51e3d37da
--- /dev/null
+++ b/resources/profiles/Creality/filament/eSUN PLA-Silk @K2 Plus-all.json
@@ -0,0 +1,166 @@
+{
+ "type": "filament",
+ "name": "eSUN PLA-Silk @K2 Plus-all",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "setting_id": "GFSA04",
+ "instantiation": "true",
+ "activate_air_filtration": [
+ "0"
+ ],
+ "additional_cooling_fan_speed": [
+ "100"
+ ],
+ "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": [
+ "19"
+ ],
+ "filament_density": [
+ "1.21"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "filament_is_support": [
+ "0"
+ ],
+ "filament_max_volumetric_speed": [
+ "10"
+ ],
+ "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.2"
+ ],
+ "filament_retraction_minimum_travel": [
+ "nil"
+ ],
+ "filament_retraction_speed": [
+ "nil"
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_vendor": [
+ "eSUN"
+ ],
+ "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_low": [
+ "210"
+ ],
+ "required_nozzle_HRC": [
+ "0"
+ ],
+ "slow_down_layer_time": [
+ "10"
+ ],
+ "slow_down_min_speed": [
+ "20"
+ ],
+ "temperature_vitrification": [
+ "50"
+ ],
+ "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 "
+ ],
+ "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": "50",
+ "customized_plate_temp_initial_layer": "50",
+ "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 K2 Plus 0.4 nozzle"
+ ],
+ "filament_id": "E1002"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/filament/fdm_filament_hips.json b/resources/profiles/Creality/filament/fdm_filament_hips.json
new file mode 100644
index 0000000000..c1de1560e8
--- /dev/null
+++ b/resources/profiles/Creality/filament/fdm_filament_hips.json
@@ -0,0 +1,147 @@
+{
+ "type": "filament",
+ "name": "fdm_filament_hips",
+ "instantiation": "false",
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "cool_plate_temp": [
+ "60"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "60"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "60"
+ ],
+ "fan_cooling_layer_time": [
+ "60"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "35"
+ ],
+ "filament_cost": [
+ "0"
+ ],
+ "filament_density": [
+ "0"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "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_settings_id": [
+ ""
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "nozzle_temperature": [
+ "200"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "200"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ],
+ "filament_start_gcode": [
+ "; Filament gcode\n"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n"
+ ],
+ "from": "system",
+ "filament_adhesiveness_category": [
+ "798"
+ ],
+ "bed_type": [
+ "Cool Plate"
+ ]
+}
diff --git a/resources/profiles/Creality/filament/fdm_filament_petg.json b/resources/profiles/Creality/filament/fdm_filament_petg.json
new file mode 100644
index 0000000000..c99fcf9b4e
--- /dev/null
+++ b/resources/profiles/Creality/filament/fdm_filament_petg.json
@@ -0,0 +1,147 @@
+{
+ "type": "filament",
+ "name": "fdm_filament_petg",
+ "instantiation": "false",
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "cool_plate_temp": [
+ "60"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "60"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "60"
+ ],
+ "fan_cooling_layer_time": [
+ "60"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "35"
+ ],
+ "filament_cost": [
+ "0"
+ ],
+ "filament_density": [
+ "0"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "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_settings_id": [
+ ""
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "nozzle_temperature": [
+ "200"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "200"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ],
+ "filament_start_gcode": [
+ "; Filament gcode\n"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n"
+ ],
+ "from": "system",
+ "filament_adhesiveness_category": [
+ "300"
+ ],
+ "bed_type": [
+ "Cool Plate"
+ ]
+}
diff --git a/resources/profiles/Creality/filament/fdm_filament_pp.json b/resources/profiles/Creality/filament/fdm_filament_pp.json
new file mode 100644
index 0000000000..6568654ba3
--- /dev/null
+++ b/resources/profiles/Creality/filament/fdm_filament_pp.json
@@ -0,0 +1,147 @@
+{
+ "type": "filament",
+ "name": "fdm_filament_pp",
+ "instantiation": "false",
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "cool_plate_temp": [
+ "60"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "60"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "60"
+ ],
+ "fan_cooling_layer_time": [
+ "60"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "35"
+ ],
+ "filament_cost": [
+ "0"
+ ],
+ "filament_density": [
+ "0"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "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_settings_id": [
+ ""
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "nozzle_temperature": [
+ "200"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "200"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ],
+ "filament_start_gcode": [
+ "; Filament gcode\n"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n"
+ ],
+ "from": "system",
+ "filament_adhesiveness_category": [
+ "902"
+ ],
+ "bed_type": [
+ "Cool Plate"
+ ]
+}
diff --git a/resources/profiles/Creality/filament/fdm_filament_pps.json b/resources/profiles/Creality/filament/fdm_filament_pps.json
new file mode 100644
index 0000000000..65be9d03f6
--- /dev/null
+++ b/resources/profiles/Creality/filament/fdm_filament_pps.json
@@ -0,0 +1,147 @@
+{
+ "type": "filament",
+ "name": "fdm_filament_pps",
+ "instantiation": "false",
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "cool_plate_temp": [
+ "60"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "60"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "60"
+ ],
+ "fan_cooling_layer_time": [
+ "60"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "35"
+ ],
+ "filament_cost": [
+ "0"
+ ],
+ "filament_density": [
+ "0"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "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_settings_id": [
+ ""
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "nozzle_temperature": [
+ "200"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "200"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ],
+ "filament_start_gcode": [
+ "; Filament gcode\n"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n"
+ ],
+ "from": "system",
+ "filament_adhesiveness_category": [
+ "801"
+ ],
+ "bed_type": [
+ "Cool Plate"
+ ]
+}
diff --git a/resources/profiles/Creality/filament/fdm_filament_pva.json b/resources/profiles/Creality/filament/fdm_filament_pva.json
new file mode 100644
index 0000000000..ab1694031f
--- /dev/null
+++ b/resources/profiles/Creality/filament/fdm_filament_pva.json
@@ -0,0 +1,147 @@
+{
+ "type": "filament",
+ "name": "fdm_filament_pva",
+ "instantiation": "false",
+ "close_fan_the_first_x_layers": [
+ "3"
+ ],
+ "cool_plate_temp": [
+ "60"
+ ],
+ "cool_plate_temp_initial_layer": [
+ "60"
+ ],
+ "eng_plate_temp": [
+ "60"
+ ],
+ "eng_plate_temp_initial_layer": [
+ "60"
+ ],
+ "fan_cooling_layer_time": [
+ "60"
+ ],
+ "fan_max_speed": [
+ "100"
+ ],
+ "fan_min_speed": [
+ "35"
+ ],
+ "filament_cost": [
+ "0"
+ ],
+ "filament_density": [
+ "0"
+ ],
+ "filament_deretraction_speed": [
+ "nil"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_flow_ratio": [
+ "1"
+ ],
+ "filament_max_volumetric_speed": [
+ "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_settings_id": [
+ ""
+ ],
+ "filament_soluble": [
+ "0"
+ ],
+ "filament_type": [
+ "PLA"
+ ],
+ "filament_vendor": [
+ "Generic"
+ ],
+ "filament_wipe": [
+ "nil"
+ ],
+ "filament_wipe_distance": [
+ "nil"
+ ],
+ "filament_z_hop": [
+ "nil"
+ ],
+ "filament_z_hop_types": [
+ "nil"
+ ],
+ "full_fan_speed_layer": [
+ "0"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "nozzle_temperature": [
+ "200"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "200"
+ ],
+ "overhang_fan_speed": [
+ "100"
+ ],
+ "overhang_fan_threshold": [
+ "95%"
+ ],
+ "reduce_fan_stop_start_freq": [
+ "0"
+ ],
+ "slow_down_for_layer_cooling": [
+ "1"
+ ],
+ "slow_down_layer_time": [
+ "8"
+ ],
+ "slow_down_min_speed": [
+ "10"
+ ],
+ "temperature_vitrification": [
+ "100"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ],
+ "filament_start_gcode": [
+ "; Filament gcode\n"
+ ],
+ "filament_end_gcode": [
+ "; filament end gcode \n"
+ ],
+ "from": "system",
+ "filament_adhesiveness_category": [
+ "704"
+ ],
+ "bed_type": [
+ "Cool Plate"
+ ]
+}
diff --git a/resources/profiles/Creality/machine/Creality CR-10 V3 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 V3 0.6 nozzle.json
index 0627ed394f..bdf429b11d 100644
--- a/resources/profiles/Creality/machine/Creality CR-10 V3 0.6 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality CR-10 V3 0.6 nozzle.json
@@ -8,6 +8,7 @@
"printer_model": "Creality CR-10 V3",
"printer_structure": "i3",
"default_print_profile": "0.20mm Standard @Creality CR10V3 0.6",
+ "printer_variant": "0.6",
"nozzle_diameter": [
"0.6"
],
diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V4 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V4 0.4 nozzle.json
new file mode 100644
index 0000000000..7dfad31b73
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality Ender-3 V4 0.4 nozzle.json
@@ -0,0 +1,111 @@
+{
+ "type": "machine",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_creality_common",
+ "printer_model": "Creality Ender-3 V4",
+ "auxiliary_fan": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X215 Y110 F30000\nG1 Z{z_after_toolchange} F600",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "86.0",
+ "default_print_profile": "0.20mm Standard @Creality Ender-3 V4 0.4 nozzle",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "235",
+ "extruder_clearance_height_to_rod": "35",
+ "extruder_clearance_radius": "78",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "gcode_flavor": "klipper",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "machine_LED_light_exist": "1",
+ "machine_end_gcode": "END_PRINT",
+ "machine_load_filament_time": "126",
+ "machine_max_acceleration_e": "2400",
+ "machine_max_acceleration_extruding": "12000",
+ "machine_max_acceleration_retracting": "2400",
+ "machine_max_acceleration_travel": "12000",
+ "machine_max_acceleration_x": "12000",
+ "machine_max_acceleration_y": "12000",
+ "machine_max_acceleration_z": "1000",
+ "machine_max_jerk_e": "10",
+ "machine_max_jerk_x": "100",
+ "machine_max_jerk_y": "100",
+ "machine_max_jerk_z": "5",
+ "machine_max_speed_e": "40",
+ "machine_max_speed_x": "500",
+ "machine_max_speed_y": "500",
+ "machine_max_speed_z": "20",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_pause_gcode": "PAUSE",
+ "machine_platform_motion_enable": "0",
+ "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 X20 Y-1 F30000\nG1 Z0.3 F1200\nG1 X100 E10 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X120 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X125 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X1 Z-0.300\nG1 X4\nG92 E0\nG1 Z1 F1200",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "nozzle_hrc": "0",
+ "nozzle_type": "hardened_steel",
+ "nozzle_volume": "165",
+ "parking_pos_retraction": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Left Upper",
+ "printable_area": "0x0,220x0,220x220,0x220",
+ "printable_height": "235",
+ "printer_technology": "FFF",
+ "printer_variant": "0.4",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "0",
+ "support_chamber_temp_control": "0",
+ "support_multi_bed_types": "1",
+ "thumbnails": "96x96,300x300",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "default_filament_profile": [
+ "Generic PLA @Ender-3 V4-all"
+ ],
+ "deretraction_speed": "40",
+ "extruder_colour": "\"\"",
+ "extruder_offset": "0x0",
+ "max_layer_height": "0.32",
+ "min_layer_height": "0.08",
+ "nozzle_diameter": [
+ "0.4"
+ ],
+ "retract_before_wipe": "100%",
+ "retract_length_toolchange": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "234",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_length": "0.8",
+ "retraction_minimum_travel": "2",
+ "retraction_speed": "40",
+ "wipe": "1",
+ "wipe_distance": "2",
+ "z_hop": "0.4",
+ "z_hop_types": "Slope Lift",
+ "name": "Creality Ender-3 V4 0.4 nozzle",
+ "setting_id": "80639"
+}
diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V4.json b/resources/profiles/Creality/machine/Creality Ender-3 V4.json
new file mode 100644
index 0000000000..22fc2a9c6a
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality Ender-3 V4.json
@@ -0,0 +1,13 @@
+{
+ "type": "machine_model",
+ "name": "Creality Ender-3 V4",
+ "nozzle_diameter": "0.4",
+ "bed_model": "creality_ender3v3_buildplate_model.stl",
+ "default_bed_type": "Textured PEI Plate",
+ "bed_texture": "creality_ender3v3_buildplate_texture.svg",
+ "family": "Creality",
+ "hotend_model": "",
+ "machine_tech": "FFF",
+ "model_id": "Creality_Ender_3_V4",
+ "default_materials": "Creality Generic ABS @Ender-3 V4-all;Creality Generic ASA @Ender-3 V4-all;Creality Generic PETG @Ender-3 V4-all;Creality Generic PLA @Ender-3 V4-all;Creality Generic PLA Matte @Ender-3 V4-all;Creality Generic PLA Silk @Ender-3 V4-all;Creality Generic TPU @Ender-3 V4-all"
+}
diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Max 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..98e51b84d2
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality Ender-5 Max 0.6 nozzle.json
@@ -0,0 +1,119 @@
+{
+ "type": "machine",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_creality_common",
+ "printer_model": "Creality Ender-5 Max",
+ "adaptive_bed_mesh_margin": "0",
+ "auxiliary_fan": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_filament_gcode": "PAUSE",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "86",
+ "default_print_profile": "0.30mm Standard @Creality Ender-5 Max 0.6 nozzle",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "1",
+ "enable_long_retraction_when_cut": "0",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "120",
+ "extruder_clearance_height_to_rod": "35",
+ "extruder_clearance_radius": "85",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "gcode_flavor": "klipper",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "machine_LED_light_exist": "1",
+ "machine_end_gcode": "G91 ;Relative positionning \nG1 E-2 F2700 ;Retract a bit \nG1 E-2 Z0.2 F2400 ;Retract and raise Z \n \nG1 Z5 ;Raise Z more \nG90 ;Absolute positionning \n \nG1 X395 Y395 F6000 ;Present print \nM106 S0 ;Turn-off fan \nM104 S0 ;Turn-off hotend \nM140 S0 ;Turn-off bed \n \nM84 X Y E ;Disable all steppers but Z",
+ "machine_load_filament_time": "11",
+ "machine_max_acceleration_e": "30000",
+ "machine_max_acceleration_extruding": "12000",
+ "machine_max_acceleration_retracting": "12000",
+ "machine_max_acceleration_travel": "50000",
+ "machine_max_acceleration_x": "12000",
+ "machine_max_acceleration_y": "12000",
+ "machine_max_acceleration_z": "100",
+ "machine_max_jerk_e": "6",
+ "machine_max_jerk_x": "10",
+ "machine_max_jerk_y": "10",
+ "machine_max_jerk_z": "4",
+ "machine_max_speed_e": "30",
+ "machine_max_speed_x": "1000",
+ "machine_max_speed_y": "1000",
+ "machine_max_speed_z": "20",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_pause_gcode": "PAUSE",
+ "machine_platform_motion_enable": "0",
+ "machine_start_gcode": "M220 S100 ;Reset Feedrate \nM221 S100 ;Reset Flowrate \n \nM140 S[bed_temperature_initial_layer_single] ;Set final bed temp \nG28 ;Home \n \nG92 E0 ;Reset Extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nM104 S[nozzle_temperature_initial_layer] ;Set final nozzle temp \nG1 X-1.0 Y120 Z0.28 F5000.0 ;Move to start position \nM190 S[bed_temperature_initial_layer_single] ;Wait for bed temp to stabilize \nM109 S[nozzle_temperature_initial_layer] ;Wait for nozzle temp to stabilize \nG1 X-1.0 Y245.0 Z0.28 F1500.0 E7 ;Draw the first line \nG1 X-0.6 Y245.0 Z0.28 F5000.0 ;Move to side a little \nG1 X-0.6 Y120 Z0.28 F1500.0 E15 ;Draw the second line \nG92 E0 ;Reset Extruder \nG1 E-1.0000 F1800 ;Retract a bit \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 E0.0000 F1800",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "1",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_type": "brass",
+ "nozzle_volume": "0",
+ "parking_pos_retraction": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printable_area": "0x0,400x0,400x400,0x400",
+ "printable_height": "400",
+ "printer_technology": "FFF",
+ "printer_variant": "0.6",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "1",
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "0",
+ "support_chamber_temp_control": "0",
+ "support_multi_bed_types": "1",
+ "thumbnails": "96x96/PNG, 300x300/PNG",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "default_filament_profile": [
+ "Creality Hyper PLA @Ender-5Max-all"
+ ],
+ "deretraction_speed": "30",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "long_retractions_when_cut": "0",
+ "max_layer_height": "0.42",
+ "min_layer_height": "0.18",
+ "nozzle_diameter": [
+ "0.6"
+ ],
+ "retract_before_wipe": "100%",
+ "retract_length_toolchange": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "399",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_distances_when_cut": "18",
+ "retraction_length": "1",
+ "retraction_minimum_travel": "2",
+ "retraction_speed": "30",
+ "travel_slope": "3",
+ "wipe": "1",
+ "wipe_distance": "2",
+ "z_hop": "0.4",
+ "z_hop_types": "Slope Lift",
+ "name": "Creality Ender-5 Max 0.6 nozzle",
+ "setting_id": "71211"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Max 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..cdf56ee898
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality Ender-5 Max 0.8 nozzle.json
@@ -0,0 +1,119 @@
+{
+ "type": "machine",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_creality_common",
+ "printer_model": "Creality Ender-5 Max",
+ "adaptive_bed_mesh_margin": "0",
+ "auxiliary_fan": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_filament_gcode": "PAUSE",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "86",
+ "default_print_profile": "0.40mm Standard @Creality Ender-5 Max 0.8 nozzle",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "1",
+ "enable_long_retraction_when_cut": "0",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "120",
+ "extruder_clearance_height_to_rod": "35",
+ "extruder_clearance_radius": "85",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "gcode_flavor": "klipper",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "machine_LED_light_exist": "1",
+ "machine_end_gcode": "G91 ;Relative positionning \nG1 E-2 F2700 ;Retract a bit \nG1 E-2 Z0.2 F2400 ;Retract and raise Z \n \nG1 Z5 ;Raise Z more \nG90 ;Absolute positionning \n \nG1 X395 Y395 F6000 ;Present print \nM106 S0 ;Turn-off fan \nM104 S0 ;Turn-off hotend \nM140 S0 ;Turn-off bed \n \nM84 X Y E ;Disable all steppers but Z",
+ "machine_load_filament_time": "11",
+ "machine_max_acceleration_e": "5000",
+ "machine_max_acceleration_extruding": "12000",
+ "machine_max_acceleration_retracting": "5000",
+ "machine_max_acceleration_travel": "50000",
+ "machine_max_acceleration_x": "12000",
+ "machine_max_acceleration_y": "12000",
+ "machine_max_acceleration_z": "200",
+ "machine_max_jerk_e": "3",
+ "machine_max_jerk_x": "10",
+ "machine_max_jerk_y": "10",
+ "machine_max_jerk_z": "3",
+ "machine_max_speed_e": "30",
+ "machine_max_speed_x": "1000",
+ "machine_max_speed_y": "1000",
+ "machine_max_speed_z": "20",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_pause_gcode": "PAUSE",
+ "machine_platform_motion_enable": "0",
+ "machine_start_gcode": "M220 S100 ;Reset Feedrate \nM221 S100 ;Reset Flowrate \n \nM140 S[bed_temperature_initial_layer_single] ;Set final bed temp \nG28 ;Home \n \nG92 E0 ;Reset Extruder \nG1 Z2.0 F3000 ;Move Z Axis up \nM104 S[nozzle_temperature_initial_layer] ;Set final nozzle temp \nG1 X-1.0 Y120 Z0.28 F5000.0 ;Move to start position \nM190 S[bed_temperature_initial_layer_single] ;Wait for bed temp to stabilize \nM109 S[nozzle_temperature_initial_layer] ;Wait for nozzle temp to stabilize \nG1 X-1.0 Y245.0 Z0.28 F1500.0 E7 ;Draw the first line \nG1 X-0.6 Y245.0 Z0.28 F5000.0 ;Move to side a little \nG1 X-0.6 Y120 Z0.28 F1500.0 E15 ;Draw the second line \nG92 E0 ;Reset Extruder \nG1 E-1.0000 F1800 ;Retract a bit \nG1 Z2.0 F3000 ;Move Z Axis up \nG1 E0.0000 F1800",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "1",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_type": "brass",
+ "nozzle_volume": "0",
+ "parking_pos_retraction": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printable_area": "0x0,400x0,400x400,0x400",
+ "printable_height": "400",
+ "printer_technology": "FFF",
+ "printer_variant": "0.8",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "1",
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "0",
+ "support_chamber_temp_control": "0",
+ "support_multi_bed_types": "1",
+ "thumbnails": "96x96/PNG, 300x300/PNG",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "default_filament_profile": [
+ "Creality Hyper PLA @Ender-5Max-all"
+ ],
+ "deretraction_speed": "30",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "long_retractions_when_cut": "0",
+ "max_layer_height": "0.56",
+ "min_layer_height": "0.24",
+ "nozzle_diameter": [
+ "0.8"
+ ],
+ "retract_before_wipe": "100%",
+ "retract_length_toolchange": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "399",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_distances_when_cut": "18",
+ "retraction_length": "1.2",
+ "retraction_minimum_travel": "2",
+ "retraction_speed": "30",
+ "travel_slope": "3",
+ "wipe": "1",
+ "wipe_distance": "2",
+ "z_hop": "0.4",
+ "z_hop_types": "Slope Lift",
+ "name": "Creality Ender-5 Max 0.8 nozzle",
+ "setting_id": "99719"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Max.json b/resources/profiles/Creality/machine/Creality Ender-5 Max.json
index 993b6fee1f..8c5354fea2 100644
--- a/resources/profiles/Creality/machine/Creality Ender-5 Max.json
+++ b/resources/profiles/Creality/machine/Creality Ender-5 Max.json
@@ -2,11 +2,12 @@
"type": "machine_model",
"name": "Creality Ender-5 Max",
"model_id": "Creality-Ender5-Max",
- "nozzle_diameter": "0.4",
+ "nozzle_diameter": "0.8;0.6;0.4",
"machine_tech": "FFF",
"family": "Creality",
"bed_model": "creality_ender5max_buildplate_model.stl",
"bed_texture": "creality_ender5max_buildplate_texture.svg",
"hotend_model": "",
+ "default_bed_type": "Textured PEI Plate",
"default_materials": "Creality Hyper PLA-CF @Ender-5Max-all;Creality Hyper PLA @Ender-5Max-all;Creality Hyper ABS @Ender-5Max-all;Creality Generic TPU @Ender-5Max-all;Creality Generic ASA @Ender-5Max-all;Creality Silk PLA @Ender-5Max-all;Creality Generic PLA @Ender-5Max-all;Creality Generic PETG @Ender-5Max-all;Creality Generic ABS @Ender-5Max-all;Creality Generic PA @Ender-5Max-all"
}
diff --git a/resources/profiles/Creality/machine/Creality Hi 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Hi 0.2 nozzle.json
new file mode 100644
index 0000000000..7fa2e4ae3a
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality Hi 0.2 nozzle.json
@@ -0,0 +1,124 @@
+{
+ "type": "machine",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_creality_common",
+ "printer_model": "Creality Hi",
+ "printer_structure": "i3",
+ "default_print_profile": "0.1mm Standard @Creality Hi 0.2 nozzle",
+ "adaptive_bed_mesh_margin": "0",
+ "auxiliary_fan": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X260 Y180 F30000\nG1 Z{z_after_toolchange} F600",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "105",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "enable_long_retraction_when_cut": "0",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "20",
+ "extruder_clearance_height_to_rod": "27",
+ "extruder_clearance_radius": "55",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "gcode_flavor": "klipper",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_end_gcode": "G1 X0 Y180 F8000\nEND_PRINT",
+ "machine_load_filament_time": "105",
+ "machine_max_acceleration_e": "5000",
+ "machine_max_acceleration_extruding": "12000",
+ "machine_max_acceleration_retracting": "5000",
+ "machine_max_acceleration_travel": "20000",
+ "machine_max_acceleration_x": "12000",
+ "machine_max_acceleration_y": "12000",
+ "machine_max_acceleration_z": "500",
+ "machine_max_jerk_e": "2.5",
+ "machine_max_jerk_x": "12",
+ "machine_max_jerk_y": "12",
+ "machine_max_jerk_z": "2",
+ "machine_max_speed_e": "50",
+ "machine_max_speed_x": "300",
+ "machine_max_speed_y": "300",
+ "machine_max_speed_z": "20",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_pause_gcode": "PAUSE",
+ "machine_platform_motion_enable": "0",
+ "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_type": "hardened_steel",
+ "nozzle_volume": "183",
+ "parking_pos_retraction": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Left Upper",
+ "print_host": "http://172.23.209.71:4408/",
+ "print_host_webui": "http://172.23.209.71:4408/",
+ "printable_area": "0x0,260x0,260x260,0x260",
+ "printable_height": "300",
+ "printer_technology": "FFF",
+ "printer_variant": "0.2",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "0",
+ "support_chamber_temp_control": "1",
+ "support_multi_bed_types": "1",
+ "thumbnails": "96x96/PNG, 300x300/PNG",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "time_lapse_gcode": "{if !spiral_mode && print_sequence != \"by object\" && layer_num != 0}\n;don't support timelapse gcode in spiral_mode and by object sequence for I3 structure printer\n;time lapse begin\nM5001 G92 E0\nM5001 G17\nM5001 G2 Z{layer_z + 0.4} I0.86 J0.86 P1 F20000 ; spiral lift a little\nM5001 G1 X0 Y180 F24000 ; move to safe pos\nM5001 P15\nM5001 M400 P300\nM5001 G92 E0\n;time lapse end\n{endif}",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "default_filament_profile": [
+ "Creality Generic PLA @Hi-all"
+ ],
+ "deretraction_speed": "40",
+ "extruder_colour": "#018001",
+ "extruder_offset": "0x0",
+ "long_retractions_when_cut": "0",
+ "max_layer_height": "0.14",
+ "min_layer_height": "0.04",
+ "nozzle_diameter": [
+ "0.2"
+ ],
+ "retract_before_wipe": "70%",
+ "retract_length_toolchange": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "259",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_distances_when_cut": "18",
+ "retraction_length": "0.5",
+ "retraction_minimum_travel": "1",
+ "retraction_speed": "40",
+ "travel_slope": "3",
+ "wipe": "1",
+ "wipe_distance": "2",
+ "z_hop": "0.4",
+ "z_hop_types": "Auto Lift",
+ "name": "Creality Hi 0.2 nozzle",
+ "setting_id": "73035"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/machine/Creality Hi 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Hi 0.4 nozzle.json
index 56327624cc..3de164add1 100644
--- a/resources/profiles/Creality/machine/Creality Hi 0.4 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality Hi 0.4 nozzle.json
@@ -38,8 +38,8 @@
"5000"
],
"machine_max_acceleration_travel": [
- "12000",
- "12000"
+ "20000",
+ "20000"
],
"machine_max_acceleration_x": [
"12000",
@@ -50,24 +50,24 @@
"12000"
],
"machine_max_acceleration_z": [
- "1000",
- "1000"
+ "500",
+ "500"
],
"machine_max_speed_e": [
"50",
"50"
],
"machine_max_speed_x": [
- "500",
- "500"
+ "300",
+ "300"
],
"machine_max_speed_y": [
- "500",
- "500"
+ "300",
+ "300"
],
"machine_max_speed_z": [
- "30",
- "30"
+ "20",
+ "20"
],
"machine_max_jerk_e": [
"2.5",
@@ -118,7 +118,7 @@
"1"
],
"enable_filament_ramming": "0",
- "extruder_clearance_height_to_lid": "301",
+ "extruder_clearance_height_to_lid": "20",
"extruder_clearance_height_to_rod": "27",
"extruder_clearance_radius": "55",
"z_hop": [
@@ -137,10 +137,60 @@
"default_filament_profile": [
"Creality Generic PLA @Hi-all"
],
- "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
- "machine_end_gcode": "END_PRINT",
+ "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
+ "machine_end_gcode": "G1 X0 Y180 F8000\nEND_PRINT",
"scan_first_layer": "0",
"thumbnails": [
- "96x96/PNG, 300x300/PNG"
- ]
+ "96x96",
+ "300x300"
+ ],
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "105",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "extra_loading_move": "0",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "0",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "nozzle_hrc": "0",
+ "parking_pos_retraction": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Left Upper",
+ "print_host": "http://172.23.209.71:4408/",
+ "print_host_webui": "http://172.23.209.71:4408/",
+ "printer_technology": "FFF",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "silent_mode": "0",
+ "support_chamber_temp_control": "1",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "time_lapse_gcode": "{if !spiral_mode && print_sequence != \"by object\" && layer_num != 0}\n;don't support timelapse gcode in spiral_mode and by object sequence for I3 structure printer\n;time lapse begin\nM5001 G92 E0\nM5001 G17\nM5001 G2 Z{layer_z + 0.4} I0.86 J0.86 P1 F20000 ; spiral lift a little\nM5001 G1 X0 Y180 F24000 ; move to safe pos\nM5001 P15\nM5001 M400 P300\nM5001 G92 E0\n;time lapse end\n{endif}",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "extruder_colour": "#018001",
+ "extruder_offset": "0x0",
+ "retract_lift_above": "0",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "wipe": "1"
}
diff --git a/resources/profiles/Creality/machine/Creality Hi 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Hi 0.6 nozzle.json
index 55e3608e1a..a14bb76e0b 100644
--- a/resources/profiles/Creality/machine/Creality Hi 0.6 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality Hi 0.6 nozzle.json
@@ -38,8 +38,8 @@
"5000"
],
"machine_max_acceleration_travel": [
- "12000",
- "12000"
+ "20000",
+ "20000"
],
"machine_max_acceleration_x": [
"12000",
@@ -50,24 +50,24 @@
"12000"
],
"machine_max_acceleration_z": [
- "1000",
- "1000"
+ "500",
+ "500"
],
"machine_max_speed_e": [
"50",
"50"
],
"machine_max_speed_x": [
- "500",
- "500"
+ "300",
+ "300"
],
"machine_max_speed_y": [
- "500",
- "500"
+ "300",
+ "300"
],
"machine_max_speed_z": [
- "30",
- "30"
+ "20",
+ "20"
],
"machine_max_jerk_e": [
"2.5",
@@ -86,18 +86,18 @@
"2"
],
"max_layer_height": [
- "0.35"
+ "0.42"
],
"min_layer_height": [
- "0.1"
+ "0.12"
],
"printer_settings_id": "Creality",
"purge_in_prime_tower": "0",
"retraction_minimum_travel": [
- "0.5"
+ "1"
],
"retract_before_wipe": [
- "70%"
+ "100%"
],
"retraction_length": [
"0.8"
@@ -118,7 +118,7 @@
"1"
],
"enable_filament_ramming": "0",
- "extruder_clearance_height_to_lid": "301",
+ "extruder_clearance_height_to_lid": "20",
"extruder_clearance_height_to_rod": "27",
"extruder_clearance_radius": "55",
"z_hop": [
@@ -137,10 +137,60 @@
"default_filament_profile": [
"Creality Generic PLA @Hi-all"
],
- "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
- "machine_end_gcode": "END_PRINT",
+ "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
+ "machine_end_gcode": "G1 X0 Y180 F8000\nEND_PRINT",
"scan_first_layer": "0",
"thumbnails": [
- "96x96/PNG, 300x300/PNG"
- ]
+ "96x96",
+ "300x300"
+ ],
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "105",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "extra_loading_move": "0",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "0",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "nozzle_hrc": "0",
+ "parking_pos_retraction": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Left Upper",
+ "print_host": "http://172.23.209.71:4408/",
+ "print_host_webui": "http://172.23.209.71:4408/",
+ "printer_technology": "FFF",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "silent_mode": "0",
+ "support_chamber_temp_control": "1",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "time_lapse_gcode": "{if !spiral_mode && print_sequence != \"by object\" && layer_num != 0}\n;don't support timelapse gcode in spiral_mode and by object sequence for I3 structure printer\n;time lapse begin\nM5001 G92 E0\nM5001 G17\nM5001 G2 Z{layer_z + 0.4} I0.86 J0.86 P1 F20000 ; spiral lift a little\nM5001 G1 X0 Y180 F24000 ; move to safe pos\nM5001 P15\nM5001 M400 P300\nM5001 G92 E0\n;time lapse end\n{endif}",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "extruder_colour": "#018001",
+ "extruder_offset": "0x0",
+ "retract_lift_above": "0",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "wipe": "1"
}
diff --git a/resources/profiles/Creality/machine/Creality Hi 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Hi 0.8 nozzle.json
new file mode 100644
index 0000000000..9905ee8794
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality Hi 0.8 nozzle.json
@@ -0,0 +1,116 @@
+{
+ "type": "machine",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_creality_common",
+ "printer_model": "Creality Hi",
+ "printer_structure": "i3",
+ "default_print_profile": "0.40mm Standard @Creality Hi 0.8 nozzle",
+ "auxiliary_fan": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X260 Y180 F30000\nG1 Z{z_after_toolchange} F600",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "105",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "20",
+ "extruder_clearance_height_to_rod": "27",
+ "extruder_clearance_radius": "55",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "gcode_flavor": "klipper",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_end_gcode": "G1 X0 Y180 F8000\nEND_PRINT",
+ "machine_load_filament_time": "105",
+ "machine_max_acceleration_e": "5000",
+ "machine_max_acceleration_extruding": "12000",
+ "machine_max_acceleration_retracting": "5000",
+ "machine_max_acceleration_travel": "20000",
+ "machine_max_acceleration_x": "12000",
+ "machine_max_acceleration_y": "12000",
+ "machine_max_acceleration_z": "500",
+ "machine_max_jerk_e": "2.5",
+ "machine_max_jerk_x": "12",
+ "machine_max_jerk_y": "12",
+ "machine_max_jerk_z": "2",
+ "machine_max_speed_e": "50",
+ "machine_max_speed_x": "300",
+ "machine_max_speed_y": "300",
+ "machine_max_speed_z": "20",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_pause_gcode": "PAUSE",
+ "machine_platform_motion_enable": "0",
+ "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "nozzle_hrc": "0",
+ "nozzle_type": "hardened_steel",
+ "nozzle_volume": "183",
+ "parking_pos_retraction": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Left Upper",
+ "print_host": "http://172.23.209.71:4408/",
+ "print_host_webui": "http://172.23.209.71:4408/",
+ "printable_area": "0x0,260x0,260x260,0x260",
+ "printable_height": "300",
+ "printer_technology": "FFF",
+ "printer_variant": "0.8",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "0",
+ "support_chamber_temp_control": "1",
+ "support_multi_bed_types": "1",
+ "thumbnails": "96x96,300x300",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "time_lapse_gcode": "{if !spiral_mode && print_sequence != \"by object\" && layer_num != 0}\n;don't support timelapse gcode in spiral_mode and by object sequence for I3 structure printer\n;time lapse begin\nM5001 G92 E0\nM5001 G17\nM5001 G2 Z{layer_z + 0.4} I0.86 J0.86 P1 F20000 ; spiral lift a little\nM5001 G1 X0 Y180 F24000 ; move to safe pos\nM5001 P15\nM5001 M400 P300\nM5001 G92 E0\n;time lapse end\n{endif}",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "default_filament_profile": [
+ "Creality Generic PLA @Hi-all"
+ ],
+ "deretraction_speed": "40",
+ "extruder_colour": "#018001",
+ "extruder_offset": "0x0",
+ "max_layer_height": "0.56",
+ "min_layer_height": "0.16",
+ "nozzle_diameter": [
+ "0.8"
+ ],
+ "retract_before_wipe": "100%",
+ "retract_length_toolchange": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "299",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_length": "0.8",
+ "retraction_minimum_travel": "1",
+ "retraction_speed": "40",
+ "wipe": "1",
+ "wipe_distance": "2",
+ "z_hop": "0.4",
+ "z_hop_types": "Auto Lift",
+ "name": "Creality Hi 0.8 nozzle",
+ "setting_id": "37865"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/machine/Creality Hi.json b/resources/profiles/Creality/machine/Creality Hi.json
index 7415bf942c..c1b5173f32 100644
--- a/resources/profiles/Creality/machine/Creality Hi.json
+++ b/resources/profiles/Creality/machine/Creality Hi.json
@@ -2,7 +2,7 @@
"type": "machine_model",
"name": "Creality Hi",
"model_id": "Creality-Hi",
- "nozzle_diameter": "0.4;0.6",
+ "nozzle_diameter": "0.8;0.6;0.4;0.2",
"machine_tech": "FFF",
"family": "Creality",
"bed_model": "creality_hi_buildplate_model.stl",
diff --git a/resources/profiles/Creality/machine/Creality K1 (0.4 nozzle).json b/resources/profiles/Creality/machine/Creality K1 (0.4 nozzle).json
index f73d89cb04..52be85c7bb 100644
--- a/resources/profiles/Creality/machine/Creality K1 (0.4 nozzle).json
+++ b/resources/profiles/Creality/machine/Creality K1 (0.4 nozzle).json
@@ -35,8 +35,8 @@
"5000"
],
"machine_max_acceleration_travel": [
- "9000",
- "9000"
+ "20000",
+ "20000"
],
"machine_max_acceleration_x": [
"20000",
@@ -47,8 +47,8 @@
"20000"
],
"machine_max_acceleration_z": [
- "500",
- "500"
+ "300",
+ "300"
],
"machine_max_speed_e": [
"100",
@@ -67,20 +67,20 @@
"20"
],
"machine_max_jerk_e": [
- "2.5",
- "2.5"
+ "10",
+ "10"
],
"machine_max_jerk_x": [
- "12",
- "12"
+ "20",
+ "20"
],
"machine_max_jerk_y": [
- "12",
- "12"
+ "20",
+ "20"
],
"machine_max_jerk_z": [
- "2",
- "2"
+ "5",
+ "5"
],
"max_layer_height": [
"0.3"
@@ -90,16 +90,16 @@
],
"printer_settings_id": "Creality",
"retraction_minimum_travel": [
- "2"
+ "1"
],
"retract_before_wipe": [
- "0%"
+ "70%"
],
"retraction_length": [
- "0.6"
+ "0.8"
],
"retract_length_toolchange": [
- "1"
+ "0"
],
"retraction_speed": [
"40"
@@ -109,25 +109,80 @@
],
"extruder_clearance_height_to_lid": "101",
"extruder_clearance_height_to_rod": "45",
- "extruder_clearance_radius": "45",
+ "extruder_clearance_radius": "65",
"z_hop": [
- "0.2"
+ "0.4"
],
"wipe_distance": [
"2"
],
"single_extruder_multi_material": "1",
- "manual_filament_change": "1",
- "change_filament_gcode": "PAUSE",
+ "manual_filament_change": "0",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X42 Y180 F30000\nG1 Z{z_after_toolchange} F600",
"machine_pause_gcode": "PAUSE",
"default_filament_profile": [
- "Creality HF Generic PLA"
+ "Creality HF Generic PLA"
],
- "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]",
+ "machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
- "100x100",
- "320x320"
- ]
+ "96x96",
+ "300x300"
+ ],
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "color_bed_exclude_area": "0x215,220x215,220x220,0x220",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "119",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "extra_loading_move": "0",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_load_filament_time": "119",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "machine_unload_filament_time": "0",
+ "nozzle_hrc": "0",
+ "nozzle_volume": "200",
+ "parking_pos_retraction": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printer_technology": "FFF",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "silent_mode": "0",
+ "support_air_filtration": "1",
+ "support_chamber_temp_control": "0",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "249",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "wipe": "1",
+ "z_hop_types": "Auto Lift"
}
diff --git a/resources/profiles/Creality/machine/Creality K1 (0.6 nozzle).json b/resources/profiles/Creality/machine/Creality K1 (0.6 nozzle).json
index b473fd8e5a..38890795a8 100644
--- a/resources/profiles/Creality/machine/Creality K1 (0.6 nozzle).json
+++ b/resources/profiles/Creality/machine/Creality K1 (0.6 nozzle).json
@@ -35,8 +35,8 @@
"5000"
],
"machine_max_acceleration_travel": [
- "9000",
- "9000"
+ "20000",
+ "20000"
],
"machine_max_acceleration_x": [
"20000",
@@ -47,8 +47,8 @@
"20000"
],
"machine_max_acceleration_z": [
- "500",
- "500"
+ "300",
+ "300"
],
"machine_max_speed_e": [
"100",
@@ -67,67 +67,130 @@
"20"
],
"machine_max_jerk_e": [
- "2.5",
- "2.5"
+ "10",
+ "10"
],
"machine_max_jerk_x": [
- "12",
- "12"
+ "20",
+ "20"
],
"machine_max_jerk_y": [
- "12",
- "12"
+ "20",
+ "20"
],
"machine_max_jerk_z": [
- "2",
- "2"
+ "5",
+ "5"
],
"max_layer_height": [
- "0.4"
+ "0.42"
],
"min_layer_height": [
- "0.08"
+ "0.12"
],
"printer_settings_id": "Creality",
"retraction_minimum_travel": [
"2"
],
"retract_before_wipe": [
- "0%"
+ "90%"
],
"retraction_length": [
- "0.5"
+ "1.5"
],
"retract_length_toolchange": [
"1"
],
"retraction_speed": [
- "40"
+ "30"
],
"deretraction_speed": [
- "40"
+ "30"
],
"extruder_clearance_height_to_lid": "101",
"extruder_clearance_height_to_rod": "45",
- "extruder_clearance_radius": "45",
+ "extruder_clearance_radius": "65",
"z_hop": [
- "0.2"
+ "0.4"
],
"wipe_distance": [
"2"
],
"single_extruder_multi_material": "1",
- "manual_filament_change": "1",
- "change_filament_gcode": "PAUSE",
+ "manual_filament_change": "0",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X42 Y180 F30000\nG1 Z{z_after_toolchange} F600",
"machine_pause_gcode": "PAUSE",
"default_filament_profile": [
"Creality HF Generic PLA"
],
- "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]",
+ "machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
- "100x100",
- "320x320"
- ]
+ "96x96/PNG",
+ "300x300/PNG"
+ ],
+ "adaptive_bed_mesh_margin": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "color_bed_exclude_area": "0x215,220x215,220x220,0x220",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "119",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "enable_long_retraction_when_cut": "0",
+ "extra_loading_move": "0",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_load_filament_time": "119",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_volume": "200",
+ "parking_pos_retraction": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printer_technology": "FFF",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "silent_mode": "0",
+ "support_air_filtration": "1",
+ "support_chamber_temp_control": "0",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "long_retractions_when_cut": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "249",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_distances_when_cut": "18",
+ "travel_slope": "3",
+ "wipe": "1",
+ "z_hop_types": "Slope Lift"
}
diff --git a/resources/profiles/Creality/machine/Creality K1 (0.8 nozzle).json b/resources/profiles/Creality/machine/Creality K1 (0.8 nozzle).json
index 9568719439..f4f8ba213c 100644
--- a/resources/profiles/Creality/machine/Creality K1 (0.8 nozzle).json
+++ b/resources/profiles/Creality/machine/Creality K1 (0.8 nozzle).json
@@ -35,8 +35,8 @@
"5000"
],
"machine_max_acceleration_travel": [
- "9000",
- "9000"
+ "20000",
+ "20000"
],
"machine_max_acceleration_x": [
"20000",
@@ -47,8 +47,8 @@
"20000"
],
"machine_max_acceleration_z": [
- "500",
- "500"
+ "300",
+ "300"
],
"machine_max_speed_e": [
"100",
@@ -67,23 +67,23 @@
"20"
],
"machine_max_jerk_e": [
- "2.5",
- "2.5"
+ "10",
+ "10"
],
"machine_max_jerk_x": [
- "12",
- "12"
+ "20",
+ "20"
],
"machine_max_jerk_y": [
- "12",
- "12"
+ "20",
+ "20"
],
"machine_max_jerk_z": [
- "2",
- "2"
+ "5",
+ "5"
],
"max_layer_height": [
- "0.5"
+ "0.56"
],
"min_layer_height": [
"0.16"
@@ -93,41 +93,104 @@
"2"
],
"retract_before_wipe": [
- "0%"
+ "90%"
],
"retraction_length": [
- "0.5"
+ "2"
],
"retract_length_toolchange": [
"1"
],
"retraction_speed": [
- "40"
+ "30"
],
"deretraction_speed": [
- "40"
+ "30"
],
"extruder_clearance_height_to_lid": "101",
"extruder_clearance_height_to_rod": "45",
- "extruder_clearance_radius": "45",
+ "extruder_clearance_radius": "65",
"z_hop": [
- "0.2"
+ "0.4"
],
"wipe_distance": [
"2"
],
"single_extruder_multi_material": "1",
- "manual_filament_change": "1",
- "change_filament_gcode": "PAUSE",
+ "manual_filament_change": "0",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X42 Y180 F30000\nG1 Z{z_after_toolchange} F600",
"machine_pause_gcode": "PAUSE",
"default_filament_profile": [
"Creality HF Generic PLA"
],
- "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]",
+ "machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
- "100x100",
- "320x320"
- ]
+ "96x96/PNG",
+ "300x300/PNG"
+ ],
+ "adaptive_bed_mesh_margin": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "color_bed_exclude_area": "0x215,220x215,220x220,0x220",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "119",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "enable_long_retraction_when_cut": "0",
+ "extra_loading_move": "0",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_load_filament_time": "119",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_volume": "200",
+ "parking_pos_retraction": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printer_technology": "FFF",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "silent_mode": "0",
+ "support_air_filtration": "1",
+ "support_chamber_temp_control": "0",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "long_retractions_when_cut": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "249",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_distances_when_cut": "18",
+ "travel_slope": "3",
+ "wipe": "1",
+ "z_hop_types": "Slope Lift"
}
diff --git a/resources/profiles/Creality/machine/Creality K1 Max (0.4 nozzle).json b/resources/profiles/Creality/machine/Creality K1 Max (0.4 nozzle).json
index b9181bfdc5..89564df4db 100644
--- a/resources/profiles/Creality/machine/Creality K1 Max (0.4 nozzle).json
+++ b/resources/profiles/Creality/machine/Creality K1 Max (0.4 nozzle).json
@@ -19,7 +19,7 @@
"0x300"
],
"printable_height": "300",
- "nozzle_type": "hardened_steel",
+ "nozzle_type": "brass",
"auxiliary_fan": "1",
"support_air_filtration": "1",
"support_multi_bed_types": "1",
@@ -36,8 +36,8 @@
"5000"
],
"machine_max_acceleration_travel": [
- "9000",
- "9000"
+ "20000",
+ "20000"
],
"machine_max_acceleration_x": [
"20000",
@@ -48,8 +48,8 @@
"20000"
],
"machine_max_acceleration_z": [
- "500",
- "500"
+ "300",
+ "300"
],
"machine_max_speed_e": [
"100",
@@ -68,20 +68,20 @@
"20"
],
"machine_max_jerk_e": [
- "2.5",
- "2.5"
+ "10",
+ "10"
],
"machine_max_jerk_x": [
- "12",
- "12"
+ "20",
+ "20"
],
"machine_max_jerk_y": [
- "12",
- "12"
+ "20",
+ "20"
],
"machine_max_jerk_z": [
- "2",
- "2"
+ "5",
+ "5"
],
"max_layer_height": [
"0.3"
@@ -91,16 +91,16 @@
],
"printer_settings_id": "Creality",
"retraction_minimum_travel": [
- "2"
+ "1"
],
"retract_before_wipe": [
- "0%"
+ "70%"
],
"retraction_length": [
- "0.6"
+ "0.8"
],
"retract_length_toolchange": [
- "1"
+ "0"
],
"retraction_speed": [
"40"
@@ -110,25 +110,79 @@
],
"extruder_clearance_height_to_lid": "101",
"extruder_clearance_height_to_rod": "45",
- "extruder_clearance_radius": "45",
+ "extruder_clearance_radius": "65",
"z_hop": [
- "0.2"
+ "0.4"
],
"wipe_distance": [
"2"
],
"single_extruder_multi_material": "1",
- "manual_filament_change": "1",
- "change_filament_gcode": "PAUSE",
+ "manual_filament_change": "0",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
"machine_pause_gcode": "PAUSE",
"default_filament_profile": [
"Creality HF Generic PLA"
],
- "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]",
+ "machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: \n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
- "100x100",
- "320x320"
- ]
+ "96x96",
+ "300x300"
+ ],
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "color_bed_exclude_area": "0x295,300x295,300x300,0x300",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "119",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "extra_loading_move": "0",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_load_filament_time": "119",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "machine_unload_filament_time": "0",
+ "nozzle_hrc": "0",
+ "nozzle_volume": "200",
+ "parking_pos_retraction": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printer_technology": "FFF",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "silent_mode": "0",
+ "support_chamber_temp_control": "0",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "299",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "wipe": "1",
+ "z_hop_types": "Auto Lift"
}
diff --git a/resources/profiles/Creality/machine/Creality K1 Max (0.6 nozzle).json b/resources/profiles/Creality/machine/Creality K1 Max (0.6 nozzle).json
index ed55661f7e..9962a3afc3 100644
--- a/resources/profiles/Creality/machine/Creality K1 Max (0.6 nozzle).json
+++ b/resources/profiles/Creality/machine/Creality K1 Max (0.6 nozzle).json
@@ -19,7 +19,7 @@
"0x300"
],
"printable_height": "300",
- "nozzle_type": "hardened_steel",
+ "nozzle_type": "brass",
"auxiliary_fan": "1",
"support_air_filtration": "1",
"support_multi_bed_types": "1",
@@ -36,8 +36,8 @@
"5000"
],
"machine_max_acceleration_travel": [
- "9000",
- "9000"
+ "20000",
+ "20000"
],
"machine_max_acceleration_x": [
"20000",
@@ -48,8 +48,8 @@
"20000"
],
"machine_max_acceleration_z": [
- "500",
- "500"
+ "300",
+ "300"
],
"machine_max_speed_e": [
"100",
@@ -68,67 +68,129 @@
"20"
],
"machine_max_jerk_e": [
- "2.5",
- "2.5"
+ "10",
+ "10"
],
"machine_max_jerk_x": [
- "12",
- "12"
+ "20",
+ "20"
],
"machine_max_jerk_y": [
- "12",
- "12"
+ "20",
+ "20"
],
"machine_max_jerk_z": [
- "2",
- "2"
+ "5",
+ "5"
],
"max_layer_height": [
- "0.4"
+ "0.42"
],
"min_layer_height": [
- "0.08"
+ "0.12"
],
"printer_settings_id": "Creality",
"retraction_minimum_travel": [
"2"
],
"retract_before_wipe": [
- "0%"
+ "90%"
],
"retraction_length": [
- "0.5"
+ "1.5"
],
"retract_length_toolchange": [
"1"
],
"retraction_speed": [
- "40"
+ "30"
],
"deretraction_speed": [
- "40"
+ "30"
],
"extruder_clearance_height_to_lid": "101",
"extruder_clearance_height_to_rod": "45",
- "extruder_clearance_radius": "45",
+ "extruder_clearance_radius": "65",
"z_hop": [
- "0.2"
+ "0.4"
],
"wipe_distance": [
"2"
],
"single_extruder_multi_material": "1",
- "manual_filament_change": "1",
- "change_filament_gcode": "PAUSE",
+ "manual_filament_change": "0",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
"machine_pause_gcode": "PAUSE",
"default_filament_profile": [
"Creality HF Generic PLA"
],
- "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]",
+ "machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: \n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
- "100x100",
- "320x320"
- ]
+ "96x96/PNG",
+ "300x300/PNG"
+ ],
+ "adaptive_bed_mesh_margin": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "color_bed_exclude_area": "0x295,300x295,300x300,0x300",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "119",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "enable_long_retraction_when_cut": "0",
+ "extra_loading_move": "0",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_load_filament_time": "119",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_volume": "200",
+ "parking_pos_retraction": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printer_technology": "FFF",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "silent_mode": "0",
+ "support_chamber_temp_control": "0",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "long_retractions_when_cut": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "299",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_distances_when_cut": "18",
+ "travel_slope": "3",
+ "wipe": "1",
+ "z_hop_types": "Slope Lift"
}
diff --git a/resources/profiles/Creality/machine/Creality K1 Max (0.8 nozzle).json b/resources/profiles/Creality/machine/Creality K1 Max (0.8 nozzle).json
index 6787348af5..cee9b68326 100644
--- a/resources/profiles/Creality/machine/Creality K1 Max (0.8 nozzle).json
+++ b/resources/profiles/Creality/machine/Creality K1 Max (0.8 nozzle).json
@@ -19,7 +19,7 @@
"0x300"
],
"printable_height": "300",
- "nozzle_type": "hardened_steel",
+ "nozzle_type": "brass",
"auxiliary_fan": "1",
"support_air_filtration": "1",
"support_multi_bed_types": "1",
@@ -48,8 +48,8 @@
"20000"
],
"machine_max_acceleration_z": [
- "500",
- "500"
+ "300",
+ "300"
],
"machine_max_speed_e": [
"100",
@@ -68,23 +68,23 @@
"20"
],
"machine_max_jerk_e": [
- "2.5",
- "2.5"
+ "10",
+ "10"
],
"machine_max_jerk_x": [
- "12",
- "12"
+ "20",
+ "20"
],
"machine_max_jerk_y": [
- "12",
- "12"
+ "20",
+ "20"
],
"machine_max_jerk_z": [
- "2",
- "2"
+ "5",
+ "5"
],
"max_layer_height": [
- "0.5"
+ "0.56"
],
"min_layer_height": [
"0.16"
@@ -94,41 +94,103 @@
"2"
],
"retract_before_wipe": [
- "0%"
+ "90%"
],
"retraction_length": [
- "0.5"
+ "2"
],
"retract_length_toolchange": [
"1"
],
"retraction_speed": [
- "40"
+ "30"
],
"deretraction_speed": [
- "40"
+ "30"
],
"extruder_clearance_height_to_lid": "101",
"extruder_clearance_height_to_rod": "45",
- "extruder_clearance_radius": "45",
+ "extruder_clearance_radius": "65",
"z_hop": [
- "0.2"
+ "0.4"
],
"wipe_distance": [
"2"
],
"single_extruder_multi_material": "1",
- "manual_filament_change": "1",
- "change_filament_gcode": "PAUSE",
+ "manual_filament_change": "0",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
"machine_pause_gcode": "PAUSE",
"default_filament_profile": [
"Creality HF Generic PLA"
],
- "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]",
+ "machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: \n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
- "100x100",
- "320x320"
- ]
+ "96x96/PNG",
+ "300x300/PNG"
+ ],
+ "adaptive_bed_mesh_margin": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "color_bed_exclude_area": "0x295,300x295,300x300,0x300",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "119",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "enable_long_retraction_when_cut": "0",
+ "extra_loading_move": "0",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_load_filament_time": "119",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_volume": "200",
+ "parking_pos_retraction": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printer_technology": "FFF",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "silent_mode": "0",
+ "support_chamber_temp_control": "0",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "long_retractions_when_cut": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "299",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_distances_when_cut": "18",
+ "travel_slope": "3",
+ "wipe": "1",
+ "z_hop_types": "Slope Lift"
}
diff --git a/resources/profiles/Creality/machine/Creality K1 Max.json b/resources/profiles/Creality/machine/Creality K1 Max.json
index fe56e243d0..af8379ad83 100644
--- a/resources/profiles/Creality/machine/Creality K1 Max.json
+++ b/resources/profiles/Creality/machine/Creality K1 Max.json
@@ -8,5 +8,6 @@
"bed_model": "creality_k1max_buildplate_model.stl",
"bed_texture": "creality_k1max_buildplate_texture.svg",
"hotend_model": "",
+ "default_bed_type": "Textured PEI Plate",
"default_materials": "Creality Generic ABS;Creality Generic ASA;Creality Generic PA-CF @K1-all;Creality Generic PC @K1-all;Creality Generic PETG;Creality Generic PLA;Creality HF Generic PLA;Creality HF Generic Speed PLA;Creality Generic PLA High Speed @K1-all;Creality Generic PLA Matte @K1-all;Creality Generic PLA Silk @K1-all;Creality Generic PLA-CF @K1-all;Creality Generic TPU"
}
diff --git a/resources/profiles/Creality/machine/Creality K1 Max_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K1 Max_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..b67cfef0a8
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality K1 Max_CFS-C 0.4 nozzle.json
@@ -0,0 +1,113 @@
+{
+ "type": "machine",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_creality_common",
+ "printer_model": "Creality K1 Max_CFS-C",
+ "auxiliary_fan": "1",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "119",
+ "default_print_profile": "0.20mm Standard @Creality K1 Max_CFS-C 0.4 nozzle",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "101",
+ "extruder_clearance_height_to_rod": "45",
+ "extruder_clearance_radius": "65",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "gcode_flavor": "klipper",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_end_gcode": "END_PRINT",
+ "machine_load_filament_time": "119",
+ "machine_max_acceleration_e": "5000",
+ "machine_max_acceleration_extruding": "20000",
+ "machine_max_acceleration_retracting": "5000",
+ "machine_max_acceleration_travel": "20000",
+ "machine_max_acceleration_x": "20000",
+ "machine_max_acceleration_y": "20000",
+ "machine_max_acceleration_z": "300",
+ "machine_max_jerk_e": "10",
+ "machine_max_jerk_x": "20",
+ "machine_max_jerk_y": "20",
+ "machine_max_jerk_z": "5",
+ "machine_max_speed_e": "100",
+ "machine_max_speed_x": "800",
+ "machine_max_speed_y": "800",
+ "machine_max_speed_z": "20",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_pause_gcode": "PAUSE",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: \n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "nozzle_hrc": "0",
+ "nozzle_type": "brass",
+ "nozzle_volume": "200",
+ "parking_pos_retraction": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printable_area": "0x0,300x0,300x300,0x300",
+ "printable_height": "300",
+ "printer_technology": "FFF",
+ "printer_variant": "0.4",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "1",
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "1",
+ "support_chamber_temp_control": "0",
+ "support_multi_bed_types": "1",
+ "thumbnails": "96x96,300x300",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "default_filament_profile": [
+ "Creality HF Generic PLA"
+ ],
+ "deretraction_speed": "40",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "max_layer_height": "0.3",
+ "min_layer_height": "0.08",
+ "nozzle_diameter": [
+ "0.4"
+ ],
+ "retract_before_wipe": "70%",
+ "retract_length_toolchange": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "299",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_length": "0.8",
+ "retraction_minimum_travel": "1",
+ "retraction_speed": "40",
+ "wipe": "1",
+ "wipe_distance": "2",
+ "z_hop": "0.4",
+ "z_hop_types": "Auto Lift",
+ "name": "Creality K1 Max_CFS-C 0.4 nozzle",
+ "setting_id": "81993"
+}
diff --git a/resources/profiles/Creality/machine/Creality K1 Max_CFS-C.json b/resources/profiles/Creality/machine/Creality K1 Max_CFS-C.json
new file mode 100644
index 0000000000..426f93e8be
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality K1 Max_CFS-C.json
@@ -0,0 +1,13 @@
+{
+ "type": "machine_model",
+ "name": "Creality K1 Max_CFS-C",
+ "nozzle_diameter": "0.4",
+ "bed_model": "creality_k1max_buildplate_model.stl",
+ "default_bed_type": "Textured PEI Plate",
+ "bed_texture": "creality_k1max_buildplate_texture.svg",
+ "family": "Creality",
+ "hotend_model": "",
+ "machine_tech": "FFF",
+ "model_id": "Creality_K1_Max_CFS_C",
+ "default_materials": "Creality Generic ABS;Creality Generic ASA;Creality Generic PA-CF @K1-all;Creality Generic PC @K1-all;Creality Generic PETG;Creality Generic PLA;Creality HF Generic PLA;Creality HF Generic Speed PLA;Creality Generic PLA High Speed @K1-all;Creality Generic PLA Matte @K1-all;Creality Generic PLA Silk @K1-all;Creality Generic PLA-CF @K1-all;Creality Generic TPU"
+}
diff --git a/resources/profiles/Creality/machine/Creality K1 SE 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K1 SE 0.4 nozzle.json
index 70e001c241..ab89862643 100644
--- a/resources/profiles/Creality/machine/Creality K1 SE 0.4 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality K1 SE 0.4 nozzle.json
@@ -22,7 +22,7 @@
"nozzle_type": "hardened_steel",
"auxiliary_fan": "0",
"support_air_filtration": "0",
- "support_multi_bed_types": "0",
+ "support_multi_bed_types": "1",
"machine_max_acceleration_e": [
"5000",
"5000"
@@ -84,7 +84,7 @@
"5"
],
"max_layer_height": [
- "0.32"
+ "0.3"
],
"min_layer_height": [
"0.08"
@@ -94,7 +94,7 @@
"1"
],
"retract_before_wipe": [
- "70%"
+ "0"
],
"retraction_length": [
"0.8"
@@ -103,14 +103,14 @@
"0"
],
"retraction_speed": [
- "40"
+ "30"
],
"deretraction_speed": [
- "40"
+ "30"
],
"extruder_clearance_height_to_lid": "101",
"extruder_clearance_height_to_rod": "45",
- "extruder_clearance_radius": "45",
+ "extruder_clearance_radius": "65",
"z_hop": [
"0.4"
],
@@ -123,12 +123,65 @@
"default_filament_profile": [
"Creality Generic PLA @K1-all"
],
- "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]",
+ "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails_format": "PNG",
"thumbnails": [
- "300x300",
- "96x96"
- ]
+ "96x96",
+ "300x300"
+ ],
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X42 Y180 F30000\nG1 Z{z_after_toolchange} F600",
+ "color_bed_exclude_area": "0x215,220x215,220x220,0x220",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "119",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "extra_loading_move": "0",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_load_filament_time": "119",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "1",
+ "machine_unload_filament_time": "0",
+ "nozzle_hrc": "0",
+ "nozzle_volume": "200",
+ "parking_pos_retraction": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printer_technology": "FFF",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "silent_mode": "0",
+ "support_chamber_temp_control": "0",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "249",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "wipe": "1",
+ "z_hop_types": "Slope Lift"
}
diff --git a/resources/profiles/Creality/machine/Creality K1 SE 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality K1 SE 0.6 nozzle.json
new file mode 100644
index 0000000000..35e1b30b95
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality K1 SE 0.6 nozzle.json
@@ -0,0 +1,113 @@
+{
+ "type": "machine",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_creality_common",
+ "printer_model": "Creality K1 SE",
+ "auxiliary_fan": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X42 Y180 F30000\nG1 Z{z_after_toolchange} F600",
+ "color_bed_exclude_area": "0x215,220x215,220x220,0x220",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "119",
+ "default_print_profile": "0.30mm Standard @Creality K1 SE 0.6 nozzle",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "101",
+ "extruder_clearance_height_to_rod": "45",
+ "extruder_clearance_radius": "65",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "gcode_flavor": "klipper",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_end_gcode": "END_PRINT",
+ "machine_load_filament_time": "119",
+ "machine_max_acceleration_e": "5000",
+ "machine_max_acceleration_extruding": "20000",
+ "machine_max_acceleration_retracting": "5000",
+ "machine_max_acceleration_travel": "20000",
+ "machine_max_acceleration_x": "20000",
+ "machine_max_acceleration_y": "20000",
+ "machine_max_acceleration_z": "500",
+ "machine_max_jerk_e": "10",
+ "machine_max_jerk_x": "20",
+ "machine_max_jerk_y": "20",
+ "machine_max_jerk_z": "5",
+ "machine_max_speed_e": "100",
+ "machine_max_speed_x": "800",
+ "machine_max_speed_y": "800",
+ "machine_max_speed_z": "30",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_pause_gcode": "PAUSE",
+ "machine_platform_motion_enable": "1",
+ "machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "nozzle_hrc": "0",
+ "nozzle_type": "hardened_steel",
+ "nozzle_volume": "0",
+ "parking_pos_retraction": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printable_area": "0x0,220x0,220x220,0x220",
+ "printable_height": "250",
+ "printer_technology": "FFF",
+ "printer_variant": "0.6",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "0",
+ "support_chamber_temp_control": "0",
+ "support_multi_bed_types": "1",
+ "thumbnails": "96x96,300x300",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "default_filament_profile": [
+ "Creality Generic PLA @K1-all"
+ ],
+ "deretraction_speed": "30",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "max_layer_height": "0.42",
+ "min_layer_height": "0.12",
+ "nozzle_diameter": [
+ "0.6"
+ ],
+ "retract_before_wipe": "100",
+ "retract_length_toolchange": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "249",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_length": "1",
+ "retraction_minimum_travel": "1",
+ "retraction_speed": "30",
+ "wipe": "1",
+ "wipe_distance": "1",
+ "z_hop": "0.4",
+ "z_hop_types": "Slope Lift",
+ "name": "Creality K1 SE 0.6 nozzle",
+ "setting_id": "22599"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/machine/Creality K1 SE 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality K1 SE 0.8 nozzle.json
new file mode 100644
index 0000000000..c909a98fdc
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality K1 SE 0.8 nozzle.json
@@ -0,0 +1,113 @@
+{
+ "type": "machine",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_creality_common",
+ "printer_model": "Creality K1 SE",
+ "auxiliary_fan": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X42 Y180 F30000\nG1 Z{z_after_toolchange} F600",
+ "color_bed_exclude_area": "0x215,220x215,220x220,0x220",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "119",
+ "default_print_profile": "0.40mm Standard @Creality K1 SE 0.8 nozzle",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "101",
+ "extruder_clearance_height_to_rod": "45",
+ "extruder_clearance_radius": "65",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "gcode_flavor": "klipper",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_end_gcode": "END_PRINT",
+ "machine_load_filament_time": "119",
+ "machine_max_acceleration_e": "5000",
+ "machine_max_acceleration_extruding": "20000",
+ "machine_max_acceleration_retracting": "5000",
+ "machine_max_acceleration_travel": "20000",
+ "machine_max_acceleration_x": "20000",
+ "machine_max_acceleration_y": "20000",
+ "machine_max_acceleration_z": "500",
+ "machine_max_jerk_e": "10",
+ "machine_max_jerk_x": "20",
+ "machine_max_jerk_y": "20",
+ "machine_max_jerk_z": "5",
+ "machine_max_speed_e": "100",
+ "machine_max_speed_x": "800",
+ "machine_max_speed_y": "800",
+ "machine_max_speed_z": "30",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_pause_gcode": "PAUSE",
+ "machine_platform_motion_enable": "1",
+ "machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "nozzle_hrc": "0",
+ "nozzle_type": "hardened_steel",
+ "nozzle_volume": "0",
+ "parking_pos_retraction": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printable_area": "0x0,220x0,220x220,0x220",
+ "printable_height": "250",
+ "printer_technology": "FFF",
+ "printer_variant": "0.8",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "0",
+ "support_chamber_temp_control": "0",
+ "support_multi_bed_types": "1",
+ "thumbnails": "96x96,300x300",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "default_filament_profile": [
+ "Creality Generic PLA @K1-all"
+ ],
+ "deretraction_speed": "30",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "max_layer_height": "0.56",
+ "min_layer_height": "0.16",
+ "nozzle_diameter": [
+ "0.8"
+ ],
+ "retract_before_wipe": "100",
+ "retract_length_toolchange": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "249",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_length": "0.8",
+ "retraction_minimum_travel": "1",
+ "retraction_speed": "30",
+ "wipe": "1",
+ "wipe_distance": "1",
+ "z_hop": "0.4",
+ "z_hop_types": "Slope Lift",
+ "name": "Creality K1 SE 0.8 nozzle",
+ "setting_id": "56461"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/machine/Creality K1 SE.json b/resources/profiles/Creality/machine/Creality K1 SE.json
index f26d41c78c..82a8d97b63 100644
--- a/resources/profiles/Creality/machine/Creality K1 SE.json
+++ b/resources/profiles/Creality/machine/Creality K1 SE.json
@@ -2,11 +2,12 @@
"type": "machine_model",
"name": "Creality K1 SE",
"model_id": "Creality-K1-SE",
- "nozzle_diameter": "0.4",
+ "nozzle_diameter": "0.8;0.6;0.4",
"machine_tech": "FFF",
"family": "Creality",
"bed_model": "creality_k1se_buildplate_model.stl",
"bed_texture": "creality_k1se_buildplate_texture.svg",
"hotend_model": "",
+ "default_bed_type": "Textured PEI Plate",
"default_materials": "Creality Generic ABS @K1-all;Creality Generic ASA @K1-all;Creality Generic PA-CF @K1-all;Creality Generic PC @K1-all;Creality Generic PETG @K1-all;Creality Generic PLA @K1-all;Creality Generic PLA High Speed @K1-all;Creality Generic PLA Matte @K1-all;Creality Generic PLA Silk @K1-all;Creality Generic PLA-CF @K1-all;Creality Generic TPU @K1-all"
}
diff --git a/resources/profiles/Creality/machine/Creality K1 SE_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K1 SE_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..f218bfeb51
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality K1 SE_CFS-C 0.4 nozzle.json
@@ -0,0 +1,112 @@
+{
+ "type": "machine",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_creality_common",
+ "printer_model": "Creality K1 SE_CFS-C",
+ "auxiliary_fan": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "119",
+ "default_print_profile": "0.20mm Standard @Creality K1 SE_CFS-C 0.4 nozzle",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "101",
+ "extruder_clearance_height_to_rod": "45",
+ "extruder_clearance_radius": "65",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "gcode_flavor": "klipper",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_end_gcode": "END_PRINT",
+ "machine_load_filament_time": "119",
+ "machine_max_acceleration_e": "5000",
+ "machine_max_acceleration_extruding": "20000",
+ "machine_max_acceleration_retracting": "5000",
+ "machine_max_acceleration_travel": "20000",
+ "machine_max_acceleration_x": "20000",
+ "machine_max_acceleration_y": "20000",
+ "machine_max_acceleration_z": "500",
+ "machine_max_jerk_e": "10",
+ "machine_max_jerk_x": "20",
+ "machine_max_jerk_y": "20",
+ "machine_max_jerk_z": "5",
+ "machine_max_speed_e": "100",
+ "machine_max_speed_x": "800",
+ "machine_max_speed_y": "800",
+ "machine_max_speed_z": "30",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_pause_gcode": "PAUSE",
+ "machine_platform_motion_enable": "1",
+ "machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: \n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "nozzle_hrc": "0",
+ "nozzle_type": "hardened_steel",
+ "nozzle_volume": "200",
+ "parking_pos_retraction": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printable_area": "0x0,220x0,220x220,0x220",
+ "printable_height": "250",
+ "printer_technology": "FFF",
+ "printer_variant": "0.4",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "1",
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "0",
+ "support_chamber_temp_control": "0",
+ "support_multi_bed_types": "1",
+ "thumbnails": "96x96,300x300",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "default_filament_profile": [
+ "Creality Generic PLA @K1-all"
+ ],
+ "deretraction_speed": "30",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "max_layer_height": "0.3",
+ "min_layer_height": "0.08",
+ "nozzle_diameter": [
+ "0.4"
+ ],
+ "retract_before_wipe": "0",
+ "retract_length_toolchange": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "249",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_length": "0.8",
+ "retraction_minimum_travel": "1",
+ "retraction_speed": "30",
+ "wipe": "1",
+ "wipe_distance": "2",
+ "z_hop": "0.4",
+ "z_hop_types": "Slope Lift",
+ "name": "Creality K1 SE_CFS-C 0.4 nozzle",
+ "setting_id": "98732"
+}
diff --git a/resources/profiles/Creality/machine/Creality K1 SE_CFS-C.json b/resources/profiles/Creality/machine/Creality K1 SE_CFS-C.json
new file mode 100644
index 0000000000..7c41c72dff
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality K1 SE_CFS-C.json
@@ -0,0 +1,13 @@
+{
+ "type": "machine_model",
+ "name": "Creality K1 SE_CFS-C",
+ "nozzle_diameter": "0.4",
+ "bed_model": "creality_k1se_buildplate_model.stl",
+ "default_bed_type": "Textured PEI Plate",
+ "bed_texture": "creality_k1se_buildplate_texture.svg",
+ "family": "Creality",
+ "hotend_model": "",
+ "machine_tech": "FFF",
+ "model_id": "Creality_K1_SE_CFS_C",
+ "default_materials": "Creality Generic ABS @K1-all;Creality Generic ASA @K1-all;Creality Generic PA-CF @K1-all;Creality Generic PC @K1-all;Creality Generic PETG @K1-all;Creality Generic PLA @K1-all;Creality Generic PLA High Speed @K1-all;Creality Generic PLA Matte @K1-all;Creality Generic PLA Silk @K1-all;Creality Generic PLA-CF @K1-all;Creality Generic TPU @K1-all"
+}
diff --git a/resources/profiles/Creality/machine/Creality K1.json b/resources/profiles/Creality/machine/Creality K1.json
index f1090131c5..4892cfbaca 100644
--- a/resources/profiles/Creality/machine/Creality K1.json
+++ b/resources/profiles/Creality/machine/Creality K1.json
@@ -8,5 +8,6 @@
"bed_model": "creality_k1_buildplate_model.stl",
"bed_texture": "creality_k1_buildplate_texture.svg",
"hotend_model": "",
+ "default_bed_type": "Textured PEI Plate",
"default_materials": "Creality Generic ABS;Creality Generic ASA;Creality Generic PC @K1-all;Creality Generic PLA;Creality HF Generic PLA;Creality HF Generic Speed PLA;Creality Generic PLA High Speed @K1-all;Creality Generic PLA Matte @K1-all;Creality Generic PLA Silk @K1-all;Creality Generic PETG;Creality Generic TPU"
}
diff --git a/resources/profiles/Creality/machine/Creality K1C 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K1C 0.4 nozzle.json
index b82c2ce98c..a736756f5b 100644
--- a/resources/profiles/Creality/machine/Creality K1C 0.4 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality K1C 0.4 nozzle.json
@@ -19,7 +19,7 @@
"0x220"
],
"printable_height": "250",
- "nozzle_type": "hardened_steel",
+ "nozzle_type": "brass",
"auxiliary_fan": "1",
"support_air_filtration": "1",
"support_multi_bed_types": "1",
@@ -36,8 +36,8 @@
"5000"
],
"machine_max_acceleration_travel": [
- "9000",
- "9000"
+ "20000",
+ "20000"
],
"machine_max_acceleration_x": [
"20000",
@@ -48,40 +48,40 @@
"20000"
],
"machine_max_acceleration_z": [
- "500",
- "500"
+ "300",
+ "300"
],
"machine_max_speed_e": [
"100",
"100"
],
"machine_max_speed_x": [
- "800",
- "800"
+ "600",
+ "600"
],
"machine_max_speed_y": [
- "800",
- "800"
+ "600",
+ "600"
],
"machine_max_speed_z": [
+ "10",
+ "10"
+ ],
+ "machine_max_jerk_e": [
+ "10",
+ "10"
+ ],
+ "machine_max_jerk_x": [
"20",
"20"
],
- "machine_max_jerk_e": [
- "2.5",
- "2.5"
- ],
- "machine_max_jerk_x": [
- "12",
- "12"
- ],
"machine_max_jerk_y": [
- "12",
- "12"
+ "20",
+ "20"
],
"machine_max_jerk_z": [
- "2",
- "2"
+ "5",
+ "5"
],
"max_layer_height": [
"0.3"
@@ -91,16 +91,16 @@
],
"printer_settings_id": "Creality",
"retraction_minimum_travel": [
- "2"
+ "1"
],
"retract_before_wipe": [
- "0%"
+ "70%"
],
"retraction_length": [
- "0.6"
+ "0.8"
],
"retract_length_toolchange": [
- "1"
+ "0"
],
"retraction_speed": [
"40"
@@ -110,25 +110,79 @@
],
"extruder_clearance_height_to_lid": "101",
"extruder_clearance_height_to_rod": "45",
- "extruder_clearance_radius": "45",
+ "extruder_clearance_radius": "65",
"z_hop": [
- "0.2"
+ "0.4"
],
"wipe_distance": [
"2"
],
"single_extruder_multi_material": "1",
- "manual_filament_change": "1",
- "change_filament_gcode": "PAUSE",
+ "manual_filament_change": "0",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X42 Y180 F30000\nG1 Z{z_after_toolchange} F600",
"machine_pause_gcode": "PAUSE",
"default_filament_profile": [
"Creality Generic PLA @K1-all"
],
- "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]",
+ "machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
- "100x100",
- "320x320"
- ]
+ "96x96",
+ "300x300"
+ ],
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "color_bed_exclude_area": "0x215,220x215,220x220,0x220",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "119",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "extra_loading_move": "0",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_load_filament_time": "119",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "machine_unload_filament_time": "0",
+ "nozzle_hrc": "0",
+ "nozzle_volume": "200",
+ "parking_pos_retraction": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printer_technology": "FFF",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "silent_mode": "0",
+ "support_chamber_temp_control": "0",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "249",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "wipe": "1",
+ "z_hop_types": "Auto Lift"
}
diff --git a/resources/profiles/Creality/machine/Creality K1C 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality K1C 0.6 nozzle.json
index 0aff4116eb..c9e1ec313e 100644
--- a/resources/profiles/Creality/machine/Creality K1C 0.6 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality K1C 0.6 nozzle.json
@@ -19,7 +19,7 @@
"0x220"
],
"printable_height": "250",
- "nozzle_type": "hardened_steel",
+ "nozzle_type": "brass",
"auxiliary_fan": "1",
"support_air_filtration": "1",
"support_multi_bed_types": "1",
@@ -36,8 +36,8 @@
"5000"
],
"machine_max_acceleration_travel": [
- "9000",
- "9000"
+ "20000",
+ "20000"
],
"machine_max_acceleration_x": [
"20000",
@@ -48,87 +48,149 @@
"20000"
],
"machine_max_acceleration_z": [
- "500",
- "500"
+ "300",
+ "300"
],
"machine_max_speed_e": [
"100",
"100"
],
"machine_max_speed_x": [
- "1000",
- "1000"
+ "600",
+ "600"
],
"machine_max_speed_y": [
- "1000",
- "1000"
+ "600",
+ "600"
],
"machine_max_speed_z": [
- "30",
- "30"
+ "10",
+ "10"
],
"machine_max_jerk_e": [
- "2.5",
- "2.5"
+ "10",
+ "10"
],
"machine_max_jerk_x": [
- "12",
- "12"
+ "20",
+ "20"
],
"machine_max_jerk_y": [
- "12",
- "12"
+ "20",
+ "20"
],
"machine_max_jerk_z": [
- "2",
- "2"
+ "5",
+ "5"
],
"max_layer_height": [
- "0.4"
+ "0.42"
],
"min_layer_height": [
- "0.08"
+ "0.12"
],
"printer_settings_id": "Creality",
"retraction_minimum_travel": [
"2"
],
"retract_before_wipe": [
- "0%"
+ "90%"
],
"retraction_length": [
- "0.5"
+ "1.5"
],
"retract_length_toolchange": [
"1"
],
"retraction_speed": [
- "40"
+ "30"
],
"deretraction_speed": [
- "40"
+ "30"
],
"extruder_clearance_height_to_lid": "101",
"extruder_clearance_height_to_rod": "45",
- "extruder_clearance_radius": "45",
+ "extruder_clearance_radius": "65",
"z_hop": [
- "0.2"
+ "0.4"
],
"wipe_distance": [
"2"
],
"single_extruder_multi_material": "1",
- "manual_filament_change": "1",
- "change_filament_gcode": "PAUSE",
+ "manual_filament_change": "0",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X42 Y180 F30000\nG1 Z{z_after_toolchange} F600",
"machine_pause_gcode": "PAUSE",
"default_filament_profile": [
"Creality Generic PLA @K1-all"
],
- "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]",
+ "machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
- "100x100",
- "320x320"
- ]
+ "96x96/PNG",
+ "300x300/PNG"
+ ],
+ "adaptive_bed_mesh_margin": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "color_bed_exclude_area": "0x215,220x215,220x220,0x220",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "119",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "enable_long_retraction_when_cut": "0",
+ "extra_loading_move": "0",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_load_filament_time": "119",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_volume": "200",
+ "parking_pos_retraction": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printer_technology": "FFF",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "silent_mode": "0",
+ "support_chamber_temp_control": "0",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "long_retractions_when_cut": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "249",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_distances_when_cut": "18",
+ "travel_slope": "3",
+ "wipe": "1",
+ "z_hop_types": "Slope Lift"
}
diff --git a/resources/profiles/Creality/machine/Creality K1C 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality K1C 0.8 nozzle.json
index 5cfa730d03..ab67b5acf3 100644
--- a/resources/profiles/Creality/machine/Creality K1C 0.8 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality K1C 0.8 nozzle.json
@@ -19,7 +19,7 @@
"0x220"
],
"printable_height": "250",
- "nozzle_type": "hardened_steel",
+ "nozzle_type": "brass",
"auxiliary_fan": "1",
"support_air_filtration": "1",
"support_multi_bed_types": "1",
@@ -36,8 +36,8 @@
"5000"
],
"machine_max_acceleration_travel": [
- "9000",
- "9000"
+ "20000",
+ "20000"
],
"machine_max_acceleration_x": [
"20000",
@@ -48,43 +48,43 @@
"20000"
],
"machine_max_acceleration_z": [
- "500",
- "500"
+ "300",
+ "300"
],
"machine_max_speed_e": [
"100",
"100"
],
"machine_max_speed_x": [
- "1000",
- "1000"
+ "600",
+ "600"
],
"machine_max_speed_y": [
- "1000",
- "1000"
+ "600",
+ "600"
],
"machine_max_speed_z": [
- "30",
- "30"
+ "10",
+ "10"
],
"machine_max_jerk_e": [
- "2.5",
- "2.5"
+ "10",
+ "10"
],
"machine_max_jerk_x": [
- "12",
- "12"
+ "20",
+ "20"
],
"machine_max_jerk_y": [
- "12",
- "12"
+ "20",
+ "20"
],
"machine_max_jerk_z": [
- "2",
- "2"
+ "5",
+ "5"
],
"max_layer_height": [
- "0.5"
+ "0.56"
],
"min_layer_height": [
"0.16"
@@ -94,41 +94,103 @@
"2"
],
"retract_before_wipe": [
- "0%"
+ "90%"
],
"retraction_length": [
- "0.5"
+ "2"
],
"retract_length_toolchange": [
"1"
],
"retraction_speed": [
- "40"
+ "30"
],
"deretraction_speed": [
- "40"
+ "30"
],
"extruder_clearance_height_to_lid": "101",
"extruder_clearance_height_to_rod": "45",
- "extruder_clearance_radius": "45",
+ "extruder_clearance_radius": "65",
"z_hop": [
- "0.2"
+ "0.4"
],
"wipe_distance": [
"2"
],
"single_extruder_multi_material": "1",
- "manual_filament_change": "1",
- "change_filament_gcode": "PAUSE",
+ "manual_filament_change": "0",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X42 Y180 F30000\nG1 Z{z_after_toolchange} F600",
"machine_pause_gcode": "PAUSE",
"default_filament_profile": [
"Creality Generic PLA @K1-all"
],
- "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]",
+ "machine_start_gcode": "START_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM204 S2000\nM104 S[nozzle_temperature_initial_layer]\nG1 Z3 F600\nM83\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"scan_first_layer": "0",
"thumbnails": [
- "100x100",
- "320x320"
- ]
+ "96x96/PNG",
+ "300x300/PNG"
+ ],
+ "adaptive_bed_mesh_margin": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "color_bed_exclude_area": "0x215,220x215,220x220,0x220",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "119",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "enable_long_retraction_when_cut": "0",
+ "extra_loading_move": "0",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_load_filament_time": "119",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_volume": "200",
+ "parking_pos_retraction": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printer_technology": "FFF",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "silent_mode": "0",
+ "support_chamber_temp_control": "0",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "long_retractions_when_cut": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "249",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_distances_when_cut": "18",
+ "travel_slope": "3",
+ "wipe": "1",
+ "z_hop_types": "Slope Lift"
}
diff --git a/resources/profiles/Creality/machine/Creality K1C.json b/resources/profiles/Creality/machine/Creality K1C.json
index 55c1af0a6d..7db363a7d7 100644
--- a/resources/profiles/Creality/machine/Creality K1C.json
+++ b/resources/profiles/Creality/machine/Creality K1C.json
@@ -8,5 +8,6 @@
"bed_model": "creality_k1c_buildplate_model.stl",
"bed_texture": "creality_k1c_buildplate_texture.svg",
"hotend_model": "",
+ "default_bed_type": "Textured PEI Plate",
"default_materials": "Creality Generic ABS @K1-all;Creality Generic ASA @K1-all;Creality Generic PA-CF @K1-all;Creality Generic PC @K1-all;Creality Generic PETG @K1-all;Creality Generic PLA @K1-all;Creality Generic PLA High Speed @K1-all;Creality Generic PLA Matte @K1-all;Creality Generic PLA Silk @K1-all;Creality Generic PLA-CF @K1-all;Creality Generic TPU @K1-all"
}
diff --git a/resources/profiles/Creality/machine/Creality K1C_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K1C_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..3c050f0172
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality K1C_CFS-C 0.4 nozzle.json
@@ -0,0 +1,113 @@
+{
+ "type": "machine",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_creality_common",
+ "printer_model": "Creality K1C_CFS-C",
+ "auxiliary_fan": "1",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "119",
+ "default_print_profile": "0.20mm Standard @Creality K1C_CFS-C 0.4 nozzle",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "101",
+ "extruder_clearance_height_to_rod": "45",
+ "extruder_clearance_radius": "65",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "gcode_flavor": "klipper",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_end_gcode": "END_PRINT",
+ "machine_load_filament_time": "119",
+ "machine_max_acceleration_e": "5000",
+ "machine_max_acceleration_extruding": "20000",
+ "machine_max_acceleration_retracting": "5000",
+ "machine_max_acceleration_travel": "20000",
+ "machine_max_acceleration_x": "20000",
+ "machine_max_acceleration_y": "20000",
+ "machine_max_acceleration_z": "300",
+ "machine_max_jerk_e": "10",
+ "machine_max_jerk_x": "20",
+ "machine_max_jerk_y": "20",
+ "machine_max_jerk_z": "5",
+ "machine_max_speed_e": "100",
+ "machine_max_speed_x": "600",
+ "machine_max_speed_y": "600",
+ "machine_max_speed_z": "10",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_pause_gcode": "PAUSE",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: \n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "nozzle_hrc": "0",
+ "nozzle_type": "brass",
+ "nozzle_volume": "200",
+ "parking_pos_retraction": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printable_area": "0x0,220x0,220x220,0x220",
+ "printable_height": "250",
+ "printer_technology": "FFF",
+ "printer_variant": "0.4",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "1",
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "1",
+ "support_chamber_temp_control": "0",
+ "support_multi_bed_types": "1",
+ "thumbnails": "96x96,300x300",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "default_filament_profile": [
+ "Creality Generic PLA @K1-all"
+ ],
+ "deretraction_speed": "40",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "max_layer_height": "0.3",
+ "min_layer_height": "0.08",
+ "nozzle_diameter": [
+ "0.4"
+ ],
+ "retract_before_wipe": "70%",
+ "retract_length_toolchange": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "249",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_length": "0.8",
+ "retraction_minimum_travel": "1",
+ "retraction_speed": "40",
+ "wipe": "1",
+ "wipe_distance": "2",
+ "z_hop": "0.4",
+ "z_hop_types": "Auto Lift",
+ "name": "Creality K1C_CFS-C 0.4 nozzle",
+ "setting_id": "73280"
+}
diff --git a/resources/profiles/Creality/machine/Creality K1C_CFS-C.json b/resources/profiles/Creality/machine/Creality K1C_CFS-C.json
new file mode 100644
index 0000000000..9cf7839332
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality K1C_CFS-C.json
@@ -0,0 +1,13 @@
+{
+ "type": "machine_model",
+ "name": "Creality K1C_CFS-C",
+ "nozzle_diameter": "0.4",
+ "bed_model": "creality_k1c_buildplate_model.stl",
+ "default_bed_type": "Textured PEI Plate",
+ "bed_texture": "creality_k1c_buildplate_texture.svg",
+ "family": "Creality",
+ "hotend_model": "",
+ "machine_tech": "FFF",
+ "model_id": "Creality_K1C_CFS_C",
+ "default_materials": "Creality Generic ABS @K1-all;Creality Generic ASA @K1-all;Creality Generic PA-CF @K1-all;Creality Generic PC @K1-all;Creality Generic PETG @K1-all;Creality Generic PLA @K1-all;Creality Generic PLA High Speed @K1-all;Creality Generic PLA Matte @K1-all;Creality Generic PLA Silk @K1-all;Creality Generic PLA-CF @K1-all;Creality Generic TPU @K1-all"
+}
diff --git a/resources/profiles/Creality/machine/Creality K1_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K1_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..24329d6cec
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality K1_CFS-C 0.4 nozzle.json
@@ -0,0 +1,113 @@
+{
+ "type": "machine",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_creality_common",
+ "printer_model": "Creality K1_CFS-C",
+ "auxiliary_fan": "1",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "119",
+ "default_print_profile": "0.20mm Standard @Creality K1_CFS-C 0.4 nozzle",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "101",
+ "extruder_clearance_height_to_rod": "45",
+ "extruder_clearance_radius": "65",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "gcode_flavor": "klipper",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_end_gcode": "END_PRINT",
+ "machine_load_filament_time": "119",
+ "machine_max_acceleration_e": "5000",
+ "machine_max_acceleration_extruding": "20000",
+ "machine_max_acceleration_retracting": "5000",
+ "machine_max_acceleration_travel": "20000",
+ "machine_max_acceleration_x": "20000",
+ "machine_max_acceleration_y": "20000",
+ "machine_max_acceleration_z": "300",
+ "machine_max_jerk_e": "10",
+ "machine_max_jerk_x": "20",
+ "machine_max_jerk_y": "20",
+ "machine_max_jerk_z": "5",
+ "machine_max_speed_e": "100",
+ "machine_max_speed_x": "800",
+ "machine_max_speed_y": "800",
+ "machine_max_speed_z": "20",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_pause_gcode": "PAUSE",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: \n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "nozzle_hrc": "0",
+ "nozzle_type": "brass",
+ "nozzle_volume": "200",
+ "parking_pos_retraction": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printable_area": "0x0,220x0,220x220,0x220",
+ "printable_height": "250",
+ "printer_technology": "FFF",
+ "printer_variant": "0.4",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "1",
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "1",
+ "support_chamber_temp_control": "0",
+ "support_multi_bed_types": "1",
+ "thumbnails": "96x96,300x300",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "default_filament_profile": [
+ "Creality Generic PLA @K1-all"
+ ],
+ "deretraction_speed": "40",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "max_layer_height": "0.3",
+ "min_layer_height": "0.08",
+ "nozzle_diameter": [
+ "0.4"
+ ],
+ "retract_before_wipe": "70%",
+ "retract_length_toolchange": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "249",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_length": "0.8",
+ "retraction_minimum_travel": "1",
+ "retraction_speed": "40",
+ "wipe": "1",
+ "wipe_distance": "2",
+ "z_hop": "0.4",
+ "z_hop_types": "Auto Lift",
+ "name": "Creality K1_CFS-C 0.4 nozzle",
+ "setting_id": "62995"
+}
diff --git a/resources/profiles/Creality/machine/Creality K1_CFS-C.json b/resources/profiles/Creality/machine/Creality K1_CFS-C.json
new file mode 100644
index 0000000000..268a48e994
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality K1_CFS-C.json
@@ -0,0 +1,13 @@
+{
+ "type": "machine_model",
+ "name": "Creality K1_CFS-C",
+ "nozzle_diameter": "0.4",
+ "bed_model": "creality_k1_buildplate_model.stl",
+ "default_bed_type": "Textured PEI Plate",
+ "bed_texture": "creality_k1_buildplate_texture.svg",
+ "family": "Creality",
+ "hotend_model": "",
+ "machine_tech": "FFF",
+ "model_id": "Creality_K1_CFS_C",
+ "default_materials": "Creality Generic ABS;Creality Generic ASA;Creality Generic PC @K1-all;Creality Generic PLA;Creality HF Generic PLA;Creality HF Generic Speed PLA;Creality Generic PLA High Speed @K1-all;Creality Generic PLA Matte @K1-all;Creality Generic PLA Silk @K1-all;Creality Generic PETG;Creality Generic TPU"
+}
diff --git a/resources/profiles/Creality/machine/Creality K2 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality K2 0.2 nozzle.json
index 66ebd4864d..6652e9eab0 100644
--- a/resources/profiles/Creality/machine/Creality K2 0.2 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality K2 0.2 nozzle.json
@@ -22,6 +22,8 @@
"fan_speedup_overhangs": "1",
"fan_speedup_time": "0",
"gcode_flavor": "klipper",
+ "host_type": "crealityprint",
+ "printer_agent": "crealityprint",
"high_current_on_filament_swap": "0",
"machine_end_gcode": "END_PRINT",
"machine_load_filament_time": "0",
@@ -103,7 +105,7 @@
"printer_technology": "FFF",
"printer_variant": "0.2",
"printhost_authorization_type": "key",
- "purge_in_prime_tower": "0",
+ "purge_in_prime_tower": "1",
"scan_first_layer": "0",
"silent_mode": "0",
"single_extruder_multi_material": "1",
diff --git a/resources/profiles/Creality/machine/Creality K2 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K2 0.4 nozzle.json
index 324655c5ba..33083cfd29 100644
--- a/resources/profiles/Creality/machine/Creality K2 0.4 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality K2 0.4 nozzle.json
@@ -8,10 +8,10 @@
"printer_settings_id": "Creality",
"auxiliary_fan": "1",
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
- "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y140 F30000\nG1 Z{z_after_toolchange} F600",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{if print_sequence == \"by object\"}\nG0 Z{max_layer_z + 0.8} F900\n{endif}\nG1 X0 Y140 F30000\nG1 Z{z_after_toolchange} F600",
"cooling_tube_length": "0",
"cooling_tube_retraction": "0",
- "default_print_profile": "0.16mm Standard @Creality K2 0.4 nozzle",
+ "default_print_profile": "0.20mm Standard @Creality K2 0.4 nozzle",
"emit_machine_limits_to_gcode": "1",
"enable_filament_ramming": "0",
"extra_loading_move": "0",
@@ -23,8 +23,8 @@
"fan_speedup_time": "0",
"gcode_flavor": "klipper",
"high_current_on_filament_swap": "0",
- "machine_end_gcode": "END_PRINT",
- "machine_load_filament_time": "0",
+ "machine_end_gcode": "{if print_sequence == \"by object\"}\nG91\nG1 X2 Y2 Z1 F24000\nG90\nG1 Z{max_layer_z+2} F600\n{endif}\nEND_PRINT",
+ "machine_load_filament_time": "86",
"machine_max_acceleration_e": [
"5000",
"5000"
@@ -86,7 +86,7 @@
"5"
],
"machine_pause_gcode": "PAUSE",
- "machine_start_gcode": ";SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y130 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y130 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X130 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
+ "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
"machine_unload_filament_time": "0",
"manual_filament_change": "0",
"nozzle_type": "hardened_steel",
@@ -103,16 +103,16 @@
"printer_technology": "FFF",
"printer_variant": "0.4",
"printhost_authorization_type": "key",
- "purge_in_prime_tower": "0",
+ "purge_in_prime_tower": "1",
"scan_first_layer": "0",
"silent_mode": "0",
"single_extruder_multi_material": "1",
"support_air_filtration": "1",
- "support_chamber_temp_control": "1",
+ "support_chamber_temp_control": "0",
"support_multi_bed_types": "1",
"thumbnails": [
- "300x300",
- "96x96"
+ "96x96",
+ "300x300"
],
"thumbnails_format": "PNG",
"use_firmware_retraction": "0",
@@ -140,7 +140,7 @@
"0.4"
],
"retract_before_wipe": [
- "70%"
+ "70"
],
"retract_length_toolchange": [
"0"
@@ -178,5 +178,30 @@
"z_hop": [
"0.4"
],
- "name": "Creality K2 0.4 nozzle"
+ "name": "Creality K2 0.4 nozzle",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "best_object_pos": "0.5,0.5",
+ "creality_flush_time": "86",
+ "disable_m73": "0",
+ "enable_long_retraction_when_cut": "2",
+ "host_type": "crealityprint",
+ "printer_agent": "crealityprint",
+ "machine_LED_light_exist": "1",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "nozzle_hrc": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printhost_ssl_ignore_revoke": "0",
+ "time_cost": "0",
+ "long_retractions_when_cut": "1",
+ "retract_lift_enforce": "All Surfaces",
+ "retraction_distances_when_cut": "30",
+ "z_hop_types": "Auto Lift",
+ "setting_id": "91520"
}
diff --git a/resources/profiles/Creality/machine/Creality K2 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality K2 0.6 nozzle.json
index 3d9b7cb17b..da3501a1fd 100644
--- a/resources/profiles/Creality/machine/Creality K2 0.6 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality K2 0.6 nozzle.json
@@ -8,7 +8,7 @@
"printer_settings_id": "Creality",
"auxiliary_fan": "1",
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
- "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y140 F30000\nG1 Z{z_after_toolchange} F600",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{if print_sequence == \"by object\"}\nG0 Z{max_layer_z + 0.8} F900\n{endif}\nG1 X0 Y140 F30000\nG1 Z{z_after_toolchange} F600",
"cooling_tube_length": "0",
"cooling_tube_retraction": "0",
"default_print_profile": "0.30mm Standard @Creality K2 0.6 nozzle",
@@ -23,8 +23,8 @@
"fan_speedup_time": "0",
"gcode_flavor": "klipper",
"high_current_on_filament_swap": "0",
- "machine_end_gcode": "END_PRINT",
- "machine_load_filament_time": "0",
+ "machine_end_gcode": "{if print_sequence == \"by object\"}\nG91\nG1 X2 Y2 Z1 F24000\nG90\nG1 Z{max_layer_z+2} F600\n{endif}\nEND_PRINT",
+ "machine_load_filament_time": "86",
"machine_max_acceleration_e": [
"5000",
"5000"
@@ -86,7 +86,7 @@
"5"
],
"machine_pause_gcode": "PAUSE",
- "machine_start_gcode": ";SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y130 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y130 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X130 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
+ "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
"machine_unload_filament_time": "0",
"manual_filament_change": "0",
"nozzle_type": "hardened_steel",
@@ -103,16 +103,16 @@
"printer_technology": "FFF",
"printer_variant": "0.6",
"printhost_authorization_type": "key",
- "purge_in_prime_tower": "0",
+ "purge_in_prime_tower": "1",
"scan_first_layer": "0",
"silent_mode": "0",
"single_extruder_multi_material": "1",
"support_air_filtration": "1",
- "support_chamber_temp_control": "1",
+ "support_chamber_temp_control": "0",
"support_multi_bed_types": "1",
"thumbnails": [
- "300x300",
- "96x96"
+ "96x96/PNG",
+ "300x300/PNG"
],
"thumbnails_format": "PNG",
"use_firmware_retraction": "0",
@@ -122,7 +122,7 @@
"Creality Generic PLA @K2-all"
],
"deretraction_speed": [
- "40"
+ "30"
],
"extruder_colour": [
"#FCE94F"
@@ -140,7 +140,7 @@
"0.6"
],
"retract_before_wipe": [
- "70%"
+ "90%"
],
"retract_length_toolchange": [
"0"
@@ -164,10 +164,10 @@
"1.5"
],
"retraction_minimum_travel": [
- "1"
+ "2"
],
"retraction_speed": [
- "40"
+ "30"
],
"wipe": [
"1"
@@ -178,5 +178,34 @@
"z_hop": [
"0.4"
],
- "name": "Creality K2 0.6 nozzle"
+ "name": "Creality K2 0.6 nozzle",
+ "adaptive_bed_mesh_margin": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "best_object_pos": "0.5,0.5",
+ "creality_flush_time": "86",
+ "disable_m73": "0",
+ "enable_long_retraction_when_cut": "0",
+ "host_type": "crealityprint",
+ "printer_agent": "crealityprint",
+ "machine_LED_light_exist": "1",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "machine_tool_change_time": "0",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "pellet_modded_printer": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printhost_ssl_ignore_revoke": "0",
+ "time_cost": "0",
+ "long_retractions_when_cut": "0",
+ "retract_lift_enforce": "All Surfaces",
+ "retraction_distances_when_cut": "18",
+ "travel_slope": "3",
+ "z_hop_types": "Slope Lift"
}
diff --git a/resources/profiles/Creality/machine/Creality K2 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality K2 0.8 nozzle.json
index 9a1725b989..cb89d24692 100644
--- a/resources/profiles/Creality/machine/Creality K2 0.8 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality K2 0.8 nozzle.json
@@ -8,7 +8,7 @@
"printer_settings_id": "Creality",
"auxiliary_fan": "1",
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
- "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y140 F30000\nG1 Z{z_after_toolchange} F600",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{if print_sequence == \"by object\"}\nG0 Z{max_layer_z + 0.8} F900\n{endif}\nG1 X0 Y140 F30000\nG1 Z{z_after_toolchange} F600",
"cooling_tube_length": "0",
"cooling_tube_retraction": "0",
"default_print_profile": "0.40mm Standard @Creality K2 0.8 nozzle",
@@ -23,8 +23,8 @@
"fan_speedup_time": "0",
"gcode_flavor": "klipper",
"high_current_on_filament_swap": "0",
- "machine_end_gcode": "END_PRINT",
- "machine_load_filament_time": "0",
+ "machine_end_gcode": "{if print_sequence == \"by object\"}\nG91\nG1 X2 Y2 Z1 F24000\nG90\nG1 Z{max_layer_z+2} F600\n{endif}\nEND_PRINT",
+ "machine_load_filament_time": "86",
"machine_max_acceleration_e": [
"5000",
"5000"
@@ -86,7 +86,7 @@
"5"
],
"machine_pause_gcode": "PAUSE",
- "machine_start_gcode": ";SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y130 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y130 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X130 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
+ "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
"machine_unload_filament_time": "0",
"manual_filament_change": "0",
"nozzle_type": "hardened_steel",
@@ -103,16 +103,16 @@
"printer_technology": "FFF",
"printer_variant": "0.8",
"printhost_authorization_type": "key",
- "purge_in_prime_tower": "0",
+ "purge_in_prime_tower": "1",
"scan_first_layer": "0",
"silent_mode": "0",
"single_extruder_multi_material": "1",
"support_air_filtration": "1",
- "support_chamber_temp_control": "1",
+ "support_chamber_temp_control": "0",
"support_multi_bed_types": "1",
"thumbnails": [
- "300x300",
- "96x96"
+ "96x96/PNG",
+ "300x300/PNG"
],
"thumbnails_format": "PNG",
"use_firmware_retraction": "0",
@@ -122,7 +122,7 @@
"Creality Generic PLA @K2-all"
],
"deretraction_speed": [
- "40"
+ "30"
],
"extruder_colour": [
"#FCE94F"
@@ -140,7 +140,7 @@
"0.8"
],
"retract_before_wipe": [
- "70%"
+ "90%"
],
"retract_length_toolchange": [
"0"
@@ -161,13 +161,13 @@
"1"
],
"retraction_length": [
- "3"
+ "2"
],
"retraction_minimum_travel": [
- "1"
+ "2"
],
"retraction_speed": [
- "40"
+ "30"
],
"wipe": [
"1"
@@ -178,5 +178,34 @@
"z_hop": [
"0.4"
],
- "name": "Creality K2 0.8 nozzle"
+ "name": "Creality K2 0.8 nozzle",
+ "adaptive_bed_mesh_margin": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "best_object_pos": "0.5,0.5",
+ "creality_flush_time": "86",
+ "disable_m73": "0",
+ "enable_long_retraction_when_cut": "0",
+ "host_type": "crealityprint",
+ "printer_agent": "crealityprint",
+ "machine_LED_light_exist": "1",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "machine_tool_change_time": "0",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "pellet_modded_printer": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printhost_ssl_ignore_revoke": "0",
+ "time_cost": "0",
+ "long_retractions_when_cut": "0",
+ "retract_lift_enforce": "All Surfaces",
+ "retraction_distances_when_cut": "18",
+ "travel_slope": "3",
+ "z_hop_types": "Slope Lift"
}
diff --git a/resources/profiles/Creality/machine/Creality K2 Plus 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality K2 Plus 0.2 nozzle.json
index eb4441a797..8f7d6b1bc6 100644
--- a/resources/profiles/Creality/machine/Creality K2 Plus 0.2 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality K2 Plus 0.2 nozzle.json
@@ -7,6 +7,8 @@
"instantiation": "true",
"printer_model": "Creality K2 Plus",
"gcode_flavor": "klipper",
+ "host_type": "crealityprint",
+ "printer_agent": "crealityprint",
"default_print_profile": "0.14mm Optimal @Creality K2 Plus 0.2 nozzle",
"nozzle_diameter": [
"0.2"
@@ -50,12 +52,12 @@
"30000"
],
"machine_max_acceleration_z": [
- "5000",
- "5000"
+ "1000",
+ "1000"
],
"machine_max_speed_e": [
- "50",
- "50"
+ "10",
+ "10"
],
"machine_max_speed_x": [
"800",
@@ -66,24 +68,24 @@
"800"
],
"machine_max_speed_z": [
- "10",
- "10"
+ "30",
+ "30"
],
"machine_max_jerk_e": [
"10",
"10"
],
"machine_max_jerk_x": [
- "20",
- "20"
+ "300",
+ "300"
],
"machine_max_jerk_y": [
- "20",
- "20"
+ "300",
+ "300"
],
"machine_max_jerk_z": [
- "5",
- "5"
+ "30",
+ "30"
],
"max_layer_height": [
"0.3"
@@ -102,7 +104,7 @@
"0.5"
],
"retract_length_toolchange": [
- "0"
+ "2"
],
"retraction_speed": [
"40"
@@ -129,14 +131,14 @@
"0.4"
],
"wipe_distance": [
- "1"
+ "2"
],
"single_extruder_multi_material": "1",
"manual_filament_change": "0",
"default_filament_profile": [
"Creality Generic PLA @K2-all"
],
- "machine_start_gcode": ";SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
+ "machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: \n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"machine_pause_gcode": "PAUSE",
"change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
@@ -146,5 +148,7 @@
"thumbnails": [
"300x300",
"96x96"
- ]
+ ],
+ "machine_unload_filament_time": "28",
+ "machine_load_filament_time": "26"
}
diff --git a/resources/profiles/Creality/machine/Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K2 Plus 0.4 nozzle.json
index d1ff209b29..848aefa4db 100644
--- a/resources/profiles/Creality/machine/Creality K2 Plus 0.4 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality K2 Plus 0.4 nozzle.json
@@ -7,6 +7,8 @@
"instantiation": "true",
"printer_model": "Creality K2 Plus",
"gcode_flavor": "klipper",
+ "host_type": "crealityprint",
+ "printer_agent": "crealityprint",
"default_print_profile": "0.16mm Optimal @Creality K2 Plus 0.4 nozzle",
"nozzle_diameter": [
"0.4"
@@ -50,12 +52,12 @@
"30000"
],
"machine_max_acceleration_z": [
- "5000",
- "5000"
+ "1000",
+ "1000"
],
"machine_max_speed_e": [
- "50",
- "50"
+ "10",
+ "10"
],
"machine_max_speed_x": [
"800",
@@ -66,24 +68,24 @@
"800"
],
"machine_max_speed_z": [
- "10",
- "10"
+ "30",
+ "30"
],
"machine_max_jerk_e": [
"10",
"10"
],
"machine_max_jerk_x": [
- "20",
- "20"
+ "300",
+ "300"
],
"machine_max_jerk_y": [
- "20",
- "20"
+ "300",
+ "300"
],
"machine_max_jerk_z": [
- "5",
- "5"
+ "30",
+ "30"
],
"max_layer_height": [
"0.3"
@@ -102,7 +104,7 @@
"0.8"
],
"retract_length_toolchange": [
- "0"
+ "2"
],
"retraction_speed": [
"40"
@@ -136,7 +138,7 @@
"default_filament_profile": [
"Creality Generic PLA @K2-all"
],
- "machine_start_gcode": ";SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
+ "machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: \n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"machine_pause_gcode": "PAUSE",
"change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
@@ -146,5 +148,7 @@
"thumbnails": [
"300x300",
"96x96"
- ]
+ ],
+ "machine_unload_filament_time": "28",
+ "machine_load_filament_time": "26"
}
diff --git a/resources/profiles/Creality/machine/Creality K2 Plus 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality K2 Plus 0.6 nozzle.json
index 5b1373c4eb..6592a240eb 100644
--- a/resources/profiles/Creality/machine/Creality K2 Plus 0.6 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality K2 Plus 0.6 nozzle.json
@@ -7,6 +7,8 @@
"instantiation": "true",
"printer_model": "Creality K2 Plus",
"gcode_flavor": "klipper",
+ "host_type": "crealityprint",
+ "printer_agent": "crealityprint",
"default_print_profile": "0.24mm Optimal @Creality K2 Plus 0.6 nozzle",
"nozzle_diameter": [
"0.6"
@@ -50,12 +52,12 @@
"30000"
],
"machine_max_acceleration_z": [
- "5000",
- "5000"
+ "1000",
+ "1000"
],
"machine_max_speed_e": [
- "50",
- "50"
+ "10",
+ "10"
],
"machine_max_speed_x": [
"800",
@@ -66,24 +68,24 @@
"800"
],
"machine_max_speed_z": [
- "10",
- "10"
+ "30",
+ "30"
],
"machine_max_jerk_e": [
"10",
"10"
],
"machine_max_jerk_x": [
- "20",
- "20"
+ "300",
+ "300"
],
"machine_max_jerk_y": [
- "20",
- "20"
+ "300",
+ "300"
],
"machine_max_jerk_z": [
- "5",
- "5"
+ "30",
+ "30"
],
"max_layer_height": [
"0.42"
@@ -99,10 +101,10 @@
"70%"
],
"retraction_length": [
- "0.5"
+ "1.5"
],
"retract_length_toolchange": [
- "0"
+ "2"
],
"retraction_speed": [
"40"
@@ -129,14 +131,14 @@
"0.4"
],
"wipe_distance": [
- "1"
+ "2"
],
"single_extruder_multi_material": "1",
"manual_filament_change": "0",
"default_filament_profile": [
"Creality Generic PLA @K2-all"
],
- "machine_start_gcode": ";SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
+ "machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: \n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"machine_pause_gcode": "PAUSE",
"change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
@@ -146,5 +148,7 @@
"thumbnails": [
"300x300",
"96x96"
- ]
+ ],
+ "machine_unload_filament_time": "28",
+ "machine_load_filament_time": "26"
}
diff --git a/resources/profiles/Creality/machine/Creality K2 Plus 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality K2 Plus 0.8 nozzle.json
index f058cc8ccf..96ed049880 100644
--- a/resources/profiles/Creality/machine/Creality K2 Plus 0.8 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality K2 Plus 0.8 nozzle.json
@@ -7,6 +7,8 @@
"instantiation": "true",
"printer_model": "Creality K2 Plus",
"gcode_flavor": "klipper",
+ "host_type": "crealityprint",
+ "printer_agent": "crealityprint",
"default_print_profile": "0.32mm Optimal @Creality K2 Plus 0.8 nozzle",
"nozzle_diameter": [
"0.8"
@@ -50,12 +52,12 @@
"30000"
],
"machine_max_acceleration_z": [
- "5000",
- "5000"
+ "1000",
+ "1000"
],
"machine_max_speed_e": [
- "50",
- "50"
+ "10",
+ "10"
],
"machine_max_speed_x": [
"800",
@@ -66,24 +68,24 @@
"800"
],
"machine_max_speed_z": [
- "10",
- "10"
+ "30",
+ "30"
],
"machine_max_jerk_e": [
"10",
"10"
],
"machine_max_jerk_x": [
- "20",
- "20"
+ "300",
+ "300"
],
"machine_max_jerk_y": [
- "20",
- "20"
+ "300",
+ "300"
],
"machine_max_jerk_z": [
- "5",
- "5"
+ "30",
+ "30"
],
"max_layer_height": [
"0.56"
@@ -99,10 +101,10 @@
"70%"
],
"retraction_length": [
- "0.5"
+ "3"
],
"retract_length_toolchange": [
- "0"
+ "2"
],
"retraction_speed": [
"40"
@@ -129,14 +131,14 @@
"0.4"
],
"wipe_distance": [
- "1"
+ "2"
],
"single_extruder_multi_material": "1",
"manual_filament_change": "0",
"default_filament_profile": [
"Creality Generic PLA @K2-all"
],
- "machine_start_gcode": ";SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
+ "machine_start_gcode": "; HEADER_BLOCK_START\n; generated by Creality_Print V7.0.1.4212 on [year]-[month]-[day] at [hour]:[minute]:[second]\n; total layer number: [total_layer_count]\n; creality_uuid: \n; HEADER_BLOCK_END\n; SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM109 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 X0 Y0 E15 F6000\nG1 X150 Y0 E15 F6000\nG92 E0\nG1 Z1 F600",
"machine_end_gcode": "END_PRINT",
"machine_pause_gcode": "PAUSE",
"change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
@@ -146,5 +148,7 @@
"thumbnails": [
"300x300",
"96x96"
- ]
+ ],
+ "machine_unload_filament_time": "28",
+ "machine_load_filament_time": "26"
}
diff --git a/resources/profiles/Creality/machine/Creality K2 Plus.json b/resources/profiles/Creality/machine/Creality K2 Plus.json
index 707e150841..68cde06cfe 100644
--- a/resources/profiles/Creality/machine/Creality K2 Plus.json
+++ b/resources/profiles/Creality/machine/Creality K2 Plus.json
@@ -8,5 +8,6 @@
"bed_model": "creality_k2plus_buildplate_model.stl",
"bed_texture": "creality_k2plus_buildplate_texture.svg",
"hotend_model": "",
+ "default_bed_type": "Textured PEI Plate",
"default_materials": "Creality Generic ABS @K2-all;Creality Generic ASA @K2-all;Creality Generic PETG @K2-all;Creality Generic PLA @K2-all;Creality Generic PLA High Speed @K2-all;Creality Generic PLA Matte @K2-all;Creality Generic PLA Silk @K2-all"
}
diff --git a/resources/profiles/Creality/machine/Creality K2 Pro 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality K2 Pro 0.2 nozzle.json
index 4433c94b23..2ee489b7fa 100644
--- a/resources/profiles/Creality/machine/Creality K2 Pro 0.2 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality K2 Pro 0.2 nozzle.json
@@ -7,6 +7,8 @@
"instantiation": "true",
"printer_model": "Creality K2 Pro",
"gcode_flavor": "klipper",
+ "host_type": "crealityprint",
+ "printer_agent": "crealityprint",
"default_print_profile": "0.16mm Optimal @Creality K2 Pro 0.2 nozzle",
"nozzle_diameter": [
"0.2"
@@ -117,7 +119,7 @@
"299"
],
"enable_filament_ramming": "0",
- "purge_in_prime_tower": "0",
+ "purge_in_prime_tower": "1",
"cooling_tube_length": "0",
"cooling_tube_retraction": "0",
"parking_pos_retraction": "0",
diff --git a/resources/profiles/Creality/machine/Creality K2 Pro 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K2 Pro 0.4 nozzle.json
index 5b73723255..f3b5a9bedf 100644
--- a/resources/profiles/Creality/machine/Creality K2 Pro 0.4 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality K2 Pro 0.4 nozzle.json
@@ -7,7 +7,7 @@
"instantiation": "true",
"printer_model": "Creality K2 Pro",
"gcode_flavor": "klipper",
- "default_print_profile": "0.16mm Optimal @Creality K2 Pro 0.4 nozzle",
+ "default_print_profile": "0.20mm Standard @Creality K2 Pro 0.4 nozzle",
"nozzle_diameter": [
"0.4"
],
@@ -23,7 +23,7 @@
"nozzle_volume": "183",
"auxiliary_fan": "1",
"support_air_filtration": "1",
- "support_chamber_temp_control": "1",
+ "support_chamber_temp_control": "0",
"support_multi_bed_types": "1",
"machine_max_acceleration_e": [
"5000",
@@ -74,12 +74,12 @@
"10"
],
"machine_max_jerk_x": [
- "20",
- "20"
+ "100",
+ "100"
],
"machine_max_jerk_y": [
- "20",
- "20"
+ "100",
+ "100"
],
"machine_max_jerk_z": [
"5",
@@ -117,7 +117,7 @@
"299"
],
"enable_filament_ramming": "0",
- "purge_in_prime_tower": "0",
+ "purge_in_prime_tower": "1",
"cooling_tube_length": "0",
"cooling_tube_retraction": "0",
"parking_pos_retraction": "0",
@@ -136,15 +136,64 @@
"default_filament_profile": [
"Creality Generic PLA @K2-all"
],
- "machine_start_gcode": ";SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\n\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
- "machine_end_gcode": "END_PRINT",
+ "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
+ "machine_end_gcode": "{if print_sequence == \"by object\"}\nG91\nG1 X2 Y2 Z1 F24000\nG90\nG1 Z{max_layer_z+2} F600\n{endif}\nEND_PRINT",
"machine_pause_gcode": "PAUSE",
- "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{if print_sequence == \"by object\"}\nG0 Z{max_layer_z + 0.8} F900\n{endif}\nG1 X0 Y160 F30000\nG1 Z{z_after_toolchange} F600",
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
"scan_first_layer": "0",
"thumbnails_format": "PNG",
"thumbnails": [
- "300x300",
- "96x96"
- ]
+ "96x96/PNG",
+ "300x300/PNG"
+ ],
+ "adaptive_bed_mesh_margin": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "best_object_pos": "0.5,0.5",
+ "creality_flush_time": "86",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_long_retraction_when_cut": "2",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "high_current_on_filament_swap": "0",
+ "host_type": "crealityprint",
+ "printer_agent": "crealityprint",
+ "machine_LED_light_exist": "1",
+ "machine_load_filament_time": "86",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printer_technology": "FFF",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "silent_mode": "0",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "long_retractions_when_cut": "0",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_distances_when_cut": "18",
+ "travel_slope": "3",
+ "wipe": "1",
+ "z_hop_types": "Auto Lift"
}
diff --git a/resources/profiles/Creality/machine/Creality K2 Pro 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality K2 Pro 0.6 nozzle.json
index 4a9a1e2f24..1fce24ea83 100644
--- a/resources/profiles/Creality/machine/Creality K2 Pro 0.6 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality K2 Pro 0.6 nozzle.json
@@ -7,7 +7,7 @@
"instantiation": "true",
"printer_model": "Creality K2 Pro",
"gcode_flavor": "klipper",
- "default_print_profile": "0.24mm Optimal @Creality K2 Pro 0.6 nozzle",
+ "default_print_profile": "0.30mm Standard @Creality K2 Pro 0.6 nozzle",
"nozzle_diameter": [
"0.6"
],
@@ -23,7 +23,7 @@
"nozzle_volume": "183",
"auxiliary_fan": "1",
"support_air_filtration": "1",
- "support_chamber_temp_control": "1",
+ "support_chamber_temp_control": "0",
"support_multi_bed_types": "1",
"machine_max_acceleration_e": [
"5000",
@@ -74,12 +74,12 @@
"10"
],
"machine_max_jerk_x": [
- "20",
- "20"
+ "100",
+ "100"
],
"machine_max_jerk_y": [
- "20",
- "20"
+ "100",
+ "100"
],
"machine_max_jerk_z": [
"5",
@@ -93,7 +93,7 @@
],
"printer_settings_id": "Creality",
"retraction_minimum_travel": [
- "1"
+ "2"
],
"retract_before_wipe": [
"90%"
@@ -117,7 +117,7 @@
"299"
],
"enable_filament_ramming": "0",
- "purge_in_prime_tower": "0",
+ "purge_in_prime_tower": "1",
"cooling_tube_length": "0",
"cooling_tube_retraction": "0",
"parking_pos_retraction": "0",
@@ -136,15 +136,64 @@
"default_filament_profile": [
"Creality Generic PLA @K2-all"
],
- "machine_start_gcode": ";SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\n\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
- "machine_end_gcode": "END_PRINT",
+ "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
+ "machine_end_gcode": "{if print_sequence == \"by object\"}\nG91\nG1 X2 Y2 Z1 F24000\nG90\nG1 Z{max_layer_z+2} F600\n{endif}\nEND_PRINT",
"machine_pause_gcode": "PAUSE",
- "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{if print_sequence == \"by object\"}\nG0 Z{max_layer_z + 0.8} F900\n{endif}\nG1 X0 Y160 F30000\nG1 Z{z_after_toolchange} F600",
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
"scan_first_layer": "0",
"thumbnails_format": "PNG",
"thumbnails": [
- "300x300",
- "96x96"
- ]
+ "96x96/PNG",
+ "300x300/PNG"
+ ],
+ "adaptive_bed_mesh_margin": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "best_object_pos": "0.5,0.5",
+ "creality_flush_time": "86",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_long_retraction_when_cut": "0",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "high_current_on_filament_swap": "0",
+ "host_type": "crealityprint",
+ "printer_agent": "crealityprint",
+ "machine_LED_light_exist": "1",
+ "machine_load_filament_time": "86",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printer_technology": "FFF",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "silent_mode": "0",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "long_retractions_when_cut": "0",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_distances_when_cut": "18",
+ "travel_slope": "3",
+ "wipe": "1",
+ "z_hop_types": "Slope Lift"
}
diff --git a/resources/profiles/Creality/machine/Creality K2 Pro 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality K2 Pro 0.8 nozzle.json
index 9db92a3cc6..660a32e6aa 100644
--- a/resources/profiles/Creality/machine/Creality K2 Pro 0.8 nozzle.json
+++ b/resources/profiles/Creality/machine/Creality K2 Pro 0.8 nozzle.json
@@ -7,7 +7,7 @@
"instantiation": "true",
"printer_model": "Creality K2 Pro",
"gcode_flavor": "klipper",
- "default_print_profile": "0.32mm Optimal @Creality K2 Pro 0.8 nozzle",
+ "default_print_profile": "0.40mm Standard @Creality K2 Pro 0.8 nozzle",
"nozzle_diameter": [
"0.8"
],
@@ -23,7 +23,7 @@
"nozzle_volume": "183",
"auxiliary_fan": "1",
"support_air_filtration": "1",
- "support_chamber_temp_control": "1",
+ "support_chamber_temp_control": "0",
"support_multi_bed_types": "1",
"machine_max_acceleration_e": [
"5000",
@@ -74,12 +74,12 @@
"10"
],
"machine_max_jerk_x": [
- "20",
- "20"
+ "100",
+ "100"
],
"machine_max_jerk_y": [
- "20",
- "20"
+ "100",
+ "100"
],
"machine_max_jerk_z": [
"5",
@@ -93,7 +93,7 @@
],
"printer_settings_id": "Creality",
"retraction_minimum_travel": [
- "1"
+ "2"
],
"retract_before_wipe": [
"90%"
@@ -117,7 +117,7 @@
"299"
],
"enable_filament_ramming": "0",
- "purge_in_prime_tower": "0",
+ "purge_in_prime_tower": "1",
"cooling_tube_length": "0",
"cooling_tube_retraction": "0",
"parking_pos_retraction": "0",
@@ -136,15 +136,64 @@
"default_filament_profile": [
"Creality Generic PLA @K2-all"
],
- "machine_start_gcode": ";SET PRINT AREA MIN AND MAX COORDINATES TO ENABLE ADAPTIVE PROBING\n; MINX = {first_layer_print_min[0]}\n; MINY = {first_layer_print_min[1]}\n; MAXX = {first_layer_print_max[0]}\n; MAXY = {first_layer_print_max[1]}\n\nM140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
- "machine_end_gcode": "END_PRINT",
+ "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
+ "machine_end_gcode": "{if print_sequence == \"by object\"}\nG91\nG1 X2 Y2 Z1 F24000\nG90\nG1 Z{max_layer_z+2} F600\n{endif}\nEND_PRINT",
"machine_pause_gcode": "PAUSE",
- "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y245 F30000\nG1 Z{z_after_toolchange} F600",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\n{if print_sequence == \"by object\"}\nG0 Z{max_layer_z + 0.8} F900\n{endif}\nG1 X0 Y160 F30000\nG1 Z{z_after_toolchange} F600",
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
"scan_first_layer": "0",
"thumbnails_format": "PNG",
"thumbnails": [
- "300x300",
- "96x96"
- ]
+ "96x96/PNG",
+ "300x300/PNG"
+ ],
+ "adaptive_bed_mesh_margin": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "best_object_pos": "0.5,0.5",
+ "creality_flush_time": "86",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_long_retraction_when_cut": "0",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "high_current_on_filament_swap": "0",
+ "host_type": "crealityprint",
+ "printer_agent": "crealityprint",
+ "machine_LED_light_exist": "1",
+ "machine_load_filament_time": "86",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_platform_motion_enable": "1",
+ "machine_ptc_exist": "1",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "0",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printer_technology": "FFF",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "silent_mode": "0",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "long_retractions_when_cut": "0",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_distances_when_cut": "18",
+ "travel_slope": "3",
+ "wipe": "1",
+ "z_hop_types": "Slope Lift"
}
diff --git a/resources/profiles/Creality/machine/Creality K2 SE 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality K2 SE 0.4 nozzle.json
new file mode 100644
index 0000000000..7b93cdc3ba
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality K2 SE 0.4 nozzle.json
@@ -0,0 +1,112 @@
+{
+ "type": "machine",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_creality_common",
+ "printer_model": "Creality K2 SE",
+ "auxiliary_fan": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "99999,99999",
+ "bed_mesh_min": "-99999,-99999",
+ "bed_mesh_probe_distance": "50,50",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X42 Y180 F30000\nG1 Z{z_after_toolchange} F600",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "135",
+ "default_print_profile": "0.20mm Standard @Creality K2 SE 0.4 nozzle",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "101",
+ "extruder_clearance_height_to_rod": "45",
+ "extruder_clearance_radius": "65",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "gcode_flavor": "klipper",
+ "high_current_on_filament_swap": "0",
+ "host_type": "octoprint",
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "machine_LED_light_exist": "1",
+ "machine_end_gcode": "END_PRINT",
+ "machine_load_filament_time": "135",
+ "machine_max_acceleration_e": "5000",
+ "machine_max_acceleration_extruding": "20000",
+ "machine_max_acceleration_retracting": "5000",
+ "machine_max_acceleration_travel": "20000",
+ "machine_max_acceleration_x": "20000",
+ "machine_max_acceleration_y": "20000",
+ "machine_max_acceleration_z": "500",
+ "machine_max_jerk_e": "10",
+ "machine_max_jerk_x": "20",
+ "machine_max_jerk_y": "20",
+ "machine_max_jerk_z": "5",
+ "machine_max_speed_e": "100",
+ "machine_max_speed_x": "800",
+ "machine_max_speed_y": "800",
+ "machine_max_speed_z": "30",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_pause_gcode": "PAUSE",
+ "machine_platform_motion_enable": "1",
+ "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y150 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y150 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X150 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
+ "machine_unload_filament_time": "0",
+ "manual_filament_change": "0",
+ "nozzle_hrc": "0",
+ "nozzle_type": "hardened_steel",
+ "nozzle_volume": "178",
+ "parking_pos_retraction": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printable_area": "0x0,220x0,220x215,0x215",
+ "printable_height": "245",
+ "printer_technology": "FFF",
+ "printer_variant": "0.4",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "1",
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "0",
+ "support_chamber_temp_control": "0",
+ "support_multi_bed_types": "1",
+ "thumbnails": "96x96,300x300",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "default_filament_profile": [
+ "Creality Generic PLA @K2-all"
+ ],
+ "deretraction_speed": "30",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "max_layer_height": "0.3",
+ "min_layer_height": "0.08",
+ "nozzle_diameter": [
+ "0.4"
+ ],
+ "retract_before_wipe": "0",
+ "retract_length_toolchange": "0",
+ "retract_lift_above": "0",
+ "retract_lift_below": "244",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_length": "0.8",
+ "retraction_minimum_travel": "1",
+ "retraction_speed": "30",
+ "wipe": "1",
+ "wipe_distance": "2",
+ "z_hop": "0.4",
+ "z_hop_types": "Slope Lift",
+ "name": "Creality K2 SE 0.4 nozzle",
+ "setting_id": "21783"
+}
diff --git a/resources/profiles/Creality/machine/Creality K2 SE.json b/resources/profiles/Creality/machine/Creality K2 SE.json
new file mode 100644
index 0000000000..701d32c06e
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality K2 SE.json
@@ -0,0 +1,13 @@
+{
+ "type": "machine_model",
+ "name": "Creality K2 SE",
+ "nozzle_diameter": "0.4",
+ "bed_model": "creality_k1_buildplate_model.stl",
+ "default_bed_type": "Textured PEI Plate",
+ "bed_texture": "creality_k1_buildplate_texture.svg",
+ "family": "Creality",
+ "hotend_model": "",
+ "machine_tech": "FFF",
+ "model_id": "Creality_K2_SE",
+ "default_materials": "Creality Generic ABS @K2-all;Creality Generic ASA @K2-all;Creality Generic PETG @K2-all;Creality Generic PLA @K2-all;Creality Generic PLA High Speed @K2-all;Creality Generic PLA Matte @K2-all;Creality Generic PLA Silk @K2-all"
+}
diff --git a/resources/profiles/Creality/machine/Creality SPARKX i7 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality SPARKX i7 0.2 nozzle.json
new file mode 100644
index 0000000000..e4f58991e8
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality SPARKX i7 0.2 nozzle.json
@@ -0,0 +1,124 @@
+{
+ "type": "machine",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_creality_common",
+ "printer_model": "Creality SPARKX i7",
+ "adaptive_bed_mesh_margin": "0",
+ "auxiliary_fan": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "255,255",
+ "bed_mesh_min": "0,0",
+ "bed_mesh_probe_distance": "5,5",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_filament_gcode": "{if toolchange_count > 1 }\r\nG17\r\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000\r\n{endif}\r\nG1 X0 F18000\r\nM106 S120\r\nM8200 P S[next_extruder]\r\nM220 S100\r\n{if long_retractions_when_cut[previous_extruder]}\r\n{if retraction_distances_when_cut[previous_extruder] < 28}\r\nM8200 R E-{retraction_distances_when_cut[previous_extruder]}\r\n{else}\r\nM8200 R E-28\r\n{endif}\r\n{endif}\r\n\r\nM400\r\nG1 X5 F10000\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=500\r\nG0 F500\r\n\r\nM8200 C S0\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nG0 Y255 F18000\r\nG0 X267 F18000\r\nG0 Y130 F18000 \r\nG0 X278 F2400 \r\nM8200 R\r\nM106 S30\r\nM104 S[nozzle_temperature_range_high[previous_extruder]]\r\nM8200 L I[next_extruder]\r\n{if long_retractions_when_cut[previous_extruder]}\r\n{if retraction_distances_when_cut[previous_extruder] < 28}\r\nG1 E{retraction_distances_when_cut[previous_extruder]} F{filament_max_volumetric_speed[initial_no_support_extruder]*100} \r\n{else}\r\nG1 E28 F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\n{endif}\r\n{endif}\r\nT[next_extruder]\r\n\r\n{if flush_length_1 > 1}\r\n;flush_length_1=[flush_length_1]\r\n; FLUSH_START\r\nM106 S70\r\n{if flush_length_2 > 1}\r\nM104 S[nozzle_temperature_range_high[next_extruder]]\r\n{else}\r\nM104 S[new_filament_temp]\r\n{endif}\r\n{if flush_length_1 > 32}\r\nG1 F60\r\nM400\r\nG1 E32 F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nG1 E{(flush_length_1 - 32) * 0.02} F60\r\nM400\r\nM106 S180\r\nG4 P2500\r\nM106 S30\r\nG1 E-[retraction_length] F1800\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000\r\nG0 X278 F2400\r\nM400\r\nM106 S70\r\nG1 E[retraction_length] F60\r\nG1 E{(flush_length_1 - 32) * 0.23} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nG1 E{(flush_length_1 - 32) * 0.02} F60\r\nG1 E{(flush_length_1 - 32) * 0.23} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nG1 E{(flush_length_1 - 32) * 0.02} F60\r\nM400\r\nM106 S180\r\nG4 P2500\r\nM106 S30\r\nG1 E-[retraction_length] F1800\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000\r\nG0 X278 F2400\r\nM400\r\nM106 S70\r\nG1 E[retraction_length] F60\r\nG1 E{(flush_length_1 - 32) * 0.23} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nG1 E{(flush_length_1 - 32) * 0.02} F60\r\nG1 E{(flush_length_1 - 32) * 0.23} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\n{else}\r\nG1 E{flush_length_1} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\n{endif}\r\n{else}\r\nM104 S[new_filament_temp]\r\n{endif}\r\n\r\nM400\r\nM106 S180\r\nG4 P2500\r\nM106 S30\r\nG1 E-[old_retract_length_toolchange] F1800\r\n; FLUSH_END\r\n\r\n; WIPE\r\nSET_VELOCITY_LIMIT ACCEL=10000 ACCEL_TO_DECEL=10000\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\n\r\n{if flush_length_2 > 1}\r\n;flush_length_2=[flush_length_2]\r\n; FLUSH_START\r\n{if flush_length_3 < 1}\r\nM104 S[new_filament_temp]\r\n{endif}\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nM400\r\nM106 S70\r\nG1 F60\r\nG1 E{flush_length_2 * 0.18 + old_retract_length_toolchange} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nG1 E{flush_length_2 * 0.02} F60\r\nG1 E{flush_length_2 * 0.18} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nG1 E{flush_length_2 * 0.02} F60\r\nG1 E{flush_length_2 * 0.18} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nM400\r\nM106 S180\r\nG4 P2500\r\nM106 S30\r\nG1 E-[retraction_length] F1800\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000\r\nG0 X278 F2400\r\nM400\r\nM106 S70\r\nG1 E[retraction_length] F60\r\nG1 E{flush_length_2 * 0.02} F60\r\nG1 E{flush_length_2 * 0.18} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nG1 E{flush_length_2 * 0.02} F60\r\nG1 E{flush_length_2 * 0.18} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nG1 E{flush_length_2 * 0.02} F60\r\n\r\nM400\r\nM106 S180\r\nG4 P2500\r\nM106 S30\r\nG1 E-[new_retract_length_toolchange] F1800\r\n; FLUSH_END\r\n\r\n; WIPE\r\nSET_VELOCITY_LIMIT ACCEL=10000 ACCEL_TO_DECEL=10000\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\n{endif}\r\n\r\n{if flush_length_3 > 1}\r\n;flush_length_3=[flush_length_3]\r\n; FLUSH_START\r\n{if flush_length_4 < 1}\r\nM104 S[new_filament_temp]\r\n{endif}\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nM400\r\nM106 S70\r\nG1 F60\r\nG1 E{flush_length_3 * 0.18 + new_retract_length_toolchange} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nG1 E{flush_length_3 * 0.02} F60\r\nG1 E{flush_length_3 * 0.18} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nG1 E{flush_length_3 * 0.02} F60\r\nG1 E{flush_length_3 * 0.18} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nM400\r\nM106 S180\r\nG4 P2500\r\nM106 S30\r\nG1 E-[retraction_length] F1800\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000\r\nG0 X278 F2400\r\nM400\r\nM106 S70\r\nG1 E[retraction_length] F60\r\nG1 E{flush_length_3 * 0.02} F60\r\nG1 E{flush_length_3 * 0.18} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nG1 E{flush_length_3 * 0.02} F60\r\nG1 E{flush_length_3 * 0.18} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nG1 E{flush_length_3 * 0.02} F60\r\n\r\nM400\r\nM106 S180\r\nG4 P2500\r\nM106 S30\r\nG1 E-[new_retract_length_toolchange] F1800\r\n; FLUSH_END\r\n\r\n; WIPE\r\nSET_VELOCITY_LIMIT ACCEL=10000 ACCEL_TO_DECEL=10000\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\n{endif}\r\n\r\n{if flush_length_4 > 1}\r\n;flush_length_4=[flush_length_4]\r\n; FLUSH_START\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nM400\r\nM106 S70\r\nG1 F60\r\nG1 E{flush_length_4 * 0.18 + new_retract_length_toolchange} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nG1 E{flush_length_4 * 0.02} F60\r\nG1 E{flush_length_4 * 0.18} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nG1 E{flush_length_4 * 0.02} F60\r\nG1 E{flush_length_4 * 0.18} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nM400\r\nM106 S180\r\nG4 P2500\r\nM106 S30\r\nG1 E-[retraction_length] F1800\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000\r\nG0 X278 F2400\r\nM400\r\nM106 S70\r\nG1 E[retraction_length] F60\r\nG1 E{flush_length_4 * 0.02} F60\r\nG1 E{flush_length_4 * 0.18} F{filament_max_volumetric_speed[initial_no_support_extruder]*100} \r\nG1 E{flush_length_4 * 0.02} F60\r\nG1 E{flush_length_4 * 0.18} F{filament_max_volumetric_speed[initial_no_support_extruder]*100}\r\nG1 E{flush_length_4 * 0.02} F60\r\n\r\nM400\r\nM106 S180\r\nG4 P2500\r\nM106 S30\r\nG1 E-[new_retract_length_toolchange] F1800\r\n; FLUSH_END\r\n\r\n; WIPE\r\nSET_VELOCITY_LIMIT ACCEL=10000 ACCEL_TO_DECEL=10000\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\n{endif}\r\n\r\n\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nG0 X267 F2400 \r\nM8200 O",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "0",
+ "default_print_profile": "0.10mm HighDetail @Creality SPARKX i7 0.2 nozzle",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "enable_long_retraction_when_cut": "2",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "130",
+ "extruder_clearance_height_to_rod": "40",
+ "extruder_clearance_radius": "64",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "file_start_gcode": "; multicolor_method = 1\n",
+ "gcode_flavor": "klipper",
+ "high_current_on_filament_swap": "0",
+ "host_type": "crealityprint",
+ "printer_agent": "crealityprint",
+ "machine_LED_light_exist": "1",
+ "machine_end_gcode": "G1 E-0.8 F2400 ; retract\nG2 Z{position[2]+3} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG92 E0 ; zero the extruder\n{if print_sequence == \"by object\"}\nG0 Z{max_layer_z + 1} F1800\n{endif}\nG1 X0 Y180 F8000\nEND_PRINT",
+ "machine_load_filament_time": "30",
+ "machine_max_acceleration_e": "5000",
+ "machine_max_acceleration_extruding": "10000",
+ "machine_max_acceleration_retracting": "5000",
+ "machine_max_acceleration_travel": "30000",
+ "machine_max_acceleration_x": "10000",
+ "machine_max_acceleration_y": "10000",
+ "machine_max_acceleration_z": "500",
+ "machine_max_jerk_e": "3",
+ "machine_max_jerk_x": "9",
+ "machine_max_jerk_y": "9",
+ "machine_max_jerk_z": "3",
+ "machine_max_speed_e": "14",
+ "machine_max_speed_x": "500",
+ "machine_max_speed_y": "500",
+ "machine_max_speed_z": "20",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_pause_gcode": "PAUSE",
+ "machine_platform_motion_enable": "0",
+ "machine_ptc_exist": "0",
+ "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM104 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "30",
+ "manual_filament_change": "0",
+ "multicolor_method": "1",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_type": "hardened_steel",
+ "nozzle_volume": "152",
+ "parking_pos_retraction": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printable_area": "0x0,260x0,260x260,0x260",
+ "printable_height": "255",
+ "printer_technology": "FFF",
+ "printer_variant": "0.2",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "0",
+ "support_chamber_temp_control": "0",
+ "support_multi_bed_types": "1",
+ "thumbnails": "140x140/PNG, 260x260/PNG",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "time_lapse_gcode": "{if !spiral_mode && print_sequence != \"by object\" && layer_num != 0}\n;don't support timelapse gcode in spiral_mode and by object sequence for I3 structure printer\n;time lapse begin\nM5001 G92 E0\nM5001 G17\nM5001 G2 Z{layer_z + 0.4} I0.86 J0.86 P1 F20000 ; spiral lift a little\nM5001 G1 X267 Y110 F24000 ; move to safe pos\nM5001 P15\nM5001 M400 P300\nM5001 G92 E0\n;time lapse end\n{endif}",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "default_filament_profile": [
+ "Generic PLA @SPARKX i7-all"
+ ],
+ "deretraction_speed": "30",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "long_retractions_when_cut": "1",
+ "max_layer_height": "0.14",
+ "min_layer_height": "0.04",
+ "nozzle_diameter": [
+ "0.2"
+ ],
+ "retract_before_wipe": "100%",
+ "retract_length_toolchange": "2",
+ "retract_lift_above": "0",
+ "retract_lift_below": "254",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_distances_when_cut": "28",
+ "retraction_length": "0.4",
+ "retraction_minimum_travel": "1",
+ "retraction_speed": "30",
+ "travel_slope": "3",
+ "wipe": "1",
+ "wipe_distance": "2",
+ "z_hop": "0.4",
+ "z_hop_types": "Slope Lift",
+ "name": "Creality SPARKX i7 0.2 nozzle",
+ "setting_id": "24422"
+}
diff --git a/resources/profiles/Creality/machine/Creality SPARKX i7 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality SPARKX i7 0.4 nozzle.json
new file mode 100644
index 0000000000..0651421606
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality SPARKX i7 0.4 nozzle.json
@@ -0,0 +1,124 @@
+{
+ "type": "machine",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_creality_common",
+ "printer_model": "Creality SPARKX i7",
+ "adaptive_bed_mesh_margin": "0",
+ "auxiliary_fan": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "255,255",
+ "bed_mesh_min": "0,0",
+ "bed_mesh_probe_distance": "5,5",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_filament_gcode": "{if toolchange_count > 1 }\r\nG17\r\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000\r\n{endif}\r\nG1 X0 F18000\r\nM106 S120\r\nM8200 P S[next_extruder]\r\nM220 S100\r\n{if long_retractions_when_cut[previous_extruder]}\r\n{if retraction_distances_when_cut[previous_extruder] < 28}\r\nM8200 R E-{retraction_distances_when_cut[previous_extruder]}\r\n{else}\r\nM8200 R E-28\r\n{endif}\r\n{endif}\r\n\r\nM400\r\nG1 X5 F10000\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=500\r\nG0 F500\r\n\r\nM8200 C S0\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nG0 Y255 F18000\r\nG0 X267 F18000\r\nG0 Y130 F18000 \r\nG0 X278 F2400 \r\nM8200 R\r\nM106 S30\r\nM104 S[nozzle_temperature_range_high[previous_extruder]]\r\nM8200 L I[next_extruder]\r\n{if long_retractions_when_cut[previous_extruder]}\r\n{if retraction_distances_when_cut[previous_extruder] < 28}\r\nG1 E{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate} \r\n{else}\r\nG1 E28 F{old_filament_e_feedrate} \r\n{endif}\r\n{endif}\r\nT[next_extruder]\r\n\r\n{if flush_length_1 > 1}\r\n;flush_length_1=[flush_length_1]\r\n; FLUSH_START\r\nM106 S70\r\n{if flush_length_2 > 1}\r\nM104 S[nozzle_temperature_range_high[next_extruder]]\r\n{else}\r\nM104 S[new_filament_temp]\r\n{endif}\r\n{if flush_length_1 > 32}\r\nG1 F60\r\nM400\r\nG1 E32 F{old_filament_e_feedrate}\r\nG1 E{(flush_length_1 - 32) * 0.02} F60\r\nG1 E{(flush_length_1 - 32) * 0.23} F{old_filament_e_feedrate}\r\nG1 E{(flush_length_1 - 32) * 0.02} F60\r\nG1 E{(flush_length_1 - 32) * 0.23} F{new_filament_e_feedrate}\r\nG1 E{(flush_length_1 - 32) * 0.02} F60\r\nG1 E{(flush_length_1 - 32) * 0.23} F{new_filament_e_feedrate}\r\nG1 E{(flush_length_1 - 32) * 0.02} F60\r\nG1 E{(flush_length_1 - 32) * 0.23} F{new_filament_e_feedrate}\r\n{else}\r\nG1 E{flush_length_1} F{old_filament_e_feedrate}\r\n{endif}\r\n{else}\r\nM104 S[new_filament_temp]\r\n{endif}\r\n\r\nM400\r\nM106 S255\r\nG4 P2500\r\nM106 S30\r\nG1 E-[old_retract_length_toolchange] F1800\r\n; FLUSH_END\r\n\r\n; WIPE\r\nSET_VELOCITY_LIMIT ACCEL=10000 ACCEL_TO_DECEL=10000\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\n\r\n{if flush_length_2 > 1}\r\n;flush_length_2=[flush_length_2]\r\n; FLUSH_START\r\n{if flush_length_3 < 1}\r\nM104 S[new_filament_temp]\r\n{endif}\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nM106 S70\r\nG1 F60\r\nM400\r\nG1 E{flush_length_2 * 0.18 + old_retract_length_toolchange} F{new_filament_e_feedrate}\r\nG1 E{flush_length_2 * 0.02} F60\r\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_2 * 0.02} F60\r\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_2 * 0.02} F60\r\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_2 * 0.02} F60\r\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_2 * 0.02} F60\r\n\r\nM400\r\nM106 S255\r\nG4 P2500\r\nM106 S30\r\nG1 E-[new_retract_length_toolchange] F1800\r\n; FLUSH_END\r\n\r\n; WIPE\r\nSET_VELOCITY_LIMIT ACCEL=10000 ACCEL_TO_DECEL=10000\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\n{endif}\r\n\r\n{if flush_length_3 > 1}\r\n;flush_length_3=[flush_length_3]\r\n; FLUSH_START\r\n{if flush_length_4 < 1}\r\nM104 S[new_filament_temp]\r\n{endif}\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nM106 S70\r\nG1 F60\r\nM400\r\nG1 E{flush_length_3 * 0.18 + new_retract_length_toolchange} F{new_filament_e_feedrate}\r\nG1 E{flush_length_3 * 0.02} F60\r\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_3 * 0.02} F60\r\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_3 * 0.02} F60\r\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate} \r\nG1 E{flush_length_3 * 0.02} F60\r\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_3 * 0.02} F60\r\n\r\nM400\r\nM106 S255\r\nG4 P2500\r\nM106 S30\r\nG1 E-[new_retract_length_toolchange] F1800\r\n; FLUSH_END\r\n\r\n; WIPE\r\nSET_VELOCITY_LIMIT ACCEL=10000 ACCEL_TO_DECEL=10000\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\n{endif}\r\n\r\n{if flush_length_4 > 1}\r\n;flush_length_4=[flush_length_4]\r\n; FLUSH_START\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nM106 S70\r\nG1 F60\r\nM400\r\nG1 E{flush_length_4 * 0.18 + new_retract_length_toolchange} F{new_filament_e_feedrate}\r\nG1 E{flush_length_4 * 0.02} F60\r\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate} \r\nG1 E{flush_length_4 * 0.02} F60\r\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate} \r\nG1 E{flush_length_4 * 0.02} F60\r\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate} \r\nG1 E{flush_length_4 * 0.02} F60\r\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate} \r\nG1 E{flush_length_4 * 0.02} F60\r\n\r\nM400\r\nM106 S255\r\nG4 P2500\r\nM106 S30\r\nG1 E-[new_retract_length_toolchange] F1800\r\n; FLUSH_END\r\n\r\n; WIPE\r\nSET_VELOCITY_LIMIT ACCEL=10000 ACCEL_TO_DECEL=10000\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\n{endif}\r\n\r\n\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nG0 X267 F2400 \r\nM8200 O",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "0",
+ "default_print_profile": "0.20mm Standard @Creality SPARKX i7 0.4 nozzle",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "enable_long_retraction_when_cut": "2",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "130",
+ "extruder_clearance_height_to_rod": "40",
+ "extruder_clearance_radius": "64",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "file_start_gcode": "; multicolor_method = 1\n",
+ "gcode_flavor": "klipper",
+ "high_current_on_filament_swap": "0",
+ "host_type": "crealityprint",
+ "printer_agent": "crealityprint",
+ "machine_LED_light_exist": "1",
+ "machine_end_gcode": "G1 E-0.8 F2400 ; retract\nG2 Z{position[2]+3} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG92 E0 ; zero the extruder\n{if print_sequence == \"by object\"}\nG0 Z{max_layer_z + 1} F1800\n{endif}\nG1 X0 Y180 F8000\nEND_PRINT",
+ "machine_load_filament_time": "30",
+ "machine_max_acceleration_e": "5000",
+ "machine_max_acceleration_extruding": "10000",
+ "machine_max_acceleration_retracting": "5000",
+ "machine_max_acceleration_travel": "30000",
+ "machine_max_acceleration_x": "10000",
+ "machine_max_acceleration_y": "10000",
+ "machine_max_acceleration_z": "500",
+ "machine_max_jerk_e": "3",
+ "machine_max_jerk_x": "9",
+ "machine_max_jerk_y": "9",
+ "machine_max_jerk_z": "3",
+ "machine_max_speed_e": "14",
+ "machine_max_speed_x": "500",
+ "machine_max_speed_y": "500",
+ "machine_max_speed_z": "20",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_pause_gcode": "PAUSE",
+ "machine_platform_motion_enable": "0",
+ "machine_ptc_exist": "0",
+ "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM104 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "30",
+ "manual_filament_change": "0",
+ "multicolor_method": "1",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_type": "hardened_steel",
+ "nozzle_volume": "152",
+ "parking_pos_retraction": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printable_area": "0x0,260x0,260x260,0x260",
+ "printable_height": "255",
+ "printer_technology": "FFF",
+ "printer_variant": "0.4",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "0",
+ "support_chamber_temp_control": "0",
+ "support_multi_bed_types": "1",
+ "thumbnails": "140x140/PNG, 260x260/PNG",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "time_lapse_gcode": "{if !spiral_mode && print_sequence != \"by object\" && layer_num != 0}\n;don't support timelapse gcode in spiral_mode and by object sequence for I3 structure printer\n;time lapse begin\nM5001 G92 E0\nM5001 G17\nM5001 G2 Z{layer_z + 0.4} I0.86 J0.86 P1 F20000 ; spiral lift a little\nM5001 G1 X267 Y110 F24000 ; move to safe pos\nM5001 P15\nM5001 M400 P300\nM5001 G92 E0\n;time lapse end\n{endif}",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "default_filament_profile": [
+ "Generic PLA @SPARKX i7-all"
+ ],
+ "deretraction_speed": "30",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "long_retractions_when_cut": "1",
+ "max_layer_height": "0.32",
+ "min_layer_height": "0.08",
+ "nozzle_diameter": [
+ "0.4"
+ ],
+ "retract_before_wipe": "70%",
+ "retract_length_toolchange": "2",
+ "retract_lift_above": "0",
+ "retract_lift_below": "254",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_distances_when_cut": "28",
+ "retraction_length": "0.8",
+ "retraction_minimum_travel": "1",
+ "retraction_speed": "30",
+ "travel_slope": "3",
+ "wipe": "1",
+ "wipe_distance": "2",
+ "z_hop": "0.4",
+ "z_hop_types": "Slope Lift",
+ "name": "Creality SPARKX i7 0.4 nozzle",
+ "setting_id": "88315"
+}
diff --git a/resources/profiles/Creality/machine/Creality SPARKX i7 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality SPARKX i7 0.6 nozzle.json
new file mode 100644
index 0000000000..769a753561
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality SPARKX i7 0.6 nozzle.json
@@ -0,0 +1,124 @@
+{
+ "type": "machine",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_creality_common",
+ "printer_model": "Creality SPARKX i7",
+ "adaptive_bed_mesh_margin": "0",
+ "auxiliary_fan": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "255,255",
+ "bed_mesh_min": "0,0",
+ "bed_mesh_probe_distance": "5,5",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_filament_gcode": "{if toolchange_count > 1 }\r\nG17\r\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000\r\n{endif}\r\nG1 X0 F18000\r\nM106 S120\r\nM8200 P S[next_extruder]\r\nM220 S100\r\n{if long_retractions_when_cut[previous_extruder]}\r\n{if retraction_distances_when_cut[previous_extruder] < 28}\r\nM8200 R E-{retraction_distances_when_cut[previous_extruder]}\r\n{else}\r\nM8200 R E-28\r\n{endif}\r\n{endif}\r\n\r\nM400\r\nG1 X5 F10000\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=500\r\nG0 F500\r\n\r\nM8200 C S0\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nG0 Y255 F18000\r\nG0 X267 F18000\r\nG0 Y130 F18000 \r\nG0 X278 F2400 \r\nM8200 R\r\nM106 S30\r\nM104 S[nozzle_temperature_range_high[previous_extruder]]\r\nM8200 L I[next_extruder]\r\n{if long_retractions_when_cut[previous_extruder]}\r\n{if retraction_distances_when_cut[previous_extruder] < 28}\r\nG1 E{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate} \r\n{else}\r\nG1 E28 F{old_filament_e_feedrate} \r\n{endif}\r\n{endif}\r\nT[next_extruder]\r\n\r\n{if flush_length_1 > 1}\r\n;flush_length_1=[flush_length_1]\r\n; FLUSH_START\r\nM106 S70\r\n{if flush_length_2 > 1}\r\nM104 S[nozzle_temperature_range_high[next_extruder]]\r\n{else}\r\nM104 S[new_filament_temp]\r\n{endif}\r\n{if flush_length_1 > 32}\r\nG1 F60\r\nM400\r\nG1 E32 F{old_filament_e_feedrate}\r\nG1 E{(flush_length_1 - 32) * 0.02} F60\r\nG1 E{(flush_length_1 - 32) * 0.23} F{old_filament_e_feedrate}\r\nG1 E{(flush_length_1 - 32) * 0.02} F60\r\nG1 E{(flush_length_1 - 32) * 0.23} F{new_filament_e_feedrate}\r\nG1 E{(flush_length_1 - 32) * 0.02} F60\r\nG1 E{(flush_length_1 - 32) * 0.23} F{new_filament_e_feedrate}\r\nG1 E{(flush_length_1 - 32) * 0.02} F60\r\nG1 E{(flush_length_1 - 32) * 0.23} F{new_filament_e_feedrate}\r\n{else}\r\nG1 E{flush_length_1} F{old_filament_e_feedrate}\r\n{endif}\r\n{else}\r\nM104 S[new_filament_temp]\r\n{endif}\r\n\r\nM400\r\nM106 S255\r\nG4 P2500\r\nM106 S30\r\nG1 E-[old_retract_length_toolchange] F1800\r\n; FLUSH_END\r\n\r\n; WIPE\r\nSET_VELOCITY_LIMIT ACCEL=10000 ACCEL_TO_DECEL=10000\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\n\r\n{if flush_length_2 > 1}\r\n;flush_length_2=[flush_length_2]\r\n; FLUSH_START\r\n{if flush_length_3 < 1}\r\nM104 S[new_filament_temp]\r\n{endif}\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nM106 S70\r\nG1 F60\r\nM400\r\nG1 E{flush_length_2 * 0.18 + old_retract_length_toolchange} F{new_filament_e_feedrate}\r\nG1 E{flush_length_2 * 0.02} F60\r\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_2 * 0.02} F60\r\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_2 * 0.02} F60\r\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_2 * 0.02} F60\r\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_2 * 0.02} F60\r\n\r\nM400\r\nM106 S255\r\nG4 P2500\r\nM106 S30\r\nG1 E-[new_retract_length_toolchange] F1800\r\n; FLUSH_END\r\n\r\n; WIPE\r\nSET_VELOCITY_LIMIT ACCEL=10000 ACCEL_TO_DECEL=10000\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\n{endif}\r\n\r\n{if flush_length_3 > 1}\r\n;flush_length_3=[flush_length_3]\r\n; FLUSH_START\r\n{if flush_length_4 < 1}\r\nM104 S[new_filament_temp]\r\n{endif}\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nM106 S70\r\nG1 F60\r\nM400\r\nG1 E{flush_length_3 * 0.18 + new_retract_length_toolchange} F{new_filament_e_feedrate}\r\nG1 E{flush_length_3 * 0.02} F60\r\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_3 * 0.02} F60\r\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_3 * 0.02} F60\r\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate} \r\nG1 E{flush_length_3 * 0.02} F60\r\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_3 * 0.02} F60\r\n\r\nM400\r\nM106 S255\r\nG4 P2500\r\nM106 S30\r\nG1 E-[new_retract_length_toolchange] F1800\r\n; FLUSH_END\r\n\r\n; WIPE\r\nSET_VELOCITY_LIMIT ACCEL=10000 ACCEL_TO_DECEL=10000\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\n{endif}\r\n\r\n{if flush_length_4 > 1}\r\n;flush_length_4=[flush_length_4]\r\n; FLUSH_START\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nM106 S70\r\nG1 F60\r\nM400\r\nG1 E{flush_length_4 * 0.18 + new_retract_length_toolchange} F{new_filament_e_feedrate}\r\nG1 E{flush_length_4 * 0.02} F60\r\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate} \r\nG1 E{flush_length_4 * 0.02} F60\r\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate} \r\nG1 E{flush_length_4 * 0.02} F60\r\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate} \r\nG1 E{flush_length_4 * 0.02} F60\r\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate} \r\nG1 E{flush_length_4 * 0.02} F60\r\n\r\nM400\r\nM106 S255\r\nG4 P2500\r\nM106 S30\r\nG1 E-[new_retract_length_toolchange] F1800\r\n; FLUSH_END\r\n\r\n; WIPE\r\nSET_VELOCITY_LIMIT ACCEL=10000 ACCEL_TO_DECEL=10000\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\n{endif}\r\n\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nG0 X267 F2400 \r\nM8200 O",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "0",
+ "default_print_profile": "0.30mm Standard @Creality SPARKX i7 0.6 nozzle",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "enable_long_retraction_when_cut": "2",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "130",
+ "extruder_clearance_height_to_rod": "40",
+ "extruder_clearance_radius": "64",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "file_start_gcode": "; multicolor_method = 1\n",
+ "gcode_flavor": "klipper",
+ "high_current_on_filament_swap": "0",
+ "host_type": "crealityprint",
+ "printer_agent": "crealityprint",
+ "machine_LED_light_exist": "1",
+ "machine_end_gcode": "G1 E-0.8 F2400 ; retract\nG2 Z{position[2]+3} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG92 E0 ; zero the extruder\n{if print_sequence == \"by object\"}\nG0 Z{max_layer_z + 1} F1800\n{endif}\nG1 X0 Y180 F8000\nEND_PRINT",
+ "machine_load_filament_time": "30",
+ "machine_max_acceleration_e": "5000",
+ "machine_max_acceleration_extruding": "10000",
+ "machine_max_acceleration_retracting": "5000",
+ "machine_max_acceleration_travel": "30000",
+ "machine_max_acceleration_x": "10000",
+ "machine_max_acceleration_y": "10000",
+ "machine_max_acceleration_z": "500",
+ "machine_max_jerk_e": "3",
+ "machine_max_jerk_x": "9",
+ "machine_max_jerk_y": "9",
+ "machine_max_jerk_z": "3",
+ "machine_max_speed_e": "14",
+ "machine_max_speed_x": "500",
+ "machine_max_speed_y": "500",
+ "machine_max_speed_z": "20",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_pause_gcode": "PAUSE",
+ "machine_platform_motion_enable": "0",
+ "machine_ptc_exist": "0",
+ "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM104 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "30",
+ "manual_filament_change": "0",
+ "multicolor_method": "1",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_type": "hardened_steel",
+ "nozzle_volume": "152",
+ "parking_pos_retraction": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printable_area": "0x0,260x0,260x260,0x260",
+ "printable_height": "255",
+ "printer_technology": "FFF",
+ "printer_variant": "0.6",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "0",
+ "support_chamber_temp_control": "0",
+ "support_multi_bed_types": "1",
+ "thumbnails": "140x140/PNG, 260x260/PNG",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "time_lapse_gcode": "{if !spiral_mode && print_sequence != \"by object\" && layer_num != 0}\n;don't support timelapse gcode in spiral_mode and by object sequence for I3 structure printer\n;time lapse begin\nM5001 G92 E0\nM5001 G17\nM5001 G2 Z{layer_z + 0.4} I0.86 J0.86 P1 F20000 ; spiral lift a little\nM5001 G1 X267 Y110 F24000 ; move to safe pos\nM5001 P15\nM5001 M400 P300\nM5001 G92 E0\n;time lapse end\n{endif}",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "default_filament_profile": [
+ "Generic PLA @SPARKX i7-all"
+ ],
+ "deretraction_speed": "30",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "long_retractions_when_cut": "1",
+ "max_layer_height": "0.42",
+ "min_layer_height": "0.12",
+ "nozzle_diameter": [
+ "0.6"
+ ],
+ "retract_before_wipe": "70%",
+ "retract_length_toolchange": "2",
+ "retract_lift_above": "0",
+ "retract_lift_below": "254",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_distances_when_cut": "28",
+ "retraction_length": "0.8",
+ "retraction_minimum_travel": "1",
+ "retraction_speed": "30",
+ "travel_slope": "3",
+ "wipe": "1",
+ "wipe_distance": "2",
+ "z_hop": "0.4",
+ "z_hop_types": "Slope Lift",
+ "name": "Creality SPARKX i7 0.6 nozzle",
+ "setting_id": "24559"
+}
diff --git a/resources/profiles/Creality/machine/Creality SPARKX i7 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality SPARKX i7 0.8 nozzle.json
new file mode 100644
index 0000000000..0a63417d6d
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality SPARKX i7 0.8 nozzle.json
@@ -0,0 +1,124 @@
+{
+ "type": "machine",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_creality_common",
+ "printer_model": "Creality SPARKX i7",
+ "adaptive_bed_mesh_margin": "0",
+ "auxiliary_fan": "0",
+ "bbl_use_printhost": "0",
+ "bed_exclude_area": "0x0",
+ "bed_mesh_max": "255,255",
+ "bed_mesh_min": "0,0",
+ "bed_mesh_probe_distance": "5,5",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "best_object_pos": "0.5,0.5",
+ "change_filament_gcode": "{if toolchange_count > 1 }\r\nG17\r\nG2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000\r\n{endif}\r\nG1 X0 F18000\r\nM106 S120\r\nM8200 P S[next_extruder]\r\nM220 S100\r\n{if long_retractions_when_cut[previous_extruder]}\r\n{if retraction_distances_when_cut[previous_extruder] < 28}\r\nM8200 R E-{retraction_distances_when_cut[previous_extruder]}\r\n{else}\r\nM8200 R E-28\r\n{endif}\r\n{endif}\r\n\r\nM400\r\nG1 X5 F10000\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=500\r\nG0 F500\r\n\r\nM8200 C S0\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nG0 Y255 F18000\r\nG0 X267 F18000\r\nG0 Y130 F18000 \r\nG0 X278 F2400 \r\nM8200 R\r\nM106 S30\r\nM104 S[nozzle_temperature_range_high[previous_extruder]]\r\nM8200 L I[next_extruder]\r\n{if long_retractions_when_cut[previous_extruder]}\r\n{if retraction_distances_when_cut[previous_extruder] < 28}\r\nG1 E{retraction_distances_when_cut[previous_extruder]} F{old_filament_e_feedrate} \r\n{else}\r\nG1 E28 F{old_filament_e_feedrate} \r\n{endif}\r\n{endif}\r\nT[next_extruder]\r\n\r\n{if flush_length_1 > 1}\r\n;flush_length_1=[flush_length_1]\r\n; FLUSH_START\r\nM106 S70\r\n{if flush_length_2 > 1}\r\nM104 S[nozzle_temperature_range_high[next_extruder]]\r\n{else}\r\nM104 S[new_filament_temp]\r\n{endif}\r\n{if flush_length_1 > 32}\r\nG1 F60\r\nM400\r\nG1 E32 F{old_filament_e_feedrate}\r\nG1 E{(flush_length_1 - 32) * 0.02} F60\r\nG1 E{(flush_length_1 - 32) * 0.23} F{old_filament_e_feedrate}\r\nG1 E{(flush_length_1 - 32) * 0.02} F60\r\nG1 E{(flush_length_1 - 32) * 0.23} F{new_filament_e_feedrate}\r\nG1 E{(flush_length_1 - 32) * 0.02} F60\r\nG1 E{(flush_length_1 - 32) * 0.23} F{new_filament_e_feedrate}\r\nG1 E{(flush_length_1 - 32) * 0.02} F60\r\nG1 E{(flush_length_1 - 32) * 0.23} F{new_filament_e_feedrate}\r\n{else}\r\nG1 E{flush_length_1} F{old_filament_e_feedrate}\r\n{endif}\r\n{else}\r\nM104 S[new_filament_temp]\r\n{endif}\r\n\r\nM400\r\nM106 S255\r\nG4 P2500\r\nM106 S30\r\nG1 E-[old_retract_length_toolchange] F1800\r\n; FLUSH_END\r\n\r\n; WIPE\r\nSET_VELOCITY_LIMIT ACCEL=10000 ACCEL_TO_DECEL=10000\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\n\r\n{if flush_length_2 > 1}\r\n;flush_length_2=[flush_length_2]\r\n; FLUSH_START\r\n{if flush_length_3 < 1}\r\nM104 S[new_filament_temp]\r\n{endif}\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nM106 S70\r\nG1 F60\r\nM400\r\nG1 E{flush_length_2 * 0.18 + old_retract_length_toolchange} F{new_filament_e_feedrate}\r\nG1 E{flush_length_2 * 0.02} F60\r\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_2 * 0.02} F60\r\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_2 * 0.02} F60\r\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_2 * 0.02} F60\r\nG1 E{flush_length_2 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_2 * 0.02} F60\r\n\r\nM400\r\nM106 S255\r\nG4 P2500\r\nM106 S30\r\nG1 E-[new_retract_length_toolchange] F1800\r\n; FLUSH_END\r\n\r\n; WIPE\r\nSET_VELOCITY_LIMIT ACCEL=10000 ACCEL_TO_DECEL=10000\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\n{endif}\r\n\r\n{if flush_length_3 > 1}\r\n;flush_length_3=[flush_length_3]\r\n; FLUSH_START\r\n{if flush_length_4 < 1}\r\nM104 S[new_filament_temp]\r\n{endif}\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nM106 S70\r\nG1 F60\r\nM400\r\nG1 E{flush_length_3 * 0.18 + new_retract_length_toolchange} F{new_filament_e_feedrate}\r\nG1 E{flush_length_3 * 0.02} F60\r\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_3 * 0.02} F60\r\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_3 * 0.02} F60\r\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate} \r\nG1 E{flush_length_3 * 0.02} F60\r\nG1 E{flush_length_3 * 0.18} F{new_filament_e_feedrate}\r\nG1 E{flush_length_3 * 0.02} F60\r\n\r\nM400\r\nM106 S255\r\nG4 P2500\r\nM106 S30\r\nG1 E-[new_retract_length_toolchange] F1800\r\n; FLUSH_END\r\n\r\n; WIPE\r\nSET_VELOCITY_LIMIT ACCEL=10000 ACCEL_TO_DECEL=10000\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\n{endif}\r\n\r\n{if flush_length_4 > 1}\r\n;flush_length_4=[flush_length_4]\r\n; FLUSH_START\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nM106 S70\r\nG1 F60\r\nM400\r\nG1 E{flush_length_4 * 0.18 + new_retract_length_toolchange} F{new_filament_e_feedrate}\r\nG1 E{flush_length_4 * 0.02} F60\r\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate} \r\nG1 E{flush_length_4 * 0.02} F60\r\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate} \r\nG1 E{flush_length_4 * 0.02} F60\r\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate} \r\nG1 E{flush_length_4 * 0.02} F60\r\nG1 E{flush_length_4 * 0.18} F{new_filament_e_feedrate} \r\nG1 E{flush_length_4 * 0.02} F60\r\n\r\nM400\r\nM106 S255\r\nG4 P2500\r\nM106 S30\r\nG1 E-[new_retract_length_toolchange] F1800\r\n; FLUSH_END\r\n\r\n; WIPE\r\nSET_VELOCITY_LIMIT ACCEL=10000 ACCEL_TO_DECEL=10000\r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\nG0 X267 F24000 \r\nG0 X278 F2400 \r\n{endif}\r\n\r\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\r\nG0 X267 F2400 \r\nM8200 O",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "creality_flush_time": "0",
+ "default_print_profile": "0.40mm Standard @Creality SPARKX i7 0.8 nozzle",
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "enable_long_retraction_when_cut": "2",
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_lid": "130",
+ "extruder_clearance_height_to_rod": "40",
+ "extruder_clearance_radius": "64",
+ "fan_kickstart": "0",
+ "fan_speedup_overhangs": "1",
+ "fan_speedup_time": "0",
+ "file_start_gcode": "; multicolor_method = 1\n",
+ "gcode_flavor": "klipper",
+ "high_current_on_filament_swap": "0",
+ "host_type": "crealityprint",
+ "printer_agent": "crealityprint",
+ "machine_LED_light_exist": "1",
+ "machine_end_gcode": "G1 E-0.8 F2400 ; retract\nG2 Z{position[2]+3} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG92 E0 ; zero the extruder\n{if print_sequence == \"by object\"}\nG0 Z{max_layer_z + 1} F1800\n{endif}\nG1 X0 Y180 F8000\nEND_PRINT",
+ "machine_load_filament_time": "30",
+ "machine_max_acceleration_e": "5000",
+ "machine_max_acceleration_extruding": "10000",
+ "machine_max_acceleration_retracting": "5000",
+ "machine_max_acceleration_travel": "30000",
+ "machine_max_acceleration_x": "10000",
+ "machine_max_acceleration_y": "10000",
+ "machine_max_acceleration_z": "500",
+ "machine_max_jerk_e": "3",
+ "machine_max_jerk_x": "9",
+ "machine_max_jerk_y": "9",
+ "machine_max_jerk_z": "3",
+ "machine_max_speed_e": "14",
+ "machine_max_speed_x": "500",
+ "machine_max_speed_y": "500",
+ "machine_max_speed_z": "20",
+ "machine_min_extruding_rate": "0,0",
+ "machine_min_travel_rate": "0,0",
+ "machine_pause_gcode": "PAUSE",
+ "machine_platform_motion_enable": "0",
+ "machine_ptc_exist": "0",
+ "machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nM83 \nM8200 P S[initial_no_support_extruder]\nM220 S100\n\nSET_VELOCITY_LIMIT ACCEL=5000 ACCEL_TO_DECEL=5000\nG0 X267 F18000 \nG0 X278 F2400\nM104 S[nozzle_temperature_initial_layer]\nM106 S0\nT[initial_no_support_extruder]\n\nM8200 O\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y0 F12000\nG1 X150 F30000\nG1 Z0.2 F600\nG1 X120 Y0 E15 F{filament_max_volumetric_speed[initial_extruder]/0.3*60*0.1}\nG1 X115 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X110 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X105 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG1 X100 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)*60}\nG1 X95 E.3742 F{outer_wall_volumetric_speed/(0.3*0.5)/4*60}\nG91\nG1 X-1 Z-0.3\nG1 X-4\nG92 E0",
+ "machine_tool_change_time": "0",
+ "machine_unload_filament_time": "30",
+ "manual_filament_change": "0",
+ "multicolor_method": "1",
+ "nozzle_height": "4",
+ "nozzle_hrc": "0",
+ "nozzle_type": "hardened_steel",
+ "nozzle_volume": "152",
+ "parking_pos_retraction": "0",
+ "pellet_modded_printer": "0",
+ "preferred_orientation": "0",
+ "prime_tower_position_type": "Middle Upper",
+ "printable_area": "0x0,260x0,260x260,0x260",
+ "printable_height": "255",
+ "printer_technology": "FFF",
+ "printer_variant": "0.8",
+ "printhost_authorization_type": "key",
+ "printhost_ssl_ignore_revoke": "0",
+ "purge_in_prime_tower": "0",
+ "scan_first_layer": "0",
+ "silent_mode": "0",
+ "single_extruder_multi_material": "1",
+ "support_air_filtration": "0",
+ "support_chamber_temp_control": "0",
+ "support_multi_bed_types": "1",
+ "thumbnails": "140x140/PNG, 260x260/PNG",
+ "thumbnails_format": "PNG",
+ "time_cost": "0",
+ "time_lapse_gcode": "{if !spiral_mode && print_sequence != \"by object\" && layer_num != 0}\n;don't support timelapse gcode in spiral_mode and by object sequence for I3 structure printer\n;time lapse begin\nM5001 G92 E0\nM5001 G17\nM5001 G2 Z{layer_z + 0.4} I0.86 J0.86 P1 F20000 ; spiral lift a little\nM5001 G1 X267 Y110 F24000 ; move to safe pos\nM5001 P15\nM5001 M400 P300\nM5001 G92 E0\n;time lapse end\n{endif}",
+ "use_firmware_retraction": "0",
+ "use_relative_e_distances": "1",
+ "z_offset": "0",
+ "default_filament_profile": [
+ "Generic PLA @SPARKX i7-all"
+ ],
+ "deretraction_speed": "30",
+ "extruder_colour": "#FCE94F",
+ "extruder_offset": "0x0",
+ "long_retractions_when_cut": "1",
+ "max_layer_height": "0.56",
+ "min_layer_height": "0.16",
+ "nozzle_diameter": [
+ "0.8"
+ ],
+ "retract_before_wipe": "70%",
+ "retract_length_toolchange": "2",
+ "retract_lift_above": "0",
+ "retract_lift_below": "254",
+ "retract_lift_enforce": "All Surfaces",
+ "retract_restart_extra": "0",
+ "retract_restart_extra_toolchange": "0",
+ "retract_when_changing_layer": "1",
+ "retraction_distances_when_cut": "28",
+ "retraction_length": "0.8",
+ "retraction_minimum_travel": "1",
+ "retraction_speed": "30",
+ "travel_slope": "3",
+ "wipe": "1",
+ "wipe_distance": "2",
+ "z_hop": "0.4",
+ "z_hop_types": "Slope Lift",
+ "name": "Creality SPARKX i7 0.8 nozzle",
+ "setting_id": "81812"
+}
diff --git a/resources/profiles/Creality/machine/Creality SPARKX i7.json b/resources/profiles/Creality/machine/Creality SPARKX i7.json
new file mode 100644
index 0000000000..73a5e85ead
--- /dev/null
+++ b/resources/profiles/Creality/machine/Creality SPARKX i7.json
@@ -0,0 +1,13 @@
+{
+ "type": "machine_model",
+ "name": "Creality SPARKX i7",
+ "nozzle_diameter": "0.8;0.6;0.4;0.2",
+ "bed_model": "creality_SPARKX_buildplate_model.stl",
+ "default_bed_type": "Textured PEI Plate",
+ "bed_texture": "creality_hi_buildplate_texture.svg",
+ "family": "Creality",
+ "hotend_model": "",
+ "machine_tech": "FFF",
+ "model_id": "Creality_SPARKX_i7",
+ "default_materials": "Generic PETG @SPARKX i7-all;Generic PLA @SPARKX i7-all;CR-PLA Matte @SPARKX i7-all;Generic PLA Silk @SPARKX i7-all"
+}
diff --git a/resources/profiles/Creality/machine/fdm_machine_common.json b/resources/profiles/Creality/machine/fdm_machine_common.json
index 1264456731..26e3032451 100644
--- a/resources/profiles/Creality/machine/fdm_machine_common.json
+++ b/resources/profiles/Creality/machine/fdm_machine_common.json
@@ -90,7 +90,7 @@
"1"
],
"retraction_length": [
- "1"
+ "5"
],
"retract_length_toolchange": [
"1"
diff --git a/resources/profiles/Creality/process/0.06mm SuperDetail @Creality K2 Plus 0.2 nozzle.json b/resources/profiles/Creality/process/0.06mm SuperDetail @Creality K2 Plus 0.2 nozzle.json
new file mode 100644
index 0000000000..5e9d26007b
--- /dev/null
+++ b/resources/profiles/Creality/process/0.06mm SuperDetail @Creality K2 Plus 0.2 nozzle.json
@@ -0,0 +1,246 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.06mm SuperDetail @Creality K2 Plus 0.2 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000], [1.0,1.5,80,5500], [1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "5",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K2 Plus 0.2 nozzle"
+ ],
+ "default_acceleration": "12000",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.25",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.1",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.25",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.22",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.06",
+ "line_width": "0.22",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.22",
+ "outer_wall_speed": "100",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.25",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height": "[[100,150,100,6000], [150,200,80,5500], [200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "7",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.22",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
+ "travel_acceleration": "12000",
+ "travel_jerk": "12",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "4",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.08mm HueForge @Creality Hi 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm HueForge @Creality Hi 0.4 nozzle.json
new file mode 100644
index 0000000000..10d0b854c9
--- /dev/null
+++ b/resources/profiles/Creality/process/0.08mm HueForge @Creality Hi 0.4 nozzle.json
@@ -0,0 +1,269 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.08mm HueForge @Creality Hi 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000,210],[1.0,1.5,80,5500,200],[1.5,2.0,60,5000,190]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "30",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1.02",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1.8",
+ "bridge_no_support": "0",
+ "bridge_speed": "15",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "4000",
+ "default_jerk": "4",
+ "detect_narrow_internal_solid_infill": "0",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "none",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "4",
+ "infill_wall_overlap": "30%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "4",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.16",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "4",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "250",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "180%",
+ "internal_solid_infill_acceleration": "60%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "200",
+ "ironing_angle": "90",
+ "ironing_flow": "30%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.2",
+ "ironing_speed": "60",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.08",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "4",
+ "outer_wall_line_width": "0.52",
+ "outer_wall_speed": "230",
+ "overhang_1_4_speed": "230",
+ "overhang_2_4_speed": "60",
+ "overhang_3_4_speed": "40",
+ "overhang_4_4_speed": "20",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "15",
+ "precise_outer_wall": "1",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "cone",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "80%",
+ "sparse_infill_density": "100%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "zig-zag",
+ "sparse_infill_speed": "250",
+ "speed_limit_to_height": "[[100,150,100,6000,210],[150,200,80,5500,200],[200,250,60,5000,190]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "default",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.08",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.08",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "10",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1.02",
+ "top_surface_acceleration": "1000",
+ "top_surface_jerk": "4",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "180",
+ "travel_acceleration": "6000",
+ "travel_jerk": "4",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "1",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "10",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "90",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 0.4 nozzle.json
new file mode 100644
index 0000000000..3d9b3234d7
--- /dev/null
+++ b/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 0.4 nozzle.json
@@ -0,0 +1,268 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.08mm HueForge @Creality K2 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "30",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "10",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.3",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K2 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "6000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "0",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "none",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "6",
+ "infill_wall_overlap": "30%",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "6",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.16",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "200%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "30%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.2",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.08",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "30",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "15%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "100%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "zig-zag",
+ "sparse_infill_speed": "300",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "9",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "6",
+ "top_surface_line_width": "0.35",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "4",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "1",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 Plus 0.4 nozzle.json
new file mode 100644
index 0000000000..05bb1d1bb2
--- /dev/null
+++ b/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 Plus 0.4 nozzle.json
@@ -0,0 +1,269 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.08mm HueForge @Creality K2 Plus 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "30",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "12000",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "0",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "none",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30%",
+ "initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.16",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "350",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "30",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.2",
+ "ironing_speed": "60",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.08",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "30",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "15%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "100",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "zig-zag",
+ "sparse_infill_speed": "350",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "9",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "5000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.35",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "12000",
+ "travel_jerk": "12",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "1",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 Pro 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 Pro 0.4 nozzle.json
new file mode 100644
index 0000000000..fadb388927
--- /dev/null
+++ b/resources/profiles/Creality/process/0.08mm HueForge @Creality K2 Pro 0.4 nozzle.json
@@ -0,0 +1,268 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.08mm HueForge @Creality K2 Pro 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "30",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "10",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.3",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K2 Pro 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "6000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "0",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "none",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "6",
+ "infill_wall_overlap": "30%",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "6",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.16",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "200%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "30%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.2",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.08",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "30",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "15%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "100%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "zig-zag",
+ "sparse_infill_speed": "300",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "9",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "6",
+ "top_surface_line_width": "0.35",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "4",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "1",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.08mm HueForge @Creality SPARKX i7 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm HueForge @Creality SPARKX i7 0.4 nozzle.json
new file mode 100644
index 0000000000..f35ef8de4b
--- /dev/null
+++ b/resources/profiles/Creality/process/0.08mm HueForge @Creality SPARKX i7 0.4 nozzle.json
@@ -0,0 +1,271 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.08mm HueForge @Creality SPARKX i7 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[1,1.2,150,5000]]",
+ "acceleration_limit_mess_enable": "1",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "30",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1.05",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "20",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "3",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "4000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "4",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "4500",
+ "initial_layer_infill_speed": "95",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.16",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "4",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "60%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "130",
+ "ironing_angle": "90",
+ "ironing_flow": "30",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.2",
+ "ironing_speed": "60",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.08",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "4",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "130",
+ "overhang_1_4_speed": "60",
+ "overhang_2_4_speed": "40",
+ "overhang_3_4_speed": "20",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "20",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "15%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "1",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "80%",
+ "sparse_infill_density": "100%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "zig-zag",
+ "sparse_infill_speed": "130",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "10",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1.2",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "4",
+ "top_surface_line_width": "0.35",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "130",
+ "travel_acceleration": "6000",
+ "travel_jerk": "8",
+ "travel_speed": "400",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Hi 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Hi 0.4 nozzle.json
index c1feef5741..0353685a8a 100644
--- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Hi 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Hi 0.4 nozzle.json
@@ -1,117 +1,247 @@
{
"type": "process",
- "name": "0.08mm SuperDetail @Creality Hi",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.08mm SuperDetail @Creality Hi",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000,210],[1.0,1.5,80,5500,200],[1.5,2.0,60,5000,190]]",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "7",
"bottom_shell_thickness": "0",
- "bridge_flow": "1",
- "bridge_speed": "50",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1.8",
+ "bridge_no_support": "0",
+ "bridge_speed": "15",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality Hi 0.4 nozzle"
],
- "default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_acceleration": "4000",
+ "default_jerk": "4",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
- "initial_layer_acceleration": "2000",
+ "infill_jerk": "4",
+ "infill_wall_overlap": "30%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "4",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "250",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "270",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "4",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "250",
"interface_shells": "0",
- "ironing_flow": "8%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "180%",
+ "internal_solid_infill_acceleration": "60%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "200",
+ "ironing_angle": "90",
+ "ironing_flow": "8",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.08",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
- "overhang_1_4_speed": "0",
- "overhang_2_4_speed": "50",
- "overhang_3_4_speed": "30",
- "overhang_4_4_speed": "10",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
"only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "4",
+ "outer_wall_line_width": "0.52",
+ "outer_wall_speed": "230",
+ "overhang_1_4_speed": "230",
+ "overhang_2_4_speed": "60",
+ "overhang_3_4_speed": "40",
+ "overhang_4_4_speed": "20",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "15",
"precise_outer_wall": "1",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "300",
- "wall_loops": "2",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "cone",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "250",
- "initial_layer_infill_speed": "105",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "80%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "250",
+ "speed_limit_to_height": "[[100,150,100,6000,210],[150,200,80,5500,200],[200,250,60,5000,190]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "tree(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.4",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
+ "support_angle": "0",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.08",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.08",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "10",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "1000",
+ "top_surface_jerk": "4",
"top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "200",
- "top_shell_layers": "9",
- "top_shell_thickness": "0.8",
- "travel_acceleration": "12000",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "180",
+ "travel_acceleration": "6000",
+ "travel_jerk": "4",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "10",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "35",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "90",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0",
- "default_jerk": "12",
- "outer_wall_jerk": "8",
- "inner_wall_jerk": "8",
- "infill_jerk": "12",
- "top_surface_jerk": "8",
- "initial_layer_jerk": "8",
- "travel_jerk": "12"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1 (0.4 nozzle).json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1 (0.4 nozzle).json
new file mode 100644
index 0000000000..e52e4277a5
--- /dev/null
+++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1 (0.4 nozzle).json
@@ -0,0 +1,269 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.08mm SuperDetail @Creality K1 (0.4 nozzle)",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "7",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1 (0.4 nozzle)"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "20",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "20",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "20",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "20",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "350",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "8",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.08",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "20",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "35",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "350",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "9",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "20",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "20",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1 Max_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1 Max_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..79235fbc87
--- /dev/null
+++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1 Max_CFS-C 0.4 nozzle.json
@@ -0,0 +1,268 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.08mm SuperDetail @Creality K1 Max_CFS-C 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "7",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "20",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "20",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "20",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "20",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "350",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "8",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.08",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "20",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "0",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "180",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "350",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "9",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "20",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "20",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1C 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1C 0.4 nozzle.json
new file mode 100644
index 0000000000..2c8e3bd46e
--- /dev/null
+++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1C 0.4 nozzle.json
@@ -0,0 +1,269 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.08mm SuperDetail @Creality K1C 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "7",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1C 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "6",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "3000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "250",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "8",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.08",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "3000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "25",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "35",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "350",
+ "speed_limit_to_height": "[[100,150,100,6000],\n [150,200,80,5500],\n [200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "9",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "6",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "8",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1C_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1C_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..e9c3195a91
--- /dev/null
+++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1C_CFS-C 0.4 nozzle.json
@@ -0,0 +1,268 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.08mm SuperDetail @Creality K1C_CFS-C 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "7",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "6",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "3000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "250",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "8",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.08",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "3000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "25",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "0",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "180",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "350",
+ "speed_limit_to_height": "[[100,150,100,6000],\n [150,200,80,5500],\n [200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "9",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "6",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "8",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1Max (0.4 nozzle).json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1Max (0.4 nozzle).json
new file mode 100644
index 0000000000..4b10530fb0
--- /dev/null
+++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1Max (0.4 nozzle).json
@@ -0,0 +1,269 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.08mm SuperDetail @Creality K1Max (0.4 nozzle)",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "7",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1 Max (0.4 nozzle)"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "20",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "20",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "20",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "20",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "350",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "8",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.08",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "20",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "35",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "350",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "9",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "20",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "20",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..a53ae48e13
--- /dev/null
+++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K1_CFS-C 0.4 nozzle.json
@@ -0,0 +1,268 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.08mm SuperDetail @Creality K1_CFS-C 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "7",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "20",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "20",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "20",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "20",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "350",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "8",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.08",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "20",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "0",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "180",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "350",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "9",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "20",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "20",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 0.4 nozzle.json
index b5cf54404b..973c9c1115 100644
--- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 0.4 nozzle.json
@@ -1,111 +1,245 @@
{
"type": "process",
- "name": "0.08mm SuperDetail @Creality K2 0.4 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.08mm SuperDetail @Creality K2 0.4 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "7",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "10",
- "internal_bridge_speed": "200%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.3",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 0.4 nozzle"
],
"default_acceleration": "6000",
- "bridge_no_support": "0",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "2000",
- "inner_wall_acceleration": "2000",
- "wall_generator": "classic",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "6",
+ "infill_wall_overlap": "30%",
"initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "6",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "250",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "300",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "200%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
"ironing_flow": "8",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "60",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.08",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
"precise_outer_wall": "0",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "300",
- "wall_loops": "2",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "250",
- "initial_layer_infill_speed": "105",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "300",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.4",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.42",
- "top_surface_acceleration": "2000",
- "top_surface_speed": "200",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "9",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "6",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
"travel_acceleration": "10000",
+ "travel_jerk": "4",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "40",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Plus 0.2 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Plus 0.2 nozzle.json
index f6b50223a1..95296975c8 100644
--- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Plus 0.2 nozzle.json
+++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Plus 0.2 nozzle.json
@@ -1,110 +1,244 @@
{
"type": "process",
- "name": "0.08mm SuperDetail @Creality K2 Plus 0.2 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.08mm SuperDetail @Creality K2 Plus 0.2 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "5",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "25",
- "internal_bridge_speed": "70",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Plus 0.2 nozzle"
],
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.22",
- "outer_wall_speed": "100",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.22",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
"initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.25",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.1",
"initial_layer_speed": "40",
- "gap_infill_speed": "50",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.25",
- "infill_wall_overlap": "30",
- "sparse_infill_speed": "120",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.25",
+ "inner_wall_speed": "150",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.22",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.08",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.22",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.22",
+ "outer_wall_speed": "100",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.25",
- "inner_wall_speed": "150",
- "wall_loops": "4",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.22",
- "internal_solid_infill_speed": "150",
- "initial_layer_infill_speed": "60",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.25",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.2",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.2",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.22",
- "top_surface_acceleration": "2000",
- "top_surface_speed": "100",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "7",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.22",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
"travel_acceleration": "12000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "4",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Plus 0.4 nozzle.json
index 35f5b414b6..f690de029b 100644
--- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Plus 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Plus 0.4 nozzle.json
@@ -1,110 +1,246 @@
{
"type": "process",
- "name": "0.08mm SuperDetail @Creality K2 Plus 0.4 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.08mm SuperDetail @Creality K2 Plus 0.4 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "7",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "50",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Plus 0.4 nozzle"
],
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30%",
"initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "250",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "350",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "350",
"interface_shells": "0",
- "ironing_flow": "8%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "8",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.08",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "350",
- "wall_loops": "2",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "250",
- "initial_layer_infill_speed": "105",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "350",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.4",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "200",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "9",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "5000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
"travel_acceleration": "12000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "40",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Pro 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Pro 0.4 nozzle.json
index 11de25232a..c2fde64f12 100644
--- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Pro 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Pro 0.4 nozzle.json
@@ -1,111 +1,245 @@
{
"type": "process",
- "name": "0.08mm SuperDetail @Creality K2 Pro 0.4 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.08mm SuperDetail @Creality K2 Pro 0.4 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "7",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "10",
- "internal_bridge_speed": "200%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.3",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Pro 0.4 nozzle"
],
"default_acceleration": "6000",
- "bridge_no_support": "0",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "2000",
- "inner_wall_acceleration": "2000",
- "wall_generator": "classic",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "6",
+ "infill_wall_overlap": "30%",
"initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "6",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "250",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "300",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "200%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
"ironing_flow": "8",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "60",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.08",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
"precise_outer_wall": "0",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "300",
- "wall_loops": "2",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "250",
- "initial_layer_infill_speed": "105",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "300",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.4",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.42",
- "top_surface_acceleration": "2000",
- "top_surface_speed": "200",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "9",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "6",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
"travel_acceleration": "10000",
+ "travel_jerk": "4",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "40",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality SPARKX i7 0.4 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality SPARKX i7 0.4 nozzle.json
new file mode 100644
index 0000000000..5c8501305b
--- /dev/null
+++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality SPARKX i7 0.4 nozzle.json
@@ -0,0 +1,248 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.08mm SuperDetail @Creality SPARKX i7 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[1,1.2,150,5000]]",
+ "acceleration_limit_mess_enable": "1",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "7",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1.05",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1.8",
+ "bridge_no_support": "0",
+ "bridge_speed": "20",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "3",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "default_acceleration": "4000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "2",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "230",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "4",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "4500",
+ "initial_layer_infill_speed": "95",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "4",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "230",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "60%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "200",
+ "ironing_angle": "90",
+ "ironing_flow": "8",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.08",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "4",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "100",
+ "overhang_2_4_speed": "60",
+ "overhang_3_4_speed": "40",
+ "overhang_4_4_speed": "20",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "20",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "15%",
+ "seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "1",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "80%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "230",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "9",
+ "top_shell_thickness": "0.84",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "4",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "6000",
+ "travel_jerk": "8",
+ "travel_speed": "400",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 Plus 0.2 nozzle.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 Plus 0.2 nozzle.json
index 4c6981d3bc..83f5306492 100644
--- a/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 Plus 0.2 nozzle.json
+++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 Plus 0.2 nozzle.json
@@ -1,110 +1,244 @@
{
"type": "process",
- "name": "0.10mm HighDetail @Creality K2 Plus 0.2 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.10mm HighDetail @Creality K2 Plus 0.2 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "5",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "25",
- "internal_bridge_speed": "70",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Plus 0.2 nozzle"
],
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.22",
- "outer_wall_speed": "100",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.22",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
"initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.25",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.1",
"initial_layer_speed": "40",
- "gap_infill_speed": "50",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.25",
- "infill_wall_overlap": "30",
- "sparse_infill_speed": "120",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.25",
+ "inner_wall_speed": "150",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.22",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.1",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.22",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.22",
+ "outer_wall_speed": "100",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.25",
- "inner_wall_speed": "150",
- "wall_loops": "4",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.22",
- "internal_solid_infill_speed": "150",
- "initial_layer_infill_speed": "60",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.25",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.2",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.2",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.22",
- "top_surface_acceleration": "2000",
- "top_surface_speed": "100",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "7",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.22",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
"travel_acceleration": "12000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "4",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality SPARKX i7 0.2 nozzle.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality SPARKX i7 0.2 nozzle.json
new file mode 100644
index 0000000000..620bf612b9
--- /dev/null
+++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality SPARKX i7 0.2 nozzle.json
@@ -0,0 +1,272 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.10mm HighDetail @Creality SPARKX i7 0.2 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[1,1.2,150,5000]]",
+ "acceleration_limit_mess_enable": "1",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "6",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1.05",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "3",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.2 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "6000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.075",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "topbottom",
+ "gap_infill_speed": "100",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "15",
+ "initial_layer_acceleration": "4500",
+ "initial_layer_infill_speed": "95",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.25",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.1",
+ "initial_layer_speed": "20",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "3000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.22",
+ "inner_wall_speed": "120",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.22",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "120",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.1",
+ "line_width": "0.22",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "3000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.22",
+ "outer_wall_speed": "120",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "20%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "4",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.22",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height": "[[150,200,220,5000],[200,250,200,4000],[250,300,180,3000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.22",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "25%",
+ "top_shell_layers": "7",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.22",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
+ "travel_acceleration": "8000",
+ "travel_jerk": "8",
+ "travel_speed": "400",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "4",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "10",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 0.4 nozzle.json
index f2a46e6a63..719b13a996 100644
--- a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 0.4 nozzle.json
@@ -1,111 +1,268 @@
{
"type": "process",
- "name": "0.12mm Detail @Creality K2 0.4 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.12mm Detail @Creality K2 0.4 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "5",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "10",
- "internal_bridge_speed": "200%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 0.4 nozzle"
],
+ "counterbore_hole_bridging": "none",
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_generator": "classic",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "12",
+ "infill_wall_overlap": "30%",
"initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "250",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "300",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "200%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.12",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
"precise_outer_wall": "0",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "300",
- "wall_loops": "2",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "250",
- "initial_layer_infill_speed": "105",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "300",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "200",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "6",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "5000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
"travel_acceleration": "12000",
+ "travel_jerk": "4",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "40",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Plus 0.2 nozzle.json b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Plus 0.2 nozzle.json
index aa20043e97..e9964cf9cd 100644
--- a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Plus 0.2 nozzle.json
+++ b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Plus 0.2 nozzle.json
@@ -1,110 +1,244 @@
{
"type": "process",
- "name": "0.12mm Detail @Creality K2 Plus 0.2 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.12mm Detail @Creality K2 Plus 0.2 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "5",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "25",
- "internal_bridge_speed": "70",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Plus 0.2 nozzle"
],
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.22",
- "outer_wall_speed": "100",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.22",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
"initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.25",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.1",
"initial_layer_speed": "40",
- "gap_infill_speed": "50",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.25",
- "infill_wall_overlap": "30",
- "sparse_infill_speed": "120",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.25",
+ "inner_wall_speed": "150",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.22",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.12",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.22",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.22",
+ "outer_wall_speed": "100",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.25",
- "inner_wall_speed": "150",
- "wall_loops": "4",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.22",
- "internal_solid_infill_speed": "150",
- "initial_layer_infill_speed": "60",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.25",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.2",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.2",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.22",
- "top_surface_acceleration": "2000",
- "top_surface_speed": "100",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "7",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.22",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
"travel_acceleration": "12000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "4",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Plus 0.4 nozzle.json
index 45e523172c..e6bdad81af 100644
--- a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Plus 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Plus 0.4 nozzle.json
@@ -1,110 +1,246 @@
{
"type": "process",
- "name": "0.12mm Detail @Creality K2 Plus 0.4 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.12mm Detail @Creality K2 Plus 0.4 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "5",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "50",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Plus 0.4 nozzle"
],
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30%",
"initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "250",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "300",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.12",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "300",
- "wall_loops": "2",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "250",
- "initial_layer_infill_speed": "105",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "300",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.4",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "200",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "6",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "5000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
"travel_acceleration": "12000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "40",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Pro 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Pro 0.4 nozzle.json
index 63d02c6d83..bcb4b21821 100644
--- a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Pro 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Pro 0.4 nozzle.json
@@ -1,111 +1,268 @@
{
"type": "process",
- "name": "0.12mm Detail @Creality K2 Pro 0.4 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.12mm Detail @Creality K2 Pro 0.4 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "5",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "10",
- "internal_bridge_speed": "200%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Pro 0.4 nozzle"
],
+ "counterbore_hole_bridging": "none",
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_generator": "classic",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "12",
+ "infill_wall_overlap": "30%",
"initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "250",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "300",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "200%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.12",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
"precise_outer_wall": "0",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "300",
- "wall_loops": "2",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "250",
- "initial_layer_infill_speed": "105",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "300",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "200",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "6",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "5000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
"travel_acceleration": "12000",
+ "travel_jerk": "4",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "40",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Hi 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Hi 0.4 nozzle.json
index a5f11f1a29..82a540259a 100644
--- a/resources/profiles/Creality/process/0.12mm Fine @Creality Hi 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Hi 0.4 nozzle.json
@@ -1,126 +1,267 @@
{
"type": "process",
- "name": "0.12mm Fine @Creality Hi",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.12mm Fine @Creality Hi",
+ "from": "system",
"instantiation": "true",
- "adaptive_layer_height": "0",
- "reduce_crossing_wall": "0",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
- "bottom_shell_layers": "3",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[0.5,1.0,180,5000],[1.0,1.5,160,4000],[1.5,2.0,150,3000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "5",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "50",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality Hi 0.4 nozzle"
],
- "compatible_printers_condition": "",
- "print_sequence": "by layer",
- "default_acceleration": "12000",
- "bridge_no_support": "0",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "6000",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
- "infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
- "initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.5",
- "initial_layer_print_height": "0.12",
- "initial_layer_speed": "60",
- "gap_infill_speed": "250",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "270",
- "interface_shells": "0",
- "ironing_flow": "10%",
- "ironing_spacing": "0.15",
- "ironing_speed": "100",
- "ironing_type": "no ironing",
- "layer_height": "0.12",
- "reduce_infill_retraction": "1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
- "overhang_1_4_speed": "60",
- "overhang_2_4_speed": "30",
- "overhang_3_4_speed": "10",
- "overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "300",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "12",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "6000",
+ "inner_wall_jerk": "8",
"inner_wall_line_width": "0.45",
- "inner_wall_speed": "300",
- "wall_loops": "2",
- "print_settings_id": "",
+ "inner_wall_speed": "350",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "80%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "350",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.12",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "150",
+ "overhang_1_4_speed": "100",
+ "overhang_2_4_speed": "80",
+ "overhang_3_4_speed": "60",
+ "overhang_4_4_speed": "40",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "precise_outer_wall": "1",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "cone",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "15%",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "250",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "400",
+ "speed_limit_to_height": "[[150,200,220,5000],[200,250,200,4000],[250,300,180,3000]]",
+ "speed_limit_to_height_enable": "0",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "tree(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.22",
- "support_bottom_z_distance": "0.24",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "200",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "5",
"top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
- "travel_speed": "500",
- "enable_prime_tower": "1",
- "wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "35",
- "xy_hole_compensation": "0",
- "xy_contour_compensation": "0",
- "gcode_label_objects": "0",
- "default_jerk": "12",
- "outer_wall_jerk": "8",
- "inner_wall_jerk": "8",
- "infill_jerk": "12",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "3000",
"top_surface_jerk": "8",
- "initial_layer_jerk": "8",
- "travel_jerk": "12"
-}
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "6000",
+ "travel_jerk": "12",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "10",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "90",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality K1 SE 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Fine @Creality K1 SE 0.4 nozzle.json
index 602fdda405..f9e58fdc38 100644
--- a/resources/profiles/Creality/process/0.12mm Fine @Creality K1 SE 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.12mm Fine @Creality K1 SE 0.4 nozzle.json
@@ -116,4 +116,4 @@
"xy_contour_compensation": "0",
"gcode_label_objects": "0",
"precise_outer_wall": "1"
-}
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality K1C 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Fine @Creality K1C 0.4 nozzle.json
index 691891e657..c9dc1cb5f2 100644
--- a/resources/profiles/Creality/process/0.12mm Fine @Creality K1C 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.12mm Fine @Creality K1C 0.4 nozzle.json
@@ -115,4 +115,4 @@
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
-}
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality SPARKX i7 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Fine @Creality SPARKX i7 0.4 nozzle.json
new file mode 100644
index 0000000000..e4cda3e407
--- /dev/null
+++ b/resources/profiles/Creality/process/0.12mm Fine @Creality SPARKX i7 0.4 nozzle.json
@@ -0,0 +1,269 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.12mm Fine @Creality SPARKX i7 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[1,1.2,150,5000]]",
+ "acceleration_limit_mess_enable": "1",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "5",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1.05",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "20",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "3",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "4000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "2",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "230",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "4",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "4500",
+ "initial_layer_infill_speed": "95",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "4",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "230",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "60%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "200",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.12",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "4",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "60",
+ "overhang_3_4_speed": "40",
+ "overhang_4_4_speed": "20",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "20",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "15%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "1",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "80%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "230",
+ "speed_limit_to_height": "[[150,200,220,5000],[200,250,200,4000],[250,300,180,3000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "6",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "4",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "6000",
+ "travel_jerk": "8",
+ "travel_speed": "400",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "10",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 Plus 0.2 nozzle.json b/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 Plus 0.2 nozzle.json
index f9737e9e7c..e32511259e 100644
--- a/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 Plus 0.2 nozzle.json
+++ b/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 Plus 0.2 nozzle.json
@@ -1,110 +1,246 @@
{
"type": "process",
- "name": "0.14mm Optimal @Creality K2 Plus 0.2 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.14mm Optimal @Creality K2 Plus 0.2 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000], [1.0,1.5,80,5500], [1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "5",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "25",
- "internal_bridge_speed": "70",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Plus 0.2 nozzle"
],
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.22",
- "outer_wall_speed": "100",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.22",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
"initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.25",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.1",
"initial_layer_speed": "40",
- "gap_infill_speed": "50",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.25",
- "infill_wall_overlap": "30",
- "sparse_infill_speed": "120",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.25",
+ "inner_wall_speed": "150",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.22",
+ "internal_solid_infill_pattern": "zig-zag",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.14",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.22",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.22",
+ "outer_wall_speed": "100",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.25",
- "inner_wall_speed": "150",
- "wall_loops": "4",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.22",
- "internal_solid_infill_speed": "150",
- "initial_layer_infill_speed": "60",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.25",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height": "[[100,150,100,6000], [150,200,80,5500], [200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.2",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.2",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.22",
- "top_surface_acceleration": "2000",
- "top_surface_speed": "100",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "7",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.22",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
"travel_acceleration": "12000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "4",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.16mm Fine @Creality Ender-3 V4 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Fine @Creality Ender-3 V4 0.4 nozzle.json
new file mode 100644
index 0000000000..7ccf8e901d
--- /dev/null
+++ b/resources/profiles/Creality/process/0.16mm Fine @Creality Ender-3 V4 0.4 nozzle.json
@@ -0,0 +1,266 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.16mm Fine @Creality Ender-3 V4 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "4",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "10",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "8000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "200",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "270",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "100",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.16",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "95%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "50",
+ "overhang_2_4_speed": "30",
+ "overhang_3_4_speed": "10",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\n0.2,0.4444;\n0.4,0.6145;\n0.6,0.7059;\n0.8,0.7619;\n1.5,0.8571;\n2,0.8889;\n3,0.9231;\n5,0.9520;\n10,1",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "320",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "6",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "8000",
+ "travel_jerk": "8",
+ "travel_speed": "400",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "90",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Hi 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Hi 0.4 nozzle.json
index 9d4480c1d7..f29f1c3fdf 100644
--- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Hi 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Hi 0.4 nozzle.json
@@ -1,119 +1,267 @@
{
"type": "process",
- "name": "0.16mm Optimal @Creality Hi",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.16mm Optimal @Creality Hi",
+ "from": "system",
"instantiation": "true",
- "adaptive_layer_height": "0",
- "reduce_crossing_wall": "0",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
- "bottom_shell_layers": "3",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[0.5,1.0,180,5000],[1.0,1.5,160,4000],[1.5,2.0,150,3000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "4",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
- "bridge_speed": "50",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality Hi 0.4 nozzle"
],
- "compatible_printers_condition": "",
- "print_sequence": "by layer",
- "default_acceleration": "12000",
- "bridge_no_support": "0",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "6000",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
- "infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
- "initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.5",
- "initial_layer_print_height": "0.16",
- "initial_layer_speed": "60",
- "gap_infill_speed": "300",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "15%",
- "sparse_infill_speed": "500",
- "interface_shells": "0",
- "ironing_flow": "10%",
- "ironing_spacing": "0.15",
- "ironing_speed": "100",
- "ironing_type": "no ironing",
- "layer_height": "0.16",
- "reduce_infill_retraction": "1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
- "overhang_1_4_speed": "60",
- "overhang_2_4_speed": "30",
- "overhang_3_4_speed": "10",
- "overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "12",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "6000",
+ "inner_wall_jerk": "8",
"inner_wall_line_width": "0.45",
"inner_wall_speed": "300",
- "wall_loops": "2",
- "print_settings_id": "",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "50",
+ "internal_solid_infill_acceleration": "80%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "270",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.16",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "150",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "1",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "cone",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "15%",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "300",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "250",
+ "speed_limit_to_height": "[[150,200,220,5000],[200,250,200,4000],[250,300,180,3000]]",
+ "speed_limit_to_height_enable": "0",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "tree(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "6",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "3000",
+ "top_surface_jerk": "8",
"top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
+ "top_surface_pattern": "monotonicline",
"top_surface_speed": "200",
- "top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "travel_acceleration": "6000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "10",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "35",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "90",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 (0.4 nozzle).json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 (0.4 nozzle).json
index 2bf67560c0..5db4fc486e 100644
--- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 (0.4 nozzle).json
+++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 (0.4 nozzle).json
@@ -1,118 +1,269 @@
{
"type": "process",
- "name": "0.16mm Optimal @Creality K1 (0.4 nozzle)",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.16mm Optimal @Creality K1 (0.4 nozzle)",
+ "from": "system",
"instantiation": "true",
- "adaptive_layer_height": "0",
- "reduce_crossing_wall": "0",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
- "bottom_shell_layers": "3",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "4",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "50",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K1 (0.4 nozzle)"
],
- "compatible_printers_condition": "",
- "print_sequence": "by layer",
- "default_acceleration": "12000",
- "bridge_no_support": "0",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "20",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
- "infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
- "initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.5",
- "initial_layer_print_height": "0.16",
- "initial_layer_speed": "60",
- "gap_infill_speed": "300",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "15%",
- "sparse_infill_speed": "500",
- "interface_shells": "0",
- "ironing_flow": "10%",
- "ironing_spacing": "0.15",
- "ironing_speed": "100",
- "ironing_type": "no ironing",
- "layer_height": "0.16",
- "reduce_infill_retraction": "1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
- "overhang_1_4_speed": "60",
- "overhang_2_4_speed": "30",
- "overhang_3_4_speed": "10",
- "overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "20",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "20",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "20",
"inner_wall_line_width": "0.45",
"inner_wall_speed": "300",
- "wall_loops": "3",
- "print_settings_id": "",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.16",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "20",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "35",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "300",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "300",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "20",
"top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
+ "top_surface_pattern": "monotonicline",
"top_surface_speed": "200",
- "top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "travel_acceleration": "10000",
+ "travel_jerk": "20",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 Max_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 Max_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..d43806e95a
--- /dev/null
+++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 Max_CFS-C 0.4 nozzle.json
@@ -0,0 +1,268 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.16mm Optimal @Creality K1 Max_CFS-C 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "4",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "20",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "20",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "20",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "20",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.16",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "20",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "0",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "180",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "300",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "20",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "20",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 SE 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 SE 0.4 nozzle.json
index d517084ebe..ab0303c3e4 100644
--- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 SE 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 SE 0.4 nozzle.json
@@ -1,119 +1,267 @@
{
"type": "process",
- "name": "0.16mm Optimal @Creality K1 SE",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.16mm Optimal @Creality K1 SE",
+ "from": "system",
"instantiation": "true",
- "adaptive_layer_height": "0",
- "reduce_crossing_wall": "0",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
- "bottom_shell_layers": "3",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "4",
"bottom_shell_thickness": "0",
- "bridge_flow": "1",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.95",
+ "bridge_no_support": "0",
"bridge_speed": "50",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K1 SE 0.4 nozzle"
],
- "compatible_printers_condition": "",
- "print_sequence": "by layer",
- "default_acceleration": "12000",
- "bridge_no_support": "0",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "10",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
- "infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
- "initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.5",
- "initial_layer_print_height": "0.16",
- "initial_layer_speed": "60",
- "gap_infill_speed": "300",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "15%",
- "sparse_infill_speed": "500",
- "interface_shells": "0",
- "ironing_flow": "10%",
- "ironing_spacing": "0.15",
- "ironing_speed": "100",
- "ironing_type": "no ironing",
- "layer_height": "0.16",
- "reduce_infill_retraction": "1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
- "overhang_1_4_speed": "60",
- "overhang_2_4_speed": "30",
- "overhang_3_4_speed": "10",
- "overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30%",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "10",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "10",
"inner_wall_line_width": "0.45",
"inner_wall_speed": "300",
- "wall_loops": "3",
- "print_settings_id": "",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.16",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "50",
+ "overhang_2_4_speed": "25",
+ "overhang_3_4_speed": "10",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "35",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "300",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "2",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "300",
+ "speed_limit_to_height_enable": "0",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "6",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
"top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
+ "top_surface_pattern": "monotonicline",
"top_surface_speed": "200",
- "top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "travel_acceleration": "10000",
+ "travel_jerk": "10",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0",
- "precise_outer_wall": "1"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 SE_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 SE_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..294d3dae01
--- /dev/null
+++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1 SE_CFS-C 0.4 nozzle.json
@@ -0,0 +1,266 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.16mm Optimal @Creality K1 SE_CFS-C 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "4",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.95",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1 SE_CFS-C 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "10",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30%",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "10",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "10",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.16",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "50",
+ "overhang_2_4_speed": "25",
+ "overhang_3_4_speed": "10",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "0",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "180",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "2",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "300",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "6",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "10",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1C 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1C 0.4 nozzle.json
index 7c0114b166..c21c1f8143 100644
--- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1C 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1C 0.4 nozzle.json
@@ -1,118 +1,269 @@
{
"type": "process",
- "name": "0.16mm Optimal @Creality K1C",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.16mm Optimal @Creality K1C",
+ "from": "system",
"instantiation": "true",
- "adaptive_layer_height": "0",
- "reduce_crossing_wall": "0",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
- "bottom_shell_layers": "3",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "4",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
- "bridge_speed": "50",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K1C 0.4 nozzle"
],
- "compatible_printers_condition": "",
- "print_sequence": "by layer",
- "default_acceleration": "12000",
- "bridge_no_support": "0",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "6",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "3000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "250",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.16",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "3000",
+ "outer_wall_jerk": "6",
"outer_wall_line_width": "0.42",
"outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
- "infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
- "initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.5",
- "initial_layer_print_height": "0.16",
- "initial_layer_speed": "60",
- "gap_infill_speed": "300",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "15%",
- "sparse_infill_speed": "500",
- "interface_shells": "0",
- "ironing_flow": "10%",
- "ironing_spacing": "0.15",
- "ironing_speed": "100",
- "ironing_type": "no ironing",
- "layer_height": "0.16",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
- "overhang_1_4_speed": "60",
- "overhang_2_4_speed": "30",
- "overhang_3_4_speed": "10",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "25",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "300",
- "wall_loops": "3",
- "print_settings_id": "",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "35",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "300",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "300",
+ "speed_limit_to_height": "[[100,150,100,6000],\n [150,200,80,5500],\n [200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "6",
"top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
+ "top_surface_pattern": "monotonicline",
"top_surface_speed": "200",
- "top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "travel_acceleration": "10000",
+ "travel_jerk": "8",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1C_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1C_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..7e3512aa46
--- /dev/null
+++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1C_CFS-C 0.4 nozzle.json
@@ -0,0 +1,268 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.16mm Optimal @Creality K1C_CFS-C 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "4",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "6",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "3000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "250",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.16",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "3000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "25",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "0",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "180",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "300",
+ "speed_limit_to_height": "[[100,150,100,6000],\n [150,200,80,5500],\n [200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "6",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "8",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1Max (0.4 nozzle).json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1Max (0.4 nozzle).json
index ae9f5b1679..f0d420ac97 100644
--- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1Max (0.4 nozzle).json
+++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1Max (0.4 nozzle).json
@@ -1,118 +1,269 @@
{
"type": "process",
- "name": "0.16mm Optimal @Creality K1Max (0.4 nozzle)",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.16mm Optimal @Creality K1Max (0.4 nozzle)",
+ "from": "system",
"instantiation": "true",
- "adaptive_layer_height": "0",
- "reduce_crossing_wall": "0",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
- "bottom_shell_layers": "3",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "4",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
- "bridge_speed": "50",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
- "brim_object_gap": "0.1",
- "compatible_printers_condition": "",
- "print_sequence": "by layer",
- "default_acceleration": "12000",
"bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1 Max (0.4 nozzle)"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "20",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
- "infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
- "initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.5",
- "initial_layer_print_height": "0.16",
- "initial_layer_speed": "60",
- "gap_infill_speed": "250",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "15%",
- "sparse_infill_speed": "270",
- "interface_shells": "0",
- "ironing_flow": "10%",
- "ironing_spacing": "0.15",
- "ironing_speed": "30",
- "ironing_type": "no ironing",
- "layer_height": "0.16",
- "reduce_infill_retraction": "1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
- "overhang_1_4_speed": "60",
- "overhang_2_4_speed": "30",
- "overhang_3_4_speed": "10",
- "overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "20",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "20",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "20",
"inner_wall_line_width": "0.45",
"inner_wall_speed": "300",
- "wall_loops": "3",
- "print_settings_id": "",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.16",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "20",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "35",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "250",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "300",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "20",
"top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
+ "top_surface_pattern": "monotonicline",
"top_surface_speed": "200",
- "top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "travel_acceleration": "10000",
+ "travel_jerk": "20",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0",
- "compatible_printers": [
- "Creality K1 Max (0.4 nozzle)"
- ]
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K1_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..27a62492d6
--- /dev/null
+++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K1_CFS-C 0.4 nozzle.json
@@ -0,0 +1,268 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.16mm Optimal @Creality K1_CFS-C 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "4",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "20",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "20",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "20",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "20",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.16",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "20",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "0",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "180",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "300",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "20",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "20",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 0.4 nozzle.json
index ca69b616ce..a97b78472c 100644
--- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 0.4 nozzle.json
@@ -1,111 +1,268 @@
{
"type": "process",
- "name": "0.16mm Optimal @Creality K2 0.4 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.16mm Optimal @Creality K2 0.4 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "4",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "10",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 0.4 nozzle"
],
+ "counterbore_hole_bridging": "none",
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_generator": "classic",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "12",
+ "infill_wall_overlap": "30%",
"initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "250",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "270",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.16",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
"precise_outer_wall": "0",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "300",
- "wall_loops": "2",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "250",
- "initial_layer_infill_speed": "105",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "270",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "200",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "6",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "5000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
"travel_acceleration": "12000",
+ "travel_jerk": "4",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "40",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 Plus 0.4 nozzle.json
index cf9a2c41b3..ccf524251e 100644
--- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 Plus 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 Plus 0.4 nozzle.json
@@ -1,110 +1,246 @@
{
"type": "process",
- "name": "0.16mm Optimal @Creality K2 Plus 0.4 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.16mm Optimal @Creality K2 Plus 0.4 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "4",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "50",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Plus 0.4 nozzle"
],
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30%",
"initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "250",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "300",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.16",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "300",
- "wall_loops": "2",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "250",
- "initial_layer_infill_speed": "105",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "300",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.4",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "200",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "5",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "5000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
"travel_acceleration": "12000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "40",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 Pro 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 Pro 0.4 nozzle.json
index 1029b2de12..19a32f523e 100644
--- a/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 Pro 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality K2 Pro 0.4 nozzle.json
@@ -1,111 +1,268 @@
{
"type": "process",
- "name": "0.16mm Optimal @Creality K2 Pro 0.4 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.16mm Optimal @Creality K2 Pro 0.4 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "4",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "10",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Pro 0.4 nozzle"
],
+ "counterbore_hole_bridging": "none",
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_generator": "classic",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "12",
+ "infill_wall_overlap": "30%",
"initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "250",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "270",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.16",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
"precise_outer_wall": "0",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "300",
- "wall_loops": "2",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "250",
- "initial_layer_infill_speed": "105",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "270",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "200",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "6",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "5000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
"travel_acceleration": "12000",
+ "travel_jerk": "4",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "40",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality SPARKX i7 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality SPARKX i7 0.4 nozzle.json
new file mode 100644
index 0000000000..4da57df06a
--- /dev/null
+++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality SPARKX i7 0.4 nozzle.json
@@ -0,0 +1,269 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.16mm Optimal @Creality SPARKX i7 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[1,1.2,150,5000]]",
+ "acceleration_limit_mess_enable": "1",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "4",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1.05",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "3",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "6000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "230",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "4500",
+ "initial_layer_infill_speed": "95",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "4",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "230",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "200",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.16",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "4",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "50",
+ "overhang_2_4_speed": "30",
+ "overhang_3_4_speed": "10",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "30",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "15%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "2",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "230",
+ "speed_limit_to_height": "[[150,200,220,5000],[200,250,200,4000],[250,300,180,3000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "6",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "8000",
+ "travel_jerk": "8",
+ "travel_speed": "400",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "10",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.16mm Standard @Creality K2 SE 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Standard @Creality K2 SE 0.4 nozzle.json
new file mode 100644
index 0000000000..4026d2c642
--- /dev/null
+++ b/resources/profiles/Creality/process/0.16mm Standard @Creality K2 SE 0.4 nozzle.json
@@ -0,0 +1,266 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.16mm Standard @Creality K2 SE 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "4",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.9",
+ "bridge_no_support": "0",
+ "bridge_speed": "10",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K2 SE 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "6",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "6",
+ "infill_wall_overlap": "30%",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "6",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "250",
+ "interface_shells": "0",
+ "internal_bridge_flow": "0.95",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.16",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "25",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "35",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "250",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "6",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "6",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "6",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.18mm Detail @Creality K2 Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.18mm Detail @Creality K2 Plus 0.6 nozzle.json
index f4cd8c2fda..736152328b 100644
--- a/resources/profiles/Creality/process/0.18mm Detail @Creality K2 Plus 0.6 nozzle.json
+++ b/resources/profiles/Creality/process/0.18mm Detail @Creality K2 Plus 0.6 nozzle.json
@@ -1,110 +1,246 @@
{
"type": "process",
- "name": "0.18mm Detail @Creality K2 Plus 0.6 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.18mm Detail @Creality K2 Plus 0.6 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "25",
- "internal_bridge_speed": "70",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Plus 0.6 nozzle"
],
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.62",
- "outer_wall_speed": "100",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.62",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
"initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.65",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.62",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.3",
"initial_layer_speed": "40",
- "gap_infill_speed": "50",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.65",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "120",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.62",
+ "inner_wall_speed": "150",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.62",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.18",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.62",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.62",
+ "outer_wall_speed": "100",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.65",
- "inner_wall_speed": "150",
- "wall_loops": "2",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.62",
- "internal_solid_infill_speed": "150",
- "initial_layer_infill_speed": "60",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.62",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height": "[[150,200,200,2000],[200,250,200,1500],[250,330,200,1000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.6",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.6",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.62",
- "top_surface_acceleration": "2000",
- "top_surface_speed": "100",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.62",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
"travel_acceleration": "12000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.1mm Standard @Creality Hi 0.2 nozzle.json b/resources/profiles/Creality/process/0.1mm Standard @Creality Hi 0.2 nozzle.json
new file mode 100644
index 0000000000..b1a3389552
--- /dev/null
+++ b/resources/profiles/Creality/process/0.1mm Standard @Creality Hi 0.2 nozzle.json
@@ -0,0 +1,268 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.1mm Standard @Creality Hi 0.2 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[0.5,1.0,180,5000],[1.0,1.5,160,4000],[1.5,2.0,150,3000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "5",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.84",
+ "bridge_no_support": "0",
+ "bridge_speed": "40",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality Hi 0.2 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "12000",
+ "default_jerk": "6",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "6",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "40",
+ "initial_layer_jerk": "6",
+ "initial_layer_line_width": "0.25",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.1",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.22",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "internal_bridge_flow": "0.84",
+ "internal_bridge_speed": "60",
+ "internal_solid_infill_acceleration": "80%",
+ "internal_solid_infill_line_width": "0.22",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.1",
+ "line_width": "0.22",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.22",
+ "outer_wall_speed": "100",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "50",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "1",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "cone",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "15%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.25",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "150",
+ "speed_limit_to_height": "[[150,200,220,5000],[200,250,200,4000],[250,300,180,3000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.22",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "7",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "6",
+ "top_surface_line_width": "0.22",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
+ "travel_acceleration": "12000",
+ "travel_jerk": "6",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "4",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "10",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "90",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.20mm High Quality @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm High Quality @Creality K2 Plus 0.4 nozzle.json
new file mode 100644
index 0000000000..e6e7bfbde0
--- /dev/null
+++ b/resources/profiles/Creality/process/0.20mm High Quality @Creality K2 Plus 0.4 nozzle.json
@@ -0,0 +1,269 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.20mm High Quality @Creality K2 Plus 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "8000",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "200",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "15",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.42",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "180",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.2",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.4",
+ "outer_wall_speed": "80",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "20%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\n0.2,0.4444;\n0.4,0.6145;\n0.6,0.7059;\n0.8,0.7619;\n1.5,0.8571;\n2,0.8889;\n3,0.9231;\n5,0.9520;\n10,1",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.42",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "200",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "4",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "8000",
+ "travel_jerk": "12",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "1",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender-3 V4 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender-3 V4 0.4 nozzle.json
new file mode 100644
index 0000000000..64fb27df82
--- /dev/null
+++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender-3 V4 0.4 nozzle.json
@@ -0,0 +1,266 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.20mm Standard @Creality Ender-3 V4 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "8000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "200",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "100",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.2",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "95%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "30",
+ "overhang_3_4_speed": "20",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\n0.2,0.4444;\n0.4,0.6145;\n0.6,0.7059;\n0.8,0.7619;\n1.5,0.8571;\n2,0.8889;\n3,0.9231;\n5,0.9520;\n10,1",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "250",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "8000",
+ "travel_jerk": "8",
+ "travel_speed": "400",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "90",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender-5 Max 0.4mm nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender-5 Max 0.4mm nozzle.json
index 2f807eea7f..21bb216a1d 100644
--- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender-5 Max 0.4mm nozzle.json
+++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender-5 Max 0.4mm nozzle.json
@@ -170,10 +170,14 @@
"small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "10",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament": "1",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.55",
"sparse_infill_pattern": "zig-zag",
"sparse_infill_speed": "500",
@@ -240,7 +244,9 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "wall_filament": "1",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Hi 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Hi 0.4 nozzle.json
index 4cfdac2e0e..dd7a51c3d3 100644
--- a/resources/profiles/Creality/process/0.20mm Standard @Creality Hi 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Hi 0.4 nozzle.json
@@ -1,40 +1,36 @@
{
"type": "process",
"name": "0.20mm Standard @Creality Hi",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
- "adaptive_layer_height": "0",
"reduce_crossing_wall": "0",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
- "bridge_flow": "1",
- "bridge_speed": "50",
- "internal_bridge_speed": "150%",
+ "bridge_flow": "0.95",
+ "bridge_speed": "25",
+ "internal_bridge_speed": "50",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality Hi 0.4 nozzle"
],
- "compatible_printers_condition": "",
"print_sequence": "by layer",
- "default_acceleration": "12000",
+ "default_acceleration": "6000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.42",
- "outer_wall_speed": "230",
+ "outer_wall_speed": "150",
"outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
+ "inner_wall_acceleration": "6000",
"line_width": "0.42",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "sparse_infill_density": "15",
+ "sparse_infill_pattern": "grid",
"initial_layer_acceleration": "2000",
"initial_layer_line_width": "0.5",
"initial_layer_print_height": "0.2",
@@ -42,12 +38,12 @@
"gap_infill_speed": "250",
"infill_combination": "0",
"sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
+ "infill_wall_overlap": "30",
"sparse_infill_speed": "270",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
- "ironing_speed": "100",
+ "ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.2",
"reduce_infill_retraction": "1",
@@ -62,12 +58,11 @@
"inner_wall_line_width": "0.45",
"inner_wall_speed": "300",
"wall_loops": "2",
- "print_settings_id": "",
"raft_layers": "0",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_entire_loop": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
@@ -75,11 +70,11 @@
"internal_solid_infill_line_width": "0.42",
"internal_solid_infill_speed": "250",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
- "support_type": "tree(auto)",
+ "support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
@@ -93,34 +88,182 @@
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
+ "top_surface_acceleration": "3000",
"top_surface_speed": "200",
"top_shell_layers": "5",
"top_shell_thickness": "0.8",
- "travel_acceleration": "12000",
+ "travel_acceleration": "6000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "35",
+ "prime_tower_width": "60",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0",
+ "gcode_label_objects": "1",
"default_jerk": "12",
"outer_wall_jerk": "8",
"inner_wall_jerk": "8",
"infill_jerk": "12",
"top_surface_jerk": "8",
"initial_layer_jerk": "8",
- "travel_jerk": "12"
-}
+ "travel_jerk": "12",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[0.5,1.0,180,5000],[1.0,1.5,160,4000],[1.5,2.0,150,3000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "counterbore_hole_bridging": "none",
+ "detect_narrow_internal_solid_infill": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "internal_bridge_flow": "1",
+ "internal_solid_infill_acceleration": "80%",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "90",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "ooze_prevention": "0",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "cone",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "15%",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height": "[[150,200,220,5000],[200,250,200,4000],[250,300,180,3000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "10",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "90",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K1 (0.4 nozzle).json b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 (0.4 nozzle).json
index bbb6021d38..1b1be37c49 100644
--- a/resources/profiles/Creality/process/0.20mm Standard @Creality K1 (0.4 nozzle).json
+++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 (0.4 nozzle).json
@@ -1,27 +1,25 @@
{
"type": "process",
"name": "0.20mm Standard @Creality K1 (0.4 nozzle)",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
- "adaptive_layer_height": "0",
"reduce_crossing_wall": "0",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
- "bridge_flow": "1",
- "bridge_speed": "50",
+ "bridge_flow": "0.9",
+ "bridge_speed": "30",
"internal_bridge_speed": "150%",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K1 (0.4 nozzle)"
],
- "compatible_printers_condition": "",
"print_sequence": "by layer",
- "default_acceleration": "12000",
+ "default_acceleration": "10000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
@@ -29,25 +27,23 @@
"outer_wall_speed": "200",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.42",
"infill_direction": "45",
"sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
- "initial_layer_acceleration": "500",
+ "sparse_infill_pattern": "grid",
+ "initial_layer_acceleration": "1000",
"initial_layer_line_width": "0.5",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "300",
+ "gap_infill_speed": "250",
"infill_combination": "0",
"sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "15%",
- "sparse_infill_speed": "500",
+ "infill_wall_overlap": "30",
+ "sparse_infill_speed": "270",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
- "ironing_speed": "100",
+ "ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.2",
"reduce_infill_retraction": "1",
@@ -60,21 +56,20 @@
"only_one_wall_top": "1",
"inner_wall_line_width": "0.45",
"inner_wall_speed": "300",
- "wall_loops": "3",
- "print_settings_id": "",
+ "wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_entire_loop": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "300",
+ "internal_solid_infill_speed": "250",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
@@ -92,27 +87,181 @@
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
+ "top_surface_acceleration": "2000",
"top_surface_speed": "200",
- "top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "travel_acceleration": "10000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
+ "prime_tower_width": "35",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "gcode_label_objects": "1",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "counterbore_hole_bridging": "none",
+ "default_jerk": "20",
+ "detect_narrow_internal_solid_infill": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_jerk": "20",
+ "initial_layer_jerk": "20",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_jerk": "20",
+ "internal_bridge_flow": "1",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "90",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "ooze_prevention": "0",
+ "outer_wall_jerk": "20",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "30",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_jerk": "20",
+ "travel_jerk": "20",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K1 Max_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 Max_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..09eca93c54
--- /dev/null
+++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 Max_CFS-C 0.4 nozzle.json
@@ -0,0 +1,266 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.20mm Standard @Creality K1 Max_CFS-C 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.9",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "20",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "20",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "20",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "20",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.2",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "20",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "0",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "180",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "270",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "20",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "20",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE 0.4.json
index e2d4b26c52..b91e674d2b 100644
--- a/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE 0.4.json
+++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE 0.4.json
@@ -1,8 +1,7 @@
{
"type": "process",
"name": "0.20mm Standard @Creality K1 SE",
- "renamed_from": "0.20mm Fast @Creality K1 SE 0.4",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
@@ -10,15 +9,15 @@
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
- "bridge_flow": "1",
- "bridge_speed": "100",
- "internal_bridge_speed": "70",
+ "bridge_flow": "0.95",
+ "bridge_speed": "50",
+ "internal_bridge_speed": "150%",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K1 SE 0.4 nozzle"
],
- "default_acceleration": "12000",
+ "default_acceleration": "10000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
@@ -26,25 +25,23 @@
"outer_wall_speed": "200",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.42",
"infill_direction": "45",
"sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "sparse_infill_pattern": "grid",
"initial_layer_acceleration": "1000",
"initial_layer_line_width": "0.5",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "200",
+ "gap_infill_speed": "250",
"infill_combination": "0",
"sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "15%",
- "sparse_infill_speed": "250",
+ "infill_wall_overlap": "30%",
+ "sparse_infill_speed": "270",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
- "ironing_speed": "100",
+ "ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.2",
"reduce_infill_retraction": "1",
@@ -66,7 +63,7 @@
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.42",
"internal_solid_infill_speed": "250",
- "initial_layer_infill_speed": "105",
+ "initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
@@ -84,29 +81,187 @@
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.42",
"top_surface_acceleration": "2000",
"top_surface_speed": "150",
- "top_shell_layers": "4",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "travel_acceleration": "10000",
"initial_layer_travel_speed": "100%",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
+ "prime_tower_width": "35",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0",
- "precise_outer_wall": "1"
-}
+ "gcode_label_objects": "1",
+ "precise_outer_wall": "0",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "counterbore_hole_bridging": "none",
+ "default_jerk": "10",
+ "detect_narrow_internal_solid_infill": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_jerk": "10",
+ "initial_layer_jerk": "10",
+ "initial_layer_min_bead_width": "85%",
+ "inner_wall_jerk": "10",
+ "internal_bridge_flow": "1",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "90",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "ooze_prevention": "0",
+ "outer_wall_jerk": "8",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "reduce_crossing_wall": "0",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_jerk": "10",
+ "travel_jerk": "10",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..d52f146a9c
--- /dev/null
+++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K1 SE_CFS-C 0.4 nozzle.json
@@ -0,0 +1,266 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.20mm Standard @Creality K1 SE_CFS-C 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.95",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1 SE_CFS-C 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "10",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30%",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "10",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "10",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.2",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "25",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "0",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "180",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "270",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "10000",
+ "travel_jerk": "10",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K1C 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K1C 0.4 nozzle.json
index d6d698bfd9..0b069abf9b 100644
--- a/resources/profiles/Creality/process/0.20mm Standard @Creality K1C 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K1C 0.4 nozzle.json
@@ -1,53 +1,49 @@
{
"type": "process",
"name": "0.20mm Standard @Creality K1C",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
- "adaptive_layer_height": "0",
"reduce_crossing_wall": "0",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
- "bridge_flow": "1",
- "bridge_speed": "50",
+ "bridge_flow": "0.9",
+ "bridge_speed": "25",
"internal_bridge_speed": "150%",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K1C 0.4 nozzle"
],
- "compatible_printers_condition": "",
"print_sequence": "by layer",
- "default_acceleration": "12000",
+ "default_acceleration": "10000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.42",
"outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
+ "outer_wall_acceleration": "3000",
+ "inner_wall_acceleration": "3000",
"line_width": "0.42",
"infill_direction": "45",
"sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
- "initial_layer_acceleration": "500",
+ "sparse_infill_pattern": "grid",
+ "initial_layer_acceleration": "1000",
"initial_layer_line_width": "0.5",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "300",
+ "gap_infill_speed": "250",
"infill_combination": "0",
"sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "15%",
- "sparse_infill_speed": "500",
+ "infill_wall_overlap": "30",
+ "sparse_infill_speed": "270",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
- "ironing_speed": "100",
+ "ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.2",
"reduce_infill_retraction": "1",
@@ -55,26 +51,25 @@
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
- "overhang_3_4_speed": "30",
+ "overhang_3_4_speed": "25",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"inner_wall_line_width": "0.45",
- "inner_wall_speed": "300",
- "wall_loops": "3",
- "print_settings_id": "",
+ "inner_wall_speed": "250",
+ "wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_entire_loop": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "300",
+ "internal_solid_infill_speed": "250",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
@@ -92,27 +87,181 @@
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
+ "top_surface_acceleration": "2000",
"top_surface_speed": "200",
- "top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "travel_acceleration": "10000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
+ "prime_tower_width": "35",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "gcode_label_objects": "1",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "counterbore_hole_bridging": "none",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_jerk": "8",
+ "initial_layer_jerk": "6",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_jerk": "6",
+ "internal_bridge_flow": "1",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "90",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "ooze_prevention": "0",
+ "outer_wall_jerk": "6",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height": "[[100,150,100,6000],\n [150,200,80,5500],\n [200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_jerk": "6",
+ "travel_jerk": "8",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K1C_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K1C_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..8bb9385441
--- /dev/null
+++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K1C_CFS-C 0.4 nozzle.json
@@ -0,0 +1,266 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.20mm Standard @Creality K1C_CFS-C 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.9",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "6",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "3000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "250",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.2",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "3000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "25",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "0",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "180",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "270",
+ "speed_limit_to_height": "[[100,150,100,6000],\n [150,200,80,5500],\n [200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "6",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "8",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K1Max (0.4 nozzle).json b/resources/profiles/Creality/process/0.20mm Standard @Creality K1Max (0.4 nozzle).json
index e53c5628c4..29d8f1e966 100644
--- a/resources/profiles/Creality/process/0.20mm Standard @Creality K1Max (0.4 nozzle).json
+++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K1Max (0.4 nozzle).json
@@ -1,24 +1,22 @@
{
"type": "process",
"name": "0.20mm Standard @Creality K1Max (0.4 nozzle)",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
- "adaptive_layer_height": "0",
"reduce_crossing_wall": "0",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
- "bridge_flow": "1",
- "bridge_speed": "50",
+ "bridge_flow": "0.9",
+ "bridge_speed": "30",
"internal_bridge_speed": "150%",
"brim_width": "5",
"brim_object_gap": "0.1",
- "compatible_printers_condition": "",
"print_sequence": "by layer",
- "default_acceleration": "12000",
+ "default_acceleration": "10000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
@@ -26,20 +24,18 @@
"outer_wall_speed": "200",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.42",
"infill_direction": "45",
"sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
- "initial_layer_acceleration": "500",
+ "sparse_infill_pattern": "grid",
+ "initial_layer_acceleration": "1000",
"initial_layer_line_width": "0.5",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
"gap_infill_speed": "250",
"infill_combination": "0",
"sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "15%",
+ "infill_wall_overlap": "30",
"sparse_infill_speed": "270",
"interface_shells": "0",
"ironing_flow": "10%",
@@ -57,13 +53,12 @@
"only_one_wall_top": "1",
"inner_wall_line_width": "0.45",
"inner_wall_speed": "300",
- "wall_loops": "3",
- "print_settings_id": "",
+ "wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_entire_loop": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
@@ -71,7 +66,7 @@
"internal_solid_infill_line_width": "0.42",
"internal_solid_infill_speed": "250",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
@@ -89,30 +84,184 @@
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
+ "top_surface_acceleration": "2000",
"top_surface_speed": "200",
- "top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "travel_acceleration": "10000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
+ "prime_tower_width": "35",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0",
+ "gcode_label_objects": "1",
"compatible_printers": [
"Creality K1 Max (0.4 nozzle)"
- ]
-}
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "counterbore_hole_bridging": "none",
+ "default_jerk": "20",
+ "detect_narrow_internal_solid_infill": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_jerk": "20",
+ "initial_layer_jerk": "20",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_jerk": "20",
+ "internal_bridge_flow": "1",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "90",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "ooze_prevention": "0",
+ "outer_wall_jerk": "20",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "30",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_jerk": "20",
+ "travel_jerk": "20",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K1_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K1_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..bc89ccbd43
--- /dev/null
+++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K1_CFS-C 0.4 nozzle.json
@@ -0,0 +1,266 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.20mm Standard @Creality K1_CFS-C 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.9",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "20",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "20",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "20",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "20",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.2",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "20",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "0",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "180",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "270",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "20",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "20",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K2 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K2 0.4 nozzle.json
index c55d985a14..6bcc74a3e7 100644
--- a/resources/profiles/Creality/process/0.20mm Standard @Creality K2 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K2 0.4 nozzle.json
@@ -7,7 +7,7 @@
"inherits": "fdm_process_creality_common",
"accel_to_decel_enable": "1",
"accel_to_decel_factor": "100",
- "acceleration_limit_mess": "[[0.5,1.0,100,6000,210],[1.0,1.5,80,5500,200],[1.5,2.0,60,5000,190]]",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
"acceleration_limit_mess_enable": "0",
"ai_infill": "0",
"alternate_extra_wall": "0",
@@ -175,14 +175,18 @@
"small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament": "1",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "270",
- "speed_limit_to_height": "[[100,150,100,6000,210],[150,200,80,5500,200],[200,250,60,5000,190]]",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
"speed_limit_to_height_enable": "0",
"spiral_mode": "0",
"spiral_mode_max_xy_smoothing": "200%",
@@ -227,7 +231,7 @@
"top_surface_pattern": "monotonicline",
"top_surface_speed": "200",
"travel_acceleration": "12000",
- "travel_jerk": "12",
+ "travel_jerk": "4",
"travel_speed": "500",
"travel_speed_z": "0",
"tree_support_adaptive_layer_height": "1",
@@ -247,7 +251,9 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "wall_filament": "1",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
@@ -264,5 +270,6 @@
"wipe_tower_rotation_angle": "0",
"wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "xy_hole_compensation": "0"
-}
+ "xy_hole_compensation": "0",
+ "overhang_totally_speed": "25"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K2 Plus 0.4 nozzle.json
index 84093c6b3b..1350c85b16 100644
--- a/resources/profiles/Creality/process/0.20mm Standard @Creality K2 Plus 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K2 Plus 0.4 nozzle.json
@@ -1,7 +1,7 @@
{
"type": "process",
"name": "0.20mm Standard @Creality K2 Plus 0.4 nozzle",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
@@ -25,12 +25,10 @@
"outer_wall_speed": "200",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.42",
"infill_direction": "45",
"sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "sparse_infill_pattern": "grid",
"initial_layer_acceleration": "2000",
"initial_layer_line_width": "0.5",
"initial_layer_print_height": "0.2",
@@ -54,7 +52,7 @@
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
- "precise_outer_wall": "1",
+ "precise_outer_wall": "0",
"inner_wall_line_width": "0.45",
"inner_wall_speed": "300",
"wall_loops": "2",
@@ -76,7 +74,7 @@
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
- "support_line_width": "0.4",
+ "support_line_width": "0.42",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
@@ -84,14 +82,14 @@
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.42",
@@ -106,5 +104,143 @@
"prime_tower_width": "40",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "gcode_label_objects": "0",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_jerk": "10",
+ "initial_layer_jerk": "8",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_jerk": "8",
+ "internal_bridge_flow": "1",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "90",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "ooze_prevention": "0",
+ "outer_wall_jerk": "8",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "prime_tower_brim_width": "3",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "reduce_crossing_wall": "0",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_jerk": "10",
+ "travel_jerk": "12",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K2 Pro 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K2 Pro 0.4 nozzle.json
index bec356289c..2c1f8c101d 100644
--- a/resources/profiles/Creality/process/0.20mm Standard @Creality K2 Pro 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K2 Pro 0.4 nozzle.json
@@ -1,7 +1,7 @@
{
"type": "process",
"name": "0.20mm Standard @Creality K2 Pro 0.4 nozzle",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
@@ -26,12 +26,10 @@
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
"wall_generator": "classic",
- "wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.42",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "sparse_infill_density": "15",
+ "sparse_infill_pattern": "grid",
"initial_layer_acceleration": "2000",
"initial_layer_line_width": "0.5",
"initial_layer_print_height": "0.2",
@@ -85,14 +83,14 @@
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.42",
@@ -107,5 +105,165 @@
"prime_tower_width": "40",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "gcode_label_objects": "0",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "counterbore_hole_bridging": "none",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_jerk": "12",
+ "initial_layer_jerk": "8",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_jerk": "8",
+ "internal_bridge_flow": "1",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "90",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "ooze_prevention": "0",
+ "outer_wall_jerk": "8",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "reduce_crossing_wall": "0",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_jerk": "8",
+ "travel_jerk": "4",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality K2 SE 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality K2 SE 0.4 nozzle.json
new file mode 100644
index 0000000000..1e307f7ada
--- /dev/null
+++ b/resources/profiles/Creality/process/0.20mm Standard @Creality K2 SE 0.4 nozzle.json
@@ -0,0 +1,266 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.20mm Standard @Creality K2 SE 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.9",
+ "bridge_no_support": "0",
+ "bridge_speed": "20",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K2 SE 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "10",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30%",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "10",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "10",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "internal_bridge_flow": "0.95",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.2",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "25",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "35",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "270",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "10000",
+ "travel_jerk": "10",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality SPARKX i7 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality SPARKX i7 0.4 nozzle.json
new file mode 100644
index 0000000000..8e01c7beb3
--- /dev/null
+++ b/resources/profiles/Creality/process/0.20mm Standard @Creality SPARKX i7 0.4 nozzle.json
@@ -0,0 +1,272 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.20mm Standard @Creality SPARKX i7 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[1,1.2,150,5000]]",
+ "acceleration_limit_mess_enable": "1",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1.05",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "15",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "3",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "6000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "4500",
+ "initial_layer_infill_speed": "95",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "4000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "230",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "200",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.2",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "4000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "15",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "15%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\n0.2,0.4444;\n0.4,0.6145;\n0.6,0.7059;\n0.8,0.7619;\n1.5,0.8571;\n2,0.8889;\n3,0.9231;\n5,0.9520;\n10,1",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "2",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "250",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "25%",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "180",
+ "travel_acceleration": "8000",
+ "travel_jerk": "8",
+ "travel_speed": "400",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.20mm Strength @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Strength @Creality K2 Plus 0.4 nozzle.json
new file mode 100644
index 0000000000..9698496c5e
--- /dev/null
+++ b/resources/profiles/Creality/process/0.20mm Strength @Creality K2 Plus 0.4 nozzle.json
@@ -0,0 +1,246 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.20mm Strength @Creality K2 Plus 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K2 Plus 0.4 nozzle"
+ ],
+ "default_acceleration": "12000",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30%",
+ "initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "200",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.2",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "100",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "30%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "250",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "5000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "12000",
+ "travel_jerk": "12",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "6",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.20mm Ultrafast @Creality Ender-5 Max 0.4mm nozzle.json b/resources/profiles/Creality/process/0.20mm Ultrafast @Creality Ender-5 Max 0.4mm nozzle.json
index 322d3617eb..d9bf928fd3 100644
--- a/resources/profiles/Creality/process/0.20mm Ultrafast @Creality Ender-5 Max 0.4mm nozzle.json
+++ b/resources/profiles/Creality/process/0.20mm Ultrafast @Creality Ender-5 Max 0.4mm nozzle.json
@@ -172,10 +172,14 @@
"small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "10",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament": "1",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.55",
"sparse_infill_pattern": "zig-zag",
"sparse_infill_speed": "500",
@@ -242,7 +246,9 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "wall_filament": "1",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/Creality/process/0.24mm Detail @Creality K2 Plus 0.8 nozzle.json b/resources/profiles/Creality/process/0.24mm Detail @Creality K2 Plus 0.8 nozzle.json
index 0718469a55..11d1599967 100644
--- a/resources/profiles/Creality/process/0.24mm Detail @Creality K2 Plus 0.8 nozzle.json
+++ b/resources/profiles/Creality/process/0.24mm Detail @Creality K2 Plus 0.8 nozzle.json
@@ -1,110 +1,244 @@
{
"type": "process",
- "name": "0.24mm Detail @Creality K2 Plus 0.8 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.24mm Detail @Creality K2 Plus 0.8 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "25",
- "internal_bridge_speed": "70",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Plus 0.8 nozzle"
],
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.82",
- "outer_wall_speed": "100",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.82",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
"initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.82",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.4",
"initial_layer_speed": "40",
- "gap_infill_speed": "50",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.82",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "120",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.82",
+ "inner_wall_speed": "150",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.82",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.24",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.82",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.82",
+ "outer_wall_speed": "100",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.82",
- "inner_wall_speed": "150",
- "wall_loops": "2",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.82",
- "internal_solid_infill_speed": "150",
- "initial_layer_infill_speed": "60",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.82",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.6",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.3",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.8",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.82",
- "top_surface_acceleration": "2000",
- "top_surface_speed": "100",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.82",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
"travel_acceleration": "12000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender-3 V4 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender-3 V4 0.4 nozzle.json
new file mode 100644
index 0000000000..739e513d98
--- /dev/null
+++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender-3 V4 0.4 nozzle.json
@@ -0,0 +1,266 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.24mm Draft @Creality Ender-3 V4 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "8000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "200",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "230",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "230",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "100",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.24",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "95%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "30",
+ "overhang_3_4_speed": "20",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\n0.2,0.4444;\n0.4,0.6145;\n0.6,0.7059;\n0.8,0.7619;\n1.5,0.8571;\n2,0.8889;\n3,0.9231;\n5,0.9520;\n10,1",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "230",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "8000",
+ "travel_jerk": "8",
+ "travel_speed": "400",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "90",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Hi 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Hi 0.4 nozzle.json
index 2a360f527b..d39b286231 100644
--- a/resources/profiles/Creality/process/0.24mm Draft @Creality Hi 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Hi 0.4 nozzle.json
@@ -1,126 +1,267 @@
{
"type": "process",
- "name": "0.24mm Draft @Creality Hi",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.24mm Draft @Creality Hi",
+ "from": "system",
"instantiation": "true",
- "adaptive_layer_height": "0",
- "reduce_crossing_wall": "0",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[0.5,1.0,180,5000],[1.0,1.5,160,4000],[1.5,2.0,150,3000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
- "bridge_speed": "50",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality Hi 0.4 nozzle"
],
- "compatible_printers_condition": "",
- "print_sequence": "by layer",
- "default_acceleration": "12000",
- "bridge_no_support": "0",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "6000",
+ "default_jerk": "10",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "230",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
- "initial_layer_acceleration": "500",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "3000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "250",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "270",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "250",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "50",
+ "internal_solid_infill_acceleration": "80%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
- "ironing_speed": "100",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.24",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "150",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
"precise_outer_wall": "1",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "300",
- "wall_loops": "2",
- "print_settings_id": "",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "cone",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "15%",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "250",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "250",
+ "speed_limit_to_height": "[[150,200,220,5000],[200,250,200,4000],[250,300,180,3000]]",
+ "speed_limit_to_height_enable": "0",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "tree(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "200",
- "top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
- "travel_speed": "500",
- "enable_prime_tower": "1",
- "wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "35",
- "xy_hole_compensation": "0",
- "xy_contour_compensation": "0",
- "gcode_label_objects": "0",
- "default_jerk": "12",
- "outer_wall_jerk": "8",
- "inner_wall_jerk": "8",
- "infill_jerk": "12",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "4",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
"top_surface_jerk": "8",
- "initial_layer_jerk": "8",
- "travel_jerk": "12"
-}
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "6000",
+ "travel_jerk": "10",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "10",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "90",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K1 (0.4 nozzle).json b/resources/profiles/Creality/process/0.24mm Draft @Creality K1 (0.4 nozzle).json
index 6cfa047dbb..c23e8deda3 100644
--- a/resources/profiles/Creality/process/0.24mm Draft @Creality K1 (0.4 nozzle).json
+++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K1 (0.4 nozzle).json
@@ -1,118 +1,269 @@
{
"type": "process",
- "name": "0.24mm Draft @Creality K1 (0.4 nozzle)",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.24mm Draft @Creality K1 (0.4 nozzle)",
+ "from": "system",
"instantiation": "true",
- "adaptive_layer_height": "0",
- "reduce_crossing_wall": "0",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "50",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K1 (0.4 nozzle)"
],
- "compatible_printers_condition": "",
- "print_sequence": "by layer",
- "default_acceleration": "12000",
- "bridge_no_support": "0",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "20",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
- "initial_layer_acceleration": "500",
+ "infill_jerk": "20",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "20",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "300",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "15%",
- "sparse_infill_speed": "500",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "20",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
- "ironing_speed": "100",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.24",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "20",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "300",
- "wall_loops": "3",
- "print_settings_id": "",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "35",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "300",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "250",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "20",
"top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
+ "top_surface_pattern": "monotonicline",
"top_surface_speed": "200",
- "top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "travel_acceleration": "10000",
+ "travel_jerk": "20",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K1 Max_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K1 Max_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..9d56a6c18a
--- /dev/null
+++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K1 Max_CFS-C 0.4 nozzle.json
@@ -0,0 +1,268 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.24mm Draft @Creality K1 Max_CFS-C 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1 Max_CFS-C 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "20",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "20",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "20",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "20",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.24",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "20",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "0",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "180",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "250",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "20",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "20",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K1 SE 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K1 SE 0.4 nozzle.json
index a6279b9b81..fc980090a1 100644
--- a/resources/profiles/Creality/process/0.24mm Draft @Creality K1 SE 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K1 SE 0.4 nozzle.json
@@ -1,119 +1,267 @@
{
"type": "process",
- "name": "0.24mm Draft @Creality K1 SE",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.24mm Draft @Creality K1 SE",
+ "from": "system",
"instantiation": "true",
- "adaptive_layer_height": "0",
- "reduce_crossing_wall": "0",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
- "bridge_flow": "1",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.95",
+ "bridge_no_support": "0",
"bridge_speed": "50",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K1 SE 0.4 nozzle"
],
- "compatible_printers_condition": "",
- "print_sequence": "by layer",
- "default_acceleration": "12000",
- "bridge_no_support": "0",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "10",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
- "initial_layer_acceleration": "500",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "10",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "300",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "15%",
- "sparse_infill_speed": "500",
- "interface_shells": "0",
- "ironing_flow": "10%",
- "ironing_spacing": "0.15",
- "ironing_speed": "100",
- "ironing_type": "no ironing",
- "layer_height": "0.24",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
- "overhang_1_4_speed": "0",
- "overhang_2_4_speed": "50",
- "overhang_3_4_speed": "30",
- "overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "10",
"inner_wall_line_width": "0.45",
"inner_wall_speed": "300",
- "wall_loops": "3",
- "print_settings_id": "",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.24",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "25",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "35",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "300",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "2",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "250",
+ "speed_limit_to_height_enable": "0",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
"top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "200",
- "top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "10000",
+ "travel_jerk": "10",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0",
- "precise_outer_wall": "1"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K1 SE_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K1 SE_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..62dd4205e7
--- /dev/null
+++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K1 SE_CFS-C 0.4 nozzle.json
@@ -0,0 +1,266 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.24mm Draft @Creality K1 SE_CFS-C 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.95",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1 SE_CFS-C 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "10",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "10",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "10",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.24",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "25",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "0",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "180",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "2",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "250",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "10000",
+ "travel_jerk": "10",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K1C 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K1C 0.4 nozzle.json
index 903f26efe6..ae9a1ac46a 100644
--- a/resources/profiles/Creality/process/0.24mm Draft @Creality K1C 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K1C 0.4 nozzle.json
@@ -1,118 +1,269 @@
{
"type": "process",
- "name": "0.24mm Draft @Creality K1C",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.24mm Draft @Creality K1C",
+ "from": "system",
"instantiation": "true",
- "adaptive_layer_height": "0",
- "reduce_crossing_wall": "0",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
- "bridge_speed": "50",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K1C 0.4 nozzle"
],
- "compatible_printers_condition": "",
- "print_sequence": "by layer",
- "default_acceleration": "12000",
- "bridge_no_support": "0",
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
- "initial_layer_acceleration": "500",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "6",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "300",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "15%",
- "sparse_infill_speed": "500",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "3000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "250",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
- "ironing_speed": "100",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.24",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "3000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
- "overhang_3_4_speed": "30",
+ "overhang_3_4_speed": "25",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "300",
- "wall_loops": "3",
- "print_settings_id": "",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "35",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "300",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "250",
+ "speed_limit_to_height": "[[100,150,100,6000],\n [150,200,80,5500],\n [200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "6",
"top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
+ "top_surface_pattern": "monotonicline",
"top_surface_speed": "200",
- "top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "travel_acceleration": "10000",
+ "travel_jerk": "8",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K1C_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K1C_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..b0e564cf7f
--- /dev/null
+++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K1C_CFS-C 0.4 nozzle.json
@@ -0,0 +1,268 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.24mm Draft @Creality K1C_CFS-C 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1C_CFS-C 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "6",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "3000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "250",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.24",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "3000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "25",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "0",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "180",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "250",
+ "speed_limit_to_height": "[[100,150,100,6000],\n [150,200,80,5500],\n [200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "6",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "8",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K1Max (0.4 nozzle).json b/resources/profiles/Creality/process/0.24mm Draft @Creality K1Max (0.4 nozzle).json
index 171dab1092..bddcae6475 100644
--- a/resources/profiles/Creality/process/0.24mm Draft @Creality K1Max (0.4 nozzle).json
+++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K1Max (0.4 nozzle).json
@@ -1,118 +1,269 @@
{
"type": "process",
- "name": "0.24mm Draft @Creality K1Max (0.4 nozzle)",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.24mm Draft @Creality K1Max (0.4 nozzle)",
+ "from": "system",
"instantiation": "true",
- "adaptive_layer_height": "0",
- "reduce_crossing_wall": "0",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
- "bridge_speed": "50",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
- "brim_object_gap": "0.1",
- "compatible_printers_condition": "",
- "print_sequence": "by layer",
- "default_acceleration": "12000",
"bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1 Max (0.4 nozzle)"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "20",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
- "infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
- "initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.5",
- "initial_layer_print_height": "0.24",
- "initial_layer_speed": "60",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
"gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
"infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "15%",
- "sparse_infill_speed": "270",
+ "infill_direction": "45",
+ "infill_jerk": "20",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "20",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "20",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.24",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "20",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "300",
- "wall_loops": "3",
- "print_settings_id": "",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "35",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "250",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "250",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "20",
"top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
+ "top_surface_pattern": "monotonicline",
"top_surface_speed": "200",
- "top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "travel_acceleration": "10000",
+ "travel_jerk": "20",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0",
- "compatible_printers": [
- "Creality K1 Max (0.4 nozzle)"
- ]
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K1_CFS-C 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K1_CFS-C 0.4 nozzle.json
new file mode 100644
index 0000000000..123c8d0cf8
--- /dev/null
+++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K1_CFS-C 0.4 nozzle.json
@@ -0,0 +1,268 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.24mm Draft @Creality K1_CFS-C 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1_CFS-C 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "20",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "20",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "20",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "20",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.24",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "20",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "0",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "180",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "250",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "20",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "10000",
+ "travel_jerk": "20",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K2 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K2 0.4 nozzle.json
index 9796e6c79e..7c62e7f31a 100644
--- a/resources/profiles/Creality/process/0.24mm Draft @Creality K2 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K2 0.4 nozzle.json
@@ -1,111 +1,269 @@
{
"type": "process",
- "name": "0.24mm Draft @Creality K2 0.4 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.24mm Draft @Creality K2 0.4 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "25",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 0.4 nozzle"
],
+ "counterbore_hole_bridging": "none",
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "2000",
- "inner_wall_acceleration": "2000",
- "wall_generator": "classic",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "12",
+ "infill_wall_overlap": "30%",
"initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "200",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "230",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.24",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
- "overhang_1_4_speed": "0",
- "overhang_2_4_speed": "30",
- "overhang_3_4_speed": "20",
- "overhang_4_4_speed": "10",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
"only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
"precise_outer_wall": "0",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "230",
- "wall_loops": "2",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "230",
- "initial_layer_infill_speed": "105",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "270",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "200",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "5",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "5000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
"travel_acceleration": "12000",
+ "travel_jerk": "4",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "40",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K2 Plus 0.4 nozzle.json
index c51b71d323..97e7ad3dfb 100644
--- a/resources/profiles/Creality/process/0.24mm Draft @Creality K2 Plus 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K2 Plus 0.4 nozzle.json
@@ -1,110 +1,246 @@
{
"type": "process",
- "name": "0.24mm Draft @Creality K2 Plus 0.4 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.24mm Draft @Creality K2 Plus 0.4 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "50",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Plus 0.4 nozzle"
],
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30%",
"initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "250",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "250",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.24",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "300",
- "wall_loops": "2",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "250",
- "initial_layer_infill_speed": "105",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "250",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.4",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "200",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "5",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "5000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
"travel_acceleration": "12000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "40",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality K2 Pro 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality K2 Pro 0.4 nozzle.json
index ab59fa63af..e278f34862 100644
--- a/resources/profiles/Creality/process/0.24mm Draft @Creality K2 Pro 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.24mm Draft @Creality K2 Pro 0.4 nozzle.json
@@ -1,111 +1,269 @@
{
"type": "process",
- "name": "0.24mm Draft @Creality K2 Pro 0.4 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.24mm Draft @Creality K2 Pro 0.4 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "25",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Pro 0.4 nozzle"
],
+ "counterbore_hole_bridging": "none",
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "2000",
- "inner_wall_acceleration": "2000",
- "wall_generator": "classic",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "200",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "12",
+ "infill_wall_overlap": "30%",
"initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "200",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "230",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "230",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "230",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.24",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "30",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
"precise_outer_wall": "0",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "230",
- "wall_loops": "2",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "230",
- "initial_layer_infill_speed": "105",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "230",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "200",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "5",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "5000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
"travel_acceleration": "12000",
+ "travel_jerk": "4",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "40",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality SPARKX i7 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality SPARKX i7 0.4 nozzle.json
new file mode 100644
index 0000000000..1585d76d7f
--- /dev/null
+++ b/resources/profiles/Creality/process/0.24mm Draft @Creality SPARKX i7 0.4 nozzle.json
@@ -0,0 +1,269 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.24mm Draft @Creality SPARKX i7 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[1,1.2,150,5000]]",
+ "acceleration_limit_mess_enable": "1",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1.05",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "3",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "6000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "230",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "4500",
+ "initial_layer_infill_speed": "95",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "4000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "230",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "200",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.24",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "4000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "30",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "15%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "6",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "230",
+ "speed_limit_to_height": "[[150,200,220,5000],[200,250,200,4000],[250,300,180,3000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "1.2",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "180",
+ "travel_acceleration": "8000",
+ "travel_jerk": "8",
+ "travel_speed": "400",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "10",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 Plus 0.6 nozzle.json
index 09b6da9d33..cef771146d 100644
--- a/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 Plus 0.6 nozzle.json
+++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 Plus 0.6 nozzle.json
@@ -1,110 +1,244 @@
{
"type": "process",
- "name": "0.24mm Optimal @Creality K2 Plus 0.6 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.24mm Optimal @Creality K2 Plus 0.6 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "25",
- "internal_bridge_speed": "70",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Plus 0.6 nozzle"
],
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.62",
- "outer_wall_speed": "100",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.62",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
"initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.65",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.62",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.3",
"initial_layer_speed": "40",
- "gap_infill_speed": "50",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.65",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "120",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.62",
+ "inner_wall_speed": "150",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.62",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.24",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.62",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.62",
+ "outer_wall_speed": "100",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.65",
- "inner_wall_speed": "150",
- "wall_loops": "2",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.62",
- "internal_solid_infill_speed": "150",
- "initial_layer_infill_speed": "60",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.62",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.6",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.6",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.62",
- "top_surface_acceleration": "2000",
- "top_surface_speed": "100",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.62",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
"travel_acceleration": "12000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.24mm Standard @Creality K2 SE 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Standard @Creality K2 SE 0.4 nozzle.json
new file mode 100644
index 0000000000..0da8577620
--- /dev/null
+++ b/resources/profiles/Creality/process/0.24mm Standard @Creality K2 SE 0.4 nozzle.json
@@ -0,0 +1,266 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.24mm Standard @Creality K2 SE 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.9",
+ "bridge_no_support": "0",
+ "bridge_speed": "20",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K2 SE 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "10000",
+ "default_jerk": "6",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "200",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "6",
+ "infill_wall_overlap": "30%",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "6",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "250",
+ "interface_shells": "0",
+ "internal_bridge_flow": "0.95",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.24",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "40",
+ "overhang_2_4_speed": "30",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "35",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "20%",
+ "small_perimeter_threshold": "20",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "270",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "6",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "150",
+ "travel_acceleration": "10000",
+ "travel_jerk": "6",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender-3 V4 0.4 nozzle.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender-3 V4 0.4 nozzle.json
new file mode 100644
index 0000000000..479f6e643d
--- /dev/null
+++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender-3 V4 0.4 nozzle.json
@@ -0,0 +1,266 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.28mm SuperDraft @Creality Ender-3 V4 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality Ender-3 V4 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "8000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "200",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "200",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "200",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "100",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.28",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "95%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "180",
+ "overhang_1_4_speed": "50",
+ "overhang_2_4_speed": "25",
+ "overhang_3_4_speed": "10",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\n0.2,0.4444;\n0.4,0.6145;\n0.6,0.7059;\n0.8,0.7619;\n1.5,0.8571;\n2,0.8889;\n3,0.9231;\n5,0.9520;\n10,1",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "200",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "8000",
+ "travel_jerk": "8",
+ "travel_speed": "400",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "90",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Hi 0.4 nozzle.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Hi 0.4 nozzle.json
new file mode 100644
index 0000000000..a47ef553a5
--- /dev/null
+++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Hi 0.4 nozzle.json
@@ -0,0 +1,267 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.28mm SuperDraft @Creality Hi 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[0.5,1.0,180,5000],[1.0,1.5,160,4000],[1.5,2.0,150,3000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality Hi 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "6000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "6",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "6000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "250",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "50",
+ "internal_solid_infill_acceleration": "80%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.28",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "150",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "1",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "cone",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "15%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "200",
+ "speed_limit_to_height": "[[150,200,220,5000],[200,250,200,4000],[250,300,180,3000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "4",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "3000",
+ "top_surface_jerk": "6",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
+ "travel_acceleration": "6000",
+ "travel_jerk": "8",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "10",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "90",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 0.4 nozzle.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 0.4 nozzle.json
index f7453a667c..9201f90e5d 100644
--- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 0.4 nozzle.json
@@ -1,111 +1,269 @@
{
"type": "process",
- "name": "0.28mm SuperDraft @Creality K2 0.4 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.28mm SuperDraft @Creality K2 0.4 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "25",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 0.4 nozzle"
],
+ "counterbore_hole_bridging": "none",
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "180",
- "outer_wall_acceleration": "2000",
- "inner_wall_acceleration": "2000",
- "wall_generator": "classic",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "12",
+ "infill_wall_overlap": "30%",
"initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "200",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "200",
- "interface_shells": "0",
- "ironing_flow": "10%",
- "ironing_spacing": "0.15",
- "ironing_speed": "30",
- "ironing_type": "no ironing",
- "layer_height": "0.28",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
- "overhang_1_4_speed": "50",
- "overhang_2_4_speed": "25",
- "overhang_3_4_speed": "10",
- "overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "0",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
"inner_wall_line_width": "0.45",
"inner_wall_speed": "200",
- "wall_loops": "2",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.28",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "200",
- "initial_layer_infill_speed": "105",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "200",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "200",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "5",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "5000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
"travel_acceleration": "12000",
+ "travel_jerk": "4",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "40",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 Plus 0.4 nozzle.json
index c304632ee8..b1a8aa4ed0 100644
--- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 Plus 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 Plus 0.4 nozzle.json
@@ -1,110 +1,246 @@
{
"type": "process",
- "name": "0.28mm SuperDraft @Creality K2 Plus 0.4 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.28mm SuperDraft @Creality K2 Plus 0.4 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "50",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Plus 0.4 nozzle"
],
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "200",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "250",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30%",
"initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "250",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "200",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "200",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.28",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "200",
- "wall_loops": "2",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "50",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "250",
- "initial_layer_infill_speed": "105",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "200",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.4",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "200",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "5",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "5000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
"travel_acceleration": "12000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "40",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 Pro 0.4 nozzle.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 Pro 0.4 nozzle.json
index 674f42d2ac..bcd5f52e3e 100644
--- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 Pro 0.4 nozzle.json
+++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality K2 Pro 0.4 nozzle.json
@@ -1,111 +1,269 @@
{
"type": "process",
- "name": "0.28mm SuperDraft @Creality K2 Pro 0.4 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.28mm SuperDraft @Creality K2 Pro 0.4 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "25",
- "internal_bridge_speed": "150%",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Pro 0.4 nozzle"
],
+ "counterbore_hole_bridging": "none",
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.42",
- "outer_wall_speed": "180",
- "outer_wall_acceleration": "2000",
- "inner_wall_acceleration": "2000",
- "wall_generator": "classic",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.42",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "200",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "12",
+ "infill_wall_overlap": "30%",
"initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "105",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
- "gap_infill_speed": "200",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.45",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "200",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "2000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "200",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "200",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.28",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "2000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "180",
"overhang_1_4_speed": "50",
"overhang_2_4_speed": "25",
"overhang_3_4_speed": "10",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
"precise_outer_wall": "0",
- "inner_wall_line_width": "0.45",
- "inner_wall_speed": "200",
- "wall_loops": "2",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.42",
- "internal_solid_infill_speed": "200",
- "initial_layer_infill_speed": "105",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "200",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.42",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.42",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.42",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "200",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "5",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "5000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "200",
"travel_acceleration": "12000",
+ "travel_jerk": "4",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "40",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality SPARKX i7 0.4 nozzle.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality SPARKX i7 0.4 nozzle.json
new file mode 100644
index 0000000000..840f9c37d1
--- /dev/null
+++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality SPARKX i7 0.4 nozzle.json
@@ -0,0 +1,269 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.28mm SuperDraft @Creality SPARKX i7 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[1,1.2,150,5000]]",
+ "acceleration_limit_mess_enable": "1",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1.05",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "30",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "3",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "6000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "230",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "4500",
+ "initial_layer_infill_speed": "95",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "4000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "230",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "200",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.28",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "4000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "30",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "15%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "smooth_coefficient": "6",
+ "smooth_speed_discontinuity_area": "1",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "230",
+ "speed_limit_to_height": "[[150,200,220,5000],[200,250,200,4000],[250,300,180,3000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.4",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "1.2",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "180",
+ "travel_acceleration": "8000",
+ "travel_jerk": "8",
+ "travel_speed": "400",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "10",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.2mm Standard @Creality Ender-5 Max 0.4 nozzle.json b/resources/profiles/Creality/process/0.2mm Standard @Creality Ender-5 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..89d578685f
--- /dev/null
+++ b/resources/profiles/Creality/process/0.2mm Standard @Creality Ender-5 Max 0.4 nozzle.json
@@ -0,0 +1,264 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.2mm Standard @Creality Ender-5 Max 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0.6",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0",
+ "brim_type": "auto_brim",
+ "brim_width": "1.2",
+ "compatible_printers": [
+ "Creality Ender-5 Max 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "12000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "0",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "200",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "80",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.55",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "3000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "300",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "250",
+ "ironing_angle": "-1",
+ "ironing_flow": "15%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.1",
+ "ironing_speed": "44",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.2",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "10",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "3000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.42",
+ "outer_wall_speed": "200",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "5",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.45",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "270",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.45",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonic",
+ "top_surface_speed": "180",
+ "travel_acceleration": "12000",
+ "travel_jerk": "10",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "30",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "0",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "20",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "100%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.2mm Ultrafast @Creality Ender-5 Max 0.4 nozzle.json b/resources/profiles/Creality/process/0.2mm Ultrafast @Creality Ender-5 Max 0.4 nozzle.json
new file mode 100644
index 0000000000..a488452fd3
--- /dev/null
+++ b/resources/profiles/Creality/process/0.2mm Ultrafast @Creality Ender-5 Max 0.4 nozzle.json
@@ -0,0 +1,266 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.2mm Ultrafast @Creality Ender-5 Max 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "25%",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0.6",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "2000",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "50",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0",
+ "brim_type": "auto_brim",
+ "brim_width": "1.2",
+ "compatible_printers": [
+ "Creality Ender-5 Max 0.4 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "20000",
+ "default_jerk": "9",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "0",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "100",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "20",
+ "infill_wall_overlap": "25",
+ "initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "200",
+ "initial_layer_jerk": "9",
+ "initial_layer_line_width": "0.55",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.2",
+ "initial_layer_speed": "100",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "20000",
+ "inner_wall_jerk": "5",
+ "inner_wall_line_width": "0.45",
+ "inner_wall_speed": "500",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.42",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "500",
+ "ironing_angle": "-1",
+ "ironing_flow": "15%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.1",
+ "ironing_speed": "44",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.2",
+ "line_width": "0.42",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "10",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "0",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "15000",
+ "outer_wall_jerk": "5",
+ "outer_wall_line_width": "0.4",
+ "outer_wall_speed": "350",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "30",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "5",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "5",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "10",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.55",
+ "sparse_infill_pattern": "zig-zag",
+ "sparse_infill_speed": "500",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.45",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "15000",
+ "top_surface_jerk": "9",
+ "top_surface_line_width": "0.42",
+ "top_surface_pattern": "monotonic",
+ "top_surface_speed": "350",
+ "travel_acceleration": "20000",
+ "travel_jerk": "20",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "30",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "0",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "20",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "100%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality Ender-5 Max 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality Ender-5 Max 0.6 nozzle.json
new file mode 100644
index 0000000000..2abac933aa
--- /dev/null
+++ b/resources/profiles/Creality/process/0.30mm Standard @Creality Ender-5 Max 0.6 nozzle.json
@@ -0,0 +1,264 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.30mm Standard @Creality Ender-5 Max 0.6 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0.6",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality Ender-5 Max 0.6 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "12000",
+ "default_jerk": "6",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "0",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "150",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "6",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "6",
+ "initial_layer_line_width": "0.62",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.3",
+ "initial_layer_speed": "45",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "3000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.62",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "100",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.62",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "-1",
+ "ironing_flow": "15%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.1",
+ "ironing_speed": "44",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.3",
+ "line_width": "0.62",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "3000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.62",
+ "outer_wall_speed": "120",
+ "overhang_1_4_speed": "50",
+ "overhang_2_4_speed": "35",
+ "overhang_3_4_speed": "20",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "5",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.62",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.62",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "6",
+ "top_surface_line_width": "0.62",
+ "top_surface_pattern": "monotonic",
+ "top_surface_speed": "120",
+ "travel_acceleration": "12000",
+ "travel_jerk": "6",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "30",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "0",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "20",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "100%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality Hi 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality Hi 0.6 nozzle.json
index c01ad9c0c3..5a0b1e32e6 100644
--- a/resources/profiles/Creality/process/0.30mm Standard @Creality Hi 0.6 nozzle.json
+++ b/resources/profiles/Creality/process/0.30mm Standard @Creality Hi 0.6 nozzle.json
@@ -1,48 +1,44 @@
{
"type": "process",
"name": "0.30mm Standard @Creality Hi",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
- "adaptive_layer_height": "0",
"reduce_crossing_wall": "0",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
- "bridge_flow": "1",
- "bridge_speed": "30",
+ "bridge_flow": "0.8",
+ "bridge_speed": "10",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality Hi 0.6 nozzle"
],
- "compatible_printers_condition": "",
"print_sequence": "by layer",
"default_acceleration": "12000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.62",
- "outer_wall_speed": "120",
+ "outer_wall_speed": "100",
"outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
+ "inner_wall_acceleration": "6000",
"line_width": "0.62",
"infill_direction": "45",
"sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
- "initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.5",
+ "sparse_infill_pattern": "grid",
+ "initial_layer_acceleration": "2000",
+ "initial_layer_line_width": "0.62",
"initial_layer_print_height": "0.3",
- "initial_layer_speed": "50",
+ "initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
- "sparse_infill_line_width": "0.65",
- "infill_wall_overlap": "15%",
- "sparse_infill_speed": "150",
+ "sparse_infill_line_width": "0.62",
+ "infill_wall_overlap": "30",
+ "sparse_infill_speed": "120",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
@@ -53,32 +49,31 @@
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
- "overhang_2_4_speed": "50",
- "overhang_3_4_speed": "15",
+ "overhang_2_4_speed": "30",
+ "overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "1",
- "inner_wall_line_width": "0.65",
+ "inner_wall_line_width": "0.62",
"inner_wall_speed": "150",
"wall_loops": "2",
- "print_settings_id": "",
"raft_layers": "0",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_entire_loop": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.62",
- "internal_solid_infill_speed": "150",
+ "internal_solid_infill_speed": "100",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
- "support_type": "tree(auto)",
+ "support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
@@ -92,34 +87,180 @@
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.62",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "150",
- "top_shell_layers": "3",
- "top_shell_thickness": "0.6",
+ "top_surface_acceleration": "3000",
+ "top_surface_speed": "100",
+ "top_shell_layers": "4",
+ "top_shell_thickness": "0.5",
"travel_acceleration": "12000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "35",
+ "prime_tower_width": "60",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0",
- "default_jerk": "12",
+ "gcode_label_objects": "1",
+ "default_jerk": "8",
"outer_wall_jerk": "8",
"inner_wall_jerk": "8",
- "infill_jerk": "12",
+ "infill_jerk": "8",
"top_surface_jerk": "8",
"initial_layer_jerk": "8",
- "travel_jerk": "12"
-}
+ "travel_jerk": "8",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "25%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "counterbore_hole_bridging": "none",
+ "detect_narrow_internal_solid_infill": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "20",
+ "internal_solid_infill_acceleration": "80%",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "-1",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "1",
+ "ooze_prevention": "0",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "cone",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\n0.2,0.4444;\n0.4,0.6145;\n0.6,0.7059;\n0.8,0.7619;\n1.5,0.8571;\n2,0.8889;\n3,0.9231;\n5,0.9520;\n10,1",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "10",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "90",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality K1 (0.6 nozzle).json b/resources/profiles/Creality/process/0.30mm Standard @Creality K1 (0.6 nozzle).json
index 577e8a053d..719cf90ac9 100644
--- a/resources/profiles/Creality/process/0.30mm Standard @Creality K1 (0.6 nozzle).json
+++ b/resources/profiles/Creality/process/0.30mm Standard @Creality K1 (0.6 nozzle).json
@@ -1,44 +1,40 @@
{
"type": "process",
"name": "0.30mm Standard @Creality K1 (0.6 nozzle)",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
- "adaptive_layer_height": "0",
"reduce_crossing_wall": "0",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
- "bridge_flow": "1",
- "bridge_speed": "30",
+ "bridge_flow": "0.9",
+ "bridge_speed": "15",
"brim_width": "5",
"brim_object_gap": "0.1",
- "compatible_printers_condition": "",
"print_sequence": "by layer",
- "default_acceleration": "12000",
+ "default_acceleration": "10000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.62",
- "outer_wall_speed": "120",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
+ "outer_wall_speed": "100",
+ "outer_wall_acceleration": "2000",
+ "inner_wall_acceleration": "2000",
"line_width": "0.62",
"infill_direction": "45",
"sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "sparse_infill_pattern": "grid",
"initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.5",
+ "initial_layer_line_width": "0.62",
"initial_layer_print_height": "0.3",
- "initial_layer_speed": "50",
+ "initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
- "sparse_infill_line_width": "0.65",
- "infill_wall_overlap": "15%",
+ "sparse_infill_line_width": "0.62",
+ "infill_wall_overlap": "30%",
"sparse_infill_speed": "150",
"interface_shells": "0",
"ironing_flow": "10%",
@@ -49,20 +45,19 @@
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
- "overhang_1_4_speed": "0",
- "overhang_2_4_speed": "50",
- "overhang_3_4_speed": "15",
+ "overhang_1_4_speed": "50",
+ "overhang_2_4_speed": "35",
+ "overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
- "inner_wall_line_width": "0.65",
+ "inner_wall_line_width": "0.62",
"inner_wall_speed": "150",
- "wall_loops": "3",
- "print_settings_id": "",
+ "wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_entire_loop": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
@@ -70,7 +65,7 @@
"internal_solid_infill_line_width": "0.62",
"internal_solid_infill_speed": "150",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
@@ -88,24 +83,24 @@
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.62",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "150",
- "top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "top_surface_acceleration": "2000",
+ "top_surface_speed": "100",
+ "top_shell_layers": "4",
+ "top_shell_thickness": "0.8",
+ "travel_acceleration": "10000",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "enable_prime_tower": "0",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
@@ -113,5 +108,158 @@
"gcode_label_objects": "0",
"compatible_printers": [
"Creality K1 (0.6 nozzle)"
- ]
-}
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "counterbore_hole_bridging": "none",
+ "default_jerk": "6",
+ "detect_narrow_internal_solid_infill": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_jerk": "6",
+ "initial_layer_jerk": "6",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_jerk": "6",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_pattern": "zig-zag",
+ "ironing_angle": "90",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "ooze_prevention": "0",
+ "outer_wall_jerk": "6",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "15",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\n0.2,0.4444;\n0.4,0.6145;\n0.6,0.7059;\n0.8,0.7619;\n1.5,0.8571;\n2,0.8889;\n3,0.9231;\n5,0.9520;\n10,1",
+ "small_perimeter_speed": "30%",
+ "small_perimeter_threshold": "20",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_jerk": "6",
+ "travel_jerk": "6",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality K1 SE 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality K1 SE 0.6 nozzle.json
new file mode 100644
index 0000000000..5647b5c1b2
--- /dev/null
+++ b/resources/profiles/Creality/process/0.30mm Standard @Creality K1 SE 0.6 nozzle.json
@@ -0,0 +1,265 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.30mm Standard @Creality K1 SE 0.6 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K1 SE 0.6 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "12000",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "0",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "12",
+ "infill_wall_overlap": "30%",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "12",
+ "initial_layer_line_width": "0.65",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.3",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "12",
+ "inner_wall_line_width": "0.65",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.62",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.3",
+ "line_width": "0.62",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "12",
+ "outer_wall_line_width": "0.62",
+ "outer_wall_speed": "100",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "20",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\n0.2,0.4444;\n0.4,0.6145;\n0.6,0.7059;\n0.8,0.7619;\n1.5,0.8571;\n2,0.8889;\n3,0.9231;\n5,0.9520;\n10,1",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.65",
+ "sparse_infill_pattern": "zig-zag",
+ "sparse_infill_speed": "150",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.6",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "4",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "12",
+ "top_surface_line_width": "0.62",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
+ "travel_acceleration": "12000",
+ "travel_jerk": "12",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality K1C 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality K1C 0.6 nozzle.json
index 413cb3c888..be3ee03041 100644
--- a/resources/profiles/Creality/process/0.30mm Standard @Creality K1C 0.6 nozzle.json
+++ b/resources/profiles/Creality/process/0.30mm Standard @Creality K1C 0.6 nozzle.json
@@ -1,44 +1,40 @@
{
"type": "process",
"name": "0.30mm Standard @Creality K1C",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
- "adaptive_layer_height": "0",
"reduce_crossing_wall": "0",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
- "bridge_flow": "1",
- "bridge_speed": "30",
+ "bridge_flow": "0.9",
+ "bridge_speed": "15",
"brim_width": "5",
"brim_object_gap": "0.1",
- "compatible_printers_condition": "",
"print_sequence": "by layer",
- "default_acceleration": "12000",
+ "default_acceleration": "10000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.62",
"outer_wall_speed": "120",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
+ "outer_wall_acceleration": "2000",
+ "inner_wall_acceleration": "2000",
"line_width": "0.62",
"infill_direction": "45",
"sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "sparse_infill_pattern": "grid",
"initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.5",
+ "initial_layer_line_width": "0.62",
"initial_layer_print_height": "0.3",
- "initial_layer_speed": "50",
+ "initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
- "sparse_infill_line_width": "0.65",
- "infill_wall_overlap": "15%",
+ "sparse_infill_line_width": "0.62",
+ "infill_wall_overlap": "30%",
"sparse_infill_speed": "150",
"interface_shells": "0",
"ironing_flow": "10%",
@@ -49,20 +45,19 @@
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
- "overhang_1_4_speed": "0",
- "overhang_2_4_speed": "50",
- "overhang_3_4_speed": "15",
+ "overhang_1_4_speed": "50",
+ "overhang_2_4_speed": "35",
+ "overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
- "inner_wall_line_width": "0.65",
+ "inner_wall_line_width": "0.62",
"inner_wall_speed": "150",
- "wall_loops": "3",
- "print_settings_id": "",
+ "wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_entire_loop": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
@@ -70,7 +65,7 @@
"internal_solid_infill_line_width": "0.62",
"internal_solid_infill_speed": "150",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
@@ -88,24 +83,24 @@
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.62",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "150",
- "top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "top_surface_acceleration": "2000",
+ "top_surface_speed": "100",
+ "top_shell_layers": "4",
+ "top_shell_thickness": "0.8",
+ "travel_acceleration": "10000",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "enable_prime_tower": "0",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
@@ -113,5 +108,158 @@
"gcode_label_objects": "0",
"compatible_printers": [
"Creality K1C 0.6 nozzle"
- ]
-}
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "counterbore_hole_bridging": "none",
+ "default_jerk": "6",
+ "detect_narrow_internal_solid_infill": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_jerk": "6",
+ "initial_layer_jerk": "6",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_jerk": "6",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_pattern": "zig-zag",
+ "ironing_angle": "90",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "ooze_prevention": "0",
+ "outer_wall_jerk": "6",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "15",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\n0.2,0.4444;\n0.4,0.6145;\n0.6,0.7059;\n0.8,0.7619;\n1.5,0.8571;\n2,0.8889;\n3,0.9231;\n5,0.9520;\n10,1",
+ "small_perimeter_speed": "30%",
+ "small_perimeter_threshold": "20",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_jerk": "6",
+ "travel_jerk": "6",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality K1Max (0.6 nozzle).json b/resources/profiles/Creality/process/0.30mm Standard @Creality K1Max (0.6 nozzle).json
index 72fc8a839e..d117228607 100644
--- a/resources/profiles/Creality/process/0.30mm Standard @Creality K1Max (0.6 nozzle).json
+++ b/resources/profiles/Creality/process/0.30mm Standard @Creality K1Max (0.6 nozzle).json
@@ -1,44 +1,40 @@
{
"type": "process",
"name": "0.30mm Standard @Creality K1Max (0.6 nozzle)",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
- "adaptive_layer_height": "0",
"reduce_crossing_wall": "0",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
- "bridge_flow": "1",
- "bridge_speed": "30",
+ "bridge_flow": "0.9",
+ "bridge_speed": "15",
"brim_width": "5",
"brim_object_gap": "0.1",
- "compatible_printers_condition": "",
"print_sequence": "by layer",
- "default_acceleration": "12000",
+ "default_acceleration": "10000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.62",
- "outer_wall_speed": "120",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
+ "outer_wall_speed": "100",
+ "outer_wall_acceleration": "2000",
+ "inner_wall_acceleration": "2000",
"line_width": "0.62",
"infill_direction": "45",
"sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "sparse_infill_pattern": "grid",
"initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.5",
+ "initial_layer_line_width": "0.62",
"initial_layer_print_height": "0.3",
- "initial_layer_speed": "50",
+ "initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
- "sparse_infill_line_width": "0.65",
- "infill_wall_overlap": "15%",
+ "sparse_infill_line_width": "0.62",
+ "infill_wall_overlap": "30",
"sparse_infill_speed": "150",
"interface_shells": "0",
"ironing_flow": "10%",
@@ -49,20 +45,19 @@
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
- "overhang_1_4_speed": "0",
- "overhang_2_4_speed": "50",
- "overhang_3_4_speed": "15",
+ "overhang_1_4_speed": "50",
+ "overhang_2_4_speed": "35",
+ "overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
- "inner_wall_line_width": "0.65",
+ "inner_wall_line_width": "0.62",
"inner_wall_speed": "150",
- "wall_loops": "3",
- "print_settings_id": "",
+ "wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_entire_loop": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
@@ -70,7 +65,7 @@
"internal_solid_infill_line_width": "0.62",
"internal_solid_infill_speed": "150",
"spiral_mode": "0",
- "initial_layer_infill_speed": "105",
+ "initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
@@ -80,7 +75,7 @@
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
- "support_line_width": "0.62",
+ "support_line_width": "0.6",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
@@ -88,24 +83,24 @@
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.62",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "150",
- "top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "top_surface_acceleration": "2000",
+ "top_surface_speed": "100",
+ "top_shell_layers": "4",
+ "top_shell_thickness": "0.8",
+ "travel_acceleration": "10000",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "enable_prime_tower": "0",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
@@ -113,5 +108,158 @@
"gcode_label_objects": "0",
"compatible_printers": [
"Creality K1 Max (0.6 nozzle)"
- ]
-}
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "counterbore_hole_bridging": "none",
+ "default_jerk": "6",
+ "detect_narrow_internal_solid_infill": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_jerk": "6",
+ "initial_layer_jerk": "6",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_jerk": "6",
+ "internal_bridge_flow": "0.9",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "90",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "ooze_prevention": "0",
+ "outer_wall_jerk": "6",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "15",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\n0.2,0.4444;\n0.4,0.6145;\n0.6,0.7059;\n0.8,0.7619;\n1.5,0.8571;\n2,0.8889;\n3,0.9231;\n5,0.9520;\n10,1",
+ "small_perimeter_speed": "30%",
+ "small_perimeter_threshold": "20",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_jerk": "6",
+ "travel_jerk": "6",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality K2 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality K2 0.6 nozzle.json
index 7a05eb7d6c..f4a7b68a7b 100644
--- a/resources/profiles/Creality/process/0.30mm Standard @Creality K2 0.6 nozzle.json
+++ b/resources/profiles/Creality/process/0.30mm Standard @Creality K2 0.6 nozzle.json
@@ -6,7 +6,7 @@
"instantiation": "true",
"inherits": "fdm_process_creality_common",
"accel_to_decel_enable": "1",
- "accel_to_decel_factor": "100%",
+ "accel_to_decel_factor": "100",
"acceleration_limit_mess_enable": "0",
"alternate_extra_wall": "0",
"bottom_shell_layers": "3",
@@ -28,7 +28,7 @@
"Creality K2 0.6 nozzle"
],
"default_acceleration": "12000",
- "default_jerk": "20",
+ "default_jerk": "12",
"detect_narrow_internal_solid_infill": "1",
"detect_overhang_wall": "1",
"detect_thin_wall": "0",
@@ -64,18 +64,18 @@
"infill_anchor_max": "20",
"infill_combination": "0",
"infill_direction": "45",
- "infill_jerk": "20",
- "infill_wall_overlap": "30",
+ "infill_jerk": "12",
+ "infill_wall_overlap": "30%",
"initial_layer_acceleration": "500",
"initial_layer_infill_speed": "60",
- "initial_layer_jerk": "20",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.62",
"initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.3",
"initial_layer_speed": "40",
"initial_layer_travel_speed": "100%",
"inner_wall_acceleration": "5000",
- "inner_wall_jerk": "20",
+ "inner_wall_jerk": "8",
"inner_wall_line_width": "0.62",
"inner_wall_speed": "150",
"interface_shells": "0",
@@ -113,7 +113,7 @@
"only_one_wall_top": "1",
"ooze_prevention": "0",
"outer_wall_acceleration": "5000",
- "outer_wall_jerk": "20",
+ "outer_wall_jerk": "8",
"outer_wall_line_width": "0.62",
"outer_wall_speed": "100",
"overhang_1_4_speed": "0",
@@ -126,7 +126,7 @@
"overhang_speed_classic": "0",
"precise_outer_wall": "0",
"prime_tower_brim_width": "3",
- "prime_tower_width": "60",
+ "prime_tower_width": "40",
"prime_volume": "45",
"print_flow_ratio": "1",
"print_sequence": "by layer",
@@ -152,10 +152,14 @@
"slowdown_for_curled_perimeters": "0",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%",
- "sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.62",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "120",
@@ -163,7 +167,7 @@
"spiral_mode": "0",
"spiral_mode_max_xy_smoothing": "200%",
"spiral_mode_smooth": "0",
- "staggered_inner_seams": "1",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
"support_angle": "0",
"support_base_pattern": "rectilinear",
@@ -181,7 +185,7 @@
"support_interface_spacing": "0.5",
"support_interface_speed": "80",
"support_interface_top_layers": "2",
- "support_line_width": "0.6",
+ "support_line_width": "0.62",
"support_object_xy_distance": "0.35",
"support_on_build_plate_only": "0",
"support_remove_small_overhang": "1",
@@ -198,12 +202,12 @@
"top_shell_thickness": "0.8",
"top_solid_infill_flow_ratio": "1",
"top_surface_acceleration": "2000",
- "top_surface_jerk": "20",
+ "top_surface_jerk": "8",
"top_surface_line_width": "0.62",
"top_surface_pattern": "monotonicline",
"top_surface_speed": "100",
"travel_acceleration": "12000",
- "travel_jerk": "20",
+ "travel_jerk": "4",
"travel_speed": "500",
"travel_speed_z": "0",
"tree_support_adaptive_layer_height": "1",
@@ -222,7 +226,9 @@
"tree_support_top_rate": "30%",
"tree_support_wall_count": "0",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "wall_filament": "1",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
@@ -239,5 +245,31 @@
"wipe_tower_rotation_angle": "0",
"wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "xy_hole_compensation": "0"
-}
+ "xy_hole_compensation": "0",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "ai_infill": "0",
+ "counterbore_hole_bridging": "none",
+ "dont_filter_internal_bridges": "disabled",
+ "gap_fill_target": "everywhere",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "min_length_factor": "0.5",
+ "overhang_totally_speed": "25",
+ "prime_tower_enhance_type": "chamfer",
+ "print_order": "default",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "wall_direction": "auto"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality K2 Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality K2 Plus 0.6 nozzle.json
index 991c58fe79..b0e5b3edbb 100644
--- a/resources/profiles/Creality/process/0.30mm Standard @Creality K2 Plus 0.6 nozzle.json
+++ b/resources/profiles/Creality/process/0.30mm Standard @Creality K2 Plus 0.6 nozzle.json
@@ -1,7 +1,7 @@
{
"type": "process",
"name": "0.30mm Standard @Creality K2 Plus 0.6 nozzle",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
@@ -25,20 +25,18 @@
"outer_wall_speed": "100",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.62",
"infill_direction": "45",
"sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "sparse_infill_pattern": "grid",
"initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.65",
+ "initial_layer_line_width": "0.62",
"initial_layer_print_height": "0.3",
"initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
- "sparse_infill_line_width": "0.65",
- "infill_wall_overlap": "30%",
+ "sparse_infill_line_width": "0.62",
+ "infill_wall_overlap": "30",
"sparse_infill_speed": "120",
"interface_shells": "0",
"ironing_flow": "10%",
@@ -54,8 +52,8 @@
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.65",
+ "precise_outer_wall": "0",
+ "inner_wall_line_width": "0.62",
"inner_wall_speed": "150",
"wall_loops": "2",
"raft_layers": "0",
@@ -84,14 +82,14 @@
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.62",
@@ -106,5 +104,141 @@
"prime_tower_width": "60",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "gcode_label_objects": "0",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_jerk": "10",
+ "initial_layer_jerk": "8",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_jerk": "8",
+ "internal_bridge_flow": "1",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "90",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "ooze_prevention": "0",
+ "outer_wall_jerk": "8",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "prime_tower_brim_width": "3",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "reduce_crossing_wall": "0",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_jerk": "10",
+ "travel_jerk": "12",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality K2 Pro 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality K2 Pro 0.6 nozzle.json
index cc96203997..9687b3d3d4 100644
--- a/resources/profiles/Creality/process/0.30mm Standard @Creality K2 Pro 0.6 nozzle.json
+++ b/resources/profiles/Creality/process/0.30mm Standard @Creality K2 Pro 0.6 nozzle.json
@@ -1,7 +1,7 @@
{
"type": "process",
"name": "0.30mm Standard @Creality K2 Pro 0.6 nozzle",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
@@ -26,12 +26,10 @@
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
"wall_generator": "classic",
- "wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.62",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "sparse_infill_density": "15",
+ "sparse_infill_pattern": "grid",
"initial_layer_acceleration": "500",
"initial_layer_line_width": "0.62",
"initial_layer_print_height": "0.3",
@@ -85,14 +83,14 @@
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.62",
@@ -107,5 +105,165 @@
"prime_tower_width": "40",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "gcode_label_objects": "0",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "counterbore_hole_bridging": "none",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_jerk": "12",
+ "initial_layer_jerk": "8",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_jerk": "8",
+ "internal_bridge_flow": "1",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "90",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "ooze_prevention": "0",
+ "outer_wall_jerk": "8",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "reduce_crossing_wall": "0",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_jerk": "8",
+ "travel_jerk": "4",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality SPARKX i7 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality SPARKX i7 0.6 nozzle.json
new file mode 100644
index 0000000000..1b409fd733
--- /dev/null
+++ b/resources/profiles/Creality/process/0.30mm Standard @Creality SPARKX i7 0.6 nozzle.json
@@ -0,0 +1,267 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.30mm Standard @Creality SPARKX i7 0.6 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[1,1.2,150,5000]]",
+ "acceleration_limit_mess_enable": "1",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1.05",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "3",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.6 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "6000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "4500",
+ "initial_layer_infill_speed": "95",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.62",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.3",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "4000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.62",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.62",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "130",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.3",
+ "line_width": "0.62",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "1",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "4000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.62",
+ "outer_wall_speed": "130",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "30",
+ "overhang_3_4_speed": "20",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\n0.2,0.4444;\n0.4,0.6145;\n0.6,0.7059;\n0.8,0.7619;\n1.5,0.8571;\n2,0.8889;\n3,0.9231;\n5,0.9520;\n10,1",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.62",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "130",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.62",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.62",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "130",
+ "travel_acceleration": "8000",
+ "travel_jerk": "8",
+ "travel_speed": "400",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "arachne",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "10",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.30mm Strength @Creality K2 Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Strength @Creality K2 Plus 0.6 nozzle.json
new file mode 100644
index 0000000000..df426cfb27
--- /dev/null
+++ b/resources/profiles/Creality/process/0.30mm Strength @Creality K2 Plus 0.6 nozzle.json
@@ -0,0 +1,244 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.30mm Strength @Creality K2 Plus 0.6 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K2 Plus 0.6 nozzle"
+ ],
+ "default_acceleration": "12000",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.62",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.3",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.62",
+ "inner_wall_speed": "100",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.62",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.3",
+ "line_width": "0.62",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.62",
+ "outer_wall_speed": "80",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "20",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "30%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.62",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.6",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.62",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
+ "travel_acceleration": "12000",
+ "travel_jerk": "12",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "6",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 Plus 0.8 nozzle.json b/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 Plus 0.8 nozzle.json
index 78b28f92aa..b96c9fb773 100644
--- a/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 Plus 0.8 nozzle.json
+++ b/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 Plus 0.8 nozzle.json
@@ -1,110 +1,246 @@
{
"type": "process",
- "name": "0.32mm Optimal @Creality K2 Plus 0.8 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.32mm Optimal @Creality K2 Plus 0.8 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000], [1.0,1.5,80,5500], [1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "25",
- "internal_bridge_speed": "70",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Plus 0.8 nozzle"
],
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.82",
- "outer_wall_speed": "100",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.82",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
"initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.82",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.4",
"initial_layer_speed": "40",
- "gap_infill_speed": "50",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.82",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "120",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.82",
+ "inner_wall_speed": "150",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.82",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.32",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.82",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.82",
+ "outer_wall_speed": "100",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.82",
- "inner_wall_speed": "150",
- "wall_loops": "2",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.82",
- "internal_solid_infill_speed": "150",
- "initial_layer_infill_speed": "60",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.82",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height": "[[100,150,100,6000], [150,200,80,5500], [200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.6",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.3",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.8",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.82",
- "top_surface_acceleration": "2000",
- "top_surface_speed": "100",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.82",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
"travel_acceleration": "12000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality K2 Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.36mm Draft @Creality K2 Plus 0.6 nozzle.json
index ec362a3cdc..2048cb6157 100644
--- a/resources/profiles/Creality/process/0.36mm Draft @Creality K2 Plus 0.6 nozzle.json
+++ b/resources/profiles/Creality/process/0.36mm Draft @Creality K2 Plus 0.6 nozzle.json
@@ -1,110 +1,244 @@
{
"type": "process",
- "name": "0.36mm Draft @Creality K2 Plus 0.6 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.36mm Draft @Creality K2 Plus 0.6 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "25",
- "internal_bridge_speed": "70",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Plus 0.6 nozzle"
],
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.62",
- "outer_wall_speed": "100",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.62",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
"initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.65",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.62",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.3",
"initial_layer_speed": "40",
- "gap_infill_speed": "50",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.65",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "120",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.62",
+ "inner_wall_speed": "150",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.62",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.36",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.62",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.62",
+ "outer_wall_speed": "100",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.65",
- "inner_wall_speed": "150",
- "wall_loops": "2",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.62",
- "internal_solid_infill_speed": "150",
- "initial_layer_infill_speed": "60",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.62",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.6",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.6",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.62",
- "top_surface_acceleration": "2000",
- "top_surface_speed": "100",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.62",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
"travel_acceleration": "12000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality Ender-5 Max 0.8 nozzle.json b/resources/profiles/Creality/process/0.40mm Standard @Creality Ender-5 Max 0.8 nozzle.json
new file mode 100644
index 0000000000..3d128646b0
--- /dev/null
+++ b/resources/profiles/Creality/process/0.40mm Standard @Creality Ender-5 Max 0.8 nozzle.json
@@ -0,0 +1,264 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.40mm Standard @Creality Ender-5 Max 0.8 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0.6",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.8",
+ "bridge_no_support": "0",
+ "bridge_speed": "10",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality Ender-5 Max 0.8 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "12000",
+ "default_jerk": "6",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "0",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "100",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "6",
+ "infill_wall_overlap": "15%",
+ "initial_layer_acceleration": "1000",
+ "initial_layer_infill_speed": "40",
+ "initial_layer_jerk": "6",
+ "initial_layer_line_width": "0.82",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.4",
+ "initial_layer_speed": "30",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "3000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.82",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "100",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.82",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "120",
+ "ironing_angle": "-1",
+ "ironing_flow": "15%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.1",
+ "ironing_speed": "44",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.4",
+ "line_width": "0.82",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "3000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.82",
+ "outer_wall_speed": "120",
+ "overhang_1_4_speed": "35",
+ "overhang_2_4_speed": "20",
+ "overhang_3_4_speed": "10",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "5",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.82",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "100",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.82",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "4",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "6",
+ "top_surface_line_width": "0.82",
+ "top_surface_pattern": "monotonic",
+ "top_surface_speed": "100",
+ "travel_acceleration": "12000",
+ "travel_jerk": "6",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "30",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "0",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "20",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "100%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality Hi 0.8 nozzle.json b/resources/profiles/Creality/process/0.40mm Standard @Creality Hi 0.8 nozzle.json
new file mode 100644
index 0000000000..343567c396
--- /dev/null
+++ b/resources/profiles/Creality/process/0.40mm Standard @Creality Hi 0.8 nozzle.json
@@ -0,0 +1,266 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.40mm Standard @Creality Hi 0.8 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "25%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.8",
+ "bridge_no_support": "0",
+ "bridge_speed": "10",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality Hi 0.8 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "12000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "2000",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.82",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.4",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "6000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.82",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "20",
+ "internal_solid_infill_acceleration": "80%",
+ "internal_solid_infill_line_width": "0.82",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "100",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.4",
+ "line_width": "0.82",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "1",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.82",
+ "outer_wall_speed": "100",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "30",
+ "overhang_3_4_speed": "20",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "1",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "cone",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\n0.2,0.4444;\n0.4,0.6145;\n0.6,0.7059;\n0.8,0.7619;\n1.5,0.8571;\n2,0.8889;\n3,0.9231;\n5,0.9520;\n10,1",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.82",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.82",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "4",
+ "top_shell_thickness": "0.5",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "3000",
+ "top_surface_jerk": "8",
+ "top_surface_line_width": "0.82",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
+ "travel_acceleration": "12000",
+ "travel_jerk": "8",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "10",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "90",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality K1 (0.8 nozzle).json b/resources/profiles/Creality/process/0.40mm Standard @Creality K1 (0.8 nozzle).json
index e2d82b0631..0f7db77d2d 100644
--- a/resources/profiles/Creality/process/0.40mm Standard @Creality K1 (0.8 nozzle).json
+++ b/resources/profiles/Creality/process/0.40mm Standard @Creality K1 (0.8 nozzle).json
@@ -1,44 +1,40 @@
{
"type": "process",
"name": "0.40mm Standard @Creality K1 (0.8 nozzle)",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
- "adaptive_layer_height": "0",
"reduce_crossing_wall": "0",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
- "bridge_flow": "1",
- "bridge_speed": "30",
+ "bridge_flow": "0.8",
+ "bridge_speed": "10",
"brim_width": "5",
"brim_object_gap": "0.1",
- "compatible_printers_condition": "",
"print_sequence": "by layer",
- "default_acceleration": "12000",
+ "default_acceleration": "10000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.82",
- "outer_wall_speed": "120",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
+ "outer_wall_speed": "100",
+ "outer_wall_acceleration": "2000",
+ "inner_wall_acceleration": "2000",
"line_width": "0.82",
"infill_direction": "45",
"sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "sparse_infill_pattern": "grid",
"initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.7",
+ "initial_layer_line_width": "0.82",
"initial_layer_print_height": "0.4",
- "initial_layer_speed": "35",
+ "initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
- "sparse_infill_line_width": "0.85",
- "infill_wall_overlap": "15%",
+ "sparse_infill_line_width": "0.82",
+ "infill_wall_overlap": "30",
"sparse_infill_speed": "150",
"interface_shells": "0",
"ironing_flow": "10%",
@@ -49,20 +45,19 @@
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
- "overhang_1_4_speed": "0",
- "overhang_2_4_speed": "50",
- "overhang_3_4_speed": "25",
- "overhang_4_4_speed": "5",
+ "overhang_1_4_speed": "50",
+ "overhang_2_4_speed": "35",
+ "overhang_3_4_speed": "20",
+ "overhang_4_4_speed": "10",
"only_one_wall_top": "1",
- "inner_wall_line_width": "0.85",
+ "inner_wall_line_width": "0.82",
"inner_wall_speed": "150",
- "wall_loops": "3",
- "print_settings_id": "",
+ "wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_entire_loop": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
@@ -70,7 +65,7 @@
"internal_solid_infill_line_width": "0.82",
"internal_solid_infill_speed": "150",
"spiral_mode": "0",
- "initial_layer_infill_speed": "55",
+ "initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
@@ -88,24 +83,24 @@
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.82",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "150",
+ "top_surface_acceleration": "2000",
+ "top_surface_speed": "100",
"top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "top_shell_thickness": "0.8",
+ "travel_acceleration": "10000",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "enable_prime_tower": "0",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
@@ -113,5 +108,157 @@
"gcode_label_objects": "0",
"compatible_printers": [
"Creality K1 (0.8 nozzle)"
- ]
-}
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "counterbore_hole_bridging": "none",
+ "default_jerk": "6",
+ "detect_narrow_internal_solid_infill": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_jerk": "6",
+ "initial_layer_jerk": "6",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_jerk": "6",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "90",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "ooze_prevention": "0",
+ "outer_wall_jerk": "6",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\n0.2,0.4444;\n0.4,0.6145;\n0.6,0.7059;\n0.8,0.7619;\n1.5,0.8571;\n2,0.8889;\n3,0.9231;\n5,0.9520;\n10,1",
+ "small_perimeter_speed": "30%",
+ "small_perimeter_threshold": "20",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "0",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_jerk": "6",
+ "travel_jerk": "6",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality K1C 0.8 nozzle.json b/resources/profiles/Creality/process/0.40mm Standard @Creality K1C 0.8 nozzle.json
index c22180d152..6b419734c2 100644
--- a/resources/profiles/Creality/process/0.40mm Standard @Creality K1C 0.8 nozzle.json
+++ b/resources/profiles/Creality/process/0.40mm Standard @Creality K1C 0.8 nozzle.json
@@ -1,44 +1,40 @@
{
"type": "process",
"name": "0.40mm Standard @Creality K1C",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
- "adaptive_layer_height": "0",
"reduce_crossing_wall": "0",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
- "bridge_flow": "1",
- "bridge_speed": "30",
+ "bridge_flow": "0.8",
+ "bridge_speed": "10",
"brim_width": "5",
"brim_object_gap": "0.1",
- "compatible_printers_condition": "",
"print_sequence": "by layer",
- "default_acceleration": "12000",
+ "default_acceleration": "10000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.82",
- "outer_wall_speed": "120",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
+ "outer_wall_speed": "100",
+ "outer_wall_acceleration": "2000",
+ "inner_wall_acceleration": "2000",
"line_width": "0.82",
"infill_direction": "45",
"sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "sparse_infill_pattern": "grid",
"initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.7",
+ "initial_layer_line_width": "0.82",
"initial_layer_print_height": "0.4",
- "initial_layer_speed": "35",
+ "initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
- "sparse_infill_line_width": "0.85",
- "infill_wall_overlap": "15%",
+ "sparse_infill_line_width": "0.82",
+ "infill_wall_overlap": "30",
"sparse_infill_speed": "150",
"interface_shells": "0",
"ironing_flow": "10%",
@@ -49,20 +45,19 @@
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
- "overhang_1_4_speed": "0",
- "overhang_2_4_speed": "50",
- "overhang_3_4_speed": "25",
- "overhang_4_4_speed": "5",
+ "overhang_1_4_speed": "50",
+ "overhang_2_4_speed": "35",
+ "overhang_3_4_speed": "20",
+ "overhang_4_4_speed": "10",
"only_one_wall_top": "1",
- "inner_wall_line_width": "0.85",
+ "inner_wall_line_width": "0.82",
"inner_wall_speed": "150",
- "wall_loops": "3",
- "print_settings_id": "",
+ "wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_entire_loop": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
@@ -70,7 +65,7 @@
"internal_solid_infill_line_width": "0.82",
"internal_solid_infill_speed": "150",
"spiral_mode": "0",
- "initial_layer_infill_speed": "55",
+ "initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
@@ -88,24 +83,24 @@
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.82",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "150",
+ "top_surface_acceleration": "2000",
+ "top_surface_speed": "100",
"top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "top_shell_thickness": "0.8",
+ "travel_acceleration": "10000",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "enable_prime_tower": "0",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
@@ -113,5 +108,157 @@
"gcode_label_objects": "0",
"compatible_printers": [
"Creality K1C 0.8 nozzle"
- ]
-}
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "counterbore_hole_bridging": "none",
+ "default_jerk": "6",
+ "detect_narrow_internal_solid_infill": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_jerk": "6",
+ "initial_layer_jerk": "6",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_jerk": "6",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_pattern": "zig-zag",
+ "ironing_angle": "90",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "ooze_prevention": "0",
+ "outer_wall_jerk": "6",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\n0.2,0.4444;\n0.4,0.6145;\n0.6,0.7059;\n0.8,0.7619;\n1.5,0.8571;\n2,0.8889;\n3,0.9231;\n5,0.9520;\n10,1",
+ "small_perimeter_speed": "30%",
+ "small_perimeter_threshold": "20",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "0",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_jerk": "6",
+ "travel_jerk": "6",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.82",
+ "tree_support_top_rate": "30%",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality K1Max (0.8 nozzle).json b/resources/profiles/Creality/process/0.40mm Standard @Creality K1Max (0.8 nozzle).json
index 21bf74c107..95a72213be 100644
--- a/resources/profiles/Creality/process/0.40mm Standard @Creality K1Max (0.8 nozzle).json
+++ b/resources/profiles/Creality/process/0.40mm Standard @Creality K1Max (0.8 nozzle).json
@@ -1,44 +1,40 @@
{
"type": "process",
"name": "0.40mm Standard @Creality K1Max (0.8 nozzle)",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
- "adaptive_layer_height": "0",
"reduce_crossing_wall": "0",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
- "bridge_flow": "1",
- "bridge_speed": "30",
+ "bridge_flow": "0.8",
+ "bridge_speed": "10",
"brim_width": "5",
"brim_object_gap": "0.1",
- "compatible_printers_condition": "",
"print_sequence": "by layer",
- "default_acceleration": "12000",
+ "default_acceleration": "10000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.82",
- "outer_wall_speed": "120",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
+ "outer_wall_speed": "100",
+ "outer_wall_acceleration": "2000",
+ "inner_wall_acceleration": "2000",
"line_width": "0.82",
"infill_direction": "45",
"sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "sparse_infill_pattern": "grid",
"initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.7",
+ "initial_layer_line_width": "0.82",
"initial_layer_print_height": "0.4",
- "initial_layer_speed": "35",
+ "initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
- "sparse_infill_line_width": "0.85",
- "infill_wall_overlap": "15%",
+ "sparse_infill_line_width": "0.82",
+ "infill_wall_overlap": "30",
"sparse_infill_speed": "150",
"interface_shells": "0",
"ironing_flow": "10%",
@@ -49,20 +45,19 @@
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
- "overhang_1_4_speed": "0",
- "overhang_2_4_speed": "50",
- "overhang_3_4_speed": "25",
- "overhang_4_4_speed": "5",
+ "overhang_1_4_speed": "50",
+ "overhang_2_4_speed": "35",
+ "overhang_3_4_speed": "20",
+ "overhang_4_4_speed": "10",
"only_one_wall_top": "1",
- "inner_wall_line_width": "0.85",
+ "inner_wall_line_width": "0.82",
"inner_wall_speed": "150",
- "wall_loops": "3",
- "print_settings_id": "",
+ "wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
- "seam_slope_conditional": "1",
- "seam_slope_inner_walls": "1",
- "seam_slope_entire_loop": "1",
+ "seam_slope_conditional": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_entire_loop": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
@@ -70,7 +65,7 @@
"internal_solid_infill_line_width": "0.82",
"internal_solid_infill_speed": "150",
"spiral_mode": "0",
- "initial_layer_infill_speed": "55",
+ "initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
@@ -80,7 +75,7 @@
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
- "support_line_width": "0.82",
+ "support_line_width": "0.8",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
@@ -88,24 +83,24 @@
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.82",
- "top_surface_acceleration": "5000",
- "top_surface_speed": "150",
+ "top_surface_acceleration": "2000",
+ "top_surface_speed": "100",
"top_shell_layers": "3",
- "top_shell_thickness": "0.6",
- "travel_acceleration": "12000",
+ "top_shell_thickness": "0.8",
+ "travel_acceleration": "10000",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "enable_prime_tower": "0",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
@@ -113,5 +108,157 @@
"gcode_label_objects": "0",
"compatible_printers": [
"Creality K1 Max (0.8 nozzle)"
- ]
-}
+ ],
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "counterbore_hole_bridging": "none",
+ "default_jerk": "6",
+ "detect_narrow_internal_solid_infill": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_jerk": "6",
+ "initial_layer_jerk": "6",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_jerk": "6",
+ "internal_bridge_flow": "0.8",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "90",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "ooze_prevention": "0",
+ "outer_wall_jerk": "6",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\n0.2,0.4444;\n0.4,0.6145;\n0.6,0.7059;\n0.8,0.7619;\n1.5,0.8571;\n2,0.8889;\n3,0.9231;\n5,0.9520;\n10,1",
+ "small_perimeter_speed": "30%",
+ "small_perimeter_threshold": "20",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_jerk": "6",
+ "travel_jerk": "6",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality K2 0.8 nozzle.json b/resources/profiles/Creality/process/0.40mm Standard @Creality K2 0.8 nozzle.json
index c5f40a4379..57415361fa 100644
--- a/resources/profiles/Creality/process/0.40mm Standard @Creality K2 0.8 nozzle.json
+++ b/resources/profiles/Creality/process/0.40mm Standard @Creality K2 0.8 nozzle.json
@@ -6,7 +6,7 @@
"instantiation": "true",
"inherits": "fdm_process_creality_common",
"accel_to_decel_enable": "1",
- "accel_to_decel_factor": "100%",
+ "accel_to_decel_factor": "100",
"acceleration_limit_mess_enable": "0",
"alternate_extra_wall": "0",
"bottom_shell_layers": "3",
@@ -18,7 +18,7 @@
"bridge_density": "100%",
"bridge_flow": "1",
"bridge_no_support": "0",
- "bridge_speed": "25",
+ "bridge_speed": "20",
"brim_ears_detection_length": "1",
"brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
@@ -27,8 +27,8 @@
"compatible_printers": [
"Creality K2 0.8 nozzle"
],
- "default_acceleration": "12000",
- "default_jerk": "9",
+ "default_acceleration": "8000",
+ "default_jerk": "8",
"detect_narrow_internal_solid_infill": "1",
"detect_overhang_wall": "1",
"detect_thin_wall": "0",
@@ -64,18 +64,18 @@
"infill_anchor_max": "20",
"infill_combination": "0",
"infill_direction": "45",
- "infill_jerk": "12",
- "infill_wall_overlap": "30",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "30%",
"initial_layer_acceleration": "500",
"initial_layer_infill_speed": "60",
- "initial_layer_jerk": "9",
+ "initial_layer_jerk": "6",
"initial_layer_line_width": "0.82",
"initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.4",
"initial_layer_speed": "40",
"initial_layer_travel_speed": "100%",
- "inner_wall_acceleration": "5000",
- "inner_wall_jerk": "7",
+ "inner_wall_acceleration": "3000",
+ "inner_wall_jerk": "6",
"inner_wall_line_width": "0.82",
"inner_wall_speed": "150",
"interface_shells": "0",
@@ -112,13 +112,13 @@
"only_one_wall_first_layer": "0",
"only_one_wall_top": "1",
"ooze_prevention": "0",
- "outer_wall_acceleration": "5000",
- "outer_wall_jerk": "7",
+ "outer_wall_acceleration": "3000",
+ "outer_wall_jerk": "6",
"outer_wall_line_width": "0.82",
"outer_wall_speed": "100",
- "overhang_1_4_speed": "0",
- "overhang_2_4_speed": "50",
- "overhang_3_4_speed": "20",
+ "overhang_1_4_speed": "50",
+ "overhang_2_4_speed": "35",
+ "overhang_3_4_speed": "25",
"overhang_4_4_speed": "10",
"overhang_reverse": "0",
"overhang_reverse_internal_only": "0",
@@ -126,7 +126,7 @@
"overhang_speed_classic": "0",
"precise_outer_wall": "0",
"prime_tower_brim_width": "3",
- "prime_tower_width": "60",
+ "prime_tower_width": "40",
"prime_volume": "45",
"print_flow_ratio": "1",
"print_sequence": "by layer",
@@ -152,10 +152,14 @@
"slowdown_for_curled_perimeters": "0",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "solid_infill_filament": "1",
"sparse_infill_acceleration": "100%",
- "sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_density": "15",
+ "sparse_infill_filament": "1",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.82",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "120",
@@ -163,7 +167,7 @@
"spiral_mode": "0",
"spiral_mode_max_xy_smoothing": "200%",
"spiral_mode_smooth": "0",
- "staggered_inner_seams": "1",
+ "staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
"support_angle": "0",
"support_base_pattern": "rectilinear",
@@ -181,7 +185,7 @@
"support_interface_spacing": "0.5",
"support_interface_speed": "80",
"support_interface_top_layers": "2",
- "support_line_width": "0.8",
+ "support_line_width": "0.82",
"support_object_xy_distance": "0.35",
"support_on_build_plate_only": "0",
"support_remove_small_overhang": "1",
@@ -198,12 +202,12 @@
"top_shell_thickness": "0.8",
"top_solid_infill_flow_ratio": "1",
"top_surface_acceleration": "2000",
- "top_surface_jerk": "7",
+ "top_surface_jerk": "6",
"top_surface_line_width": "0.82",
"top_surface_pattern": "monotonicline",
"top_surface_speed": "100",
"travel_acceleration": "12000",
- "travel_jerk": "12",
+ "travel_jerk": "4",
"travel_speed": "500",
"travel_speed_z": "0",
"tree_support_adaptive_layer_height": "1",
@@ -222,7 +226,9 @@
"tree_support_top_rate": "30%",
"tree_support_wall_count": "0",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "wall_filament": "1",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
@@ -239,5 +245,31 @@
"wipe_tower_rotation_angle": "0",
"wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "xy_hole_compensation": "0"
-}
+ "xy_hole_compensation": "0",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "ai_infill": "0",
+ "counterbore_hole_bridging": "none",
+ "dont_filter_internal_bridges": "disabled",
+ "gap_fill_target": "everywhere",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "min_length_factor": "0.5",
+ "overhang_totally_speed": "20",
+ "prime_tower_enhance_type": "chamfer",
+ "print_order": "default",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "wall_direction": "auto"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality K2 Plus 0.8 nozzle.json b/resources/profiles/Creality/process/0.40mm Standard @Creality K2 Plus 0.8 nozzle.json
index 11becb9c92..1600399ef2 100644
--- a/resources/profiles/Creality/process/0.40mm Standard @Creality K2 Plus 0.8 nozzle.json
+++ b/resources/profiles/Creality/process/0.40mm Standard @Creality K2 Plus 0.8 nozzle.json
@@ -1,7 +1,7 @@
{
"type": "process",
"name": "0.40mm Standard @Creality K2 Plus 0.8 nozzle",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
@@ -25,12 +25,10 @@
"outer_wall_speed": "100",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.82",
"infill_direction": "45",
"sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "sparse_infill_pattern": "grid",
"initial_layer_acceleration": "500",
"initial_layer_line_width": "0.82",
"initial_layer_print_height": "0.4",
@@ -38,7 +36,7 @@
"gap_infill_speed": "50",
"infill_combination": "0",
"sparse_infill_line_width": "0.82",
- "infill_wall_overlap": "30%",
+ "infill_wall_overlap": "30",
"sparse_infill_speed": "120",
"interface_shells": "0",
"ironing_flow": "10%",
@@ -54,7 +52,7 @@
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
- "precise_outer_wall": "1",
+ "precise_outer_wall": "0",
"inner_wall_line_width": "0.82",
"inner_wall_speed": "150",
"wall_loops": "2",
@@ -76,22 +74,22 @@
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
- "support_line_width": "0.6",
+ "support_line_width": "0.8",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.3",
+ "support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.82",
@@ -106,5 +104,141 @@
"prime_tower_width": "60",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "gcode_label_objects": "0",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_jerk": "10",
+ "initial_layer_jerk": "8",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_jerk": "8",
+ "internal_bridge_flow": "1",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "90",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "ooze_prevention": "0",
+ "outer_wall_jerk": "8",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "prime_tower_brim_width": "3",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "reduce_crossing_wall": "0",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_jerk": "10",
+ "travel_jerk": "12",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality K2 Pro 0.8 nozzle.json b/resources/profiles/Creality/process/0.40mm Standard @Creality K2 Pro 0.8 nozzle.json
index c0f4769df5..b32c6e2205 100644
--- a/resources/profiles/Creality/process/0.40mm Standard @Creality K2 Pro 0.8 nozzle.json
+++ b/resources/profiles/Creality/process/0.40mm Standard @Creality K2 Pro 0.8 nozzle.json
@@ -1,7 +1,7 @@
{
"type": "process",
"name": "0.40mm Standard @Creality K2 Pro 0.8 nozzle",
- "inherits": "fdm_process_common_klipper",
+ "inherits": "fdm_process_creality_common",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
@@ -26,12 +26,10 @@
"outer_wall_acceleration": "3000",
"inner_wall_acceleration": "3000",
"wall_generator": "classic",
- "wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.82",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "sparse_infill_density": "15",
+ "sparse_infill_pattern": "grid",
"initial_layer_acceleration": "500",
"initial_layer_line_width": "0.82",
"initial_layer_print_height": "0.4",
@@ -85,14 +83,14 @@
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
+ "tree_support_wall_count": "0",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.82",
@@ -107,5 +105,165 @@
"prime_tower_width": "40",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "gcode_label_objects": "0",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_type": "auto_brim",
+ "counterbore_hole_bridging": "none",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_jerk": "8",
+ "initial_layer_jerk": "6",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_jerk": "6",
+ "internal_bridge_flow": "1",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "90",
+ "ironing_pattern": "zig-zag",
+ "ironing_support_layer": "0",
+ "is_infill_first": "0",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "material_flow_dependent_temperature": "0",
+ "material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
+ "max_bridge_length": "10",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "ooze_prevention": "0",
+ "outer_wall_jerk": "6",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "20",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "reduce_crossing_wall": "0",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "0",
+ "support_angle": "0",
+ "support_bottom_interface_spacing": "0.5",
+ "support_critical_regions_only": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_remove_small_overhang": "1",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_jerk": "6",
+ "travel_jerk": "4",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.40mm Standard @Creality SPARKX i7 0.8 nozzle.json b/resources/profiles/Creality/process/0.40mm Standard @Creality SPARKX i7 0.8 nozzle.json
new file mode 100644
index 0000000000..6f874eaa6e
--- /dev/null
+++ b/resources/profiles/Creality/process/0.40mm Standard @Creality SPARKX i7 0.8 nozzle.json
@@ -0,0 +1,267 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.40mm Standard @Creality SPARKX i7 0.8 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "50%",
+ "acceleration_limit_mess": "[[1,1.2,150,5000]]",
+ "acceleration_limit_mess_enable": "1",
+ "ai_infill": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1.05",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.8",
+ "bridge_no_support": "0",
+ "bridge_speed": "20",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "3",
+ "compatible_printers": [
+ "Creality SPARKX i7 0.8 nozzle"
+ ],
+ "counterbore_hole_bridging": "none",
+ "default_acceleration": "6000",
+ "default_jerk": "8",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "0",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_fill_target": "everywhere",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "8",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "4500",
+ "initial_layer_infill_speed": "95",
+ "initial_layer_jerk": "6",
+ "initial_layer_line_width": "0.82",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.4",
+ "initial_layer_speed": "60",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "4000",
+ "inner_wall_jerk": "6",
+ "inner_wall_line_width": "0.82",
+ "inner_wall_speed": "150",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.82",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "130",
+ "ironing_angle": "-1",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.4",
+ "line_width": "0.82",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "1",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "4000",
+ "outer_wall_jerk": "6",
+ "outer_wall_line_width": "0.82",
+ "outer_wall_speed": "130",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "30",
+ "overhang_3_4_speed": "20",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "20",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enhance_type": "chamfer",
+ "prime_tower_width": "40",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "40%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "seam_slope_type": "none",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": "0,0;\n0.2,0.4444;\n0.4,0.6145;\n0.6,0.7059;\n0.8,0.7619;\n1.5,0.8571;\n2,0.8889;\n3,0.9231;\n5,0.9520;\n10,1",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.82",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "130",
+ "speed_limit_to_height": "[[100,150,100,6000],[150,200,80,5500],[200,250,60,5000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.82",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "1",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "6",
+ "top_surface_line_width": "0.82",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "130",
+ "travel_acceleration": "8000",
+ "travel_jerk": "8",
+ "travel_speed": "400",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "arachne",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "10",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.40mm Strength @Creality K2 Plus 0.8 nozzle.json b/resources/profiles/Creality/process/0.40mm Strength @Creality K2 Plus 0.8 nozzle.json
new file mode 100644
index 0000000000..7f8f655787
--- /dev/null
+++ b/resources/profiles/Creality/process/0.40mm Strength @Creality K2 Plus 0.8 nozzle.json
@@ -0,0 +1,244 @@
+{
+ "type": "process",
+ "setting_id": "GP004",
+ "name": "0.40mm Strength @Creality K2 Plus 0.8 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
+ "bottom_shell_layers": "3",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "1",
+ "bridge_no_support": "0",
+ "bridge_speed": "25",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
+ "compatible_printers": [
+ "Creality K2 Plus 0.8 nozzle"
+ ],
+ "default_acceleration": "12000",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0.15",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_direction": "45",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
+ "initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.82",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_print_height": "0.4",
+ "initial_layer_speed": "40",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.82",
+ "inner_wall_speed": "100",
+ "interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.82",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "90",
+ "ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_support_layer": "0",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "layer_height": "0.4",
+ "line_width": "0.82",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.82",
+ "outer_wall_speed": "80",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "50",
+ "overhang_3_4_speed": "20",
+ "overhang_4_4_speed": "10",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
+ "skirt_distance": "2",
+ "skirt_height": "1",
+ "skirt_loops": "0",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "30%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.82",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.8",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_shell_layers": "5",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.82",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
+ "travel_acceleration": "12000",
+ "travel_jerk": "12",
+ "travel_speed": "500",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "6",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
+ "xy_contour_compensation": "0",
+ "xy_hole_compensation": "0"
+}
diff --git a/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 Plus 0.6 nozzle.json
index 9e13be5406..dd00eadd96 100644
--- a/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 Plus 0.6 nozzle.json
+++ b/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 Plus 0.6 nozzle.json
@@ -1,110 +1,246 @@
{
"type": "process",
- "name": "0.42mm SuperDraft @Creality K2 Plus 0.6 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.42mm SuperDraft @Creality K2 Plus 0.6 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "25",
- "internal_bridge_speed": "70",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Plus 0.6 nozzle"
],
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.62",
- "outer_wall_speed": "100",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.62",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
"initial_layer_acceleration": "500",
- "initial_layer_line_width": "0.65",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
+ "initial_layer_line_width": "0.62",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.3",
"initial_layer_speed": "40",
- "gap_infill_speed": "50",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.65",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "120",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.62",
+ "inner_wall_speed": "150",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.62",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.42",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.62",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.62",
+ "outer_wall_speed": "100",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.65",
- "inner_wall_speed": "150",
- "wall_loops": "2",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.62",
- "internal_solid_infill_speed": "150",
- "initial_layer_infill_speed": "60",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.62",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height": "[[150,200,200,2000],[200,250,200,1500],[250,330,200,1000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.6",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.5",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.6",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.62",
- "top_surface_acceleration": "2000",
- "top_surface_speed": "100",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.62",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
"travel_acceleration": "12000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.48mm Draft @Creality K2 Plus 0.8 nozzle.json b/resources/profiles/Creality/process/0.48mm Draft @Creality K2 Plus 0.8 nozzle.json
index 9a8556a204..51edc7fdc8 100644
--- a/resources/profiles/Creality/process/0.48mm Draft @Creality K2 Plus 0.8 nozzle.json
+++ b/resources/profiles/Creality/process/0.48mm Draft @Creality K2 Plus 0.8 nozzle.json
@@ -1,110 +1,246 @@
{
"type": "process",
- "name": "0.48mm Draft @Creality K2 Plus 0.8 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.48mm Draft @Creality K2 Plus 0.8 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "25",
- "internal_bridge_speed": "70",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Plus 0.8 nozzle"
],
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.82",
- "outer_wall_speed": "100",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.82",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
"initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.82",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.4",
"initial_layer_speed": "40",
- "gap_infill_speed": "50",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.82",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "120",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.82",
+ "inner_wall_speed": "150",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.82",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.48",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.82",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.82",
+ "outer_wall_speed": "100",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.82",
- "inner_wall_speed": "150",
- "wall_loops": "2",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.82",
- "internal_solid_infill_speed": "150",
- "initial_layer_infill_speed": "60",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.82",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height": "[[150,200,200,2000],[200,250,200,1500],[250,330,200,1000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.6",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.3",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.8",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.82",
- "top_surface_acceleration": "2000",
- "top_surface_speed": "100",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.82",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
"travel_acceleration": "12000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 Plus 0.8 nozzle.json b/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 Plus 0.8 nozzle.json
index 72744f0a47..02500bd723 100644
--- a/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 Plus 0.8 nozzle.json
+++ b/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 Plus 0.8 nozzle.json
@@ -1,110 +1,246 @@
{
"type": "process",
- "name": "0.56mm SuperDraft @Creality K2 Plus 0.8 nozzle",
- "inherits": "fdm_process_common_klipper",
- "from": "system",
"setting_id": "GP004",
+ "name": "0.56mm SuperDraft @Creality K2 Plus 0.8 nozzle",
+ "from": "system",
"instantiation": "true",
- "max_travel_detour_distance": "0",
- "bottom_surface_pattern": "monotonic",
+ "inherits": "fdm_process_creality_common",
+ "accel_to_decel_enable": "1",
+ "accel_to_decel_factor": "100%",
+ "acceleration_limit_mess": "[[0.5,1.0,100,6000],[1.0,1.5,80,5500],[1.5,2.0,60,5000]]",
+ "acceleration_limit_mess_enable": "0",
+ "alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_pattern": "monotonic",
+ "bridge_acceleration": "50%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
"bridge_flow": "1",
+ "bridge_no_support": "0",
"bridge_speed": "25",
- "internal_bridge_speed": "70",
- "brim_width": "5",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
+ "brim_type": "auto_brim",
+ "brim_width": "5",
"compatible_printers": [
"Creality K2 Plus 0.8 nozzle"
],
"default_acceleration": "12000",
- "bridge_no_support": "0",
+ "default_jerk": "12",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
- "outer_wall_line_width": "0.82",
- "outer_wall_speed": "100",
- "outer_wall_acceleration": "5000",
- "inner_wall_acceleration": "5000",
- "wall_infill_order": "inner wall/outer wall/infill",
- "line_width": "0.82",
+ "elefant_foot_compensation_layers": "1",
+ "enable_arc_fitting": "1",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enforce_support_layers": "0",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "filter_out_gap_fill": "0",
+ "flush_into_infill": "0",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "none",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_point_distance": "0.8",
+ "fuzzy_skin_thickness": "0.3",
+ "gap_infill_speed": "50",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "0",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "1",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
"infill_direction": "45",
- "sparse_infill_density": "15%",
- "sparse_infill_pattern": "crosshatch",
- "internal_bridge_support_thickness": "0.8",
+ "infill_jerk": "10",
+ "infill_wall_overlap": "30",
"initial_layer_acceleration": "500",
+ "initial_layer_infill_speed": "60",
+ "initial_layer_jerk": "8",
"initial_layer_line_width": "0.82",
+ "initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.4",
"initial_layer_speed": "40",
- "gap_infill_speed": "50",
- "infill_combination": "0",
- "sparse_infill_line_width": "0.82",
- "infill_wall_overlap": "30%",
- "sparse_infill_speed": "120",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "5000",
+ "inner_wall_jerk": "8",
+ "inner_wall_line_width": "0.82",
+ "inner_wall_speed": "150",
"interface_shells": "0",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "70",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_line_width": "0.82",
+ "internal_solid_infill_pattern": "monotonic",
+ "internal_solid_infill_speed": "150",
+ "ironing_angle": "90",
"ironing_flow": "10%",
+ "ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
+ "ironing_support_layer": "0",
"ironing_type": "no ironing",
+ "is_infill_first": "0",
"layer_height": "0.56",
- "reduce_infill_retraction": "1",
- "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
- "detect_overhang_wall": "1",
+ "line_width": "0.82",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "10",
+ "max_travel_detour_distance": "0",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "minimum_support_area": "5",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "1",
+ "ooze_prevention": "0",
+ "outer_wall_acceleration": "5000",
+ "outer_wall_jerk": "8",
+ "outer_wall_line_width": "0.82",
+ "outer_wall_speed": "100",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
- "only_one_wall_top": "1",
- "precise_outer_wall": "1",
- "inner_wall_line_width": "0.82",
- "inner_wall_speed": "150",
- "wall_loops": "2",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "overhang_speed_classic": "0",
+ "overhang_totally_speed": "25",
+ "precise_outer_wall": "0",
+ "prime_tower_brim_width": "3",
+ "prime_tower_width": "60",
+ "prime_volume": "45",
+ "print_flow_ratio": "1",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
"raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "seam_gap": "10%",
"seam_position": "aligned",
+ "single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
- "minimum_sparse_infill_area": "15",
- "internal_solid_infill_line_width": "0.82",
- "internal_solid_infill_speed": "150",
- "initial_layer_infill_speed": "60",
+ "skirt_speed": "50",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "0",
+ "slowdown_for_curled_perimeters": "0",
+ "small_perimeter_speed": "50%",
+ "small_perimeter_threshold": "0",
+ "solid_infill_filament": "1",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_density": "15%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_line_width": "0.82",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "120",
+ "speed_limit_to_height": "[[150,200,200,2000],[200,250,200,1500],[250,330,200,1000]]",
+ "speed_limit_to_height_enable": "0",
+ "spiral_mode": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
- "enable_support": "0",
- "resolution": "0.012",
- "support_type": "normal(auto)",
- "support_style": "default",
- "support_on_build_plate_only": "0",
- "support_top_z_distance": "0.2",
- "support_bottom_z_distance": "0.2",
- "support_filament": "0",
- "support_line_width": "0.6",
- "support_interface_loop_pattern": "0",
- "support_interface_filament": "0",
- "support_interface_top_layers": "2",
- "support_interface_bottom_layers": "2",
- "support_interface_spacing": "0.3",
- "support_expansion": "0",
- "support_interface_speed": "80",
- "support_base_pattern": "default",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
- "support_speed": "150",
- "support_threshold_angle": "30",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "0",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_speed": "80",
+ "support_interface_top_layers": "2",
+ "support_line_width": "0.8",
"support_object_xy_distance": "0.35",
- "tree_support_branch_diameter": "2",
- "tree_support_branch_angle": "45",
- "tree_support_wall_count": "1",
- "detect_thin_wall": "0",
- "top_surface_pattern": "monotonicline",
- "top_surface_line_width": "0.82",
- "top_surface_acceleration": "2000",
- "top_surface_speed": "100",
+ "support_on_build_plate_only": "0",
+ "support_remove_small_overhang": "1",
+ "support_speed": "150",
+ "support_style": "default",
+ "support_threshold_angle": "30",
+ "support_top_z_distance": "0.2",
+ "support_type": "normal(auto)",
+ "support_xy_overrides_z": "xy_overrides_z",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_acceleration": "2000",
+ "top_surface_jerk": "10",
+ "top_surface_line_width": "0.82",
+ "top_surface_pattern": "monotonicline",
+ "top_surface_speed": "100",
"travel_acceleration": "12000",
+ "travel_jerk": "12",
"travel_speed": "500",
- "enable_prime_tower": "1",
+ "travel_speed_z": "0",
+ "tree_support_adaptive_layer_height": "1",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "2",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_double_wall": "3",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "0",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "0",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "0",
+ "wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
- "prime_tower_width": "60",
- "xy_hole_compensation": "0",
+ "wipe_tower_rotation_angle": "0",
+ "wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
- "gcode_label_objects": "0"
-}
+ "xy_hole_compensation": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Cubicon.json b/resources/profiles/Cubicon.json
index c85e766a66..906d06fea4 100644
--- a/resources/profiles/Cubicon.json
+++ b/resources/profiles/Cubicon.json
@@ -1,6 +1,6 @@
{
"name": "Cubicon",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "0",
"description": "Cubicon configurations",
"machine_model_list": [
diff --git a/resources/profiles/Cubicon/process/process template @base.json b/resources/profiles/Cubicon/process/process template @base.json
index 8d1a85cdbc..74ddfa11d6 100644
--- a/resources/profiles/Cubicon/process/process template @base.json
+++ b/resources/profiles/Cubicon/process/process template @base.json
@@ -211,10 +211,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "10%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "270",
@@ -284,7 +286,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "outer wall/inner wall",
diff --git a/resources/profiles/Elegoo.json b/resources/profiles/Elegoo.json
index d22fb9f0f0..a80b129b68 100644
--- a/resources/profiles/Elegoo.json
+++ b/resources/profiles/Elegoo.json
@@ -1,6 +1,6 @@
{
"name": "Elegoo",
- "version": "02.04.00.00",
+ "version": "02.04.00.02",
"force_update": "0",
"description": "Elegoo configurations",
"machine_model_list": [
@@ -286,6 +286,10 @@
"name": "0.40mm Standard @Elegoo Neptune 0.8 nozzle",
"sub_path": "process/EN2SERIES/0.40mm Standard @Elegoo Neptune 0.8 nozzle.json"
},
+ {
+ "name": "0.50mm Standard @Elegoo Giga 1.0 nozzle",
+ "sub_path": "process/EOSGIGA/0.50mm Standard @Elegoo Giga 1.0 nozzle.json"
+ },
{
"name": "0.50mm Standard @Elegoo N3Max 1.0 nozzle",
"sub_path": "process/EN3SERIES/0.50mm Standard @Elegoo N3Max 1.0 nozzle.json"
@@ -314,6 +318,42 @@
"name": "0.50mm Standard @Elegoo N4Pro 1.0 nozzle",
"sub_path": "process/EN4SERIES/0.50mm Standard @Elegoo N4Pro 1.0 nozzle.json"
},
+ {
+ "name": "0.08mm Optimal @Elegoo C 0.2 nozzle",
+ "sub_path": "process/EC/0.08mm Optimal @Elegoo C 0.2 nozzle.json"
+ },
+ {
+ "name": "0.12mm Draft @Elegoo C 0.2 nozzle",
+ "sub_path": "process/EC/0.12mm Draft @Elegoo C 0.2 nozzle.json"
+ },
+ {
+ "name": "0.14mm Extra Draft @Elegoo C 0.2 nozzle",
+ "sub_path": "process/EC/0.14mm Extra Draft @Elegoo C 0.2 nozzle.json"
+ },
+ {
+ "name": "0.08mm Optimal @Elegoo CC 0.2 nozzle",
+ "sub_path": "process/ECC/0.08mm Optimal @Elegoo CC 0.2 nozzle.json"
+ },
+ {
+ "name": "0.12mm Draft @Elegoo CC 0.2 nozzle",
+ "sub_path": "process/ECC/0.12mm Draft @Elegoo CC 0.2 nozzle.json"
+ },
+ {
+ "name": "0.14mm Extra Draft @Elegoo CC 0.2 nozzle",
+ "sub_path": "process/ECC/0.14mm Extra Draft @Elegoo CC 0.2 nozzle.json"
+ },
+ {
+ "name": "0.08mm Optimal @Elegoo CC2 0.2 nozzle",
+ "sub_path": "process/ECC2/0.08mm Optimal @Elegoo CC2 0.2 nozzle.json"
+ },
+ {
+ "name": "0.12mm Draft @Elegoo CC2 0.2 nozzle",
+ "sub_path": "process/ECC2/0.12mm Draft @Elegoo CC2 0.2 nozzle.json"
+ },
+ {
+ "name": "0.14mm Extra Draft @Elegoo CC2 0.2 nozzle",
+ "sub_path": "process/ECC2/0.14mm Extra Draft @Elegoo CC2 0.2 nozzle.json"
+ },
{
"name": "0.08mm Optimal @Elegoo N3Max 0.2 nozzle",
"sub_path": "process/EN3SERIES/0.08mm Optimal @Elegoo N3Max 0.2 nozzle.json"
@@ -370,6 +410,322 @@
"name": "0.12mm Draft @Elegoo N4Pro 0.2 nozzle",
"sub_path": "process/EN4SERIES/0.12mm Draft @Elegoo N4Pro 0.2 nozzle.json"
},
+ {
+ "name": "0.12mm Fine @Elegoo C 0.4 nozzle",
+ "sub_path": "process/EC/0.12mm Fine @Elegoo C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Elegoo C 0.4 nozzle",
+ "sub_path": "process/EC/0.16mm Optimal @Elegoo C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Strength @Elegoo C 0.4 nozzle",
+ "sub_path": "process/EC/0.20mm Strength @Elegoo C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Elegoo C 0.4 nozzle",
+ "sub_path": "process/EC/0.24mm Draft @Elegoo C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @Elegoo C 0.4 nozzle",
+ "sub_path": "process/EC/0.28mm Extra Draft @Elegoo C 0.4 nozzle.json"
+ },
+ {
+ "name": "0.12mm Fine @Elegoo CC 0.4 nozzle",
+ "sub_path": "process/ECC/0.12mm Fine @Elegoo CC 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Elegoo CC 0.4 nozzle",
+ "sub_path": "process/ECC/0.16mm Optimal @Elegoo CC 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Strength @Elegoo CC 0.4 nozzle",
+ "sub_path": "process/ECC/0.20mm Strength @Elegoo CC 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Elegoo CC 0.4 nozzle",
+ "sub_path": "process/ECC/0.24mm Draft @Elegoo CC 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @Elegoo CC 0.4 nozzle",
+ "sub_path": "process/ECC/0.28mm Extra Draft @Elegoo CC 0.4 nozzle.json"
+ },
+ {
+ "name": "0.12mm Fine @Elegoo CC2 0.4 nozzle",
+ "sub_path": "process/ECC2/0.12mm Fine @Elegoo CC2 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Elegoo CC2 0.4 nozzle",
+ "sub_path": "process/ECC2/0.16mm Optimal @Elegoo CC2 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Strength @Elegoo CC2 0.4 nozzle",
+ "sub_path": "process/ECC2/0.20mm Strength @Elegoo CC2 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Elegoo CC2 0.4 nozzle",
+ "sub_path": "process/ECC2/0.24mm Draft @Elegoo CC2 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @Elegoo CC2 0.4 nozzle",
+ "sub_path": "process/ECC2/0.28mm Extra Draft @Elegoo CC2 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Elegoo Giga 0.4 nozzle",
+ "sub_path": "process/EOSGIGA/0.16mm Optimal @Elegoo Giga 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Strength @Elegoo Giga 0.4 nozzle",
+ "sub_path": "process/EOSGIGA/0.20mm Strength @Elegoo Giga 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Elegoo Giga 0.4 nozzle",
+ "sub_path": "process/EOSGIGA/0.24mm Draft @Elegoo Giga 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @Elegoo Giga 0.4 nozzle",
+ "sub_path": "process/EOSGIGA/0.28mm Extra Draft @Elegoo Giga 0.4 nozzle.json"
+ },
+ {
+ "name": "0.12mm Fine @Elegoo N3Max 0.4 nozzle",
+ "sub_path": "process/EN3SERIES/0.12mm Fine @Elegoo N3Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Elegoo N3Max 0.4 nozzle",
+ "sub_path": "process/EN3SERIES/0.16mm Optimal @Elegoo N3Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Strength @Elegoo N3Max 0.4 nozzle",
+ "sub_path": "process/EN3SERIES/0.20mm Strength @Elegoo N3Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Elegoo N3Max 0.4 nozzle",
+ "sub_path": "process/EN3SERIES/0.24mm Draft @Elegoo N3Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @Elegoo N3Max 0.4 nozzle",
+ "sub_path": "process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.12mm Fine @Elegoo N3Plus 0.4 nozzle",
+ "sub_path": "process/EN3SERIES/0.12mm Fine @Elegoo N3Plus 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Elegoo N3Plus 0.4 nozzle",
+ "sub_path": "process/EN3SERIES/0.16mm Optimal @Elegoo N3Plus 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Strength @Elegoo N3Plus 0.4 nozzle",
+ "sub_path": "process/EN3SERIES/0.20mm Strength @Elegoo N3Plus 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Elegoo N3Plus 0.4 nozzle",
+ "sub_path": "process/EN3SERIES/0.24mm Draft @Elegoo N3Plus 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @Elegoo N3Plus 0.4 nozzle",
+ "sub_path": "process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Plus 0.4 nozzle.json"
+ },
+ {
+ "name": "0.12mm Fine @Elegoo N3Pro 0.4 nozzle",
+ "sub_path": "process/EN3SERIES/0.12mm Fine @Elegoo N3Pro 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Elegoo N3Pro 0.4 nozzle",
+ "sub_path": "process/EN3SERIES/0.16mm Optimal @Elegoo N3Pro 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Strength @Elegoo N3Pro 0.4 nozzle",
+ "sub_path": "process/EN3SERIES/0.20mm Strength @Elegoo N3Pro 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Elegoo N3Pro 0.4 nozzle",
+ "sub_path": "process/EN3SERIES/0.24mm Draft @Elegoo N3Pro 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @Elegoo N3Pro 0.4 nozzle",
+ "sub_path": "process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Pro 0.4 nozzle.json"
+ },
+ {
+ "name": "0.12mm Fine @Elegoo N4 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.12mm Fine @Elegoo N4 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Elegoo N4 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.16mm Optimal @Elegoo N4 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Strength @Elegoo N4 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.20mm Strength @Elegoo N4 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Elegoo N4 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.24mm Draft @Elegoo N4 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @Elegoo N4 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.28mm Extra Draft @Elegoo N4 0.4 nozzle.json"
+ },
+ {
+ "name": "0.12mm Fine @Elegoo N4Max 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.12mm Fine @Elegoo N4Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Elegoo N4Max 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.16mm Optimal @Elegoo N4Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Strength @Elegoo N4Max 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.20mm Strength @Elegoo N4Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Elegoo N4Max 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.24mm Draft @Elegoo N4Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @Elegoo N4Max 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Max 0.4 nozzle.json"
+ },
+ {
+ "name": "0.12mm Fine @Elegoo N4Plus 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.12mm Fine @Elegoo N4Plus 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Elegoo N4Plus 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.16mm Optimal @Elegoo N4Plus 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Strength @Elegoo N4Plus 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.20mm Strength @Elegoo N4Plus 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Elegoo N4Plus 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.24mm Draft @Elegoo N4Plus 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @Elegoo N4Plus 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Plus 0.4 nozzle.json"
+ },
+ {
+ "name": "0.12mm Fine @Elegoo N4Pro 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.12mm Fine @Elegoo N4Pro 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Elegoo N4Pro 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.16mm Optimal @Elegoo N4Pro 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Strength @Elegoo N4Pro 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.20mm Strength @Elegoo N4Pro 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Elegoo N4Pro 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.24mm Draft @Elegoo N4Pro 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @Elegoo N4Pro 0.4 nozzle",
+ "sub_path": "process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Pro 0.4 nozzle.json"
+ },
+ {
+ "name": "0.12mm Fine @Elegoo Neptune 0.4 nozzle",
+ "sub_path": "process/EN2SERIES/0.12mm Fine @Elegoo Neptune 0.4 nozzle.json"
+ },
+ {
+ "name": "0.16mm Optimal @Elegoo Neptune 0.4 nozzle",
+ "sub_path": "process/EN2SERIES/0.16mm Optimal @Elegoo Neptune 0.4 nozzle.json"
+ },
+ {
+ "name": "0.20mm Strength @Elegoo Neptune 0.4 nozzle",
+ "sub_path": "process/EN2SERIES/0.20mm Strength @Elegoo Neptune 0.4 nozzle.json"
+ },
+ {
+ "name": "0.24mm Draft @Elegoo Neptune 0.4 nozzle",
+ "sub_path": "process/EN2SERIES/0.24mm Draft @Elegoo Neptune 0.4 nozzle.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @Elegoo Neptune 0.4 nozzle",
+ "sub_path": "process/EN2SERIES/0.28mm Extra Draft @Elegoo Neptune 0.4 nozzle.json"
+ },
+ {
+ "name": "0.18mm Fine @Elegoo C 0.6 nozzle",
+ "sub_path": "process/EC/0.18mm Fine @Elegoo C 0.6 nozzle.json"
+ },
+ {
+ "name": "0.24mm Optimal @Elegoo C 0.6 nozzle",
+ "sub_path": "process/EC/0.24mm Optimal @Elegoo C 0.6 nozzle.json"
+ },
+ {
+ "name": "0.30mm Strength @Elegoo C 0.6 nozzle",
+ "sub_path": "process/EC/0.30mm Strength @Elegoo C 0.6 nozzle.json"
+ },
+ {
+ "name": "0.36mm Draft @Elegoo C 0.6 nozzle",
+ "sub_path": "process/EC/0.36mm Draft @Elegoo C 0.6 nozzle.json"
+ },
+ {
+ "name": "0.42mm Extra Draft @Elegoo C 0.6 nozzle",
+ "sub_path": "process/EC/0.42mm Extra Draft @Elegoo C 0.6 nozzle.json"
+ },
+ {
+ "name": "0.18mm Fine @Elegoo CC 0.6 nozzle",
+ "sub_path": "process/ECC/0.18mm Fine @Elegoo CC 0.6 nozzle.json"
+ },
+ {
+ "name": "0.24mm Optimal @Elegoo CC 0.6 nozzle",
+ "sub_path": "process/ECC/0.24mm Optimal @Elegoo CC 0.6 nozzle.json"
+ },
+ {
+ "name": "0.30mm Strength @Elegoo CC 0.6 nozzle",
+ "sub_path": "process/ECC/0.30mm Strength @Elegoo CC 0.6 nozzle.json"
+ },
+ {
+ "name": "0.36mm Draft @Elegoo CC 0.6 nozzle",
+ "sub_path": "process/ECC/0.36mm Draft @Elegoo CC 0.6 nozzle.json"
+ },
+ {
+ "name": "0.42mm Extra Draft @Elegoo CC 0.6 nozzle",
+ "sub_path": "process/ECC/0.42mm Extra Draft @Elegoo CC 0.6 nozzle.json"
+ },
+ {
+ "name": "0.18mm Fine @Elegoo CC2 0.6 nozzle",
+ "sub_path": "process/ECC2/0.18mm Fine @Elegoo CC2 0.6 nozzle.json"
+ },
+ {
+ "name": "0.24mm Optimal @Elegoo CC2 0.6 nozzle",
+ "sub_path": "process/ECC2/0.24mm Optimal @Elegoo CC2 0.6 nozzle.json"
+ },
+ {
+ "name": "0.30mm Strength @Elegoo CC2 0.6 nozzle",
+ "sub_path": "process/ECC2/0.30mm Strength @Elegoo CC2 0.6 nozzle.json"
+ },
+ {
+ "name": "0.36mm Draft @Elegoo CC2 0.6 nozzle",
+ "sub_path": "process/ECC2/0.36mm Draft @Elegoo CC2 0.6 nozzle.json"
+ },
+ {
+ "name": "0.42mm Extra Draft @Elegoo CC2 0.6 nozzle",
+ "sub_path": "process/ECC2/0.42mm Extra Draft @Elegoo CC2 0.6 nozzle.json"
+ },
+ {
+ "name": "0.18mm Fine @Elegoo Giga 0.6 nozzle",
+ "sub_path": "process/EOSGIGA/0.18mm Fine @Elegoo Giga 0.6 nozzle.json"
+ },
+ {
+ "name": "0.24mm Optimal @Elegoo Giga 0.6 nozzle",
+ "sub_path": "process/EOSGIGA/0.24mm Optimal @Elegoo Giga 0.6 nozzle.json"
+ },
+ {
+ "name": "0.30mm Strength @Elegoo Giga 0.6 nozzle",
+ "sub_path": "process/EOSGIGA/0.30mm Strength @Elegoo Giga 0.6 nozzle.json"
+ },
+ {
+ "name": "0.36mm Draft @Elegoo Giga 0.6 nozzle",
+ "sub_path": "process/EOSGIGA/0.36mm Draft @Elegoo Giga 0.6 nozzle.json"
+ },
+ {
+ "name": "0.42mm Extra Draft @Elegoo Giga 0.6 nozzle",
+ "sub_path": "process/EOSGIGA/0.42mm Extra Draft @Elegoo Giga 0.6 nozzle.json"
+ },
{
"name": "0.24mm Optimal @Elegoo N3Max 0.6 nozzle",
"sub_path": "process/EN3SERIES/0.24mm Optimal @Elegoo N3Max 0.6 nozzle.json"
@@ -454,6 +810,82 @@
"name": "0.42mm Extra Draft @Elegoo N4Pro 0.6 nozzle",
"sub_path": "process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Pro 0.6 nozzle.json"
},
+ {
+ "name": "0.24mm Optimal @Elegoo Neptune 0.6 nozzle",
+ "sub_path": "process/EN2SERIES/0.24mm Optimal @Elegoo Neptune 0.6 nozzle.json"
+ },
+ {
+ "name": "0.36mm Draft @Elegoo Neptune 0.6 nozzle",
+ "sub_path": "process/EN2SERIES/0.36mm Draft @Elegoo Neptune 0.6 nozzle.json"
+ },
+ {
+ "name": "0.42mm Extra Draft @Elegoo Neptune 0.6 nozzle",
+ "sub_path": "process/EN2SERIES/0.42mm Extra Draft @Elegoo Neptune 0.6 nozzle.json"
+ },
+ {
+ "name": "0.16mm Extra Fine @Elegoo C 0.8 nozzle",
+ "sub_path": "process/EC/0.16mm Extra Fine @Elegoo C 0.8 nozzle.json"
+ },
+ {
+ "name": "0.24mm Fine @Elegoo C 0.8 nozzle",
+ "sub_path": "process/EC/0.24mm Fine @Elegoo C 0.8 nozzle.json"
+ },
+ {
+ "name": "0.32mm Optimal @Elegoo C 0.8 nozzle",
+ "sub_path": "process/EC/0.32mm Optimal @Elegoo C 0.8 nozzle.json"
+ },
+ {
+ "name": "0.48mm Draft @Elegoo C 0.8 nozzle",
+ "sub_path": "process/EC/0.48mm Draft @Elegoo C 0.8 nozzle.json"
+ },
+ {
+ "name": "0.16mm Extra Fine @Elegoo CC 0.8 nozzle",
+ "sub_path": "process/ECC/0.16mm Extra Fine @Elegoo CC 0.8 nozzle.json"
+ },
+ {
+ "name": "0.24mm Fine @Elegoo CC 0.8 nozzle",
+ "sub_path": "process/ECC/0.24mm Fine @Elegoo CC 0.8 nozzle.json"
+ },
+ {
+ "name": "0.32mm Optimal @Elegoo CC 0.8 nozzle",
+ "sub_path": "process/ECC/0.32mm Optimal @Elegoo CC 0.8 nozzle.json"
+ },
+ {
+ "name": "0.48mm Draft @Elegoo CC 0.8 nozzle",
+ "sub_path": "process/ECC/0.48mm Draft @Elegoo CC 0.8 nozzle.json"
+ },
+ {
+ "name": "0.16mm Extra Fine @Elegoo CC2 0.8 nozzle",
+ "sub_path": "process/ECC2/0.16mm Extra Fine @Elegoo CC2 0.8 nozzle.json"
+ },
+ {
+ "name": "0.24mm Fine @Elegoo CC2 0.8 nozzle",
+ "sub_path": "process/ECC2/0.24mm Fine @Elegoo CC2 0.8 nozzle.json"
+ },
+ {
+ "name": "0.32mm Optimal @Elegoo CC2 0.8 nozzle",
+ "sub_path": "process/ECC2/0.32mm Optimal @Elegoo CC2 0.8 nozzle.json"
+ },
+ {
+ "name": "0.48mm Draft @Elegoo CC2 0.8 nozzle",
+ "sub_path": "process/ECC2/0.48mm Draft @Elegoo CC2 0.8 nozzle.json"
+ },
+ {
+ "name": "0.24mm Fine @Elegoo Giga 0.8 nozzle",
+ "sub_path": "process/EOSGIGA/0.24mm Fine @Elegoo Giga 0.8 nozzle.json"
+ },
+ {
+ "name": "0.32mm Optimal @Elegoo Giga 0.8 nozzle",
+ "sub_path": "process/EOSGIGA/0.32mm Optimal @Elegoo Giga 0.8 nozzle.json"
+ },
+ {
+ "name": "0.48mm Draft @Elegoo Giga 0.8 nozzle",
+ "sub_path": "process/EOSGIGA/0.48mm Draft @Elegoo Giga 0.8 nozzle.json"
+ },
+ {
+ "name": "0.56mm Extra Draft @Elegoo Giga 0.8 nozzle",
+ "sub_path": "process/EOSGIGA/0.56mm Extra Draft @Elegoo Giga 0.8 nozzle.json"
+ },
{
"name": "0.24mm Fine @Elegoo N3Max 0.8 nozzle",
"sub_path": "process/EN3SERIES/0.24mm Fine @Elegoo N3Max 0.8 nozzle.json"
@@ -538,6 +970,26 @@
"name": "0.48mm Draft @Elegoo N4Pro 0.8 nozzle",
"sub_path": "process/EN4SERIES/0.48mm Draft @Elegoo N4Pro 0.8 nozzle.json"
},
+ {
+ "name": "0.24mm Fine @Elegoo Neptune 0.8 nozzle",
+ "sub_path": "process/EN2SERIES/0.24mm Fine @Elegoo Neptune 0.8 nozzle.json"
+ },
+ {
+ "name": "0.32mm Optimal @Elegoo Neptune 0.8 nozzle",
+ "sub_path": "process/EN2SERIES/0.32mm Optimal @Elegoo Neptune 0.8 nozzle.json"
+ },
+ {
+ "name": "0.30mm Fine @Elegoo Giga 1.0 nozzle",
+ "sub_path": "process/EOSGIGA/0.30mm Fine @Elegoo Giga 1.0 nozzle.json"
+ },
+ {
+ "name": "0.40mm Optimal @Elegoo Giga 1.0 nozzle",
+ "sub_path": "process/EOSGIGA/0.40mm Optimal @Elegoo Giga 1.0 nozzle.json"
+ },
+ {
+ "name": "0.60mm Draft @Elegoo Giga 1.0 nozzle",
+ "sub_path": "process/EOSGIGA/0.60mm Draft @Elegoo Giga 1.0 nozzle.json"
+ },
{
"name": "0.30mm Fine @Elegoo N3Max 1.0 nozzle",
"sub_path": "process/EN3SERIES/0.30mm Fine @Elegoo N3Max 1.0 nozzle.json"
diff --git a/resources/profiles/Eryone.json b/resources/profiles/Eryone.json
index 9e695f2420..97adffc77b 100644
--- a/resources/profiles/Eryone.json
+++ b/resources/profiles/Eryone.json
@@ -1,6 +1,6 @@
{
"name": "Eryone",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "0",
"description": "Eryone configurations",
"machine_model_list": [
diff --git a/resources/profiles/Eryone/machine/Thinker X400 0.2 nozzle.json b/resources/profiles/Eryone/machine/Thinker X400 0.2 nozzle.json
index 0a7fedb659..7d60fc9534 100644
--- a/resources/profiles/Eryone/machine/Thinker X400 0.2 nozzle.json
+++ b/resources/profiles/Eryone/machine/Thinker X400 0.2 nozzle.json
@@ -18,6 +18,7 @@
"nozzle_diameter": [
"0.2"
],
+ "printer_variant": "0.2",
"retraction_length": [
"0.5"
]
diff --git a/resources/profiles/Eryone/process/0.20mm Standard @Thinker X400.json b/resources/profiles/Eryone/process/0.20mm Standard @Thinker X400.json
index 4eae544e9d..f8557ceca8 100644
--- a/resources/profiles/Eryone/process/0.20mm Standard @Thinker X400.json
+++ b/resources/profiles/Eryone/process/0.20mm Standard @Thinker X400.json
@@ -144,10 +144,12 @@
"slowdown_for_curled_perimeters": "0",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.54",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "250",
@@ -208,7 +210,8 @@
"tree_support_top_rate": "30%",
"tree_support_wall_count": "2",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Eryone/process/fdm_process_eryone_ER20_common.json b/resources/profiles/Eryone/process/fdm_process_eryone_ER20_common.json
index 4f142e89e0..c4d744f31e 100644
--- a/resources/profiles/Eryone/process/fdm_process_eryone_ER20_common.json
+++ b/resources/profiles/Eryone/process/fdm_process_eryone_ER20_common.json
@@ -136,10 +136,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "20%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "gyroid",
"sparse_infill_speed": "80",
diff --git a/resources/profiles/Flashforge.json b/resources/profiles/Flashforge.json
index 6604fe6f54..cce1f362f4 100644
--- a/resources/profiles/Flashforge.json
+++ b/resources/profiles/Flashforge.json
@@ -1,7 +1,7 @@
{
"name": "Flashforge",
"url": "",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "0",
"description": "Flashforge configurations",
"machine_model_list": [
diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series HS nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series HS nozzle.json
index 7380ddbac3..dcb24c7ab9 100644
--- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series HS nozzle.json
+++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series HS nozzle.json
@@ -5,7 +5,7 @@
"from": "system",
"setting_id": "GM002",
"instantiation": "true",
- "printer_variant": "HS",
+ "printer_variant": "0.4HS",
"printer_model": "Flashforge Adventurer 4 Series",
"default_print_profile": "0.20mm High-Speed @Flashforge AD4 HS Nozzle",
"nozzle_diameter": [
diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series.json
index 29fc1e2a4b..8c5f7ec4bf 100644
--- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series.json
+++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series.json
@@ -2,7 +2,7 @@
"type": "machine_model",
"name": "Flashforge Adventurer 4 Series",
"model_id": "Flashforge Adventurer 4 Series",
- "nozzle_diameter": "0.3;0.4;0.6;HS",
+ "nozzle_diameter": "0.3;0.4;0.6;0.4HS",
"machine_tech": "FFF",
"family": "Flashforge",
"host_type": "Flashforge",
diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 HF nozzle.json
index effd982579..beda0488ee 100644
--- a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 HF nozzle.json
+++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 HF nozzle.json
@@ -156,7 +156,7 @@
"printer_settings_id": "Flashforge Guider4 0.4 HF nozzle",
"printer_structure": "undefine",
"printer_technology": "FFF",
- "printer_variant": "0.4",
+ "printer_variant": "0.4HF",
"printhost_authorization_type": "key",
"printhost_ssl_ignore_revoke": "0",
"printing_by_object_gcode": "",
diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 HF nozzle.json
index 5a4ef0aafa..6cf091acde 100644
--- a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 HF nozzle.json
+++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 HF nozzle.json
@@ -156,7 +156,7 @@
"printer_settings_id": "Flashforge Guider4 0.6 HF nozzle",
"printer_structure": "undefine",
"printer_technology": "FFF",
- "printer_variant": "0.6",
+ "printer_variant": "0.6HF",
"printhost_authorization_type": "key",
"printhost_ssl_ignore_revoke": "0",
"printing_by_object_gcode": "",
diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.8 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.8 HF nozzle.json
index 7a971abdd7..2ff0ba8522 100644
--- a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.8 HF nozzle.json
+++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.8 HF nozzle.json
@@ -156,7 +156,7 @@
"printer_settings_id": "Flashforge Guider4 0.8 HF nozzle",
"printer_structure": "undefine",
"printer_technology": "FFF",
- "printer_variant": "0.6",
+ "printer_variant": "0.8HF",
"printhost_authorization_type": "key",
"printhost_ssl_ignore_revoke": "0",
"printing_by_object_gcode": "",
diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 HF nozzle.json
index c5e08583b4..105985515a 100644
--- a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 HF nozzle.json
+++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 HF nozzle.json
@@ -156,7 +156,7 @@
"printer_settings_id": "Flashforge Guider4 Pro 0.4 HF nozzle",
"printer_structure": "undefine",
"printer_technology": "FFF",
- "printer_variant": "0.4",
+ "printer_variant": "0.4HF",
"printhost_authorization_type": "key",
"printhost_ssl_ignore_revoke": "0",
"printing_by_object_gcode": "",
diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 HF nozzle.json
index 33472eb6ce..78fcc22c12 100644
--- a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 HF nozzle.json
+++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 HF nozzle.json
@@ -156,7 +156,7 @@
"printer_settings_id": "Flashforge Guider4 Pro 0.6 HF nozzle",
"printer_structure": "undefine",
"printer_technology": "FFF",
- "printer_variant": "0.6",
+ "printer_variant": "0.6HF",
"printhost_authorization_type": "key",
"printhost_ssl_ignore_revoke": "0",
"printing_by_object_gcode": "",
diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.8 HF nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.8 HF nozzle.json
index a1d8eacb92..8f267e0daf 100644
--- a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.8 HF nozzle.json
+++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.8 HF nozzle.json
@@ -156,7 +156,7 @@
"printer_settings_id": "Flashforge Guider4 Pro 0.8 HF nozzle",
"printer_structure": "undefine",
"printer_technology": "FFF",
- "printer_variant": "0.6",
+ "printer_variant": "0.8HF",
"printhost_authorization_type": "key",
"printhost_ssl_ignore_revoke": "0",
"printing_by_object_gcode": "",
diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge G3U 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge G3U 0.4 Nozzle.json
index 5891d54b67..eeb3b76db1 100644
--- a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge G3U 0.4 Nozzle.json
+++ b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge G3U 0.4 Nozzle.json
@@ -147,10 +147,12 @@
"slowdown_for_curled_perimeters": "0",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "270",
@@ -212,7 +214,8 @@
"tree_support_top_rate": "30%",
"tree_support_wall_count": "0",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/FlyingBear.json b/resources/profiles/FlyingBear.json
index a92eb99002..37dd501dff 100644
--- a/resources/profiles/FlyingBear.json
+++ b/resources/profiles/FlyingBear.json
@@ -1,6 +1,6 @@
{
"name": "FlyingBear",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "1",
"description": "FlyingBear configurations",
"machine_model_list": [
diff --git a/resources/profiles/FlyingBear/process/Ghost7/fdm_process_common_Ghost7.json b/resources/profiles/FlyingBear/process/Ghost7/fdm_process_common_Ghost7.json
index e21d9fa213..9b34de8437 100644
--- a/resources/profiles/FlyingBear/process/Ghost7/fdm_process_common_Ghost7.json
+++ b/resources/profiles/FlyingBear/process/Ghost7/fdm_process_common_Ghost7.json
@@ -121,10 +121,12 @@
"slowdown_for_curled_perimeters": "0",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"spiral_mode": "0",
@@ -181,7 +183,8 @@
"tree_support_tip_diameter": "0.8",
"tree_support_top_rate": "30%",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/FlyingBear/process/S1/fdm_process_common_S1.json b/resources/profiles/FlyingBear/process/S1/fdm_process_common_S1.json
index 869f9a48cd..d922fcf3dc 100644
--- a/resources/profiles/FlyingBear/process/S1/fdm_process_common_S1.json
+++ b/resources/profiles/FlyingBear/process/S1/fdm_process_common_S1.json
@@ -121,10 +121,12 @@
"slowdown_for_curled_perimeters": "0",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"spiral_mode": "0",
@@ -181,7 +183,8 @@
"tree_support_tip_diameter": "0.8",
"tree_support_top_rate": "30%",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/FlyingBear/process/fdm_process_common.json b/resources/profiles/FlyingBear/process/fdm_process_common.json
index 719fe2ed2d..7e7bc9ddb1 100644
--- a/resources/profiles/FlyingBear/process/fdm_process_common.json
+++ b/resources/profiles/FlyingBear/process/fdm_process_common.json
@@ -121,10 +121,12 @@
"slowdown_for_curled_perimeters": "0",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"spiral_mode": "0",
@@ -181,7 +183,8 @@
"tree_support_tip_diameter": "0.8",
"tree_support_top_rate": "30%",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Ginger Additive.json b/resources/profiles/Ginger Additive.json
index 299f6ee009..b27cf4a94c 100644
--- a/resources/profiles/Ginger Additive.json
+++ b/resources/profiles/Ginger Additive.json
@@ -1,6 +1,6 @@
{
"name": "Ginger Additive",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "1",
"description": "Ginger configuration",
"machine_model_list": [
diff --git a/resources/profiles/Ginger Additive/process/fdm_process_common.json b/resources/profiles/Ginger Additive/process/fdm_process_common.json
index 1034df1315..cd590b710e 100644
--- a/resources/profiles/Ginger Additive/process/fdm_process_common.json
+++ b/resources/profiles/Ginger Additive/process/fdm_process_common.json
@@ -178,10 +178,12 @@
],
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "20%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "3",
"sparse_infill_pattern": "cubic",
"sparse_infill_speed": "100",
@@ -247,7 +249,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
diff --git a/resources/profiles/InfiMech.json b/resources/profiles/InfiMech.json
index d519b846d6..8df27776d7 100644
--- a/resources/profiles/InfiMech.json
+++ b/resources/profiles/InfiMech.json
@@ -1,6 +1,6 @@
{
"name": "InfiMech",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "1",
"description": "InfiMech configurations",
"machine_model_list": [
diff --git a/resources/profiles/InfiMech/process/EX+APS/fdm_process_common_EX+APS.json b/resources/profiles/InfiMech/process/EX+APS/fdm_process_common_EX+APS.json
index 596797e0bb..6a755b74f1 100644
--- a/resources/profiles/InfiMech/process/EX+APS/fdm_process_common_EX+APS.json
+++ b/resources/profiles/InfiMech/process/EX+APS/fdm_process_common_EX+APS.json
@@ -121,10 +121,12 @@
"slowdown_for_curled_perimeters": "0",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"spiral_mode": "0",
@@ -181,7 +183,8 @@
"tree_support_tip_diameter": "0.8",
"tree_support_top_rate": "30%",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/InfiMech/process/EX/fdm_process_common_EX.json b/resources/profiles/InfiMech/process/EX/fdm_process_common_EX.json
index f8ac5261ae..e5846e2cc4 100644
--- a/resources/profiles/InfiMech/process/EX/fdm_process_common_EX.json
+++ b/resources/profiles/InfiMech/process/EX/fdm_process_common_EX.json
@@ -121,10 +121,12 @@
"slowdown_for_curled_perimeters": "0",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"spiral_mode": "0",
@@ -181,7 +183,8 @@
"tree_support_tip_diameter": "0.8",
"tree_support_top_rate": "30%",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/InfiMech/process/HSN/fdm_process_common_HSN.json b/resources/profiles/InfiMech/process/HSN/fdm_process_common_HSN.json
index fd0d9f15f0..dc9e9ace24 100644
--- a/resources/profiles/InfiMech/process/HSN/fdm_process_common_HSN.json
+++ b/resources/profiles/InfiMech/process/HSN/fdm_process_common_HSN.json
@@ -121,10 +121,12 @@
"slowdown_for_curled_perimeters": "0",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"spiral_mode": "0",
@@ -181,7 +183,8 @@
"tree_support_tip_diameter": "0.8",
"tree_support_top_rate": "30%",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/InfiMech/process/fdm_process_common.json b/resources/profiles/InfiMech/process/fdm_process_common.json
index 719fe2ed2d..7e7bc9ddb1 100644
--- a/resources/profiles/InfiMech/process/fdm_process_common.json
+++ b/resources/profiles/InfiMech/process/fdm_process_common.json
@@ -121,10 +121,12 @@
"slowdown_for_curled_perimeters": "0",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"spiral_mode": "0",
@@ -181,7 +183,8 @@
"tree_support_tip_diameter": "0.8",
"tree_support_top_rate": "30%",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "2",
diff --git a/resources/profiles/Kingroon.json b/resources/profiles/Kingroon.json
index adda5d8537..727cb4e0b2 100644
--- a/resources/profiles/Kingroon.json
+++ b/resources/profiles/Kingroon.json
@@ -1,7 +1,7 @@
{
"name": "Kingroon",
"url": "https://kingroon.com/",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "1",
"description": "Kingroon configuration files",
"machine_model_list": [
diff --git a/resources/profiles/Kingroon/process/fdm_process_common.json b/resources/profiles/Kingroon/process/fdm_process_common.json
index dc3ef0890c..ed478c1aaa 100644
--- a/resources/profiles/Kingroon/process/fdm_process_common.json
+++ b/resources/profiles/Kingroon/process/fdm_process_common.json
@@ -117,10 +117,12 @@
"slow_down_layers": "0",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "100",
@@ -171,7 +173,8 @@
"tree_support_brim_width": "3",
"tree_support_wall_count": "0",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_infill_order": "inner wall/outer wall/infill",
"wall_loops": "3",
diff --git a/resources/profiles/LH.json b/resources/profiles/LH.json
index 5ee887d550..25b7630855 100644
--- a/resources/profiles/LH.json
+++ b/resources/profiles/LH.json
@@ -1,7 +1,7 @@
{
"name": "LH",
"url": "https://github.com/lhndo/LH-Stinger",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "0",
"description": "LH 3D Printer Configuration",
"machine_model_list": [
diff --git a/resources/profiles/OrcaFilamentLibrary.json b/resources/profiles/OrcaFilamentLibrary.json
index 3a0072476b..4af118e06e 100644
--- a/resources/profiles/OrcaFilamentLibrary.json
+++ b/resources/profiles/OrcaFilamentLibrary.json
@@ -1,6 +1,6 @@
{
"name": "OrcaFilamentLibrary",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "0",
"description": "Orca Filament Library",
"filament_list": [
@@ -68,6 +68,258 @@
"name": "fdm_filament_pla",
"sub_path": "filament/base/fdm_filament_pla.json"
},
+ {
+ "name": "FilAr PLA @base",
+ "sub_path": "filament/FilAr/FilAr PLA @base.json"
+ },
+ {
+ "name": "FilAr PLA Bronce",
+ "sub_path": "filament/FilAr/FilAr PLA Bronce.json"
+ },
+ {
+ "name": "FilAr PLA Gris Plata",
+ "sub_path": "filament/FilAr/FilAr PLA Gris Plata.json"
+ },
+ {
+ "name": "FilAr PLA Cobre",
+ "sub_path": "filament/FilAr/FilAr PLA Cobre.json"
+ },
+ {
+ "name": "FilAr PLA Titanio",
+ "sub_path": "filament/FilAr/FilAr PLA Titanio.json"
+ },
+ {
+ "name": "FilAr PLA Tabaco",
+ "sub_path": "filament/FilAr/FilAr PLA Tabaco.json"
+ },
+ {
+ "name": "FilAr PLA Cafe con Leche",
+ "sub_path": "filament/FilAr/FilAr PLA Cafe con Leche.json"
+ },
+ {
+ "name": "FilAr PLA Manteca",
+ "sub_path": "filament/FilAr/FilAr PLA Manteca.json"
+ },
+ {
+ "name": "FilAr PLA Marron Oxido",
+ "sub_path": "filament/FilAr/FilAr PLA Marron Oxido.json"
+ },
+ {
+ "name": "FilAr PLA Carpincho",
+ "sub_path": "filament/FilAr/FilAr PLA Carpincho.json"
+ },
+ {
+ "name": "FilAr PLA Rosa Amaranto",
+ "sub_path": "filament/FilAr/FilAr PLA Rosa Amaranto.json"
+ },
+ {
+ "name": "FilAr PLA Rosa Flamenco",
+ "sub_path": "filament/FilAr/FilAr PLA Rosa Flamenco.json"
+ },
+ {
+ "name": "FilAr PLA Piel",
+ "sub_path": "filament/FilAr/FilAr PLA Piel.json"
+ },
+ {
+ "name": "FilAr PLA Verde FilAr",
+ "sub_path": "filament/FilAr/FilAr PLA Verde FilAr.json"
+ },
+ {
+ "name": "FilAr PLA Verde Manzana",
+ "sub_path": "filament/FilAr/FilAr PLA Verde Manzana.json"
+ },
+ {
+ "name": "FilAr PLA Verde Pixel",
+ "sub_path": "filament/FilAr/FilAr PLA Verde Pixel.json"
+ },
+ {
+ "name": "FilAr PLA Verde Oliva",
+ "sub_path": "filament/FilAr/FilAr PLA Verde Oliva.json"
+ },
+ {
+ "name": "FilAr PLA Blanco Antartida",
+ "sub_path": "filament/FilAr/FilAr PLA Blanco Antartida.json"
+ },
+ {
+ "name": "FilAr PLA Blanco Calido",
+ "sub_path": "filament/FilAr/FilAr PLA Blanco Calido.json"
+ },
+ {
+ "name": "FilAr PLA Negro Azabache",
+ "sub_path": "filament/FilAr/FilAr PLA Negro Azabache.json"
+ },
+ {
+ "name": "FilAr PLA Naranja Tigre",
+ "sub_path": "filament/FilAr/FilAr PLA Naranja Tigre.json"
+ },
+ {
+ "name": "FilAr PLA Rojo de Carreras",
+ "sub_path": "filament/FilAr/FilAr PLA Rojo de Carreras.json"
+ },
+ {
+ "name": "FilAr PLA Amarillo Lirio",
+ "sub_path": "filament/FilAr/FilAr PLA Amarillo Lirio.json"
+ },
+ {
+ "name": "FilAr PLA Violeta Jacaranda",
+ "sub_path": "filament/FilAr/FilAr PLA Violeta Jacaranda.json"
+ },
+ {
+ "name": "FilAr PLA Gris Pizarra",
+ "sub_path": "filament/FilAr/FilAr PLA Gris Pizarra.json"
+ },
+ {
+ "name": "FilAr PLA Gris Ceniza",
+ "sub_path": "filament/FilAr/FilAr PLA Gris Ceniza.json"
+ },
+ {
+ "name": "FilAr PLA Azul Francia",
+ "sub_path": "filament/FilAr/FilAr PLA Azul Francia.json"
+ },
+ {
+ "name": "FilAr PLA Celeste Cielo",
+ "sub_path": "filament/FilAr/FilAr PLA Celeste Cielo.json"
+ },
+ {
+ "name": "FilAr PLA Oro",
+ "sub_path": "filament/FilAr/FilAr PLA Oro.json"
+ },
+ {
+ "name": "FilAr PLA Dorado",
+ "sub_path": "filament/FilAr/FilAr PLA Dorado.json"
+ },
+ {
+ "name": "FilAr PLA-mate @base",
+ "sub_path": "filament/FilAr/FilAr PLA-mate @base.json"
+ },
+ {
+ "name": "FilAr PLA-mate Amarillo",
+ "sub_path": "filament/FilAr/FilAr PLA-mate Amarillo.json"
+ },
+ {
+ "name": "FilAr PLA-mate Azul",
+ "sub_path": "filament/FilAr/FilAr PLA-mate Azul.json"
+ },
+ {
+ "name": "FilAr PLA-mate Beige",
+ "sub_path": "filament/FilAr/FilAr PLA-mate Beige.json"
+ },
+ {
+ "name": "FilAr PLA-mate Blanco",
+ "sub_path": "filament/FilAr/FilAr PLA-mate Blanco.json"
+ },
+ {
+ "name": "FilAr PLA-mate Bordo",
+ "sub_path": "filament/FilAr/FilAr PLA-mate Bordo.json"
+ },
+ {
+ "name": "FilAr PLA-mate Celeste Cielo",
+ "sub_path": "filament/FilAr/FilAr PLA-mate Celeste Cielo.json"
+ },
+ {
+ "name": "FilAr PLA-mate Chocolate",
+ "sub_path": "filament/FilAr/FilAr PLA-mate Chocolate.json"
+ },
+ {
+ "name": "FilAr PLA-mate Gris",
+ "sub_path": "filament/FilAr/FilAr PLA-mate Gris.json"
+ },
+ {
+ "name": "FilAr PLA-mate Marron",
+ "sub_path": "filament/FilAr/FilAr PLA-mate Marron.json"
+ },
+ {
+ "name": "FilAr PLA-mate Naranja",
+ "sub_path": "filament/FilAr/FilAr PLA-mate Naranja.json"
+ },
+ {
+ "name": "FilAr PLA-mate Negro",
+ "sub_path": "filament/FilAr/FilAr PLA-mate Negro.json"
+ },
+ {
+ "name": "FilAr PLA-mate Piel",
+ "sub_path": "filament/FilAr/FilAr PLA-mate Piel.json"
+ },
+ {
+ "name": "FilAr PLA-mate Rojo",
+ "sub_path": "filament/FilAr/FilAr PLA-mate Rojo.json"
+ },
+ {
+ "name": "FilAr PLA-mate Rosa",
+ "sub_path": "filament/FilAr/FilAr PLA-mate Rosa.json"
+ },
+ {
+ "name": "FilAr PLA-mate Uva",
+ "sub_path": "filament/FilAr/FilAr PLA-mate Uva.json"
+ },
+ {
+ "name": "FilAr PLA-mate Verde",
+ "sub_path": "filament/FilAr/FilAr PLA-mate Verde.json"
+ },
+ {
+ "name": "FilAr PLA-mate Violeta",
+ "sub_path": "filament/FilAr/FilAr PLA-mate Violeta.json"
+ },
+ {
+ "name": "FilAr PETG @base",
+ "sub_path": "filament/FilAr/FilAr PETG @base.json"
+ },
+ {
+ "name": "FilAr PETG Amarillo Lima",
+ "sub_path": "filament/FilAr/FilAr PETG Amarillo Lima.json"
+ },
+ {
+ "name": "FilAr PETG Amarillo Radiante",
+ "sub_path": "filament/FilAr/FilAr PETG Amarillo Radiante.json"
+ },
+ {
+ "name": "FilAr PETG Azul Boreal",
+ "sub_path": "filament/FilAr/FilAr PETG Azul Boreal.json"
+ },
+ {
+ "name": "FilAr PETG Azul Francia",
+ "sub_path": "filament/FilAr/FilAr PETG Azul Francia.json"
+ },
+ {
+ "name": "FilAr PETG Azul Imperial",
+ "sub_path": "filament/FilAr/FilAr PETG Azul Imperial.json"
+ },
+ {
+ "name": "FilAr PETG Blanco Antartida",
+ "sub_path": "filament/FilAr/FilAr PETG Blanco Antartida.json"
+ },
+ {
+ "name": "FilAr PETG Cian",
+ "sub_path": "filament/FilAr/FilAr PETG Cian.json"
+ },
+ {
+ "name": "FilAr PETG Coral",
+ "sub_path": "filament/FilAr/FilAr PETG Coral.json"
+ },
+ {
+ "name": "FilAr PETG Cristal",
+ "sub_path": "filament/FilAr/FilAr PETG Cristal.json"
+ },
+ {
+ "name": "FilAr PETG Gris Ceniza",
+ "sub_path": "filament/FilAr/FilAr PETG Gris Ceniza.json"
+ },
+ {
+ "name": "FilAr PETG Gris Plata",
+ "sub_path": "filament/FilAr/FilAr PETG Gris Plata.json"
+ },
+ {
+ "name": "FilAr PETG Magenta",
+ "sub_path": "filament/FilAr/FilAr PETG Magenta.json"
+ },
+ {
+ "name": "FilAr PETG Negro Azabache",
+ "sub_path": "filament/FilAr/FilAr PETG Negro Azabache.json"
+ },
+ {
+ "name": "FilAr PETG Rojo Carmesi",
+ "sub_path": "filament/FilAr/FilAr PETG Rojo Carmesi.json"
+ },
{
"name": "fdm_filament_pp",
"sub_path": "filament/base/fdm_filament_pp.json"
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG @base.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG @base.json
new file mode 100644
index 0000000000..5195e151e3
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG @base.json
@@ -0,0 +1,53 @@
+{
+ "type": "filament",
+ "name": "FilAr PETG @base",
+ "inherits": "fdm_filament_pet",
+ "from": "system",
+ "filament_id": "FILARB03",
+ "instantiation": "false",
+ "filament_type": [
+ "PETG"
+ ],
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_density": [
+ "1.27"
+ ],
+ "filament_flow_ratio": [
+ "0.95"
+ ],
+ "nozzle_temperature": [
+ "240"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "245"
+ ],
+ "nozzle_temperature_range_low": [
+ "230"
+ ],
+ "nozzle_temperature_range_high": [
+ "250"
+ ],
+ "hot_plate_temp": [
+ "78"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "78"
+ ],
+ "textured_plate_temp": [
+ "78"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "78"
+ ],
+ "fan_min_speed": [
+ "40"
+ ],
+ "fan_max_speed": [
+ "60"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Lima.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Lima.json
new file mode 100644
index 0000000000..8a5b7c62c4
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Lima.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PETG Amarillo Lima",
+ "inherits": "FilAr PETG @base",
+ "from": "system",
+ "filament_id": "FILAR0047",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#C7E03A"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Radiante.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Radiante.json
new file mode 100644
index 0000000000..80b1befd65
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Radiante.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PETG Amarillo Radiante",
+ "inherits": "FilAr PETG @base",
+ "from": "system",
+ "filament_id": "FILAR0048",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#FFD400"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Boreal.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Boreal.json
new file mode 100644
index 0000000000..eaf601bb40
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Boreal.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PETG Azul Boreal",
+ "inherits": "FilAr PETG @base",
+ "from": "system",
+ "filament_id": "FILAR0049",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#1B4F9C"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Francia.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Francia.json
new file mode 100644
index 0000000000..d1aeed176d
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Francia.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PETG Azul Francia",
+ "inherits": "FilAr PETG @base",
+ "from": "system",
+ "filament_id": "FILAR0050",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#0033A0"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Imperial.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Imperial.json
new file mode 100644
index 0000000000..06ce3516e1
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Imperial.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PETG Azul Imperial",
+ "inherits": "FilAr PETG @base",
+ "from": "system",
+ "filament_id": "FILAR0051",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#14306B"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Blanco Antartida.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Blanco Antartida.json
new file mode 100644
index 0000000000..e5e2fdbf9f
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Blanco Antartida.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PETG Blanco Antartida",
+ "inherits": "FilAr PETG @base",
+ "from": "system",
+ "filament_id": "FILAR0052",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#F7FAFC"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cian.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cian.json
new file mode 100644
index 0000000000..379a12065f
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cian.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PETG Cian",
+ "inherits": "FilAr PETG @base",
+ "from": "system",
+ "filament_id": "FILAR0053",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#00B7D4"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Coral.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Coral.json
new file mode 100644
index 0000000000..15962cc994
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Coral.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PETG Coral",
+ "inherits": "FilAr PETG @base",
+ "from": "system",
+ "filament_id": "FILAR0054",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#FF6F5E"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cristal.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cristal.json
new file mode 100644
index 0000000000..fa13ab3ae9
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cristal.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PETG Cristal",
+ "inherits": "FilAr PETG @base",
+ "from": "system",
+ "filament_id": "FILAR0055",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#E8F0EC"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Ceniza.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Ceniza.json
new file mode 100644
index 0000000000..59d7b64ed4
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Ceniza.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PETG Gris Ceniza",
+ "inherits": "FilAr PETG @base",
+ "from": "system",
+ "filament_id": "FILAR0056",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#B4B6B1"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Plata.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Plata.json
new file mode 100644
index 0000000000..9c0668a87b
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Plata.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PETG Gris Plata",
+ "inherits": "FilAr PETG @base",
+ "from": "system",
+ "filament_id": "FILAR0057",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#8C8686"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Magenta.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Magenta.json
new file mode 100644
index 0000000000..e832faadb6
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Magenta.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PETG Magenta",
+ "inherits": "FilAr PETG @base",
+ "from": "system",
+ "filament_id": "FILAR0058",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#B5174B"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Negro Azabache.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Negro Azabache.json
new file mode 100644
index 0000000000..18daa0e204
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Negro Azabache.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PETG Negro Azabache",
+ "inherits": "FilAr PETG @base",
+ "from": "system",
+ "filament_id": "FILAR0059",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#000000"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Rojo Carmesi.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Rojo Carmesi.json
new file mode 100644
index 0000000000..54eece5902
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Rojo Carmesi.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PETG Rojo Carmesi",
+ "inherits": "FilAr PETG @base",
+ "from": "system",
+ "filament_id": "FILAR0060",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#8C1020"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA @base.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA @base.json
new file mode 100644
index 0000000000..04426a96ca
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA @base.json
@@ -0,0 +1,47 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA @base",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "filament_id": "FILARB01",
+ "instantiation": "false",
+ "filament_type": [
+ "PLA"
+ ],
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "nozzle_temperature": [
+ "210"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "215"
+ ],
+ "nozzle_temperature_range_low": [
+ "200"
+ ],
+ "nozzle_temperature_range_high": [
+ "220"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Amarillo Lirio.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Amarillo Lirio.json
new file mode 100644
index 0000000000..11344db00c
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Amarillo Lirio.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Amarillo Lirio",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0022",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#FFD52B"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Azul Francia.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Azul Francia.json
new file mode 100644
index 0000000000..165e6d9fe1
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Azul Francia.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Azul Francia",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0026",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#0000FF"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Antartida.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Antartida.json
new file mode 100644
index 0000000000..e207e06848
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Antartida.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Blanco Antartida",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0017",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#F7FAFC"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Calido.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Calido.json
new file mode 100644
index 0000000000..f196d4d2e7
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Calido.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Blanco Calido",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0018",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#FFF8E7"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Bronce.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Bronce.json
new file mode 100644
index 0000000000..11a2fb85f1
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Bronce.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Bronce",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0001",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#AD8428"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cafe con Leche.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cafe con Leche.json
new file mode 100644
index 0000000000..44f7dedd85
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cafe con Leche.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Cafe con Leche",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0006",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#E0B269"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Carpincho.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Carpincho.json
new file mode 100644
index 0000000000..8cc2fd5f35
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Carpincho.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Carpincho",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0009",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#E8DFC1"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Celeste Cielo.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Celeste Cielo.json
new file mode 100644
index 0000000000..a0355fb918
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Celeste Cielo.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Celeste Cielo",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0027",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#A1EBFF"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cobre.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cobre.json
new file mode 100644
index 0000000000..3acabfaa12
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cobre.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Cobre",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0003",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#87421E"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Dorado.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Dorado.json
new file mode 100644
index 0000000000..17e58030bf
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Dorado.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Dorado",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0029",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#A67F00"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Ceniza.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Ceniza.json
new file mode 100644
index 0000000000..bb22078212
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Ceniza.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Gris Ceniza",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0025",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#B4B6B1"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Pizarra.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Pizarra.json
new file mode 100644
index 0000000000..5fb961188e
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Pizarra.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Gris Pizarra",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0024",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#4B4B4B"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Plata.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Plata.json
new file mode 100644
index 0000000000..98b1a7fef0
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Plata.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Gris Plata",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0002",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#8C8686"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Manteca.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Manteca.json
new file mode 100644
index 0000000000..5ae126efba
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Manteca.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Manteca",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0007",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#FFF5AB"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Marron Oxido.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Marron Oxido.json
new file mode 100644
index 0000000000..3813ddee5a
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Marron Oxido.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Marron Oxido",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0008",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#5E190E"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Naranja Tigre.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Naranja Tigre.json
new file mode 100644
index 0000000000..563d8bb3e9
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Naranja Tigre.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Naranja Tigre",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0020",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#FC5017"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Negro Azabache.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Negro Azabache.json
new file mode 100644
index 0000000000..44b5e7ee43
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Negro Azabache.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Negro Azabache",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0019",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#000000"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Oro.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Oro.json
new file mode 100644
index 0000000000..bc5150bf30
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Oro.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Oro",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0028",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#FFD700"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Piel.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Piel.json
new file mode 100644
index 0000000000..a422bfc092
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Piel.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Piel",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0012",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#FADDAC"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rojo de Carreras.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rojo de Carreras.json
new file mode 100644
index 0000000000..b9d6a2f257
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rojo de Carreras.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Rojo de Carreras",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0021",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#FA0F0F"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Amaranto.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Amaranto.json
new file mode 100644
index 0000000000..aa0b5179df
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Amaranto.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Rosa Amaranto",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0010",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#FA4164"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Flamenco.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Flamenco.json
new file mode 100644
index 0000000000..8e7f67b108
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Flamenco.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Rosa Flamenco",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0011",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#FFC7C2"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Tabaco.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Tabaco.json
new file mode 100644
index 0000000000..b2e973a0fe
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Tabaco.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Tabaco",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0005",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#7D5429"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Titanio.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Titanio.json
new file mode 100644
index 0000000000..bb95f95a11
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Titanio.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Titanio",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0004",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#878681"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde FilAr.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde FilAr.json
new file mode 100644
index 0000000000..8512127f18
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde FilAr.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Verde FilAr",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0013",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#036D6B"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Manzana.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Manzana.json
new file mode 100644
index 0000000000..2f7f30801e
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Manzana.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Verde Manzana",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0014",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#D4FF38"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Oliva.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Oliva.json
new file mode 100644
index 0000000000..85b31f128c
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Oliva.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Verde Oliva",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0016",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#595900"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Pixel.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Pixel.json
new file mode 100644
index 0000000000..c9d98b2750
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Pixel.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Verde Pixel",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0015",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#02E32F"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Violeta Jacaranda.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Violeta Jacaranda.json
new file mode 100644
index 0000000000..cee7b7a2e1
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Violeta Jacaranda.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA Violeta Jacaranda",
+ "inherits": "FilAr PLA @base",
+ "from": "system",
+ "filament_id": "FILAR0023",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#9342C9"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate @base.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate @base.json
new file mode 100644
index 0000000000..d012487eb7
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate @base.json
@@ -0,0 +1,47 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate @base",
+ "inherits": "fdm_filament_pla",
+ "from": "system",
+ "filament_id": "FILARB02",
+ "instantiation": "false",
+ "filament_type": [
+ "PLA"
+ ],
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "filament_diameter": [
+ "1.75"
+ ],
+ "filament_density": [
+ "1.24"
+ ],
+ "filament_flow_ratio": [
+ "0.98"
+ ],
+ "nozzle_temperature": [
+ "200"
+ ],
+ "nozzle_temperature_initial_layer": [
+ "205"
+ ],
+ "nozzle_temperature_range_low": [
+ "195"
+ ],
+ "nozzle_temperature_range_high": [
+ "210"
+ ],
+ "hot_plate_temp": [
+ "60"
+ ],
+ "hot_plate_temp_initial_layer": [
+ "60"
+ ],
+ "textured_plate_temp": [
+ "60"
+ ],
+ "textured_plate_temp_initial_layer": [
+ "60"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Amarillo.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Amarillo.json
new file mode 100644
index 0000000000..4ba4263151
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Amarillo.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate Amarillo",
+ "inherits": "FilAr PLA-mate @base",
+ "from": "system",
+ "filament_id": "FILAR0030",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#E8C547"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Azul.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Azul.json
new file mode 100644
index 0000000000..ea4fe63a2b
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Azul.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate Azul",
+ "inherits": "FilAr PLA-mate @base",
+ "from": "system",
+ "filament_id": "FILAR0031",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#2D5DA8"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Beige.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Beige.json
new file mode 100644
index 0000000000..bee307127d
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Beige.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate Beige",
+ "inherits": "FilAr PLA-mate @base",
+ "from": "system",
+ "filament_id": "FILAR0032",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#D8C4A0"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Blanco.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Blanco.json
new file mode 100644
index 0000000000..20ddf69fd6
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Blanco.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate Blanco",
+ "inherits": "FilAr PLA-mate @base",
+ "from": "system",
+ "filament_id": "FILAR0033",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#F2F2EC"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Bordo.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Bordo.json
new file mode 100644
index 0000000000..9a74f6e819
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Bordo.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate Bordo",
+ "inherits": "FilAr PLA-mate @base",
+ "from": "system",
+ "filament_id": "FILAR0034",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#6E1A2B"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Celeste Cielo.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Celeste Cielo.json
new file mode 100644
index 0000000000..ba363ff6de
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Celeste Cielo.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate Celeste Cielo",
+ "inherits": "FilAr PLA-mate @base",
+ "from": "system",
+ "filament_id": "FILAR0035",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#9DC8E8"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Chocolate.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Chocolate.json
new file mode 100644
index 0000000000..996657bd0f
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Chocolate.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate Chocolate",
+ "inherits": "FilAr PLA-mate @base",
+ "from": "system",
+ "filament_id": "FILAR0036",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#4A2E22"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Gris.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Gris.json
new file mode 100644
index 0000000000..c12616b93a
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Gris.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate Gris",
+ "inherits": "FilAr PLA-mate @base",
+ "from": "system",
+ "filament_id": "FILAR0037",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#7E7E7E"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Marron.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Marron.json
new file mode 100644
index 0000000000..646fdc68a7
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Marron.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate Marron",
+ "inherits": "FilAr PLA-mate @base",
+ "from": "system",
+ "filament_id": "FILAR0038",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#6B4226"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Naranja.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Naranja.json
new file mode 100644
index 0000000000..ea32b090a0
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Naranja.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate Naranja",
+ "inherits": "FilAr PLA-mate @base",
+ "from": "system",
+ "filament_id": "FILAR0039",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#E0662A"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Negro.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Negro.json
new file mode 100644
index 0000000000..2c210c4da6
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Negro.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate Negro",
+ "inherits": "FilAr PLA-mate @base",
+ "from": "system",
+ "filament_id": "FILAR0040",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#1A1A1A"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Piel.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Piel.json
new file mode 100644
index 0000000000..1d6e17e841
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Piel.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate Piel",
+ "inherits": "FilAr PLA-mate @base",
+ "from": "system",
+ "filament_id": "FILAR0041",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#E8C9A8"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rojo.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rojo.json
new file mode 100644
index 0000000000..dd48e730f3
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rojo.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate Rojo",
+ "inherits": "FilAr PLA-mate @base",
+ "from": "system",
+ "filament_id": "FILAR0042",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#B5302E"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rosa.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rosa.json
new file mode 100644
index 0000000000..b04a0e32f8
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rosa.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate Rosa",
+ "inherits": "FilAr PLA-mate @base",
+ "from": "system",
+ "filament_id": "FILAR0043",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#E07A9B"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Uva.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Uva.json
new file mode 100644
index 0000000000..ddfc5c4ad7
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Uva.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate Uva",
+ "inherits": "FilAr PLA-mate @base",
+ "from": "system",
+ "filament_id": "FILAR0044",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#5B2A6B"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Verde.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Verde.json
new file mode 100644
index 0000000000..9cb05a6ac1
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Verde.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate Verde",
+ "inherits": "FilAr PLA-mate @base",
+ "from": "system",
+ "filament_id": "FILAR0045",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#3A7D44"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Violeta.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Violeta.json
new file mode 100644
index 0000000000..77c330fd19
--- /dev/null
+++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Violeta.json
@@ -0,0 +1,14 @@
+{
+ "type": "filament",
+ "name": "FilAr PLA-mate Violeta",
+ "inherits": "FilAr PLA-mate @base",
+ "from": "system",
+ "filament_id": "FILAR0046",
+ "instantiation": "true",
+ "filament_vendor": [
+ "FilAr"
+ ],
+ "default_filament_colour": [
+ "#6B3FA0"
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/Phrozen.json b/resources/profiles/Phrozen.json
index 64db278ab7..de1bd03646 100644
--- a/resources/profiles/Phrozen.json
+++ b/resources/profiles/Phrozen.json
@@ -1,6 +1,6 @@
{
"name": "Phrozen",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "0",
"description": "Phrozen configurations",
"machine_model_list": [
diff --git a/resources/profiles/Phrozen/process/0.20mm Standard @Phrozen Arco 0.4 nozzle.json b/resources/profiles/Phrozen/process/0.20mm Standard @Phrozen Arco 0.4 nozzle.json
index 72f5d17c59..bde0a17ba3 100644
--- a/resources/profiles/Phrozen/process/0.20mm Standard @Phrozen Arco 0.4 nozzle.json
+++ b/resources/profiles/Phrozen/process/0.20mm Standard @Phrozen Arco 0.4 nozzle.json
@@ -186,10 +186,12 @@
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_direction": "45",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "270",
@@ -256,7 +258,8 @@
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "outer wall/inner wall",
diff --git a/resources/profiles/Prusa.json b/resources/profiles/Prusa.json
index 76f0c37877..4448a33246 100644
--- a/resources/profiles/Prusa.json
+++ b/resources/profiles/Prusa.json
@@ -1,6 +1,6 @@
{
"name": "Prusa",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "0",
"description": "Prusa configurations",
"machine_model_list": [
diff --git a/resources/profiles/Prusa/process/process_common_mk4s.json b/resources/profiles/Prusa/process/process_common_mk4s.json
index 2c0add8e4e..1995005570 100644
--- a/resources/profiles/Prusa/process/process_common_mk4s.json
+++ b/resources/profiles/Prusa/process/process_common_mk4s.json
@@ -50,9 +50,11 @@
"resolution": "0",
"slice_closing_radius": "0.049",
"small_perimeter_speed": "170",
- "solid_infill_filament": "0",
+ "internal_solid_filament_id": "0",
+ "top_surface_filament_id": "0",
+ "bottom_surface_filament_id": "0",
"sparse_infill_acceleration": "4000",
- "sparse_infill_filament": "0",
+ "sparse_infill_filament_id": "0",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "crosshatch",
"sparse_infill_speed": "200",
@@ -85,7 +87,8 @@
"tree_support_branch_diameter_double_wall": "3",
"tree_support_tip_diameter": "0.8",
"tree_support_top_rate": "30%",
- "wall_filament": "0",
+ "outer_wall_filament_id": "0",
+ "inner_wall_filament_id": "0",
"wall_generator": "arachne",
"wall_loops": "2"
}
diff --git a/resources/profiles/Qidi.json b/resources/profiles/Qidi.json
index 24ea0eb606..1619c0c7b7 100644
--- a/resources/profiles/Qidi.json
+++ b/resources/profiles/Qidi.json
@@ -1,6 +1,6 @@
{
"name": "Qidi",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "0",
"description": "Qidi configurations",
"machine_model_list": [
diff --git a/resources/profiles/Qidi/process/fdm_process_n_common.json b/resources/profiles/Qidi/process/fdm_process_n_common.json
index 28fcbe32a9..4fd6a2d9d1 100644
--- a/resources/profiles/Qidi/process/fdm_process_n_common.json
+++ b/resources/profiles/Qidi/process/fdm_process_n_common.json
@@ -39,7 +39,6 @@
"enable_support": "0",
"filename_format": "{input_filename_base}.gcode",
"fill_multiline": "1",
- "first_x_layer_fan_speed": "0",
"gap_infill_speed": [
"50"
],
diff --git a/resources/profiles/Ratrig.json b/resources/profiles/Ratrig.json
index 4c124544cf..e725cfa5f0 100644
--- a/resources/profiles/Ratrig.json
+++ b/resources/profiles/Ratrig.json
@@ -1,6 +1,6 @@
{
"name": "RatRig",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "0",
"description": "RatRig configurations",
"machine_model_list": [
diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.5 nozzle.json
index fc4f97bf89..2419a4eab4 100644
--- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.5 nozzle.json
+++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.5 nozzle.json
@@ -8,7 +8,7 @@
"printer_model": "RatRig V-Core 4 HYBRID 500",
"printer_variant": "0.5",
"nozzle_diameter": [
- "0.4"
+ "0.5"
],
"printable_area": [
"0x0",
diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.8 nozzle.json
index d348dd0096..a613589bd7 100644
--- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.8 nozzle.json
+++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.8 nozzle.json
@@ -8,7 +8,7 @@
"printer_model": "RatRig V-Core 4 HYBRID 500",
"printer_variant": "0.8",
"nozzle_diameter": [
- "0.6"
+ "0.8"
],
"printable_area": [
"0x0",
diff --git a/resources/profiles/SeeMeCNC.json b/resources/profiles/SeeMeCNC.json
index 401a0f81c9..f379f9a2ca 100644
--- a/resources/profiles/SeeMeCNC.json
+++ b/resources/profiles/SeeMeCNC.json
@@ -1,694 +1,710 @@
{
- "name": "SeeMeCNC",
- "version": "2.4.0.00",
- "force_update": "1",
- "description": "SeeMeCNC configurations - Full profile set for Artemis, BOSSdelta, and RostockMAX printers",
- "machine_model_list": [
- {
- "name": "SeeMeCNC Artemis 300",
- "sub_path": "machine/SeeMeCNC Artemis 300.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 300",
- "sub_path": "machine/SeeMeCNC BOSSdelta 300.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 500 0505",
- "sub_path": "machine/SeeMeCNC BOSSdelta 500 0505.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 500 0510",
- "sub_path": "machine/SeeMeCNC BOSSdelta 500 0510.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 500 0521",
- "sub_path": "machine/SeeMeCNC BOSSdelta 500 0521.json"
- },
- {
- "name": "SeeMeCNC RostockMAX v3.2",
- "sub_path": "machine/SeeMeCNC RostockMAX v3.2.json"
- },
- {
- "name": "SeeMeCNC RostockMAX v4",
- "sub_path": "machine/SeeMeCNC RostockMAX v4.json"
- }
- ],
- "process_list": [
- {
- "name": "SeeMeCNC process base",
- "sub_path": "process/SeeMeCNC_process_base.json"
- },
- {
- "name": "0.16mm Fine @SeeMeCNC Artemis 0.4",
- "sub_path": "process/0.16mm Fine @SeeMeCNC Artemis 0.4.json"
- },
- {
- "name": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
- "sub_path": "process/0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4.json"
- },
- {
- "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
- "sub_path": "process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4.json"
- },
- {
- "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
- "sub_path": "process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4.json"
- },
- {
- "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
- "sub_path": "process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4.json"
- },
- {
- "name": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
- "sub_path": "process/0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4.json"
- },
- {
- "name": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
- "sub_path": "process/0.16mm Fine @SeeMeCNC RostockMAX v4 0.4.json"
- },
- {
- "name": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
- "sub_path": "process/0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json"
- },
- {
- "name": "0.20mm Fine @SeeMeCNC Artemis 0.5",
- "sub_path": "process/0.20mm Fine @SeeMeCNC Artemis 0.5.json"
- },
- {
- "name": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
- "sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5.json"
- },
- {
- "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
- "sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5.json"
- },
- {
- "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
- "sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5.json"
- },
- {
- "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
- "sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5.json"
- },
- {
- "name": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
- "sub_path": "process/0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5.json"
- },
- {
- "name": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
- "sub_path": "process/0.20mm Fine @SeeMeCNC RostockMAX v4 0.5.json"
- },
- {
- "name": "0.20mm Standard @SeeMeCNC Artemis 0.4",
- "sub_path": "process/0.20mm Standard @SeeMeCNC Artemis 0.4.json"
- },
- {
- "name": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
- "sub_path": "process/0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4.json"
- },
- {
- "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
- "sub_path": "process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4.json"
- },
- {
- "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
- "sub_path": "process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4.json"
- },
- {
- "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
- "sub_path": "process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4.json"
- },
- {
- "name": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
- "sub_path": "process/0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4.json"
- },
- {
- "name": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
- "sub_path": "process/0.20mm Standard @SeeMeCNC RostockMAX v4 0.4.json"
- },
- {
- "name": "0.24mm Draft @SeeMeCNC Artemis 0.4",
- "sub_path": "process/0.24mm Draft @SeeMeCNC Artemis 0.4.json"
- },
- {
- "name": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
- "sub_path": "process/0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4.json"
- },
- {
- "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
- "sub_path": "process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json"
- },
- {
- "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
- "sub_path": "process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json"
- },
- {
- "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
- "sub_path": "process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json"
- },
- {
- "name": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
- "sub_path": "process/0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json"
- },
- {
- "name": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
- "sub_path": "process/0.24mm Draft @SeeMeCNC RostockMAX v4 0.4.json"
- },
- {
- "name": "0.25mm Standard @SeeMeCNC Artemis 0.5",
- "sub_path": "process/0.25mm Standard @SeeMeCNC Artemis 0.5.json"
- },
- {
- "name": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
- "sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5.json"
- },
- {
- "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
- "sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5.json"
- },
- {
- "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
- "sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5.json"
- },
- {
- "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
- "sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5.json"
- },
- {
- "name": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
- "sub_path": "process/0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5.json"
- },
- {
- "name": "0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
- "sub_path": "process/0.25mm Standard @SeeMeCNC RostockMAX v4 0.5.json"
- },
- {
- "name": "0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
- "sub_path": "process/0.28mm Extra Draft @SeeMeCNC Artemis 0.4.json"
- },
- {
- "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4",
- "sub_path": "process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4.json"
- },
- {
- "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
- "sub_path": "process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json"
- },
- {
- "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
- "sub_path": "process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json"
- },
- {
- "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
- "sub_path": "process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json"
- },
- {
- "name": "0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4",
- "sub_path": "process/0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4.json"
- },
- {
- "name": "0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4",
- "sub_path": "process/0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4.json"
- },
- {
- "name": "0.28mm Fine @SeeMeCNC Artemis 0.7",
- "sub_path": "process/0.28mm Fine @SeeMeCNC Artemis 0.7.json"
- },
- {
- "name": "0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
- "sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7.json"
- },
- {
- "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
- "sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7.json"
- },
- {
- "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
- "sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7.json"
- },
- {
- "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
- "sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7.json"
- },
- {
- "name": "0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
- "sub_path": "process/0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7.json"
- },
- {
- "name": "0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
- "sub_path": "process/0.28mm Fine @SeeMeCNC RostockMAX v4 0.7.json"
- },
- {
- "name": "0.30mm Draft @SeeMeCNC Artemis 0.5",
- "sub_path": "process/0.30mm Draft @SeeMeCNC Artemis 0.5.json"
- },
- {
- "name": "0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5",
- "sub_path": "process/0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5.json"
- },
- {
- "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
- "sub_path": "process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json"
- },
- {
- "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
- "sub_path": "process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json"
- },
- {
- "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
- "sub_path": "process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json"
- },
- {
- "name": "0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5",
- "sub_path": "process/0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5.json"
- },
- {
- "name": "0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
- "sub_path": "process/0.30mm Draft @SeeMeCNC RostockMAX v4 0.5.json"
- },
- {
- "name": "0.30mm TPU Solid @SeeMeCNC Artemis 0.7",
- "sub_path": "process/0.30mm TPU Solid @SeeMeCNC Artemis 0.7.json"
- },
- {
- "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7",
- "sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7.json"
- },
- {
- "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7",
- "sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7.json"
- },
- {
- "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7",
- "sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7.json"
- },
- {
- "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7",
- "sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7.json"
- },
- {
- "name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7",
- "sub_path": "process/0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7.json"
- },
- {
- "name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7",
- "sub_path": "process/0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7.json"
- },
- {
- "name": "0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
- "sub_path": "process/0.35mm Extra Draft @SeeMeCNC Artemis 0.5.json"
- },
- {
- "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5",
- "sub_path": "process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5.json"
- },
- {
- "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
- "sub_path": "process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json"
- },
- {
- "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
- "sub_path": "process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json"
- },
- {
- "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
- "sub_path": "process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json"
- },
- {
- "name": "0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5",
- "sub_path": "process/0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5.json"
- },
- {
- "name": "0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5",
- "sub_path": "process/0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5.json"
- },
- {
- "name": "0.35mm Standard @SeeMeCNC Artemis 0.7",
- "sub_path": "process/0.35mm Standard @SeeMeCNC Artemis 0.7.json"
- },
- {
- "name": "0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7",
- "sub_path": "process/0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7.json"
- },
- {
- "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7",
- "sub_path": "process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7.json"
- },
- {
- "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7",
- "sub_path": "process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7.json"
- },
- {
- "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7",
- "sub_path": "process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7.json"
- },
- {
- "name": "0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7",
- "sub_path": "process/0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7.json"
- },
- {
- "name": "0.35mm Standard @SeeMeCNC RostockMAX v4 0.7",
- "sub_path": "process/0.35mm Standard @SeeMeCNC RostockMAX v4 0.7.json"
- },
- {
- "name": "0.35mm TPU Vase @SeeMeCNC Artemis 0.7",
- "sub_path": "process/0.35mm TPU Vase @SeeMeCNC Artemis 0.7.json"
- },
- {
- "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7",
- "sub_path": "process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7.json"
- },
- {
- "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7",
- "sub_path": "process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7.json"
- },
- {
- "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7",
- "sub_path": "process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7.json"
- },
- {
- "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7",
- "sub_path": "process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7.json"
- },
- {
- "name": "0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7",
- "sub_path": "process/0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7.json"
- },
- {
- "name": "0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7",
- "sub_path": "process/0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7.json"
- },
- {
- "name": "0.40mm Fine @SeeMeCNC Artemis 1.0",
- "sub_path": "process/0.40mm Fine @SeeMeCNC Artemis 1.0.json"
- },
- {
- "name": "0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
- "sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0.json"
- },
- {
- "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
- "sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0.json"
- },
- {
- "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
- "sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0.json"
- },
- {
- "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
- "sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0.json"
- },
- {
- "name": "0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
- "sub_path": "process/0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0.json"
- },
- {
- "name": "0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
- "sub_path": "process/0.40mm Fine @SeeMeCNC RostockMAX v4 1.0.json"
- },
- {
- "name": "0.42mm Draft @SeeMeCNC Artemis 0.7",
- "sub_path": "process/0.42mm Draft @SeeMeCNC Artemis 0.7.json"
- },
- {
- "name": "0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7",
- "sub_path": "process/0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7.json"
- },
- {
- "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
- "sub_path": "process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json"
- },
- {
- "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
- "sub_path": "process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json"
- },
- {
- "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
- "sub_path": "process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json"
- },
- {
- "name": "0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7",
- "sub_path": "process/0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7.json"
- },
- {
- "name": "0.42mm Draft @SeeMeCNC RostockMAX v4 0.7",
- "sub_path": "process/0.42mm Draft @SeeMeCNC RostockMAX v4 0.7.json"
- },
- {
- "name": "0.49mm Extra Draft @SeeMeCNC Artemis 0.7",
- "sub_path": "process/0.49mm Extra Draft @SeeMeCNC Artemis 0.7.json"
- },
- {
- "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7",
- "sub_path": "process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7.json"
- },
- {
- "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
- "sub_path": "process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json"
- },
- {
- "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
- "sub_path": "process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json"
- },
- {
- "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
- "sub_path": "process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json"
- },
- {
- "name": "0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7",
- "sub_path": "process/0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7.json"
- },
- {
- "name": "0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7",
- "sub_path": "process/0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7.json"
- },
- {
- "name": "0.50mm Standard @SeeMeCNC Artemis 1.0",
- "sub_path": "process/0.50mm Standard @SeeMeCNC Artemis 1.0.json"
- },
- {
- "name": "0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0",
- "sub_path": "process/0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0.json"
- },
- {
- "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0",
- "sub_path": "process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0.json"
- },
- {
- "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0",
- "sub_path": "process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0.json"
- },
- {
- "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0",
- "sub_path": "process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0.json"
- },
- {
- "name": "0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0",
- "sub_path": "process/0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0.json"
- },
- {
- "name": "0.50mm Standard @SeeMeCNC RostockMAX v4 1.0",
- "sub_path": "process/0.50mm Standard @SeeMeCNC RostockMAX v4 1.0.json"
- },
- {
- "name": "0.60mm Draft @SeeMeCNC Artemis 1.0",
- "sub_path": "process/0.60mm Draft @SeeMeCNC Artemis 1.0.json"
- },
- {
- "name": "0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0",
- "sub_path": "process/0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0.json"
- },
- {
- "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
- "sub_path": "process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json"
- },
- {
- "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
- "sub_path": "process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json"
- },
- {
- "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
- "sub_path": "process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json"
- },
- {
- "name": "0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0",
- "sub_path": "process/0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0.json"
- },
- {
- "name": "0.60mm Draft @SeeMeCNC RostockMAX v4 1.0",
- "sub_path": "process/0.60mm Draft @SeeMeCNC RostockMAX v4 1.0.json"
- },
- {
- "name": "0.70mm Extra Draft @SeeMeCNC Artemis 1.0",
- "sub_path": "process/0.70mm Extra Draft @SeeMeCNC Artemis 1.0.json"
- },
- {
- "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0",
- "sub_path": "process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0.json"
- },
- {
- "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
- "sub_path": "process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json"
- },
- {
- "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
- "sub_path": "process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json"
- },
- {
- "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
- "sub_path": "process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json"
- },
- {
- "name": "0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0",
- "sub_path": "process/0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0.json"
- },
- {
- "name": "0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0",
- "sub_path": "process/0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0.json"
- }
- ],
- "filament_list": [
- {
- "name": "SeeMeCNC filament base",
- "sub_path": "filament/SeeMeCNC_filament_base.json"
- },
- {
- "name": "SeeMeCNC ABS",
- "sub_path": "filament/SeeMeCNC_ABS.json"
- },
- {
- "name": "SeeMeCNC PA-CF",
- "sub_path": "filament/SeeMeCNC_PA-CF.json"
- },
- {
- "name": "SeeMeCNC PETG",
- "sub_path": "filament/SeeMeCNC_PETG.json"
- },
- {
- "name": "SeeMeCNC PETG-CF",
- "sub_path": "filament/SeeMeCNC_PETG-CF.json"
- },
- {
- "name": "SeeMeCNC TPU",
- "sub_path": "filament/SeeMeCNC_TPU.json"
- },
- {
- "name": "SeeMeCNC PLA",
- "sub_path": "filament/SeeMeCNC_PLA.json"
- }
- ],
- "machine_list": [
- {
- "name": "SeeMeCNC Artemis 0.4 nozzle",
- "sub_path": "machine/SeeMeCNC_Artemis_0_4mm.json"
- },
- {
- "name": "SeeMeCNC Artemis 0.5 nozzle",
- "sub_path": "machine/SeeMeCNC_Artemis_0_5mm.json"
- },
- {
- "name": "SeeMeCNC Artemis 0.7 nozzle",
- "sub_path": "machine/SeeMeCNC_Artemis_0_7mm.json"
- },
- {
- "name": "SeeMeCNC Artemis 1.0 nozzle",
- "sub_path": "machine/SeeMeCNC_Artemis_1_0mm.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 300 0.4 nozzle",
- "sub_path": "machine/SeeMeCNC_BOSSdelta_300_0_4mm.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 300 0.5 nozzle",
- "sub_path": "machine/SeeMeCNC_BOSSdelta_300_0_5mm.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 300 0.7 nozzle",
- "sub_path": "machine/SeeMeCNC_BOSSdelta_300_0_7mm.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 300 1.0 nozzle",
- "sub_path": "machine/SeeMeCNC_BOSSdelta_300_1_0mm.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 500 0505 0.4 nozzle",
- "sub_path": "machine/SeeMeCNC_BOSSdelta500_0505_0_4mm.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 500 0505 0.5 nozzle",
- "sub_path": "machine/SeeMeCNC_BOSSdelta500_0505_0_5mm.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 500 0505 0.7 nozzle",
- "sub_path": "machine/SeeMeCNC_BOSSdelta500_0505_0_7mm.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 500 0505 1.0 nozzle",
- "sub_path": "machine/SeeMeCNC_BOSSdelta500_0505_1_0mm.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 500 0510 0.4 nozzle",
- "sub_path": "machine/SeeMeCNC_BOSSdelta500_0510_0_4mm.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 500 0510 0.5 nozzle",
- "sub_path": "machine/SeeMeCNC_BOSSdelta500_0510_0_5mm.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 500 0510 0.7 nozzle",
- "sub_path": "machine/SeeMeCNC_BOSSdelta500_0510_0_7mm.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 500 0510 1.0 nozzle",
- "sub_path": "machine/SeeMeCNC_BOSSdelta500_0510_1_0mm.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 500 0521 0.4 nozzle",
- "sub_path": "machine/SeeMeCNC_BOSSdelta500_0521_0_4mm.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 500 0521 0.5 nozzle",
- "sub_path": "machine/SeeMeCNC_BOSSdelta500_0521_0_5mm.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 500 0521 0.7 nozzle",
- "sub_path": "machine/SeeMeCNC_BOSSdelta500_0521_0_7mm.json"
- },
- {
- "name": "SeeMeCNC BOSSdelta 500 0521 1.0 nozzle",
- "sub_path": "machine/SeeMeCNC_BOSSdelta500_0521_1_0mm.json"
- },
- {
- "name": "SeeMeCNC RostockMAX v3.2 0.4 nozzle",
- "sub_path": "machine/SeeMeCNC_RostockMAX_v3.2_0_4mm.json"
- },
- {
- "name": "SeeMeCNC RostockMAX v3.2 0.5 nozzle",
- "sub_path": "machine/SeeMeCNC_RostockMAX_v3.2_0_5mm.json"
- },
- {
- "name": "SeeMeCNC RostockMAX v3.2 0.7 nozzle",
- "sub_path": "machine/SeeMeCNC_RostockMAX_v3.2_0_7mm.json"
- },
- {
- "name": "SeeMeCNC RostockMAX v3.2 1.0 nozzle",
- "sub_path": "machine/SeeMeCNC_RostockMAX_v3.2_1_0mm.json"
- },
- {
- "name": "SeeMeCNC RostockMAX v4 0.4 nozzle",
- "sub_path": "machine/SeeMeCNC_RostockMAX_v4_0_4mm.json"
- },
- {
- "name": "SeeMeCNC RostockMAX v4 0.5 nozzle",
- "sub_path": "machine/SeeMeCNC_RostockMAX_v4_0_5mm.json"
- },
- {
- "name": "SeeMeCNC RostockMAX v4 0.7 nozzle",
- "sub_path": "machine/SeeMeCNC_RostockMAX_v4_0_7mm.json"
- },
- {
- "name": "SeeMeCNC RostockMAX v4 1.0 nozzle",
- "sub_path": "machine/SeeMeCNC_RostockMAX_v4_1_0mm.json"
- }
- ]
-}
+ "name": "SeeMeCNC",
+ "version": "2.4.0.00",
+ "force_update": "1",
+ "description": "SeeMeCNC configurations - Full profile set for Artemis, BOSSdelta, and RostockMAX printers",
+ "machine_model_list": [
+ {
+ "name": "SeeMeCNC Artemis 300",
+ "sub_path": "machine/SeeMeCNC Artemis 300.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 300",
+ "sub_path": "machine/SeeMeCNC BOSSdelta 300.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 500 0505",
+ "sub_path": "machine/SeeMeCNC BOSSdelta 500 0505.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 500 0510",
+ "sub_path": "machine/SeeMeCNC BOSSdelta 500 0510.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 500 0521",
+ "sub_path": "machine/SeeMeCNC BOSSdelta 500 0521.json"
+ },
+ {
+ "name": "SeeMeCNC RostockMAX v3.2",
+ "sub_path": "machine/SeeMeCNC RostockMAX v3.2.json"
+ },
+ {
+ "name": "SeeMeCNC RostockMAX v4",
+ "sub_path": "machine/SeeMeCNC RostockMAX v4.json"
+ }
+ ],
+ "process_list": [
+ {
+ "name": "SeeMeCNC process base 0.4mm",
+ "sub_path": "process/SeeMeCNC_process_base_0.4mm.json"
+ },
+ {
+ "name": "SeeMeCNC process base 0.5mm",
+ "sub_path": "process/SeeMeCNC_process_base_0.5mm.json"
+ },
+ {
+ "name": "SeeMeCNC process base 0.7mm",
+ "sub_path": "process/SeeMeCNC_process_base_0.7mm.json"
+ },
+ {
+ "name": "SeeMeCNC process base 1.0mm",
+ "sub_path": "process/SeeMeCNC_process_base_1.0mm.json"
+ },
+ {
+ "name": "SeeMeCNC process base",
+ "sub_path": "process/SeeMeCNC_process_base.json"
+ },
+ {
+ "name": "0.16mm Fine @SeeMeCNC Artemis 0.4",
+ "sub_path": "process/0.16mm Fine @SeeMeCNC Artemis 0.4.json"
+ },
+ {
+ "name": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
+ "sub_path": "process/0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4.json"
+ },
+ {
+ "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
+ "sub_path": "process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4.json"
+ },
+ {
+ "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
+ "sub_path": "process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4.json"
+ },
+ {
+ "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
+ "sub_path": "process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4.json"
+ },
+ {
+ "name": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
+ "sub_path": "process/0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4.json"
+ },
+ {
+ "name": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
+ "sub_path": "process/0.16mm Fine @SeeMeCNC RostockMAX v4 0.4.json"
+ },
+ {
+ "name": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
+ "sub_path": "process/0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json"
+ },
+ {
+ "name": "0.20mm Fine @SeeMeCNC Artemis 0.5",
+ "sub_path": "process/0.20mm Fine @SeeMeCNC Artemis 0.5.json"
+ },
+ {
+ "name": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
+ "sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5.json"
+ },
+ {
+ "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
+ "sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5.json"
+ },
+ {
+ "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
+ "sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5.json"
+ },
+ {
+ "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
+ "sub_path": "process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5.json"
+ },
+ {
+ "name": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
+ "sub_path": "process/0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5.json"
+ },
+ {
+ "name": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
+ "sub_path": "process/0.20mm Fine @SeeMeCNC RostockMAX v4 0.5.json"
+ },
+ {
+ "name": "0.20mm Standard @SeeMeCNC Artemis 0.4",
+ "sub_path": "process/0.20mm Standard @SeeMeCNC Artemis 0.4.json"
+ },
+ {
+ "name": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
+ "sub_path": "process/0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4.json"
+ },
+ {
+ "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
+ "sub_path": "process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4.json"
+ },
+ {
+ "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
+ "sub_path": "process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4.json"
+ },
+ {
+ "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
+ "sub_path": "process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4.json"
+ },
+ {
+ "name": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
+ "sub_path": "process/0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4.json"
+ },
+ {
+ "name": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
+ "sub_path": "process/0.20mm Standard @SeeMeCNC RostockMAX v4 0.4.json"
+ },
+ {
+ "name": "0.24mm Draft @SeeMeCNC Artemis 0.4",
+ "sub_path": "process/0.24mm Draft @SeeMeCNC Artemis 0.4.json"
+ },
+ {
+ "name": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
+ "sub_path": "process/0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4.json"
+ },
+ {
+ "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
+ "sub_path": "process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json"
+ },
+ {
+ "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
+ "sub_path": "process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json"
+ },
+ {
+ "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
+ "sub_path": "process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json"
+ },
+ {
+ "name": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
+ "sub_path": "process/0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json"
+ },
+ {
+ "name": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
+ "sub_path": "process/0.24mm Draft @SeeMeCNC RostockMAX v4 0.4.json"
+ },
+ {
+ "name": "0.25mm Standard @SeeMeCNC Artemis 0.5",
+ "sub_path": "process/0.25mm Standard @SeeMeCNC Artemis 0.5.json"
+ },
+ {
+ "name": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
+ "sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5.json"
+ },
+ {
+ "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
+ "sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5.json"
+ },
+ {
+ "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
+ "sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5.json"
+ },
+ {
+ "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
+ "sub_path": "process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5.json"
+ },
+ {
+ "name": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
+ "sub_path": "process/0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5.json"
+ },
+ {
+ "name": "0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
+ "sub_path": "process/0.25mm Standard @SeeMeCNC RostockMAX v4 0.5.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
+ "sub_path": "process/0.28mm Extra Draft @SeeMeCNC Artemis 0.4.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4",
+ "sub_path": "process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
+ "sub_path": "process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
+ "sub_path": "process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
+ "sub_path": "process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4",
+ "sub_path": "process/0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4.json"
+ },
+ {
+ "name": "0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4",
+ "sub_path": "process/0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4.json"
+ },
+ {
+ "name": "0.28mm Fine @SeeMeCNC Artemis 0.7",
+ "sub_path": "process/0.28mm Fine @SeeMeCNC Artemis 0.7.json"
+ },
+ {
+ "name": "0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
+ "sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7.json"
+ },
+ {
+ "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7.json"
+ },
+ {
+ "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7.json"
+ },
+ {
+ "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "sub_path": "process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7.json"
+ },
+ {
+ "name": "0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
+ "sub_path": "process/0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7.json"
+ },
+ {
+ "name": "0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
+ "sub_path": "process/0.28mm Fine @SeeMeCNC RostockMAX v4 0.7.json"
+ },
+ {
+ "name": "0.30mm Draft @SeeMeCNC Artemis 0.5",
+ "sub_path": "process/0.30mm Draft @SeeMeCNC Artemis 0.5.json"
+ },
+ {
+ "name": "0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5",
+ "sub_path": "process/0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5.json"
+ },
+ {
+ "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
+ "sub_path": "process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json"
+ },
+ {
+ "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
+ "sub_path": "process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json"
+ },
+ {
+ "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
+ "sub_path": "process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json"
+ },
+ {
+ "name": "0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5",
+ "sub_path": "process/0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5.json"
+ },
+ {
+ "name": "0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
+ "sub_path": "process/0.30mm Draft @SeeMeCNC RostockMAX v4 0.5.json"
+ },
+ {
+ "name": "0.30mm TPU Solid @SeeMeCNC Artemis 0.7",
+ "sub_path": "process/0.30mm TPU Solid @SeeMeCNC Artemis 0.7.json"
+ },
+ {
+ "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7",
+ "sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7.json"
+ },
+ {
+ "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7.json"
+ },
+ {
+ "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7.json"
+ },
+ {
+ "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "sub_path": "process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7.json"
+ },
+ {
+ "name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7",
+ "sub_path": "process/0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7.json"
+ },
+ {
+ "name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7",
+ "sub_path": "process/0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7.json"
+ },
+ {
+ "name": "0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
+ "sub_path": "process/0.35mm Extra Draft @SeeMeCNC Artemis 0.5.json"
+ },
+ {
+ "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5",
+ "sub_path": "process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5.json"
+ },
+ {
+ "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
+ "sub_path": "process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json"
+ },
+ {
+ "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
+ "sub_path": "process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json"
+ },
+ {
+ "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
+ "sub_path": "process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json"
+ },
+ {
+ "name": "0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5",
+ "sub_path": "process/0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5.json"
+ },
+ {
+ "name": "0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5",
+ "sub_path": "process/0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5.json"
+ },
+ {
+ "name": "0.35mm Standard @SeeMeCNC Artemis 0.7",
+ "sub_path": "process/0.35mm Standard @SeeMeCNC Artemis 0.7.json"
+ },
+ {
+ "name": "0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7",
+ "sub_path": "process/0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7.json"
+ },
+ {
+ "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "sub_path": "process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7.json"
+ },
+ {
+ "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "sub_path": "process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7.json"
+ },
+ {
+ "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "sub_path": "process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7.json"
+ },
+ {
+ "name": "0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7",
+ "sub_path": "process/0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7.json"
+ },
+ {
+ "name": "0.35mm Standard @SeeMeCNC RostockMAX v4 0.7",
+ "sub_path": "process/0.35mm Standard @SeeMeCNC RostockMAX v4 0.7.json"
+ },
+ {
+ "name": "0.35mm TPU Vase @SeeMeCNC Artemis 0.7",
+ "sub_path": "process/0.35mm TPU Vase @SeeMeCNC Artemis 0.7.json"
+ },
+ {
+ "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7",
+ "sub_path": "process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7.json"
+ },
+ {
+ "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "sub_path": "process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7.json"
+ },
+ {
+ "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "sub_path": "process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7.json"
+ },
+ {
+ "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "sub_path": "process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7.json"
+ },
+ {
+ "name": "0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7",
+ "sub_path": "process/0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7.json"
+ },
+ {
+ "name": "0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7",
+ "sub_path": "process/0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7.json"
+ },
+ {
+ "name": "0.40mm Fine @SeeMeCNC Artemis 1.0",
+ "sub_path": "process/0.40mm Fine @SeeMeCNC Artemis 1.0.json"
+ },
+ {
+ "name": "0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
+ "sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0.json"
+ },
+ {
+ "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
+ "sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0.json"
+ },
+ {
+ "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
+ "sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0.json"
+ },
+ {
+ "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
+ "sub_path": "process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0.json"
+ },
+ {
+ "name": "0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
+ "sub_path": "process/0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0.json"
+ },
+ {
+ "name": "0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
+ "sub_path": "process/0.40mm Fine @SeeMeCNC RostockMAX v4 1.0.json"
+ },
+ {
+ "name": "0.42mm Draft @SeeMeCNC Artemis 0.7",
+ "sub_path": "process/0.42mm Draft @SeeMeCNC Artemis 0.7.json"
+ },
+ {
+ "name": "0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7",
+ "sub_path": "process/0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7.json"
+ },
+ {
+ "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "sub_path": "process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json"
+ },
+ {
+ "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "sub_path": "process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json"
+ },
+ {
+ "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "sub_path": "process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json"
+ },
+ {
+ "name": "0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7",
+ "sub_path": "process/0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7.json"
+ },
+ {
+ "name": "0.42mm Draft @SeeMeCNC RostockMAX v4 0.7",
+ "sub_path": "process/0.42mm Draft @SeeMeCNC RostockMAX v4 0.7.json"
+ },
+ {
+ "name": "0.49mm Extra Draft @SeeMeCNC Artemis 0.7",
+ "sub_path": "process/0.49mm Extra Draft @SeeMeCNC Artemis 0.7.json"
+ },
+ {
+ "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7",
+ "sub_path": "process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7.json"
+ },
+ {
+ "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "sub_path": "process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json"
+ },
+ {
+ "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "sub_path": "process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json"
+ },
+ {
+ "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "sub_path": "process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json"
+ },
+ {
+ "name": "0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7",
+ "sub_path": "process/0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7.json"
+ },
+ {
+ "name": "0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7",
+ "sub_path": "process/0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7.json"
+ },
+ {
+ "name": "0.50mm Standard @SeeMeCNC Artemis 1.0",
+ "sub_path": "process/0.50mm Standard @SeeMeCNC Artemis 1.0.json"
+ },
+ {
+ "name": "0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0",
+ "sub_path": "process/0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0.json"
+ },
+ {
+ "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0",
+ "sub_path": "process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0.json"
+ },
+ {
+ "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0",
+ "sub_path": "process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0.json"
+ },
+ {
+ "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0",
+ "sub_path": "process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0.json"
+ },
+ {
+ "name": "0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0",
+ "sub_path": "process/0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0.json"
+ },
+ {
+ "name": "0.50mm Standard @SeeMeCNC RostockMAX v4 1.0",
+ "sub_path": "process/0.50mm Standard @SeeMeCNC RostockMAX v4 1.0.json"
+ },
+ {
+ "name": "0.60mm Draft @SeeMeCNC Artemis 1.0",
+ "sub_path": "process/0.60mm Draft @SeeMeCNC Artemis 1.0.json"
+ },
+ {
+ "name": "0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0",
+ "sub_path": "process/0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0.json"
+ },
+ {
+ "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
+ "sub_path": "process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json"
+ },
+ {
+ "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
+ "sub_path": "process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json"
+ },
+ {
+ "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
+ "sub_path": "process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json"
+ },
+ {
+ "name": "0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0",
+ "sub_path": "process/0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0.json"
+ },
+ {
+ "name": "0.60mm Draft @SeeMeCNC RostockMAX v4 1.0",
+ "sub_path": "process/0.60mm Draft @SeeMeCNC RostockMAX v4 1.0.json"
+ },
+ {
+ "name": "0.70mm Extra Draft @SeeMeCNC Artemis 1.0",
+ "sub_path": "process/0.70mm Extra Draft @SeeMeCNC Artemis 1.0.json"
+ },
+ {
+ "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0",
+ "sub_path": "process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0.json"
+ },
+ {
+ "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
+ "sub_path": "process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json"
+ },
+ {
+ "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
+ "sub_path": "process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json"
+ },
+ {
+ "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
+ "sub_path": "process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json"
+ },
+ {
+ "name": "0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0",
+ "sub_path": "process/0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0.json"
+ },
+ {
+ "name": "0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0",
+ "sub_path": "process/0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0.json"
+ }
+ ],
+ "filament_list": [
+ {
+ "name": "SeeMeCNC filament base",
+ "sub_path": "filament/SeeMeCNC_filament_base.json"
+ },
+ {
+ "name": "SeeMeCNC ABS",
+ "sub_path": "filament/SeeMeCNC_ABS.json"
+ },
+ {
+ "name": "SeeMeCNC PA-CF",
+ "sub_path": "filament/SeeMeCNC_PA-CF.json"
+ },
+ {
+ "name": "SeeMeCNC PETG",
+ "sub_path": "filament/SeeMeCNC_PETG.json"
+ },
+ {
+ "name": "SeeMeCNC PETG-CF",
+ "sub_path": "filament/SeeMeCNC_PETG-CF.json"
+ },
+ {
+ "name": "SeeMeCNC TPU",
+ "sub_path": "filament/SeeMeCNC_TPU.json"
+ },
+ {
+ "name": "SeeMeCNC PLA",
+ "sub_path": "filament/SeeMeCNC_PLA.json"
+ }
+ ],
+ "machine_list": [
+ {
+ "name": "SeeMeCNC Artemis 0.4 nozzle",
+ "sub_path": "machine/SeeMeCNC_Artemis_0_4mm.json"
+ },
+ {
+ "name": "SeeMeCNC Artemis 0.5 nozzle",
+ "sub_path": "machine/SeeMeCNC_Artemis_0_5mm.json"
+ },
+ {
+ "name": "SeeMeCNC Artemis 0.7 nozzle",
+ "sub_path": "machine/SeeMeCNC_Artemis_0_7mm.json"
+ },
+ {
+ "name": "SeeMeCNC Artemis 1.0 nozzle",
+ "sub_path": "machine/SeeMeCNC_Artemis_1_0mm.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 300 0.4 nozzle",
+ "sub_path": "machine/SeeMeCNC_BOSSdelta_300_0_4mm.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 300 0.5 nozzle",
+ "sub_path": "machine/SeeMeCNC_BOSSdelta_300_0_5mm.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 300 0.7 nozzle",
+ "sub_path": "machine/SeeMeCNC_BOSSdelta_300_0_7mm.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 300 1.0 nozzle",
+ "sub_path": "machine/SeeMeCNC_BOSSdelta_300_1_0mm.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 500 0505 0.4 nozzle",
+ "sub_path": "machine/SeeMeCNC_BOSSdelta500_0505_0_4mm.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 500 0505 0.5 nozzle",
+ "sub_path": "machine/SeeMeCNC_BOSSdelta500_0505_0_5mm.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 500 0505 0.7 nozzle",
+ "sub_path": "machine/SeeMeCNC_BOSSdelta500_0505_0_7mm.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 500 0505 1.0 nozzle",
+ "sub_path": "machine/SeeMeCNC_BOSSdelta500_0505_1_0mm.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 500 0510 0.4 nozzle",
+ "sub_path": "machine/SeeMeCNC_BOSSdelta500_0510_0_4mm.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 500 0510 0.5 nozzle",
+ "sub_path": "machine/SeeMeCNC_BOSSdelta500_0510_0_5mm.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 500 0510 0.7 nozzle",
+ "sub_path": "machine/SeeMeCNC_BOSSdelta500_0510_0_7mm.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 500 0510 1.0 nozzle",
+ "sub_path": "machine/SeeMeCNC_BOSSdelta500_0510_1_0mm.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 500 0521 0.4 nozzle",
+ "sub_path": "machine/SeeMeCNC_BOSSdelta500_0521_0_4mm.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 500 0521 0.5 nozzle",
+ "sub_path": "machine/SeeMeCNC_BOSSdelta500_0521_0_5mm.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 500 0521 0.7 nozzle",
+ "sub_path": "machine/SeeMeCNC_BOSSdelta500_0521_0_7mm.json"
+ },
+ {
+ "name": "SeeMeCNC BOSSdelta 500 0521 1.0 nozzle",
+ "sub_path": "machine/SeeMeCNC_BOSSdelta500_0521_1_0mm.json"
+ },
+ {
+ "name": "SeeMeCNC RostockMAX v3.2 0.4 nozzle",
+ "sub_path": "machine/SeeMeCNC_RostockMAX_v3.2_0_4mm.json"
+ },
+ {
+ "name": "SeeMeCNC RostockMAX v3.2 0.5 nozzle",
+ "sub_path": "machine/SeeMeCNC_RostockMAX_v3.2_0_5mm.json"
+ },
+ {
+ "name": "SeeMeCNC RostockMAX v3.2 0.7 nozzle",
+ "sub_path": "machine/SeeMeCNC_RostockMAX_v3.2_0_7mm.json"
+ },
+ {
+ "name": "SeeMeCNC RostockMAX v3.2 1.0 nozzle",
+ "sub_path": "machine/SeeMeCNC_RostockMAX_v3.2_1_0mm.json"
+ },
+ {
+ "name": "SeeMeCNC RostockMAX v4 0.4 nozzle",
+ "sub_path": "machine/SeeMeCNC_RostockMAX_v4_0_4mm.json"
+ },
+ {
+ "name": "SeeMeCNC RostockMAX v4 0.5 nozzle",
+ "sub_path": "machine/SeeMeCNC_RostockMAX_v4_0_5mm.json"
+ },
+ {
+ "name": "SeeMeCNC RostockMAX v4 0.7 nozzle",
+ "sub_path": "machine/SeeMeCNC_RostockMAX_v4_0_7mm.json"
+ },
+ {
+ "name": "SeeMeCNC RostockMAX v4 1.0 nozzle",
+ "sub_path": "machine/SeeMeCNC_RostockMAX_v4_1_0mm.json"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC Artemis 300.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC Artemis 300.json
index cd0ba84775..29f2dcc708 100644
--- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC Artemis 300.json
+++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC Artemis 300.json
@@ -3,7 +3,7 @@
"name": "SeeMeCNC Artemis 300",
"bed_model": "SeeMeCNC_Buildplate_Model.STL",
"bed_texture": "SeeMeCNC_Buildplate_texture.png",
- "default_materials": "SeeMeCNC PLA",
+ "default_materials": "SeeMeCNC PLA;SeeMeCNC ABS;SeeMeCNC PETG;SeeMeCNC PETG-CF;SeeMeCNC PA-CF;SeeMeCNC TPU",
"nozzle_diameter": "0.4;0.5;0.7;1.0",
"machine_tech": "FFF",
"family": "SeeMeCNC Artemis 300",
@@ -12,4 +12,4 @@
"machine_unload_filament_time": "4",
"model_id": "SEEMECNC_ARTEMIS_300",
"description": "SeeMeCNC configurations"
-}
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC BOSSdelta 300.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC BOSSdelta 300.json
index 1586b6f445..1d7e05b704 100644
--- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC BOSSdelta 300.json
+++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC BOSSdelta 300.json
@@ -3,7 +3,7 @@
"name": "SeeMeCNC BOSSdelta 300",
"bed_model": "SeeMeCNC_Buildplate_Model.STL",
"bed_texture": "SeeMeCNC_Buildplate_texture.png",
- "default_materials": "SeeMeCNC PLA",
+ "default_materials": "SeeMeCNC PLA;SeeMeCNC ABS;SeeMeCNC PETG;SeeMeCNC PETG-CF;SeeMeCNC PA-CF;SeeMeCNC TPU",
"nozzle_diameter": "0.4;0.5;0.7;1.0",
"machine_tech": "FFF",
"family": "SeeMeCNC BOSSdelta 300",
@@ -12,4 +12,4 @@
"machine_unload_filament_time": "4",
"model_id": "SEEMECNC_BOSSDELTA_300",
"description": "SeeMeCNC configurations"
-}
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC BOSSdelta 500 0505.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC BOSSdelta 500 0505.json
index 9a08105772..3ce99048db 100644
--- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC BOSSdelta 500 0505.json
+++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC BOSSdelta 500 0505.json
@@ -3,7 +3,7 @@
"name": "SeeMeCNC BOSSdelta 500 0505",
"bed_model": "SeeMeCNC_Buildplate_Model_500.STL",
"bed_texture": "SeeMeCNC_Buildplate_texture.png",
- "default_materials": "SeeMeCNC PLA",
+ "default_materials": "SeeMeCNC PLA;SeeMeCNC ABS;SeeMeCNC PETG;SeeMeCNC PETG-CF;SeeMeCNC PA-CF;SeeMeCNC TPU",
"nozzle_diameter": "0.4;0.5;0.7;1.0",
"machine_tech": "FFF",
"family": "SeeMeCNC BOSSdelta 500 0505",
@@ -12,4 +12,4 @@
"machine_unload_filament_time": "4",
"model_id": "SEEMECNC_BOSSDELTA_500_0505",
"description": "SeeMeCNC configurations"
-}
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC BOSSdelta 500 0510.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC BOSSdelta 500 0510.json
index 5ae339af38..ca35a56707 100644
--- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC BOSSdelta 500 0510.json
+++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC BOSSdelta 500 0510.json
@@ -3,7 +3,7 @@
"name": "SeeMeCNC BOSSdelta 500 0510",
"bed_model": "SeeMeCNC_Buildplate_Model_500.STL",
"bed_texture": "SeeMeCNC_Buildplate_texture.png",
- "default_materials": "SeeMeCNC PLA",
+ "default_materials": "SeeMeCNC PLA;SeeMeCNC ABS;SeeMeCNC PETG;SeeMeCNC PETG-CF;SeeMeCNC PA-CF;SeeMeCNC TPU",
"nozzle_diameter": "0.4;0.5;0.7;1.0",
"machine_tech": "FFF",
"family": "SeeMeCNC BOSSdelta 500 0510",
@@ -12,4 +12,4 @@
"machine_unload_filament_time": "4",
"model_id": "SEEMECNC_BOSSDELTA_500_0510",
"description": "SeeMeCNC configurations"
-}
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC BOSSdelta 500 0521.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC BOSSdelta 500 0521.json
index 1243cc47bb..af3f7877c6 100644
--- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC BOSSdelta 500 0521.json
+++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC BOSSdelta 500 0521.json
@@ -3,7 +3,7 @@
"name": "SeeMeCNC BOSSdelta 500 0521",
"bed_model": "SeeMeCNC_Buildplate_Model_500.STL",
"bed_texture": "SeeMeCNC_Buildplate_texture.png",
- "default_materials": "SeeMeCNC PLA",
+ "default_materials": "SeeMeCNC PLA;SeeMeCNC ABS;SeeMeCNC PETG;SeeMeCNC PETG-CF;SeeMeCNC PA-CF;SeeMeCNC TPU",
"nozzle_diameter": "0.4;0.5;0.7;1.0",
"machine_tech": "FFF",
"family": "SeeMeCNC BOSSdelta 500 0521",
@@ -12,4 +12,4 @@
"machine_unload_filament_time": "4",
"model_id": "SEEMECNC_BOSSDELTA_500_0521",
"description": "SeeMeCNC configurations"
-}
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC RostockMAX v3.2.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC RostockMAX v3.2.json
index be7fde668d..23fe50cca9 100644
--- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC RostockMAX v3.2.json
+++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC RostockMAX v3.2.json
@@ -3,7 +3,7 @@
"name": "SeeMeCNC RostockMAX v3.2",
"bed_model": "SeeMeCNC_Buildplate_Model.STL",
"bed_texture": "SeeMeCNC_Buildplate_texture.png",
- "default_materials": "SeeMeCNC PLA",
+ "default_materials": "SeeMeCNC PLA;SeeMeCNC ABS;SeeMeCNC PETG;SeeMeCNC PETG-CF;SeeMeCNC PA-CF;SeeMeCNC TPU",
"nozzle_diameter": "0.4;0.5;0.7;1.0",
"machine_tech": "FFF",
"family": "SeeMeCNC RostockMAX v3.2",
@@ -12,4 +12,4 @@
"machine_unload_filament_time": "4",
"model_id": "SEEMECNC_ROSTOCKMAX_V32",
"description": "SeeMeCNC configurations"
-}
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC RostockMAX v4.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC RostockMAX v4.json
index f5bd01a6c4..d2670a84a4 100644
--- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC RostockMAX v4.json
+++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC RostockMAX v4.json
@@ -3,7 +3,7 @@
"name": "SeeMeCNC RostockMAX v4",
"bed_model": "SeeMeCNC_Buildplate_Model.STL",
"bed_texture": "SeeMeCNC_Buildplate_texture.png",
- "default_materials": "SeeMeCNC PLA",
+ "default_materials": "SeeMeCNC PLA;SeeMeCNC ABS;SeeMeCNC PETG;SeeMeCNC PETG-CF;SeeMeCNC PA-CF;SeeMeCNC TPU",
"nozzle_diameter": "0.4;0.5;0.7;1.0",
"machine_tech": "FFF",
"family": "SeeMeCNC RostockMAX v4",
@@ -12,4 +12,4 @@
"machine_unload_filament_time": "4",
"model_id": "SEEMECNC_ROSTOCKMAX_V4",
"description": "SeeMeCNC configurations"
-}
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC Artemis 0.4.json b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC Artemis 0.4.json
index 378dfb4156..de8748025e 100644
--- a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC Artemis 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC Artemis 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.16mm Fine @SeeMeCNC Artemis 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.16mm Fine @SeeMeCNC Artemis 0.4",
- "compatible_printers": [
- "SeeMeCNC Artemis 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.16",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.16mm Fine @SeeMeCNC Artemis 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.16mm Fine @SeeMeCNC Artemis 0.4",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.16",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4.json b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4.json
index 1ca1eb7ddf..8a0adf4dda 100644
--- a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.16",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.16",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4.json b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4.json
index 06da9f7edd..007ecb6e36 100644
--- a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.16",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.16",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4.json b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4.json
index 304f3ac56a..647576648d 100644
--- a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.16",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.16",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4.json b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4.json
index 44449b9c29..97b1e60abd 100644
--- a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.16",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.16",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4.json b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4.json
index 5f4d7c4391..a4a4c91b24 100644
--- a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.16",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.16",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC RostockMAX v4 0.4.json b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC RostockMAX v4 0.4.json
index 391f49e552..5a2e49b4b0 100644
--- a/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC RostockMAX v4 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.16mm Fine @SeeMeCNC RostockMAX v4 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.16",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.16",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json b/resources/profiles/SeeMeCNC/process/0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json
index c0f111db6e..a1e341d388 100644
--- a/resources/profiles/SeeMeCNC/process/0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.2",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.2",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC Artemis 0.5.json b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC Artemis 0.5.json
index a3f564d43c..cebe5d4e7e 100644
--- a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC Artemis 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC Artemis 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.20mm Fine @SeeMeCNC Artemis 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.20mm Fine @SeeMeCNC Artemis 0.5",
- "compatible_printers": [
- "SeeMeCNC Artemis 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.2",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.20mm Fine @SeeMeCNC Artemis 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.20mm Fine @SeeMeCNC Artemis 0.5",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.2",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5.json b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5.json
index b93716667e..cc5817a88f 100644
--- a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.2",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.2",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5.json b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5.json
index ea1e85ed85..022ba1156f 100644
--- a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.2",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.2",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5.json b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5.json
index 4083a4d82a..16dc367b03 100644
--- a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.2",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.2",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5.json b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5.json
index 89f80c7629..1bbd0ddf0a 100644
--- a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.2",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.2",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5.json b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5.json
index a4317bea61..a246897953 100644
--- a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.2",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.2",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC RostockMAX v4 0.5.json b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC RostockMAX v4 0.5.json
index 08468cb923..55ab536a16 100644
--- a/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC RostockMAX v4 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.20mm Fine @SeeMeCNC RostockMAX v4 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.2",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.2",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC Artemis 0.4.json b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC Artemis 0.4.json
index 031733d390..1613a3021d 100644
--- a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC Artemis 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC Artemis 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.20mm Standard @SeeMeCNC Artemis 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.20mm Standard @SeeMeCNC Artemis 0.4",
- "compatible_printers": [
- "SeeMeCNC Artemis 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.2",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.20mm Standard @SeeMeCNC Artemis 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.20mm Standard @SeeMeCNC Artemis 0.4",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.2",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4.json b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4.json
index 741776c8c7..d6c7a5c1b7 100644
--- a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.2",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.2",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4.json b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4.json
index 48c4ca98b3..284e728ad2 100644
--- a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.2",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.2",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4.json b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4.json
index cf6e7a5ad0..45ada67029 100644
--- a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.2",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.2",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4.json b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4.json
index 1c99ac7b4f..a721dad7a8 100644
--- a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.2",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.2",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4.json b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4.json
index 0eb2423048..cf2bbf62f6 100644
--- a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.2",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.2",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC RostockMAX v4 0.4.json b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC RostockMAX v4 0.4.json
index 3b829e46d6..07086a3302 100644
--- a/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC RostockMAX v4 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.20mm Standard @SeeMeCNC RostockMAX v4 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.2",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.2",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC Artemis 0.4.json b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC Artemis 0.4.json
index a1eeadf8c1..edf701fb24 100644
--- a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC Artemis 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC Artemis 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.24mm Draft @SeeMeCNC Artemis 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.24mm Draft @SeeMeCNC Artemis 0.4",
- "compatible_printers": [
- "SeeMeCNC Artemis 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.24",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.24mm Draft @SeeMeCNC Artemis 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.24mm Draft @SeeMeCNC Artemis 0.4",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.24",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4.json b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4.json
index a8b05dfa20..02bd322665 100644
--- a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.24",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.24",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json
index 7c571ed487..d45cc1cb70 100644
--- a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.24",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.24",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json
index 1f2fbdbecb..68a6b443f0 100644
--- a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.24",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.24",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json
index d476011b5e..256bf85870 100644
--- a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.24",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.24",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json
index d1b9e76880..a24a8f834c 100644
--- a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.24",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.24",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC RostockMAX v4 0.4.json b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC RostockMAX v4 0.4.json
index f47222828c..90223ee54a 100644
--- a/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC RostockMAX v4 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.24mm Draft @SeeMeCNC RostockMAX v4 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.24",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.24",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC Artemis 0.5.json b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC Artemis 0.5.json
index 3700a954c8..974c774c73 100644
--- a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC Artemis 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC Artemis 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.25mm Standard @SeeMeCNC Artemis 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.25mm Standard @SeeMeCNC Artemis 0.5",
- "compatible_printers": [
- "SeeMeCNC Artemis 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.25",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.25mm Standard @SeeMeCNC Artemis 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.25mm Standard @SeeMeCNC Artemis 0.5",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.25",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5.json b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5.json
index 3d1d4258dc..700f40f39f 100644
--- a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.25",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.25",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5.json b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5.json
index aa5189c4f5..dc513117e8 100644
--- a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.25",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.25",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5.json b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5.json
index ff1b0bbfd4..da90b00b62 100644
--- a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.25",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.25",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5.json b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5.json
index 36c391d977..b678e52425 100644
--- a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.25",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.25",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5.json b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5.json
index 9205dff278..4d6cd0a632 100644
--- a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.25",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.25",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC RostockMAX v4 0.5.json b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC RostockMAX v4 0.5.json
index 5e7a025d07..5ca4ade73d 100644
--- a/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC RostockMAX v4 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.25mm Standard @SeeMeCNC RostockMAX v4 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.25",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.25mm Standard @SeeMeCNC RostockMAX v4 0.5",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.25",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC Artemis 0.4.json b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC Artemis 0.4.json
index 66bff7d5df..2452a50033 100644
--- a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC Artemis 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC Artemis 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
- "compatible_printers": [
- "SeeMeCNC Artemis 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.28",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.28mm Extra Draft @SeeMeCNC Artemis 0.4",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.28",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4.json b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4.json
index 1e35b0eb8f..fdcb32ef96 100644
--- a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.28",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.28",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json
index 7c9ad2d811..d13478bf10 100644
--- a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.28",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.28",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json
index cd7b8b6ddf..e0f698662b 100644
--- a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.28",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.28",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json
index d5c4876849..e87cd6cf36 100644
--- a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.28",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.28",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4.json b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4.json
index 4155bb2e51..7c6ef2ad9d 100644
--- a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.28",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.28",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4.json b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4.json
index 7165fd06ee..b5eb93b0d9 100644
--- a/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4.json
+++ b/resources/profiles/SeeMeCNC/process/0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 0.4 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.2",
- "layer_height": "0.28",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1500",
- "inner_wall_acceleration": "1500"
-}
+ "type": "process",
+ "name": "0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4",
+ "inherits": "SeeMeCNC process base 0.4mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.28",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC Artemis 0.7.json b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC Artemis 0.7.json
index 49667ba705..b7cc7e542e 100644
--- a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC Artemis 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC Artemis 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.28mm Fine @SeeMeCNC Artemis 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.28mm Fine @SeeMeCNC Artemis 0.7",
- "compatible_printers": [
- "SeeMeCNC Artemis 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.28",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.28mm Fine @SeeMeCNC Artemis 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.28mm Fine @SeeMeCNC Artemis 0.7",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.28",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7.json b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7.json
index a34c19f2cc..6331f1a3dd 100644
--- a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.28",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.28",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7.json b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7.json
index 841444a1f1..44acce1873 100644
--- a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.28",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.28",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7.json b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7.json
index 33bc3e82d4..ecdbc6d35d 100644
--- a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.28",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.28",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7.json b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7.json
index e90d3a88d6..5399852d7f 100644
--- a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.28",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.28",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7.json b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7.json
index 7520f43813..6f08c2386c 100644
--- a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.28",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.28",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC RostockMAX v4 0.7.json b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC RostockMAX v4 0.7.json
index bcc2c2e2c2..1e3953efa3 100644
--- a/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC RostockMAX v4 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.28mm Fine @SeeMeCNC RostockMAX v4 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.28",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.28mm Fine @SeeMeCNC RostockMAX v4 0.7",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.28",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC Artemis 0.5.json b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC Artemis 0.5.json
index 522dd065d8..932b919d8e 100644
--- a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC Artemis 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC Artemis 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.30mm Draft @SeeMeCNC Artemis 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.30mm Draft @SeeMeCNC Artemis 0.5",
- "compatible_printers": [
- "SeeMeCNC Artemis 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.3",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.30mm Draft @SeeMeCNC Artemis 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.30mm Draft @SeeMeCNC Artemis 0.5",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.3",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5.json b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5.json
index 256c30d2b9..f1cbccd2e4 100644
--- a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.3",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.3",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json
index 9174c0dde7..f5d06eccc7 100644
--- a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.3",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.3",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json
index 543e58af03..fbc519cbca 100644
--- a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.3",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.3",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json
index dd03ab70bb..80361ffac9 100644
--- a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.3",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.3",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5.json b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5.json
index 7ffedffa57..d47210394d 100644
--- a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.3",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.3",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC RostockMAX v4 0.5.json b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC RostockMAX v4 0.5.json
index a06df312b0..2a8662dd53 100644
--- a/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC RostockMAX v4 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.30mm Draft @SeeMeCNC RostockMAX v4 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.3",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.30mm Draft @SeeMeCNC RostockMAX v4 0.5",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.3",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC Artemis 0.7.json b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC Artemis 0.7.json
index 2c93f40bce..98ccbf4a01 100644
--- a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC Artemis 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC Artemis 0.7.json
@@ -1,34 +1,20 @@
{
- "type": "process",
- "name": "0.30mm TPU Solid @SeeMeCNC Artemis 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.30mm TPU Solid @SeeMeCNC Artemis 0.7",
- "compatible_printers": [
- "SeeMeCNC Artemis 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "bottom_surface_pattern": "concentric",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.3",
- "precise_z_height": "0",
- "skirt_distance": "1",
- "skirt_loops": "2",
- "spiral_mode": "0",
- "top_shell_layers": "2",
- "top_surface_pattern": "concentric",
- "line_width": "0.9",
- "outer_wall_line_width": "0.9",
- "top_surface_line_width": "0.9",
- "internal_solid_infill_line_width": "0.9",
- "sparse_infill_line_width": "0.9",
- "initial_layer_line_width": "0.9",
- "support_line_width": "0.9",
- "skeleton_infill_line_width": "0.9",
- "skin_infill_line_width": "0.9",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.30mm TPU Solid @SeeMeCNC Artemis 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.30mm TPU Solid @SeeMeCNC Artemis 0.7",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.3",
+ "precise_z_height": "0",
+ "skirt_distance": "1",
+ "skirt_loops": "2",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7.json b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7.json
index 922b8d4a9d..c21af60e6e 100644
--- a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7.json
@@ -1,34 +1,20 @@
{
- "type": "process",
- "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "bottom_surface_pattern": "concentric",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.3",
- "precise_z_height": "0",
- "skirt_distance": "1",
- "skirt_loops": "2",
- "spiral_mode": "0",
- "top_shell_layers": "2",
- "top_surface_pattern": "concentric",
- "line_width": "0.9",
- "outer_wall_line_width": "0.9",
- "top_surface_line_width": "0.9",
- "internal_solid_infill_line_width": "0.9",
- "sparse_infill_line_width": "0.9",
- "initial_layer_line_width": "0.9",
- "support_line_width": "0.9",
- "skeleton_infill_line_width": "0.9",
- "skin_infill_line_width": "0.9",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.3",
+ "precise_z_height": "0",
+ "skirt_distance": "1",
+ "skirt_loops": "2",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7.json b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7.json
index 046aab13ee..c63b989cf0 100644
--- a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7.json
@@ -1,34 +1,20 @@
{
- "type": "process",
- "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "bottom_surface_pattern": "concentric",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.3",
- "precise_z_height": "0",
- "skirt_distance": "1",
- "skirt_loops": "2",
- "spiral_mode": "0",
- "top_shell_layers": "2",
- "top_surface_pattern": "concentric",
- "line_width": "0.9",
- "outer_wall_line_width": "0.9",
- "top_surface_line_width": "0.9",
- "internal_solid_infill_line_width": "0.9",
- "sparse_infill_line_width": "0.9",
- "initial_layer_line_width": "0.9",
- "support_line_width": "0.9",
- "skeleton_infill_line_width": "0.9",
- "skin_infill_line_width": "0.9",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.3",
+ "precise_z_height": "0",
+ "skirt_distance": "1",
+ "skirt_loops": "2",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7.json b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7.json
index 8e0b8cdc36..2dd30170b4 100644
--- a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7.json
@@ -1,34 +1,20 @@
{
- "type": "process",
- "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "bottom_surface_pattern": "concentric",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.3",
- "precise_z_height": "0",
- "skirt_distance": "1",
- "skirt_loops": "2",
- "spiral_mode": "0",
- "top_shell_layers": "2",
- "top_surface_pattern": "concentric",
- "line_width": "0.9",
- "outer_wall_line_width": "0.9",
- "top_surface_line_width": "0.9",
- "internal_solid_infill_line_width": "0.9",
- "sparse_infill_line_width": "0.9",
- "initial_layer_line_width": "0.9",
- "support_line_width": "0.9",
- "skeleton_infill_line_width": "0.9",
- "skin_infill_line_width": "0.9",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.3",
+ "precise_z_height": "0",
+ "skirt_distance": "1",
+ "skirt_loops": "2",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7.json b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7.json
index 68729627ee..f95f7f9594 100644
--- a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7.json
@@ -1,34 +1,20 @@
{
- "type": "process",
- "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "bottom_surface_pattern": "concentric",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.3",
- "precise_z_height": "0",
- "skirt_distance": "1",
- "skirt_loops": "2",
- "spiral_mode": "0",
- "top_shell_layers": "2",
- "top_surface_pattern": "concentric",
- "line_width": "0.9",
- "outer_wall_line_width": "0.9",
- "top_surface_line_width": "0.9",
- "internal_solid_infill_line_width": "0.9",
- "sparse_infill_line_width": "0.9",
- "initial_layer_line_width": "0.9",
- "support_line_width": "0.9",
- "skeleton_infill_line_width": "0.9",
- "skin_infill_line_width": "0.9",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.3",
+ "precise_z_height": "0",
+ "skirt_distance": "1",
+ "skirt_loops": "2",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7.json b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7.json
index 8d4d608981..d9eef5972f 100644
--- a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7.json
@@ -1,34 +1,20 @@
{
- "type": "process",
- "name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "bottom_surface_pattern": "concentric",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.3",
- "precise_z_height": "0",
- "skirt_distance": "1",
- "skirt_loops": "2",
- "spiral_mode": "0",
- "top_shell_layers": "2",
- "top_surface_pattern": "concentric",
- "line_width": "0.9",
- "outer_wall_line_width": "0.9",
- "top_surface_line_width": "0.9",
- "internal_solid_infill_line_width": "0.9",
- "sparse_infill_line_width": "0.9",
- "initial_layer_line_width": "0.9",
- "support_line_width": "0.9",
- "skeleton_infill_line_width": "0.9",
- "skin_infill_line_width": "0.9",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.3",
+ "precise_z_height": "0",
+ "skirt_distance": "1",
+ "skirt_loops": "2",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7.json b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7.json
index 0c7063bd9b..ad014def9d 100644
--- a/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7.json
@@ -1,34 +1,20 @@
{
- "type": "process",
- "name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "bottom_surface_pattern": "concentric",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.3",
- "precise_z_height": "0",
- "skirt_distance": "1",
- "skirt_loops": "2",
- "spiral_mode": "0",
- "top_shell_layers": "2",
- "top_surface_pattern": "concentric",
- "line_width": "0.9",
- "outer_wall_line_width": "0.9",
- "top_surface_line_width": "0.9",
- "internal_solid_infill_line_width": "0.9",
- "sparse_infill_line_width": "0.9",
- "initial_layer_line_width": "0.9",
- "support_line_width": "0.9",
- "skeleton_infill_line_width": "0.9",
- "skin_infill_line_width": "0.9",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.3",
+ "precise_z_height": "0",
+ "skirt_distance": "1",
+ "skirt_loops": "2",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC Artemis 0.5.json b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC Artemis 0.5.json
index 48d7fb0b10..2329b37fff 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC Artemis 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC Artemis 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
- "compatible_printers": [
- "SeeMeCNC Artemis 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm Extra Draft @SeeMeCNC Artemis 0.5",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5.json b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5.json
index 3c5b9ba01f..cc83ff4f9b 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json
index da3b820549..97b6aa9f0c 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json
index eded24f5cb..e1335a88bd 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json
index 1cf97fd54c..bdf7883b13 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5.json b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5.json
index 316a9cfc36..b40b085824 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5.json b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5.json
index 1dc9db45b2..7f8fbb03ee 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 0.5 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.25",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "1200",
- "inner_wall_acceleration": "1200"
-}
+ "type": "process",
+ "name": "0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5",
+ "inherits": "SeeMeCNC process base 0.5mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 0.5 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.25",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC Artemis 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC Artemis 0.7.json
index cddbf4453c..0dddaaa065 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC Artemis 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC Artemis 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.35mm Standard @SeeMeCNC Artemis 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm Standard @SeeMeCNC Artemis 0.7",
- "compatible_printers": [
- "SeeMeCNC Artemis 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.35mm Standard @SeeMeCNC Artemis 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm Standard @SeeMeCNC Artemis 0.7",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7.json
index 90971ce758..b363111579 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7.json
index 53155e298f..afd8492fe1 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7.json
index 07594cd92d..e0d45d513c 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7.json
index 8de92d8888..bd0ec9ff69 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7.json
index eae4d527aa..e9af24ca7b 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC RostockMAX v4 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC RostockMAX v4 0.7.json
index bc8d5c6c4c..df0f0ce820 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC RostockMAX v4 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm Standard @SeeMeCNC RostockMAX v4 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.35mm Standard @SeeMeCNC RostockMAX v4 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm Standard @SeeMeCNC RostockMAX v4 0.7",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.35mm Standard @SeeMeCNC RostockMAX v4 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm Standard @SeeMeCNC RostockMAX v4 0.7",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC Artemis 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC Artemis 0.7.json
index cf28c40476..e727133773 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC Artemis 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC Artemis 0.7.json
@@ -1,37 +1,20 @@
{
- "type": "process",
- "name": "0.35mm TPU Vase @SeeMeCNC Artemis 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm TPU Vase @SeeMeCNC Artemis 0.7",
- "compatible_printers": [
- "SeeMeCNC Artemis 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "bottom_shell_layers": "0",
- "bottom_surface_pattern": "concentric",
- "counterbore_hole_bridging": "none",
- "ensure_vertical_shell_thickness": "ensure_moderate",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "1",
- "skirt_loops": "2",
- "spiral_mode": "1",
- "top_shell_layers": "0",
- "top_surface_pattern": "concentric",
- "wall_loops": "1",
- "line_width": "0.9",
- "outer_wall_line_width": "0.9",
- "top_surface_line_width": "0.9",
- "internal_solid_infill_line_width": "0.9",
- "sparse_infill_line_width": "0.9",
- "initial_layer_line_width": "0.9",
- "support_line_width": "0.9",
- "skeleton_infill_line_width": "0.9",
- "skin_infill_line_width": "0.9",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.35mm TPU Vase @SeeMeCNC Artemis 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm TPU Vase @SeeMeCNC Artemis 0.7",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "1",
+ "skirt_loops": "2",
+ "spiral_mode": "1"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7.json
index 68ff32cb8b..cd4396d4ee 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7.json
@@ -1,37 +1,20 @@
{
- "type": "process",
- "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "bottom_shell_layers": "0",
- "bottom_surface_pattern": "concentric",
- "counterbore_hole_bridging": "none",
- "ensure_vertical_shell_thickness": "ensure_moderate",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "1",
- "skirt_loops": "2",
- "spiral_mode": "1",
- "top_shell_layers": "0",
- "top_surface_pattern": "concentric",
- "wall_loops": "1",
- "line_width": "0.9",
- "outer_wall_line_width": "0.9",
- "top_surface_line_width": "0.9",
- "internal_solid_infill_line_width": "0.9",
- "sparse_infill_line_width": "0.9",
- "initial_layer_line_width": "0.9",
- "support_line_width": "0.9",
- "skeleton_infill_line_width": "0.9",
- "skin_infill_line_width": "0.9",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "1",
+ "skirt_loops": "2",
+ "spiral_mode": "1"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7.json
index dd2dcf9a5c..d9ea176f63 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7.json
@@ -1,37 +1,20 @@
{
- "type": "process",
- "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "bottom_shell_layers": "0",
- "bottom_surface_pattern": "concentric",
- "counterbore_hole_bridging": "none",
- "ensure_vertical_shell_thickness": "ensure_moderate",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "1",
- "skirt_loops": "2",
- "spiral_mode": "1",
- "top_shell_layers": "0",
- "top_surface_pattern": "concentric",
- "wall_loops": "1",
- "line_width": "0.9",
- "outer_wall_line_width": "0.9",
- "top_surface_line_width": "0.9",
- "internal_solid_infill_line_width": "0.9",
- "sparse_infill_line_width": "0.9",
- "initial_layer_line_width": "0.9",
- "support_line_width": "0.9",
- "skeleton_infill_line_width": "0.9",
- "skin_infill_line_width": "0.9",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "1",
+ "skirt_loops": "2",
+ "spiral_mode": "1"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7.json
index 1b8b37262f..7fdd139e6c 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7.json
@@ -1,37 +1,20 @@
{
- "type": "process",
- "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "bottom_shell_layers": "0",
- "bottom_surface_pattern": "concentric",
- "counterbore_hole_bridging": "none",
- "ensure_vertical_shell_thickness": "ensure_moderate",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "1",
- "skirt_loops": "2",
- "spiral_mode": "1",
- "top_shell_layers": "0",
- "top_surface_pattern": "concentric",
- "wall_loops": "1",
- "line_width": "0.9",
- "outer_wall_line_width": "0.9",
- "top_surface_line_width": "0.9",
- "internal_solid_infill_line_width": "0.9",
- "sparse_infill_line_width": "0.9",
- "initial_layer_line_width": "0.9",
- "support_line_width": "0.9",
- "skeleton_infill_line_width": "0.9",
- "skin_infill_line_width": "0.9",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "1",
+ "skirt_loops": "2",
+ "spiral_mode": "1"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7.json
index 63645975c6..6b3dfc24fb 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7.json
@@ -1,37 +1,20 @@
{
- "type": "process",
- "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "bottom_shell_layers": "0",
- "bottom_surface_pattern": "concentric",
- "counterbore_hole_bridging": "none",
- "ensure_vertical_shell_thickness": "ensure_moderate",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "1",
- "skirt_loops": "2",
- "spiral_mode": "1",
- "top_shell_layers": "0",
- "top_surface_pattern": "concentric",
- "wall_loops": "1",
- "line_width": "0.9",
- "outer_wall_line_width": "0.9",
- "top_surface_line_width": "0.9",
- "internal_solid_infill_line_width": "0.9",
- "sparse_infill_line_width": "0.9",
- "initial_layer_line_width": "0.9",
- "support_line_width": "0.9",
- "skeleton_infill_line_width": "0.9",
- "skin_infill_line_width": "0.9",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "1",
+ "skirt_loops": "2",
+ "spiral_mode": "1"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7.json
index 423852eda4..020dfbf991 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7.json
@@ -1,37 +1,20 @@
{
- "type": "process",
- "name": "0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "bottom_shell_layers": "0",
- "bottom_surface_pattern": "concentric",
- "counterbore_hole_bridging": "none",
- "ensure_vertical_shell_thickness": "ensure_moderate",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "1",
- "skirt_loops": "2",
- "spiral_mode": "1",
- "top_shell_layers": "0",
- "top_surface_pattern": "concentric",
- "wall_loops": "1",
- "line_width": "0.9",
- "outer_wall_line_width": "0.9",
- "top_surface_line_width": "0.9",
- "internal_solid_infill_line_width": "0.9",
- "sparse_infill_line_width": "0.9",
- "initial_layer_line_width": "0.9",
- "support_line_width": "0.9",
- "skeleton_infill_line_width": "0.9",
- "skin_infill_line_width": "0.9",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "1",
+ "skirt_loops": "2",
+ "spiral_mode": "1"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7.json b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7.json
index 6002585396..ec867e4dc4 100644
--- a/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7.json
@@ -1,37 +1,20 @@
{
- "type": "process",
- "name": "0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "bottom_shell_layers": "0",
- "bottom_surface_pattern": "concentric",
- "counterbore_hole_bridging": "none",
- "ensure_vertical_shell_thickness": "ensure_moderate",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.35",
- "precise_z_height": "0",
- "skirt_distance": "1",
- "skirt_loops": "2",
- "spiral_mode": "1",
- "top_shell_layers": "0",
- "top_surface_pattern": "concentric",
- "wall_loops": "1",
- "line_width": "0.9",
- "outer_wall_line_width": "0.9",
- "top_surface_line_width": "0.9",
- "internal_solid_infill_line_width": "0.9",
- "sparse_infill_line_width": "0.9",
- "initial_layer_line_width": "0.9",
- "support_line_width": "0.9",
- "skeleton_infill_line_width": "0.9",
- "skin_infill_line_width": "0.9",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.35",
+ "precise_z_height": "0",
+ "skirt_distance": "1",
+ "skirt_loops": "2",
+ "spiral_mode": "1"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC Artemis 1.0.json b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC Artemis 1.0.json
index f561a3114c..8ef02f33f2 100644
--- a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC Artemis 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC Artemis 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.40mm Fine @SeeMeCNC Artemis 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.40mm Fine @SeeMeCNC Artemis 1.0",
- "compatible_printers": [
- "SeeMeCNC Artemis 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.4",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.40mm Fine @SeeMeCNC Artemis 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.40mm Fine @SeeMeCNC Artemis 1.0",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.4",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0.json b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0.json
index 6807856889..226ee6bcfe 100644
--- a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.4",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.4",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0.json b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0.json
index 6ac2d1f367..423e0e1124 100644
--- a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.4",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.4",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0.json b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0.json
index 7823ab303c..5a64fee63b 100644
--- a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.4",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.4",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0.json b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0.json
index fd18ed0344..42ce2123df 100644
--- a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.4",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.4",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0.json b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0.json
index a238435f95..fc1c98ce47 100644
--- a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.4",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.4",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC RostockMAX v4 1.0.json b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC RostockMAX v4 1.0.json
index 8193ebb0cc..8dbe2971c2 100644
--- a/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC RostockMAX v4 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.40mm Fine @SeeMeCNC RostockMAX v4 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.4",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.40mm Fine @SeeMeCNC RostockMAX v4 1.0",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.4",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC Artemis 0.7.json b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC Artemis 0.7.json
index 5cf5486a13..6bef038cd2 100644
--- a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC Artemis 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC Artemis 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.42mm Draft @SeeMeCNC Artemis 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.42mm Draft @SeeMeCNC Artemis 0.7",
- "compatible_printers": [
- "SeeMeCNC Artemis 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.42",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.42mm Draft @SeeMeCNC Artemis 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.42mm Draft @SeeMeCNC Artemis 0.7",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.42",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7.json b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7.json
index 553ea160b0..841dee0fe4 100644
--- a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.42",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.42",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json
index e815f68cd3..de5a47c377 100644
--- a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.42",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.42",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json
index 66575b6c5f..7d40171755 100644
--- a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.42",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.42",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json
index e2c4f31abe..3bd2d5be0d 100644
--- a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.42",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.42",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7.json b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7.json
index 36bf4e41d2..1faf82486d 100644
--- a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.42",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.42",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC RostockMAX v4 0.7.json b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC RostockMAX v4 0.7.json
index ffc0197005..c4b42ee3bc 100644
--- a/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC RostockMAX v4 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.42mm Draft @SeeMeCNC RostockMAX v4 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.42mm Draft @SeeMeCNC RostockMAX v4 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.42mm Draft @SeeMeCNC RostockMAX v4 0.7",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.42",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.42mm Draft @SeeMeCNC RostockMAX v4 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.42mm Draft @SeeMeCNC RostockMAX v4 0.7",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.42",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC Artemis 0.7.json b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC Artemis 0.7.json
index 4ab95ebeb1..dd1a9fbc26 100644
--- a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC Artemis 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC Artemis 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.49mm Extra Draft @SeeMeCNC Artemis 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.49mm Extra Draft @SeeMeCNC Artemis 0.7",
- "compatible_printers": [
- "SeeMeCNC Artemis 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.49",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.49mm Extra Draft @SeeMeCNC Artemis 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.49mm Extra Draft @SeeMeCNC Artemis 0.7",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.49",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7.json b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7.json
index b67733960d..edcd6380de 100644
--- a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.49",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.49",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json
index 4c694c42f8..2bdc765648 100644
--- a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.49",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.49",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json
index b444945dbd..5348316682 100644
--- a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.49",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.49",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json
index 2a4f72f3eb..6ff11425c5 100644
--- a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.49",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.49",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7.json b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7.json
index a77c6544e0..eb44f1ed9e 100644
--- a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.49",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.49",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7.json b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7.json
index eebbdcb867..e60b7baa28 100644
--- a/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7.json
+++ b/resources/profiles/SeeMeCNC/process/0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 0.7 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.35",
- "layer_height": "0.49",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "800",
- "inner_wall_acceleration": "800"
-}
+ "type": "process",
+ "name": "0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7",
+ "inherits": "SeeMeCNC process base 0.7mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 0.7 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.35",
+ "layer_height": "0.49",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC Artemis 1.0.json b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC Artemis 1.0.json
index 1b8877983c..ba1123d787 100644
--- a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC Artemis 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC Artemis 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.50mm Standard @SeeMeCNC Artemis 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.50mm Standard @SeeMeCNC Artemis 1.0",
- "compatible_printers": [
- "SeeMeCNC Artemis 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.5",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.50mm Standard @SeeMeCNC Artemis 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.50mm Standard @SeeMeCNC Artemis 1.0",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.5",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0.json b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0.json
index dcc4b6f80f..af89668d24 100644
--- a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.5",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.5",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0.json b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0.json
index c1395ff209..ef42e362e0 100644
--- a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.5",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.5",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0.json b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0.json
index f1d7f378cd..fc03d98bba 100644
--- a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.5",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.5",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0.json b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0.json
index fbc9d07d34..4d6805d40b 100644
--- a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.5",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.5",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0.json b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0.json
index 0fe9a4b8cc..3fa8dea956 100644
--- a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.5",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.5",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC RostockMAX v4 1.0.json b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC RostockMAX v4 1.0.json
index ac12c9bb5c..3e91f3ab03 100644
--- a/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC RostockMAX v4 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.50mm Standard @SeeMeCNC RostockMAX v4 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.50mm Standard @SeeMeCNC RostockMAX v4 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.50mm Standard @SeeMeCNC RostockMAX v4 1.0",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.5",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.50mm Standard @SeeMeCNC RostockMAX v4 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.50mm Standard @SeeMeCNC RostockMAX v4 1.0",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.5",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC Artemis 1.0.json b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC Artemis 1.0.json
index cac43f4d9f..5ef5f5ea2a 100644
--- a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC Artemis 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC Artemis 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.60mm Draft @SeeMeCNC Artemis 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.60mm Draft @SeeMeCNC Artemis 1.0",
- "compatible_printers": [
- "SeeMeCNC Artemis 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.6",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.60mm Draft @SeeMeCNC Artemis 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.60mm Draft @SeeMeCNC Artemis 1.0",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.6",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0.json b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0.json
index 86119f0cab..186ada26a2 100644
--- a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.6",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.6",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json
index 81da080533..64f4b6e047 100644
--- a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.6",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.6",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json
index d34c5fb9dc..06653b5261 100644
--- a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.6",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.6",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json
index 97b5bf671d..8686c0fc73 100644
--- a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.6",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.6",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0.json b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0.json
index 0cd62fecac..7a9c763406 100644
--- a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.6",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.6",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC RostockMAX v4 1.0.json b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC RostockMAX v4 1.0.json
index b819217d25..8d7e053323 100644
--- a/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC RostockMAX v4 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.60mm Draft @SeeMeCNC RostockMAX v4 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.60mm Draft @SeeMeCNC RostockMAX v4 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.60mm Draft @SeeMeCNC RostockMAX v4 1.0",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.6",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.60mm Draft @SeeMeCNC RostockMAX v4 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.60mm Draft @SeeMeCNC RostockMAX v4 1.0",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.6",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC Artemis 1.0.json b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC Artemis 1.0.json
index f8c8e83126..a5de6fa078 100644
--- a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC Artemis 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC Artemis 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.70mm Extra Draft @SeeMeCNC Artemis 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.70mm Extra Draft @SeeMeCNC Artemis 1.0",
- "compatible_printers": [
- "SeeMeCNC Artemis 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.7",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.70mm Extra Draft @SeeMeCNC Artemis 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.70mm Extra Draft @SeeMeCNC Artemis 1.0",
+ "compatible_printers": [
+ "SeeMeCNC Artemis 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.7",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0.json b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0.json
index 3e133a208d..25f27fb523 100644
--- a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 300 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.7",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 300 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.7",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json
index eed73783f6..6ad4cf85b2 100644
--- a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0505 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.7",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0505 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.7",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json
index 4414b3557c..41d258eb02 100644
--- a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0510 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.7",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0510 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.7",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json
index 7208968058..940368fac1 100644
--- a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
- "compatible_printers": [
- "SeeMeCNC BOSSdelta 500 0521 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.7",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0",
+ "compatible_printers": [
+ "SeeMeCNC BOSSdelta 500 0521 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.7",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0.json b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0.json
index 9ddeacd0a8..9684808285 100644
--- a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v3.2 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.7",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v3.2 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.7",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0.json b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0.json
index c7f8388a1b..b141135b20 100644
--- a/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0.json
+++ b/resources/profiles/SeeMeCNC/process/0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0.json
@@ -1,22 +1,20 @@
{
- "type": "process",
- "name": "0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0",
- "inherits": "SeeMeCNC process base",
- "from": "System",
- "instantiation": "true",
- "print_settings_id": "0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0",
- "compatible_printers": [
- "SeeMeCNC RostockMAX v4 1.0 nozzle"
- ],
- "compatible_printers_condition": "",
- "alternate_extra_wall": "0",
- "counterbore_hole_bridging": "none",
- "initial_layer_print_height": "0.3",
- "layer_height": "0.7",
- "precise_z_height": "0",
- "skirt_distance": "2",
- "skirt_loops": "0",
- "spiral_mode": "0",
- "outer_wall_acceleration": "500",
- "inner_wall_acceleration": "500"
-}
+ "type": "process",
+ "name": "0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0",
+ "inherits": "SeeMeCNC process base 1.0mm",
+ "from": "System",
+ "instantiation": "true",
+ "print_settings_id": "0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0",
+ "compatible_printers": [
+ "SeeMeCNC RostockMAX v4 1.0 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "alternate_extra_wall": "0",
+ "counterbore_hole_bridging": "none",
+ "initial_layer_print_height": "0.3",
+ "layer_height": "0.7",
+ "precise_z_height": "0",
+ "skirt_distance": "2",
+ "skirt_loops": "0",
+ "spiral_mode": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/SeeMeCNC_process_base_0.4mm.json b/resources/profiles/SeeMeCNC/process/SeeMeCNC_process_base_0.4mm.json
new file mode 100644
index 0000000000..b9c0b84e50
--- /dev/null
+++ b/resources/profiles/SeeMeCNC/process/SeeMeCNC_process_base_0.4mm.json
@@ -0,0 +1,353 @@
+{
+ "type": "process",
+ "name": "SeeMeCNC process base 0.4mm",
+ "from": "system",
+ "instantiation": "false",
+ "accel_to_decel_enable": "0",
+ "accel_to_decel_factor": "50%",
+ "align_infill_direction_to_model": "0",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_density": "100%",
+ "bridge_acceleration": "30%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.95",
+ "bridge_no_support": "0",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_use_efc_outline": "0",
+ "brim_width": "5",
+ "calib_flowrate_topinfill_special_order": "0",
+ "default_acceleration": "1200",
+ "default_jerk": "7",
+ "default_junction_deviation": "0",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0",
+ "elefant_foot_compensation_layers": "1",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enable_tower_interface_cooldown_during_tower": "0",
+ "enable_tower_interface_features": "0",
+ "enable_wrapping_detection": "0",
+ "enforce_support_layers": "0",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extra_solid_infills": "",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "fill_multiline": "1",
+ "filter_out_gap_fill": "0",
+ "first_layer_flow_ratio": "1",
+ "flush_into_infill": "1",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "disabled_fuzzy",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_mode": "displacement",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.3",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.2",
+ "gap_fill_flow_ratio": "1",
+ "gap_fill_target": "nowhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "0",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_lock_depth": "1",
+ "infill_overhang_angle": "60",
+ "infill_shift_step": "0.4",
+ "infill_wall_overlap": "25%",
+ "initial_layer_acceleration": "400",
+ "initial_layer_infill_speed": "40",
+ "initial_layer_jerk": "5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "800",
+ "inner_wall_flow_ratio": "1",
+ "inner_wall_jerk": "5",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_flow_ratio": "1",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "0",
+ "ironing_angle_fixed": "0",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "rectilinear",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lateral_lattice_angle_1": "-45",
+ "lateral_lattice_angle_2": "45",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "50",
+ "max_travel_detour_distance": "10000",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "4",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "0",
+ "ooze_prevention": "0",
+ "outer_wall_flow_ratio": "1",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "25",
+ "overhang_3_4_speed": "15",
+ "overhang_4_4_speed": "10",
+ "overhang_flow_ratio": "1",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "post_process": [],
+ "precise_outer_wall": "1",
+ "preheat_steps": "1",
+ "preheat_time": "30",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enable_framework": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_skip_points": "0",
+ "prime_tower_width": "30",
+ "prime_volume": "150",
+ "print_extruder_id": [
+ "1"
+ ],
+ "print_extruder_variant": [
+ "Bowden Standard"
+ ],
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.012",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "35%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "set_other_flow_ratios": "0",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skeleton_infill_density": "25%",
+ "skeleton_infill_line_width": "100%",
+ "skin_infill_density": "25%",
+ "skin_infill_depth": "2",
+ "skin_infill_line_width": "100%",
+ "skirt_height": "1",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.049",
+ "slicing_mode": "regular",
+ "slow_down_layers": "4",
+ "slowdown_for_curled_perimeters": "1",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "solid_infill_rotate_template": "",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_flow_ratio": "1",
+ "sparse_infill_pattern": "gyroid",
+ "sparse_infill_rotate_template": "",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "2.5",
+ "support_bottom_interface_spacing": "0.5",
+ "support_bottom_z_distance": "0.2",
+ "support_critical_regions_only": "1",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_flow_ratio": "1",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_flow_ratio": "1",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.5",
+ "support_interface_top_layers": "2",
+ "support_ironing": "0",
+ "support_ironing_flow": "10%",
+ "support_ironing_pattern": "rectilinear",
+ "support_ironing_spacing": "0.1",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.35",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_style": "default",
+ "support_threshold_angle": "38",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.2",
+ "support_type": "tree(auto)",
+ "symmetric_infill_y_axis": "0",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "25%",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_density": "100%",
+ "top_surface_jerk": "5",
+ "travel_acceleration": "1500",
+ "travel_speed_z": "0",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "5",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "2",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "arachne",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "1",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "30",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_extra_rib_length": "5",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_fillet_wall": "1",
+ "wipe_tower_max_purge_speed": "60",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rib_width": "3",
+ "wipe_tower_rotation_angle": "0",
+ "wipe_tower_wall_type": "rib",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "top_surface_acceleration": "500",
+ "travel_jerk": "10",
+ "initial_layer_speed": "30",
+ "outer_wall_acceleration": "800",
+ "outer_wall_line_width": "100%",
+ "line_width": "100%",
+ "initial_layer_line_width": "125%",
+ "inner_wall_line_width": "100%",
+ "top_surface_line_width": "105%",
+ "sparse_infill_line_width": "125%",
+ "internal_solid_infill_line_width": "105%",
+ "support_line_width": "125%",
+ "outer_wall_speed": "60",
+ "inner_wall_speed": "60",
+ "sparse_infill_speed": "80",
+ "internal_solid_infill_speed": "80",
+ "gap_infill_speed": "50",
+ "support_speed": "80",
+ "support_interface_speed": "60",
+ "top_surface_speed": "50",
+ "small_perimeter_speed": "40%",
+ "small_perimeter_threshold": "0",
+ "outer_wall_jerk": "5",
+ "xy_hole_compensation": "0",
+ "description": "SeeMeCNC configurations",
+ "top_surface_flow_ratio": "0.95",
+ "travel_speed": "150",
+ "support_wall_loops": "1",
+ "wall_loops": "3",
+ "sparse_infill_density": "20%",
+ "top_surface_pattern": "monotonicline",
+ "bottom_shell_layers": "4",
+ "top_shell_layers": "4",
+ "bottom_surface_pattern": "monotonicline",
+ "detect_thin_wall": "1",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "bridge_speed": "30",
+ "enable_arc_fitting": "0",
+ "precise_z_height": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/SeeMeCNC_process_base_0.5mm.json b/resources/profiles/SeeMeCNC/process/SeeMeCNC_process_base_0.5mm.json
new file mode 100644
index 0000000000..9733a42134
--- /dev/null
+++ b/resources/profiles/SeeMeCNC/process/SeeMeCNC_process_base_0.5mm.json
@@ -0,0 +1,353 @@
+{
+ "type": "process",
+ "name": "SeeMeCNC process base 0.5mm",
+ "from": "system",
+ "instantiation": "false",
+ "accel_to_decel_enable": "0",
+ "accel_to_decel_factor": "50%",
+ "align_infill_direction_to_model": "0",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_density": "100%",
+ "bridge_acceleration": "30%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.95",
+ "bridge_no_support": "0",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_use_efc_outline": "0",
+ "brim_width": "5",
+ "calib_flowrate_topinfill_special_order": "0",
+ "default_acceleration": "1200",
+ "default_jerk": "7",
+ "default_junction_deviation": "0",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0",
+ "elefant_foot_compensation_layers": "1",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enable_tower_interface_cooldown_during_tower": "0",
+ "enable_tower_interface_features": "0",
+ "enable_wrapping_detection": "0",
+ "enforce_support_layers": "0",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extra_solid_infills": "",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "fill_multiline": "1",
+ "filter_out_gap_fill": "0",
+ "first_layer_flow_ratio": "1",
+ "flush_into_infill": "1",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "disabled_fuzzy",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_mode": "displacement",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.3",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.2",
+ "gap_fill_flow_ratio": "1",
+ "gap_fill_target": "nowhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "0",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "9",
+ "infill_lock_depth": "1",
+ "infill_overhang_angle": "60",
+ "infill_shift_step": "0.4",
+ "infill_wall_overlap": "25%",
+ "initial_layer_acceleration": "400",
+ "initial_layer_infill_speed": "30",
+ "initial_layer_jerk": "5",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "800",
+ "inner_wall_flow_ratio": "1",
+ "inner_wall_jerk": "5",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_flow_ratio": "1",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "0",
+ "ironing_angle_fixed": "0",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "rectilinear",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lateral_lattice_angle_1": "-45",
+ "lateral_lattice_angle_2": "45",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "50",
+ "max_travel_detour_distance": "10000",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "4",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "0",
+ "ooze_prevention": "0",
+ "outer_wall_flow_ratio": "1",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "25",
+ "overhang_3_4_speed": "15",
+ "overhang_4_4_speed": "10",
+ "overhang_flow_ratio": "1",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "post_process": [],
+ "precise_outer_wall": "1",
+ "preheat_steps": "1",
+ "preheat_time": "30",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enable_framework": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_skip_points": "0",
+ "prime_tower_width": "30",
+ "prime_volume": "150",
+ "print_extruder_id": [
+ "1"
+ ],
+ "print_extruder_variant": [
+ "Bowden Standard"
+ ],
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.015",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "35%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "set_other_flow_ratios": "0",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skeleton_infill_density": "25%",
+ "skeleton_infill_line_width": "100%",
+ "skin_infill_density": "25%",
+ "skin_infill_depth": "2",
+ "skin_infill_line_width": "100%",
+ "skirt_height": "1",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.055",
+ "slicing_mode": "regular",
+ "slow_down_layers": "4",
+ "slowdown_for_curled_perimeters": "1",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "solid_infill_rotate_template": "",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_flow_ratio": "1",
+ "sparse_infill_pattern": "gyroid",
+ "sparse_infill_rotate_template": "",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "3",
+ "support_bottom_interface_spacing": "0.6",
+ "support_bottom_z_distance": "0.25",
+ "support_critical_regions_only": "1",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_flow_ratio": "1",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_flow_ratio": "1",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.6",
+ "support_interface_top_layers": "2",
+ "support_ironing": "0",
+ "support_ironing_flow": "10%",
+ "support_ironing_pattern": "rectilinear",
+ "support_ironing_spacing": "0.1",
+ "support_object_first_layer_gap": "0.2",
+ "support_object_xy_distance": "0.45",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_style": "default",
+ "support_threshold_angle": "35",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.25",
+ "support_type": "tree(auto)",
+ "symmetric_infill_y_axis": "0",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "25%",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_density": "100%",
+ "top_surface_jerk": "5",
+ "travel_acceleration": "1500",
+ "travel_speed_z": "0",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "5",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "2",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "arachne",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "1",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "30",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_extra_rib_length": "5",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_fillet_wall": "1",
+ "wipe_tower_max_purge_speed": "60",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rib_width": "3",
+ "wipe_tower_rotation_angle": "0",
+ "wipe_tower_wall_type": "rib",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "top_surface_acceleration": "500",
+ "travel_jerk": "10",
+ "initial_layer_speed": "20",
+ "outer_wall_acceleration": "800",
+ "outer_wall_line_width": "100%",
+ "line_width": "100%",
+ "initial_layer_line_width": "125%",
+ "inner_wall_line_width": "100%",
+ "top_surface_line_width": "105%",
+ "sparse_infill_line_width": "125%",
+ "internal_solid_infill_line_width": "105%",
+ "support_line_width": "125%",
+ "outer_wall_speed": "60",
+ "inner_wall_speed": "60",
+ "sparse_infill_speed": "80",
+ "internal_solid_infill_speed": "80",
+ "gap_infill_speed": "50",
+ "support_speed": "80",
+ "support_interface_speed": "50",
+ "top_surface_speed": "40",
+ "small_perimeter_speed": "40%",
+ "small_perimeter_threshold": "0",
+ "outer_wall_jerk": "5",
+ "xy_hole_compensation": "0",
+ "description": "SeeMeCNC configurations",
+ "top_surface_flow_ratio": "0.95",
+ "travel_speed": "150",
+ "support_wall_loops": "1",
+ "wall_loops": "3",
+ "sparse_infill_density": "20%",
+ "top_surface_pattern": "monotonicline",
+ "bottom_shell_layers": "4",
+ "top_shell_layers": "4",
+ "bottom_surface_pattern": "monotonicline",
+ "detect_thin_wall": "1",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "bridge_speed": "30",
+ "enable_arc_fitting": "0",
+ "precise_z_height": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/SeeMeCNC_process_base_0.7mm.json b/resources/profiles/SeeMeCNC/process/SeeMeCNC_process_base_0.7mm.json
new file mode 100644
index 0000000000..3a9d7d2dd6
--- /dev/null
+++ b/resources/profiles/SeeMeCNC/process/SeeMeCNC_process_base_0.7mm.json
@@ -0,0 +1,353 @@
+{
+ "type": "process",
+ "name": "SeeMeCNC process base 0.7mm",
+ "from": "system",
+ "instantiation": "false",
+ "accel_to_decel_enable": "0",
+ "accel_to_decel_factor": "50%",
+ "align_infill_direction_to_model": "0",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_density": "100%",
+ "bridge_acceleration": "30%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.95",
+ "bridge_no_support": "0",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_use_efc_outline": "0",
+ "brim_width": "5",
+ "calib_flowrate_topinfill_special_order": "0",
+ "default_acceleration": "800",
+ "default_jerk": "5",
+ "default_junction_deviation": "0",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0",
+ "elefant_foot_compensation_layers": "1",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enable_tower_interface_cooldown_during_tower": "0",
+ "enable_tower_interface_features": "0",
+ "enable_wrapping_detection": "0",
+ "enforce_support_layers": "0",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extra_solid_infills": "",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "fill_multiline": "1",
+ "filter_out_gap_fill": "0",
+ "first_layer_flow_ratio": "1",
+ "flush_into_infill": "1",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "disabled_fuzzy",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_mode": "displacement",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.3",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.2",
+ "gap_fill_flow_ratio": "1",
+ "gap_fill_target": "nowhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "0",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "7",
+ "infill_lock_depth": "1",
+ "infill_overhang_angle": "60",
+ "infill_shift_step": "0.4",
+ "infill_wall_overlap": "25%",
+ "initial_layer_acceleration": "300",
+ "initial_layer_infill_speed": "20",
+ "initial_layer_jerk": "4",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "500",
+ "inner_wall_flow_ratio": "1",
+ "inner_wall_jerk": "4",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_flow_ratio": "1",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "0",
+ "ironing_angle_fixed": "0",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "rectilinear",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lateral_lattice_angle_1": "-45",
+ "lateral_lattice_angle_2": "45",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "50",
+ "max_travel_detour_distance": "10000",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "4",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "0",
+ "ooze_prevention": "0",
+ "outer_wall_flow_ratio": "1",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "25",
+ "overhang_3_4_speed": "15",
+ "overhang_4_4_speed": "10",
+ "overhang_flow_ratio": "1",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "post_process": [],
+ "precise_outer_wall": "1",
+ "preheat_steps": "1",
+ "preheat_time": "30",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enable_framework": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_skip_points": "0",
+ "prime_tower_width": "30",
+ "prime_volume": "150",
+ "print_extruder_id": [
+ "1"
+ ],
+ "print_extruder_variant": [
+ "Bowden Standard"
+ ],
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.02",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "35%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "set_other_flow_ratios": "0",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skeleton_infill_density": "25%",
+ "skeleton_infill_line_width": "100%",
+ "skin_infill_density": "25%",
+ "skin_infill_depth": "2",
+ "skin_infill_line_width": "100%",
+ "skirt_height": "1",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.075",
+ "slicing_mode": "regular",
+ "slow_down_layers": "4",
+ "slowdown_for_curled_perimeters": "1",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "solid_infill_rotate_template": "",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_flow_ratio": "1",
+ "sparse_infill_pattern": "gyroid",
+ "sparse_infill_rotate_template": "",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "4.5",
+ "support_bottom_interface_spacing": "0.9",
+ "support_bottom_z_distance": "0.35",
+ "support_critical_regions_only": "1",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_flow_ratio": "1",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_flow_ratio": "1",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "0.9",
+ "support_interface_top_layers": "3",
+ "support_ironing": "0",
+ "support_ironing_flow": "10%",
+ "support_ironing_pattern": "rectilinear",
+ "support_ironing_spacing": "0.1",
+ "support_object_first_layer_gap": "0.3",
+ "support_object_xy_distance": "0.65",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_style": "default",
+ "support_threshold_angle": "40",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.35",
+ "support_type": "tree(auto)",
+ "symmetric_infill_y_axis": "0",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "25%",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_density": "100%",
+ "top_surface_jerk": "4",
+ "travel_acceleration": "1000",
+ "travel_speed_z": "0",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "5",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "2",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "arachne",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "1",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "30",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_extra_rib_length": "5",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_fillet_wall": "1",
+ "wipe_tower_max_purge_speed": "60",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rib_width": "3",
+ "wipe_tower_rotation_angle": "0",
+ "wipe_tower_wall_type": "rib",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "top_surface_acceleration": "400",
+ "travel_jerk": "8",
+ "initial_layer_speed": "20",
+ "outer_wall_acceleration": "500",
+ "outer_wall_line_width": "100%",
+ "line_width": "100%",
+ "initial_layer_line_width": "125%",
+ "inner_wall_line_width": "100%",
+ "top_surface_line_width": "105%",
+ "sparse_infill_line_width": "125%",
+ "internal_solid_infill_line_width": "105%",
+ "support_line_width": "125%",
+ "outer_wall_speed": "40",
+ "inner_wall_speed": "40",
+ "sparse_infill_speed": "50",
+ "internal_solid_infill_speed": "50",
+ "gap_infill_speed": "30",
+ "support_speed": "50",
+ "support_interface_speed": "30",
+ "top_surface_speed": "30",
+ "small_perimeter_speed": "40%",
+ "small_perimeter_threshold": "0",
+ "outer_wall_jerk": "4",
+ "xy_hole_compensation": "0",
+ "description": "SeeMeCNC configurations",
+ "top_surface_flow_ratio": "0.95",
+ "travel_speed": "120",
+ "support_wall_loops": "1",
+ "wall_loops": "3",
+ "sparse_infill_density": "20%",
+ "top_surface_pattern": "monotonicline",
+ "bottom_shell_layers": "4",
+ "top_shell_layers": "4",
+ "bottom_surface_pattern": "monotonicline",
+ "detect_thin_wall": "1",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "bridge_speed": "30",
+ "enable_arc_fitting": "0",
+ "precise_z_height": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/SeeMeCNC/process/SeeMeCNC_process_base_1.0mm.json b/resources/profiles/SeeMeCNC/process/SeeMeCNC_process_base_1.0mm.json
new file mode 100644
index 0000000000..00ec277958
--- /dev/null
+++ b/resources/profiles/SeeMeCNC/process/SeeMeCNC_process_base_1.0mm.json
@@ -0,0 +1,353 @@
+{
+ "type": "process",
+ "name": "SeeMeCNC process base 1.0mm",
+ "from": "system",
+ "instantiation": "false",
+ "accel_to_decel_enable": "0",
+ "accel_to_decel_factor": "50%",
+ "align_infill_direction_to_model": "0",
+ "bottom_shell_thickness": "0",
+ "bottom_solid_infill_flow_ratio": "1",
+ "bottom_surface_density": "100%",
+ "bridge_acceleration": "30%",
+ "bridge_angle": "0",
+ "bridge_density": "100%",
+ "bridge_flow": "0.95",
+ "bridge_no_support": "0",
+ "brim_ears_detection_length": "1",
+ "brim_ears_max_angle": "125",
+ "brim_object_gap": "0.1",
+ "brim_use_efc_outline": "0",
+ "brim_width": "5",
+ "calib_flowrate_topinfill_special_order": "0",
+ "default_acceleration": "600",
+ "default_jerk": "4",
+ "default_junction_deviation": "0",
+ "detect_narrow_internal_solid_infill": "1",
+ "detect_overhang_wall": "1",
+ "dont_filter_internal_bridges": "disabled",
+ "draft_shield": "disabled",
+ "elefant_foot_compensation": "0",
+ "elefant_foot_compensation_layers": "1",
+ "enable_extra_bridge_layer": "disabled",
+ "enable_overhang_speed": "1",
+ "enable_prime_tower": "1",
+ "enable_support": "0",
+ "enable_tower_interface_cooldown_during_tower": "0",
+ "enable_tower_interface_features": "0",
+ "enable_wrapping_detection": "0",
+ "enforce_support_layers": "0",
+ "exclude_object": "1",
+ "extra_perimeters_on_overhangs": "1",
+ "extra_solid_infills": "",
+ "extrusion_rate_smoothing_external_perimeter_only": "0",
+ "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
+ "fill_multiline": "1",
+ "filter_out_gap_fill": "0",
+ "first_layer_flow_ratio": "1",
+ "flush_into_infill": "1",
+ "flush_into_objects": "0",
+ "flush_into_support": "1",
+ "fuzzy_skin": "disabled_fuzzy",
+ "fuzzy_skin_first_layer": "0",
+ "fuzzy_skin_mode": "displacement",
+ "fuzzy_skin_noise_type": "classic",
+ "fuzzy_skin_octaves": "4",
+ "fuzzy_skin_persistence": "0.5",
+ "fuzzy_skin_point_distance": "0.3",
+ "fuzzy_skin_scale": "1",
+ "fuzzy_skin_thickness": "0.2",
+ "gap_fill_flow_ratio": "1",
+ "gap_fill_target": "nowhere",
+ "gcode_add_line_number": "0",
+ "gcode_comments": "0",
+ "gcode_label_objects": "1",
+ "hole_to_polyhole": "0",
+ "hole_to_polyhole_threshold": "0.01",
+ "hole_to_polyhole_twisted": "1",
+ "independent_support_layer_height": "0",
+ "infill_anchor": "400%",
+ "infill_anchor_max": "20",
+ "infill_combination": "0",
+ "infill_combination_max_layer_height": "100%",
+ "infill_direction": "45",
+ "infill_jerk": "5",
+ "infill_lock_depth": "1",
+ "infill_overhang_angle": "60",
+ "infill_shift_step": "0.4",
+ "infill_wall_overlap": "25%",
+ "initial_layer_acceleration": "200",
+ "initial_layer_infill_speed": "20",
+ "initial_layer_jerk": "3",
+ "initial_layer_min_bead_width": "85%",
+ "initial_layer_travel_speed": "100%",
+ "inner_wall_acceleration": "400",
+ "inner_wall_flow_ratio": "1",
+ "inner_wall_jerk": "3",
+ "interface_shells": "0",
+ "interlocking_beam": "0",
+ "interlocking_beam_layer_count": "2",
+ "interlocking_beam_width": "0.8",
+ "interlocking_boundary_avoidance": "2",
+ "interlocking_depth": "2",
+ "interlocking_orientation": "22.5",
+ "internal_bridge_angle": "0",
+ "internal_bridge_density": "100%",
+ "internal_bridge_flow": "1",
+ "internal_bridge_speed": "150%",
+ "internal_solid_infill_acceleration": "100%",
+ "internal_solid_infill_flow_ratio": "1",
+ "internal_solid_infill_pattern": "monotonic",
+ "ironing_angle": "0",
+ "ironing_angle_fixed": "0",
+ "ironing_flow": "10%",
+ "ironing_inset": "0",
+ "ironing_pattern": "rectilinear",
+ "ironing_spacing": "0.15",
+ "ironing_speed": "30",
+ "ironing_type": "no ironing",
+ "is_infill_first": "0",
+ "lateral_lattice_angle_1": "-45",
+ "lateral_lattice_angle_2": "45",
+ "make_overhang_printable": "0",
+ "make_overhang_printable_angle": "55",
+ "make_overhang_printable_hole_size": "0",
+ "max_bridge_length": "50",
+ "max_travel_detour_distance": "10000",
+ "max_volumetric_extrusion_rate_slope": "0",
+ "max_volumetric_extrusion_rate_slope_segment_length": "3",
+ "min_bead_width": "85%",
+ "min_feature_size": "25%",
+ "min_length_factor": "0.5",
+ "min_skirt_length": "4",
+ "min_width_top_surface": "300%",
+ "minimum_sparse_infill_area": "15",
+ "mmu_segmented_region_interlocking_depth": "0",
+ "mmu_segmented_region_max_width": "0",
+ "notes": "",
+ "only_one_wall_first_layer": "0",
+ "only_one_wall_top": "0",
+ "ooze_prevention": "0",
+ "outer_wall_flow_ratio": "1",
+ "overhang_1_4_speed": "0",
+ "overhang_2_4_speed": "25",
+ "overhang_3_4_speed": "15",
+ "overhang_4_4_speed": "10",
+ "overhang_flow_ratio": "1",
+ "overhang_reverse": "0",
+ "overhang_reverse_internal_only": "0",
+ "overhang_reverse_threshold": "50%",
+ "post_process": [],
+ "precise_outer_wall": "1",
+ "preheat_steps": "1",
+ "preheat_time": "30",
+ "prime_tower_brim_width": "3",
+ "prime_tower_enable_framework": "1",
+ "prime_tower_flat_ironing": "0",
+ "prime_tower_infill_gap": "150%",
+ "prime_tower_skip_points": "0",
+ "prime_tower_width": "30",
+ "prime_volume": "150",
+ "print_extruder_id": [
+ "1"
+ ],
+ "print_extruder_variant": [
+ "Bowden Standard"
+ ],
+ "print_flow_ratio": "1",
+ "print_order": "default",
+ "print_sequence": "by layer",
+ "raft_contact_distance": "0.1",
+ "raft_expansion": "1.5",
+ "raft_first_layer_density": "90%",
+ "raft_first_layer_expansion": "2",
+ "raft_layers": "0",
+ "reduce_crossing_wall": "0",
+ "reduce_infill_retraction": "1",
+ "resolution": "0.03",
+ "role_based_wipe_speed": "1",
+ "scarf_angle_threshold": "155",
+ "scarf_joint_flow_ratio": "1",
+ "scarf_joint_speed": "100%",
+ "scarf_overhang_threshold": "35%",
+ "seam_gap": "10%",
+ "seam_position": "aligned",
+ "seam_slope_conditional": "0",
+ "seam_slope_entire_loop": "0",
+ "seam_slope_inner_walls": "0",
+ "seam_slope_min_length": "20",
+ "seam_slope_start_height": "0",
+ "seam_slope_steps": "10",
+ "set_other_flow_ratios": "0",
+ "single_extruder_multi_material_priming": "0",
+ "single_loop_draft_shield": "0",
+ "skeleton_infill_density": "25%",
+ "skeleton_infill_line_width": "100%",
+ "skin_infill_density": "25%",
+ "skin_infill_depth": "2",
+ "skin_infill_line_width": "100%",
+ "skirt_height": "1",
+ "skirt_speed": "50",
+ "skirt_start_angle": "-135",
+ "skirt_type": "combined",
+ "slice_closing_radius": "0.1",
+ "slicing_mode": "regular",
+ "slow_down_layers": "4",
+ "slowdown_for_curled_perimeters": "1",
+ "small_area_infill_flow_compensation": "0",
+ "small_area_infill_flow_compensation_model": [
+ "0,0",
+ "\n0.2,0.4444",
+ "\n0.4,0.6145",
+ "\n0.6,0.7059",
+ "\n0.8,0.7619",
+ "\n1.5,0.8571",
+ "\n2,0.8889",
+ "\n3,0.9231",
+ "\n5,0.9520",
+ "\n10,1"
+ ],
+ "solid_infill_direction": "45",
+ "solid_infill_filament": "1",
+ "solid_infill_rotate_template": "",
+ "sparse_infill_acceleration": "100%",
+ "sparse_infill_filament": "1",
+ "sparse_infill_flow_ratio": "1",
+ "sparse_infill_pattern": "gyroid",
+ "sparse_infill_rotate_template": "",
+ "spiral_finishing_flow_ratio": "0",
+ "spiral_mode_max_xy_smoothing": "200%",
+ "spiral_mode_smooth": "0",
+ "spiral_starting_flow_ratio": "0",
+ "staggered_inner_seams": "0",
+ "standby_temperature_delta": "-5",
+ "support_angle": "0",
+ "support_base_pattern": "rectilinear",
+ "support_base_pattern_spacing": "6",
+ "support_bottom_interface_spacing": "1.5",
+ "support_bottom_z_distance": "0.5",
+ "support_critical_regions_only": "1",
+ "support_expansion": "0",
+ "support_filament": "0",
+ "support_flow_ratio": "1",
+ "support_interface_bottom_layers": "2",
+ "support_interface_filament": "0",
+ "support_interface_flow_ratio": "1",
+ "support_interface_loop_pattern": "0",
+ "support_interface_not_for_body": "1",
+ "support_interface_pattern": "auto",
+ "support_interface_spacing": "1.5",
+ "support_interface_top_layers": "3",
+ "support_ironing": "0",
+ "support_ironing_flow": "10%",
+ "support_ironing_pattern": "rectilinear",
+ "support_ironing_spacing": "0.1",
+ "support_object_first_layer_gap": "0.4",
+ "support_object_xy_distance": "0.95",
+ "support_on_build_plate_only": "1",
+ "support_remove_small_overhang": "1",
+ "support_style": "default",
+ "support_threshold_angle": "45",
+ "support_threshold_overlap": "50%",
+ "support_top_z_distance": "0.5",
+ "support_type": "tree(auto)",
+ "symmetric_infill_y_axis": "0",
+ "thick_bridges": "0",
+ "thick_internal_bridges": "1",
+ "timelapse_type": "0",
+ "top_bottom_infill_wall_overlap": "25%",
+ "top_shell_thickness": "0.8",
+ "top_solid_infill_flow_ratio": "1",
+ "top_surface_density": "100%",
+ "top_surface_jerk": "3",
+ "travel_acceleration": "800",
+ "travel_speed_z": "0",
+ "tree_support_angle_slow": "25",
+ "tree_support_auto_brim": "1",
+ "tree_support_branch_angle": "45",
+ "tree_support_branch_angle_organic": "40",
+ "tree_support_branch_diameter": "5",
+ "tree_support_branch_diameter_angle": "5",
+ "tree_support_branch_diameter_organic": "2",
+ "tree_support_branch_distance": "5",
+ "tree_support_branch_distance_organic": "1",
+ "tree_support_brim_width": "3",
+ "tree_support_tip_diameter": "0.8",
+ "tree_support_top_rate": "30%",
+ "tree_support_wall_count": "2",
+ "wall_direction": "auto",
+ "wall_distribution_count": "1",
+ "wall_filament": "1",
+ "wall_generator": "arachne",
+ "wall_sequence": "inner wall/outer wall",
+ "wall_transition_angle": "10",
+ "wall_transition_filter_deviation": "25%",
+ "wall_transition_length": "100%",
+ "wipe_before_external_loop": "1",
+ "wipe_on_loops": "0",
+ "wipe_speed": "80%",
+ "wipe_tower_bridging": "10",
+ "wipe_tower_cone_angle": "30",
+ "wipe_tower_extra_flow": "100%",
+ "wipe_tower_extra_rib_length": "5",
+ "wipe_tower_extra_spacing": "100%",
+ "wipe_tower_filament": "0",
+ "wipe_tower_fillet_wall": "1",
+ "wipe_tower_max_purge_speed": "60",
+ "wipe_tower_no_sparse_layers": "0",
+ "wipe_tower_rib_width": "3",
+ "wipe_tower_rotation_angle": "0",
+ "wipe_tower_wall_type": "rib",
+ "wiping_volumes_extruders": [
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70",
+ "70"
+ ],
+ "xy_contour_compensation": "0",
+ "top_surface_acceleration": "300",
+ "travel_jerk": "6",
+ "initial_layer_speed": "10",
+ "outer_wall_acceleration": "400",
+ "outer_wall_line_width": "100%",
+ "line_width": "100%",
+ "initial_layer_line_width": "125%",
+ "inner_wall_line_width": "100%",
+ "top_surface_line_width": "105%",
+ "sparse_infill_line_width": "125%",
+ "internal_solid_infill_line_width": "105%",
+ "support_line_width": "125%",
+ "outer_wall_speed": "20",
+ "inner_wall_speed": "20",
+ "sparse_infill_speed": "40",
+ "internal_solid_infill_speed": "40",
+ "gap_infill_speed": "20",
+ "support_speed": "40",
+ "support_interface_speed": "20",
+ "top_surface_speed": "20",
+ "small_perimeter_speed": "40%",
+ "small_perimeter_threshold": "0",
+ "outer_wall_jerk": "3",
+ "xy_hole_compensation": "0",
+ "description": "SeeMeCNC configurations",
+ "top_surface_flow_ratio": "0.95",
+ "travel_speed": "100",
+ "support_wall_loops": "0",
+ "wall_loops": "3",
+ "sparse_infill_density": "20%",
+ "top_surface_pattern": "monotonicline",
+ "bottom_shell_layers": "4",
+ "top_shell_layers": "4",
+ "bottom_surface_pattern": "monotonicline",
+ "detect_thin_wall": "1",
+ "ensure_vertical_shell_thickness": "ensure_all",
+ "bridge_speed": "30",
+ "enable_arc_fitting": "0",
+ "precise_z_height": "0"
+}
\ No newline at end of file
diff --git a/resources/profiles/Snapmaker.json b/resources/profiles/Snapmaker.json
index 20468768ad..0fe71651be 100644
--- a/resources/profiles/Snapmaker.json
+++ b/resources/profiles/Snapmaker.json
@@ -1,6 +1,6 @@
{
"name": "Snapmaker",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "0",
"description": "Snapmaker configurations",
"machine_model_list": [
diff --git a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4 nozzle).json
index dce8a24be3..25ccf94830 100644
--- a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4 nozzle).json
+++ b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4 nozzle).json
@@ -8,7 +8,7 @@
"printer_model": "Snapmaker U1",
"printer_variant": "0.4",
"auxiliary_fan": "1",
- "change_filament_gcode": ";===== date: 20260525 =====================\n; Change Tool[previous_extruder] -> Tool[next_extruder] (layer [layer_num] ; max_layer_z [max_layer_z] ; max_print_height [max_print_height])\n{\nlocal move_z = max_print_height;\nlocal max_speed_toolchange = 350.0;\nlocal wait_for_extruder_temp = true;\nposition[2] = position[2] + 2.0;\nlocal speed_toolchange = max_speed_toolchange;\nif travel_speed < max_speed_toolchange then\n speed_toolchange = travel_speed;\nendif\n\nif max_layer_z < (max_print_height - 1) then\n move_z = z_offset + min(max_layer_z + 2, max_print_height);\nendif\n\n\"G91\nG1 Z\" + move_z + \" F1800 ; Move nozzle just above tallest printed object\nG90\n\";\n\"G1 F\" + (speed_toolchange * 60) + \"\n\";\nif wait_for_extruder_temp and not((layer_num < 0) and (next_extruder == initial_tool)) then\n \"\n\";\n \"; \" + layer_num + \"\n\";\n if layer_num == 0 then\n \"M109 S\" + first_layer_temperature[next_extruder] + \" T\" + next_extruder + \"\n\";\n else\n \"M109 S\" + temperature[next_extruder] + \" T\" + next_extruder + \"\n\";\n endif\nendif\n\"M400\" + \"\n\";\n\"T\" + next_extruder + \"\n\";\nif filament_type[next_extruder] == \"PVA\" then\n\"SET_VELOCITY_LIMIT ACCEL=3000\n\";\nelse\nendif\nif previous_extruder != next_extruder and initial_extruder != next_extruder then\n\"SM_PRINT_PREEXTRUDE_FILAMENT INDEX=\" + next_extruder + \"\n\";\nendif\n\"G90\n\";\n}\n",
+ "change_filament_gcode": ";===== date: 20260605 =====================\n; Change Tool[previous_extruder] -> Tool[next_extruder] (layer [layer_num])\n; max_layer_z [max_layer_z]\n; max_print_height [max_print_height]\n; print_sequence [print_sequence]\n\n{\nlocal move_z = 1.5;\nlocal max_speed_toolchange = 350.0;\nlocal wait_for_extruder_temp = true;\nposition[2] = position[2] + 2.0;\nlocal speed_toolchange = max_speed_toolchange;\n\nif travel_speed < max_speed_toolchange then\n speed_toolchange = travel_speed;\nendif\n\nif print_sequence == \"by object\" then\n\n if max_layer_z < ((max_print_height - z_offset) - 2) then\n move_z = z_offset + min(((max_layer_z - z_offset) + 2), max_print_height);\n endif\n\nendif\n\n\"G91\nG90\nG1 Z\" + move_z + \" F600\nG90\n\";\n\"G1 F\" + (speed_toolchange * 60) + \"\n\";\nif wait_for_extruder_temp and not((layer_num < 0) and (next_extruder == initial_tool)) then\n \"\n\";\n \"; \" + layer_num + \"\n\";\n if layer_num == 0 then\n \"M109 S\" + first_layer_temperature[next_extruder] + \" T\" + next_extruder + \"\n\";\n else\n \"M109 S\" + temperature[next_extruder] + \" T\" + next_extruder + \"\n\";\n endif\nendif\n\"M400\" + \"\n\";\n\"T\" + next_extruder + \"\n\";\nif filament_type[next_extruder] == \"PVA\" then\n\"SET_VELOCITY_LIMIT ACCEL=3000\n\";\nelse\nendif\nif previous_extruder != next_extruder and initial_extruder != next_extruder then\n\"SM_PRINT_PREEXTRUDE_FILAMENT INDEX=\" + next_extruder + \"\n\";\nendif\n\"G90\n\";\n}\n",
"extruder_colour": [
"#FCE94F",
"#FCE94F",
@@ -28,7 +28,7 @@
"0",
"0"
],
- "machine_end_gcode": ";===== date: 20260525 =====================\n; (layer [layer_num] ; max_layer_z [max_layer_z])\n{\nlocal move_z = max_print_height;\n\nif max_layer_z < (max_print_height - 1) then\n move_z = z_offset + min(max_layer_z + 2, max_print_height);\nendif\n\n\"G91\nG1 Z\" + move_z + \" F1800 ; Move nozzle just above tallest printed object\nG90\n; Triggering PBO Z Movement of: \" + move_z + \"\nPRINT_END\nTIMELAPSE_STOP\n\";\n}\n",
+ "machine_end_gcode": ";===== date: 20260605 =====================\n; layer [layer_num]\n; max_layer_z [max_layer_z]\n; print_sequence [print_sequence]\n\n{if print_sequence == \"by object\"}\n{\nlocal move_z = max_print_height;\n\nif max_layer_z < ((max_print_height - z_offset) - 2) then\n move_z = z_offset + min(((max_layer_z - z_offset) + 2), max_print_height);\nendif\n}\n\nG91\nG1 X2 Y2 Z1 F24000\nG90\nG1 Z{move_z} F600\n{endif}\n\nPRINT_END\nTIMELAPSE_STOP\n",
"machine_max_acceleration_extruding": [
"25000",
"25000"
diff --git a/resources/profiles/Voron.json b/resources/profiles/Voron.json
index 6078a0aecc..7f29a3c168 100644
--- a/resources/profiles/Voron.json
+++ b/resources/profiles/Voron.json
@@ -1,6 +1,6 @@
{
"name": "Voron",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "0",
"description": "Voron configurations",
"machine_model_list": [
diff --git a/resources/profiles/Voron/machine/Voron 0.1 0.4 nozzle.json b/resources/profiles/Voron/machine/Voron 0.1 0.4 nozzle.json
index 9d3f5c73b9..f29e941c41 100644
--- a/resources/profiles/Voron/machine/Voron 0.1 0.4 nozzle.json
+++ b/resources/profiles/Voron/machine/Voron 0.1 0.4 nozzle.json
@@ -24,5 +24,6 @@
],
"printable_height": "120",
"nozzle_type": "undefine",
- "auxiliary_fan": "0"
+ "auxiliary_fan": "0",
+ "printer_variant": "0.4"
}
diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 0.4 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 0.4 nozzle.json
index 0e20f3e283..af7da735f5 100644
--- a/resources/profiles/Voron/machine/Voron 2.4 250 0.4 nozzle.json
+++ b/resources/profiles/Voron/machine/Voron 2.4 250 0.4 nozzle.json
@@ -22,5 +22,6 @@
"250x250",
"0x250"
],
- "printable_height": "225"
+ "printable_height": "225",
+ "printer_variant": "0.4"
}
diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.4 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.4 nozzle.json
index 20ad157f0c..243acb3ffe 100644
--- a/resources/profiles/Voron/machine/Voron 2.4 300 0.4 nozzle.json
+++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.4 nozzle.json
@@ -22,5 +22,6 @@
"300x300",
"0x300"
],
- "printable_height": "275"
+ "printable_height": "275",
+ "printer_variant": "0.4"
}
diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 0.4 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 0.4 nozzle.json
index 2dcd1e25f6..2cc0009589 100644
--- a/resources/profiles/Voron/machine/Voron 2.4 350 0.4 nozzle.json
+++ b/resources/profiles/Voron/machine/Voron 2.4 350 0.4 nozzle.json
@@ -22,5 +22,6 @@
"350x350",
"0x350"
],
- "printable_height": "325"
+ "printable_height": "325",
+ "printer_variant": "0.4"
}
diff --git a/resources/profiles/Voron/machine/Voron Switchwire 250 0.4 nozzle.json b/resources/profiles/Voron/machine/Voron Switchwire 250 0.4 nozzle.json
index 1af91b12f9..ba7af518f1 100644
--- a/resources/profiles/Voron/machine/Voron Switchwire 250 0.4 nozzle.json
+++ b/resources/profiles/Voron/machine/Voron Switchwire 250 0.4 nozzle.json
@@ -22,5 +22,6 @@
"250x210",
"0x210"
],
- "printable_height": "240"
+ "printable_height": "240",
+ "printer_variant": "0.4"
}
diff --git a/resources/profiles/Voron/machine/Voron Trident 250 0.4 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 250 0.4 nozzle.json
index 49a646e9c6..2a4dd28b5a 100644
--- a/resources/profiles/Voron/machine/Voron Trident 250 0.4 nozzle.json
+++ b/resources/profiles/Voron/machine/Voron Trident 250 0.4 nozzle.json
@@ -22,5 +22,6 @@
"250x250",
"0x250"
],
- "printable_height": "250"
+ "printable_height": "250",
+ "printer_variant": "0.4"
}
diff --git a/resources/profiles/Voron/machine/Voron Trident 300 0.4 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 300 0.4 nozzle.json
index c0ce16fbdc..15fbd11ec2 100644
--- a/resources/profiles/Voron/machine/Voron Trident 300 0.4 nozzle.json
+++ b/resources/profiles/Voron/machine/Voron Trident 300 0.4 nozzle.json
@@ -22,5 +22,6 @@
"300x300",
"0x300"
],
- "printable_height": "250"
+ "printable_height": "250",
+ "printer_variant": "0.4"
}
diff --git a/resources/profiles/Voron/machine/Voron Trident 350 0.4 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 350 0.4 nozzle.json
index 15bf4f813c..2c99b6088b 100644
--- a/resources/profiles/Voron/machine/Voron Trident 350 0.4 nozzle.json
+++ b/resources/profiles/Voron/machine/Voron Trident 350 0.4 nozzle.json
@@ -22,5 +22,6 @@
"350x350",
"0x350"
],
- "printable_height": "250"
+ "printable_height": "250",
+ "printer_variant": "0.4"
}
diff --git a/resources/profiles/re3D.json b/resources/profiles/re3D.json
index 7ab68290f2..69a1c87fa9 100644
--- a/resources/profiles/re3D.json
+++ b/resources/profiles/re3D.json
@@ -1,6 +1,6 @@
{
"name": "re3D",
- "version": "02.04.00.00",
+ "version": "02.04.00.01",
"force_update": "0",
"description": "re3D configurations",
"machine_model_list": [
diff --git a/resources/shaders/110/phong.fs b/resources/shaders/110/phong.fs
new file mode 100644
index 0000000000..f2d1c40590
--- /dev/null
+++ b/resources/shaders/110/phong.fs
@@ -0,0 +1,247 @@
+#version 110
+
+const vec3 ZERO = vec3(0.0, 0.0, 0.0);
+const vec3 LightRed = vec3(0.78, 0.0, 0.0);
+const vec3 LightBlue = vec3(0.73, 1.0, 1.0);
+const float EPSILON = 0.0001;
+
+#define INTENSITY_CORRECTION 0.6
+#define PHONG_BRIGHTNESS 1.0
+
+// normalized values for (-0.6/1.31, 0.6/1.31, 1./1.31)
+const vec3 LIGHT_TOP_DIR = vec3(-0.4574957, 0.4574957, 0.7624929);
+#define LIGHT_TOP_DIFFUSE (0.8 * INTENSITY_CORRECTION)
+#define LIGHT_TOP_SPECULAR (0.8 * INTENSITY_CORRECTION)
+#define LIGHT_TOP_SHININESS 128.0
+
+// normalized values for (1./1.43, 0.2/1.43, 1./1.43)
+const vec3 LIGHT_FRONT_DIR = vec3(0.6985074, 0.1397015, 0.6985074);
+#define LIGHT_FRONT_DIFFUSE (0.3 * INTENSITY_CORRECTION)
+#define LIGHT_FRONT_SPECULAR (0.28 * INTENSITY_CORRECTION)
+#define LIGHT_FRONT_SHININESS 64.0
+
+#define INTENSITY_AMBIENT 0.22
+#define WINDOW_REFLECTION_INTENSITY 0.55
+
+struct PrintVolumeDetection
+{
+ // 0 = rectangle, 1 = circle, 2 = custom, 3 = invalid
+ int type;
+ // type = 0 (rectangle):
+ // x = min.x, y = min.y, z = max.x, w = max.y
+ // type = 1 (circle):
+ // x = center.x, y = center.y, z = radius
+ vec4 xy_data;
+ // x = min z, y = max z
+ vec2 z_data;
+};
+
+struct SlopeDetection
+{
+ bool actived;
+ float normal_z;
+ mat3 volume_world_normal_matrix;
+};
+
+uniform vec4 uniform_color;
+uniform bool use_color_clip_plane;
+uniform vec4 uniform_color_clip_plane_1;
+uniform vec4 uniform_color_clip_plane_2;
+uniform SlopeDetection slope;
+
+//BBS: add outline_color
+uniform bool is_outline;
+uniform sampler2D depth_tex;
+uniform vec2 screen_size;
+
+#ifdef ENABLE_ENVIRONMENT_MAP
+ uniform sampler2D environment_tex;
+ uniform bool use_environment_tex;
+#endif // ENABLE_ENVIRONMENT_MAP
+
+uniform PrintVolumeDetection print_volume;
+
+uniform float z_far;
+uniform float z_near;
+uniform bool enable_ssao;
+
+varying vec3 clipping_planes_dots;
+varying float color_clip_plane_dot;
+
+varying vec4 world_pos;
+varying float world_normal_z;
+varying vec3 eye_normal;
+varying vec3 eye_position;
+
+vec3 getBackfaceColor(vec3 fill) {
+ float brightness = 0.2126 * fill.r + 0.7152 * fill.g + 0.0722 * fill.b;
+ return (brightness > 0.75) ? vec3(0.11, 0.165, 0.208) : vec3(0.988, 0.988, 0.988);
+}
+
+// Silhouette edge detection & rendering algorithm by leoneruggiero
+// https://www.shadertoy.com/view/DslXz2
+#define INFLATE 1
+
+float GetTolerance(float d, float k)
+{
+ float A = -(z_far+z_near)/(z_far-z_near);
+ float B = -2.0*z_far*z_near /(z_far-z_near);
+
+ d = d*2.0-1.0;
+
+ return -k*(d+A)*(d+A)/B;
+}
+
+float DetectSilho(vec2 fragCoord, vec2 dir)
+{
+ float x0 = abs(texture2D(depth_tex, (fragCoord + dir*-2.0) / screen_size).r);
+ float x1 = abs(texture2D(depth_tex, (fragCoord + dir*-1.0) / screen_size).r);
+ float x2 = abs(texture2D(depth_tex, (fragCoord + dir* 0.0) / screen_size).r);
+ float x3 = abs(texture2D(depth_tex, (fragCoord + dir* 1.0) / screen_size).r);
+
+ float d0 = (x1-x0);
+ float d1 = (x2-x3);
+
+ float r0 = x1 + d0 - x2;
+ float r1 = x2 + d1 - x1;
+
+ float tol = GetTolerance(x2, 0.04);
+
+ return smoothstep(0.0, tol*tol, max( - r0*r1, 0.0));
+}
+
+float DetectSilho(vec2 fragCoord)
+{
+ return max(
+ DetectSilho(fragCoord, vec2(1,0)),
+ DetectSilho(fragCoord, vec2(0,1))
+ );
+}
+
+float compute_ssao_factor(vec3 normal, vec3 view_dir, vec3 eye_pos)
+{
+ vec3 normal_dx = dFdx(normal);
+ vec3 normal_dy = dFdy(normal);
+ float normal_variation = clamp(length(normal_dx) + length(normal_dy), 0.0, 1.0);
+
+ float depth_gradient = clamp(length(vec2(dFdx(eye_pos.z), dFdy(eye_pos.z))) * 0.8, 0.0, 1.0);
+
+ float cavity = clamp(normal_variation * 0.70 + depth_gradient * 0.60, 0.0, 1.0);
+ float cavity_mask = smoothstep(0.25, 0.75, cavity);
+ float ao_strength = pow(cavity, 1.15) * cavity_mask;
+ return clamp(1.0 - ao_strength * 0.90, 0.25, 1.0);
+}
+
+float soft_circle(vec2 p, vec2 center, float radius, float blur)
+{
+ float dist = distance(p, center);
+ return 1.0 - smoothstep(radius - blur, radius, dist);
+}
+
+vec3 compute_window_reflection(vec3 normal, vec3 view_dir)
+{
+ const vec3 LIGHT_TOP_DIR = vec3(-0.4574957, 0.4574957, 0.7624929);
+
+ vec3 light_dir = normalize(LIGHT_TOP_DIR);
+ vec3 reflect_light = normalize(reflect(-light_dir, normal));
+
+ // UV coordinates for the reflection
+ vec2 uv = (reflect_light.xy / (1.0 + max(reflect_light.z, 0.3))) * 2.2;
+
+ vec2 grad = fwidth(uv) * 0.8;
+ float blur = 0.12 + grad.x * 1.5;
+
+ // === CIRCULAR WINDOW (porthole style) ===
+ // Single round window, no bars
+ vec2 window_center = vec2(0.0, 0.0);
+ float window_radius = 0.5; // Radius of the circular window
+
+ float window_light = soft_circle(uv, window_center, window_radius, blur);
+
+ // No bars - just pure circular glass
+ float bars = 1.0;
+
+ // Fresnel effect for edge glow
+ float fresnel = pow(1.0 - max(dot(normal, view_dir), 0.0), 1.0);
+ float facing = smoothstep(-0.4, 0.6, reflect_light.z);
+
+ float intensity = window_light * bars * (0.25 + 0.25 * fresnel) * facing;
+ intensity = clamp(intensity, 0.0, 0.45);
+
+ return vec3(intensity);
+}
+
+void main()
+{
+ if (any(lessThan(clipping_planes_dots, ZERO)))
+ discard;
+
+ vec4 color;
+ if (use_color_clip_plane) {
+ color.rgb = (color_clip_plane_dot < 0.0) ? uniform_color_clip_plane_1.rgb : uniform_color_clip_plane_2.rgb;
+ color.a = uniform_color.a;
+ }
+ else
+ color = uniform_color;
+
+ if (slope.actived) {
+ if(world_pos.z<0.1 && world_pos.z>-0.1)
+ {
+ color.rgb = LightBlue;
+ color.a = 0.8;
+ }
+ else if( world_normal_z < slope.normal_z - EPSILON)
+ {
+ color.rgb = color.rgb * 0.5 + LightRed * 0.5;
+ color.a = 0.8;
+ }
+ }
+
+ vec3 pv_check_min = ZERO;
+ vec3 pv_check_max = ZERO;
+ if (print_volume.type == 0) {
+ pv_check_min = world_pos.xyz - vec3(print_volume.xy_data.x, print_volume.xy_data.y, print_volume.z_data.x);
+ pv_check_max = world_pos.xyz - vec3(print_volume.xy_data.z, print_volume.xy_data.w, print_volume.z_data.y);
+ }
+ else if (print_volume.type == 1) {
+ float delta_radius = print_volume.xy_data.z - distance(world_pos.xy, print_volume.xy_data.xy);
+ pv_check_min = vec3(delta_radius, 0.0, world_pos.z - print_volume.z_data.x);
+ pv_check_max = vec3(0.0, 0.0, world_pos.z - print_volume.z_data.y);
+ }
+ color.rgb = (any(lessThan(pv_check_min, ZERO)) || any(greaterThan(pv_check_max, ZERO))) ? mix(color.rgb, ZERO, 0.3333) : color.rgb;
+
+ vec3 normal = normalize(eye_normal);
+ vec3 view_dir = normalize(-eye_position);
+
+ float NdotL_top = max(dot(normal, LIGHT_TOP_DIR), 0.0);
+ float diffuse = INTENSITY_AMBIENT + NdotL_top * LIGHT_TOP_DIFFUSE;
+ vec3 half_top = normalize(LIGHT_TOP_DIR + view_dir);
+ float specular = LIGHT_TOP_SPECULAR * pow(max(dot(normal, half_top), 0.0), LIGHT_TOP_SHININESS);
+
+ float NdotL_front = max(dot(normal, LIGHT_FRONT_DIR), 0.0);
+ diffuse += NdotL_front * LIGHT_FRONT_DIFFUSE;
+ vec3 half_front = normalize(LIGHT_FRONT_DIR + view_dir);
+ specular += LIGHT_FRONT_SPECULAR * pow(max(dot(normal, half_front), 0.0), LIGHT_FRONT_SHININESS);
+ vec3 window_reflection = compute_window_reflection(normal, view_dir);
+
+ // SSAO is applied in post-process pass. Keep base lighting unchanged here.
+
+ if (is_outline) {
+ vec3 shaded_rgb = (vec3(specular) + window_reflection + color.rgb * diffuse) * PHONG_BRIGHTNESS;
+ vec4 shaded_color = vec4(clamp(shaded_rgb, vec3(0.0), vec3(1.0)), color.a);
+ vec2 fragCoord = gl_FragCoord.xy;
+ float s = DetectSilho(fragCoord);
+ for(int i=1;i<=INFLATE; i++)
+ {
+ s = max(s, DetectSilho(fragCoord.xy + vec2(i, 0)));
+ s = max(s, DetectSilho(fragCoord.xy + vec2(0, i)));
+ }
+ gl_FragColor = vec4(mix(shaded_color.rgb, getBackfaceColor(shaded_color.rgb), s), shaded_color.a);
+ }
+#ifdef ENABLE_ENVIRONMENT_MAP
+ else if (use_environment_tex)
+ gl_FragColor = vec4(clamp((0.45 * texture2D(environment_tex, normalize(eye_normal).xy * 0.5 + 0.5).xyz + window_reflection + 0.8 * color.rgb * diffuse) * PHONG_BRIGHTNESS, vec3(0.0), vec3(1.0)), color.a);
+#endif
+ else
+ gl_FragColor = vec4(clamp((vec3(specular) + window_reflection + color.rgb * diffuse) * PHONG_BRIGHTNESS, vec3(0.0), vec3(1.0)), color.a);
+}
\ No newline at end of file
diff --git a/resources/shaders/110/phong.vs b/resources/shaders/110/phong.vs
new file mode 100644
index 0000000000..b9e90e7cc2
--- /dev/null
+++ b/resources/shaders/110/phong.vs
@@ -0,0 +1,54 @@
+#version 110
+
+const vec3 ZERO = vec3(0.0, 0.0, 0.0);
+
+struct SlopeDetection
+{
+ bool actived;
+ float normal_z;
+ mat3 volume_world_normal_matrix;
+};
+
+uniform mat4 view_model_matrix;
+uniform mat4 projection_matrix;
+uniform mat3 view_normal_matrix;
+uniform mat4 volume_world_matrix;
+uniform SlopeDetection slope;
+
+// Clipping plane, x = min z, y = max z. Used by the FFF and SLA previews to clip with a top / bottom plane.
+uniform vec2 z_range;
+// Clipping plane - general orientation. Used by the SLA gizmo.
+uniform vec4 clipping_plane;
+// Color clip plane - general orientation. Used by the cut gizmo.
+uniform vec4 color_clip_plane;
+
+attribute vec3 v_position;
+attribute vec3 v_normal;
+
+varying vec3 clipping_planes_dots;
+varying float color_clip_plane_dot;
+
+varying vec4 world_pos;
+varying float world_normal_z;
+varying vec3 eye_normal;
+varying vec3 eye_position;
+
+void main()
+{
+ // First transform the normal into camera space and normalize the result.
+ eye_normal = normalize(view_normal_matrix * v_normal);
+
+ vec4 position = view_model_matrix * vec4(v_position, 1.0);
+ eye_position = position.xyz;
+
+ // Point in homogenous coordinates.
+ world_pos = volume_world_matrix * vec4(v_position, 1.0);
+
+ // z component of normal vector in world coordinate used for slope shading
+ world_normal_z = slope.actived ? (normalize(slope.volume_world_normal_matrix * v_normal)).z : 0.0;
+
+ gl_Position = projection_matrix * position;
+ // Fill in the scalars for fragment shader clipping. Fragments with any of these components lower than zero are discarded.
+ clipping_planes_dots = vec3(dot(world_pos, clipping_plane), world_pos.z - z_range.x, z_range.y - world_pos.z);
+ color_clip_plane_dot = dot(world_pos, color_clip_plane);
+}
diff --git a/resources/shaders/110/ssao.fs b/resources/shaders/110/ssao.fs
new file mode 100644
index 0000000000..43b52a3f29
--- /dev/null
+++ b/resources/shaders/110/ssao.fs
@@ -0,0 +1,85 @@
+#version 110
+
+/**
+ * SSAO Shader - GLSL 110 version with highlight protection
+ * Preserves brightness on upward-facing surfaces (top areas)
+ */
+
+uniform sampler2D color_texture;
+uniform sampler2D depth_texture;
+uniform sampler2D normal_texture;
+uniform vec2 inv_tex_size;
+uniform float z_near;
+uniform float z_far;
+
+varying vec2 tex_coord;
+
+float linearize_depth(float depth)
+{
+ float z = depth * 2.0 - 1.0;
+ return (2.0 * z_near * z_far) / (z_far + z_near - z * (z_far - z_near));
+}
+
+void main()
+{
+ vec3 base = texture2D(color_texture, tex_coord).rgb;
+ float depth_center = linearize_depth(texture2D(depth_texture, tex_coord).r);
+
+ // Sample normal at current fragment (range: -1 to 1)
+ vec3 normal_center = texture2D(normal_texture, tex_coord).rgb * 2.0 - 1.0;
+
+ // Calculate how much the surface faces upward
+ // up_factor = 1.0 for surfaces pointing straight up (0,0,1)
+ // up_factor = 0.0 for surfaces pointing down or sideways
+ float up_factor = max(0.0, normal_center.z); // Assuming Z is up axis
+ // Alternative: if Y is up, use normal_center.y
+
+ // Adaptive sampling radius
+ float radius = mix(2.0, 4.0, depth_center / z_far);
+
+ vec2 offsets[8];
+ offsets[0] = vec2( 1.0, 0.0);
+ offsets[1] = vec2( 0.707, 0.707);
+ offsets[2] = vec2( 0.0, 1.0);
+ offsets[3] = vec2(-0.707, 0.707);
+ offsets[4] = vec2(-1.0, 0.0);
+ offsets[5] = vec2(-0.707,-0.707);
+ offsets[6] = vec2( 0.0, -1.0);
+ offsets[7] = vec2( 0.707,-0.707);
+
+ float occlusion = 0.0;
+ int valid_samples = 0;
+
+ for (int i = 0; i < 8; ++i) {
+ vec2 uv = tex_coord + offsets[i] * inv_tex_size * radius;
+ uv = clamp(uv, vec2(0.001), vec2(0.999));
+
+ float sample_depth = linearize_depth(texture2D(depth_texture, uv).r);
+ float depth_diff = max(0.0, depth_center - sample_depth);
+
+ float threshold = 0.015 * (0.5 + depth_center / z_far);
+ float contribution = smoothstep(0.001, threshold, depth_diff);
+
+ float diagonal_weight = 1.0 - abs(offsets[i].x * offsets[i].y) * 0.5;
+ occlusion += contribution * diagonal_weight;
+ valid_samples++;
+ }
+
+ if (valid_samples > 0)
+ occlusion /= float(valid_samples);
+
+ // flatter/top-like surfaces get less darkening
+ float ao_intensity = 0.55;
+ float ambient_occlusion = 1.0 - occlusion * ao_intensity;
+
+ // Different min values for top vs bottom surfaces
+ float ao_min = mix(0.45, 0.70, up_factor); // Bottom: 0.45, Top: 0.70
+ ambient_occlusion = clamp(ambient_occlusion, ao_min, 1.0);
+
+ // Boost brightness on top surfaces (optional)
+ float brightness_boost = 1.0 + up_factor * 0.15; // 15% extra brightness on top
+ ambient_occlusion = pow(ambient_occlusion, 2.2) * brightness_boost;
+ ambient_occlusion = clamp(ambient_occlusion, 0.45, 1.05);
+
+ gl_FragColor = vec4(base * ambient_occlusion, 1.0);
+}
\ No newline at end of file
diff --git a/resources/shaders/110/ssao.vs b/resources/shaders/110/ssao.vs
new file mode 100644
index 0000000000..f066b5dc5f
--- /dev/null
+++ b/resources/shaders/110/ssao.vs
@@ -0,0 +1,15 @@
+#version 110
+
+uniform mat4 view_model_matrix;
+uniform mat4 projection_matrix;
+
+attribute vec3 v_position;
+attribute vec2 v_tex_coord;
+
+varying vec2 tex_coord;
+
+void main()
+{
+ tex_coord = v_tex_coord;
+ gl_Position = projection_matrix * view_model_matrix * vec4(v_position, 1.0);
+}
diff --git a/resources/shaders/140/phong.fs b/resources/shaders/140/phong.fs
new file mode 100644
index 0000000000..a8cc501b49
--- /dev/null
+++ b/resources/shaders/140/phong.fs
@@ -0,0 +1,250 @@
+#version 140
+
+const vec3 ZERO = vec3(0.0, 0.0, 0.0);
+const vec3 LightRed = vec3(0.78, 0.0, 0.0);
+const vec3 LightBlue = vec3(0.73, 1.0, 1.0);
+const float EPSILON = 0.0001;
+
+#define INTENSITY_CORRECTION 0.6
+#define PHONG_BRIGHTNESS 1.0
+
+// normalized values for (-0.6/1.31, 0.6/1.31, 1./1.31)
+const vec3 LIGHT_TOP_DIR = vec3(-0.4574957, 0.4574957, 0.7624929);
+#define LIGHT_TOP_DIFFUSE (0.8 * INTENSITY_CORRECTION)
+#define LIGHT_TOP_SPECULAR (0.8 * INTENSITY_CORRECTION)
+#define LIGHT_TOP_SHININESS 128.0
+
+// normalized values for (1./1.43, 0.2/1.43, 1./1.43)
+const vec3 LIGHT_FRONT_DIR = vec3(0.6985074, 0.1397015, 0.6985074);
+#define LIGHT_FRONT_DIFFUSE (0.3 * INTENSITY_CORRECTION)
+#define LIGHT_FRONT_SPECULAR (0.28 * INTENSITY_CORRECTION)
+#define LIGHT_FRONT_SHININESS 64.0
+
+#define INTENSITY_AMBIENT 0.22
+#define WINDOW_REFLECTION_INTENSITY 0.55
+
+struct PrintVolumeDetection
+{
+ // 0 = rectangle, 1 = circle, 2 = custom, 3 = invalid
+ int type;
+ // type = 0 (rectangle):
+ // x = min.x, y = min.y, z = max.x, w = max.y
+ // type = 1 (circle):
+ // x = center.x, y = center.y, z = radius
+ vec4 xy_data;
+ // x = min z, y = max z
+ vec2 z_data;
+};
+
+struct SlopeDetection
+{
+ bool actived;
+ float normal_z;
+ mat3 volume_world_normal_matrix;
+};
+
+uniform vec4 uniform_color;
+uniform bool use_color_clip_plane;
+uniform vec4 uniform_color_clip_plane_1;
+uniform vec4 uniform_color_clip_plane_2;
+uniform SlopeDetection slope;
+
+//BBS: add outline_color
+uniform bool is_outline;
+uniform sampler2D depth_tex;
+uniform vec2 screen_size;
+
+#ifdef ENABLE_ENVIRONMENT_MAP
+ uniform sampler2D environment_tex;
+ uniform bool use_environment_tex;
+#endif // ENABLE_ENVIRONMENT_MAP
+
+uniform PrintVolumeDetection print_volume;
+
+uniform float z_far;
+uniform float z_near;
+uniform bool enable_ssao;
+
+in vec3 clipping_planes_dots;
+in float color_clip_plane_dot;
+
+in vec4 world_pos;
+in float world_normal_z;
+in vec3 eye_normal;
+in vec3 eye_position;
+
+out vec4 out_color;
+
+vec3 getBackfaceColor(vec3 fill) {
+ float brightness = 0.2126 * fill.r + 0.7152 * fill.g + 0.0722 * fill.b;
+ return (brightness > 0.75) ? vec3(0.11, 0.165, 0.208) : vec3(0.988, 0.988, 0.988);
+}
+
+// Silhouette edge detection & rendering algorithm by leoneruggiero
+// https://www.shadertoy.com/view/DslXz2
+#define INFLATE 1
+
+float GetTolerance(float d, float k)
+{
+ float A=- (z_far+z_near)/(z_far-z_near);
+ float B=-2.0*z_far*z_near /(z_far-z_near);
+
+ d = d*2.0-1.0;
+
+ return -k*(d+A)*(d+A)/B;
+}
+
+float DetectSilho(vec2 fragCoord, vec2 dir)
+{
+ float x0 = abs(texture(depth_tex, (fragCoord + dir*-2.0) / screen_size).r);
+ float x1 = abs(texture(depth_tex, (fragCoord + dir*-1.0) / screen_size).r);
+ float x2 = abs(texture(depth_tex, (fragCoord + dir* 0.0) / screen_size).r);
+ float x3 = abs(texture(depth_tex, (fragCoord + dir* 1.0) / screen_size).r);
+
+ float d0 = (x1-x0);
+ float d1 = (x2-x3);
+
+ float r0 = x1 + d0 - x2;
+ float r1 = x2 + d1 - x1;
+
+ float tol = GetTolerance(x2, 0.04);
+
+ return smoothstep(0.0, tol*tol, max( - r0*r1, 0.0));
+
+}
+
+float DetectSilho(vec2 fragCoord)
+{
+ return max(
+ DetectSilho(fragCoord, vec2(1,0)),
+ DetectSilho(fragCoord, vec2(0,1))
+ );
+}
+
+float compute_ssao_factor(vec3 normal, vec3 view_dir, vec3 eye_pos)
+{
+ vec3 normal_dx = dFdx(normal);
+ vec3 normal_dy = dFdy(normal);
+ float normal_variation = clamp(length(normal_dx) + length(normal_dy), 0.0, 1.0);
+
+ float depth_gradient = clamp(length(vec2(dFdx(eye_pos.z), dFdy(eye_pos.z))) * 0.8, 0.0, 1.0);
+
+ float cavity = clamp(normal_variation * 0.70 + depth_gradient * 0.60, 0.0, 1.0);
+ float cavity_mask = smoothstep(0.25, 0.75, cavity);
+ float ao_strength = pow(cavity, 1.15) * cavity_mask;
+ return clamp(1.0 - ao_strength * 0.90, 0.25, 1.0);
+}
+
+float soft_circle(vec2 p, vec2 center, float radius, float blur)
+{
+ float dist = distance(p, center);
+ return 1.0 - smoothstep(radius - blur, radius, dist);
+}
+
+vec3 compute_window_reflection(vec3 normal, vec3 view_dir)
+{
+ const vec3 LIGHT_TOP_DIR = vec3(-0.4574957, 0.4574957, 0.7624929);
+
+ vec3 light_dir = normalize(LIGHT_TOP_DIR);
+ vec3 reflect_light = normalize(reflect(-light_dir, normal));
+
+ // UV coordinates for the reflection
+ vec2 uv = (reflect_light.xy / (1.0 + max(reflect_light.z, 0.3))) * 2.2;
+
+ vec2 grad = fwidth(uv) * 0.8;
+ float blur = 0.12 + grad.x * 1.5;
+
+ // === CIRCULAR WINDOW (porthole style) ===
+ // Single round window, no bars
+ vec2 window_center = vec2(0.0, 0.0);
+ float window_radius = 0.5; // Radius of the circular window
+
+ float window_light = soft_circle(uv, window_center, window_radius, blur);
+
+ // No bars - just pure circular glass
+ float bars = 1.0;
+
+ // Fresnel effect for edge glow
+ float fresnel = pow(1.0 - max(dot(normal, view_dir), 0.0), 1.0);
+ float facing = smoothstep(-0.4, 0.6, reflect_light.z);
+
+ float intensity = window_light * bars * (0.25 + 0.25 * fresnel) * facing;
+ intensity = clamp(intensity, 0.0, 0.45);
+
+ return vec3(intensity);
+}
+
+void main()
+{
+ if (any(lessThan(clipping_planes_dots, ZERO)))
+ discard;
+
+ vec4 color;
+ if (use_color_clip_plane) {
+ color.rgb = (color_clip_plane_dot < 0.0) ? uniform_color_clip_plane_1.rgb : uniform_color_clip_plane_2.rgb;
+ color.a = uniform_color.a;
+ }
+ else
+ color = uniform_color;
+
+ if (slope.actived) {
+ if(world_pos.z<0.1&&world_pos.z>-0.1)
+ {
+ color.rgb = LightBlue;
+ color.a = 0.8;
+ }
+ else if( world_normal_z < slope.normal_z - EPSILON)
+ {
+ color.rgb = color.rgb * 0.5 + LightRed * 0.5;
+ color.a = 0.8;
+ }
+ }
+
+ vec3 pv_check_min = ZERO;
+ vec3 pv_check_max = ZERO;
+ if (print_volume.type == 0) {
+ pv_check_min = world_pos.xyz - vec3(print_volume.xy_data.x, print_volume.xy_data.y, print_volume.z_data.x);
+ pv_check_max = world_pos.xyz - vec3(print_volume.xy_data.z, print_volume.xy_data.w, print_volume.z_data.y);
+ }
+ else if (print_volume.type == 1) {
+ float delta_radius = print_volume.xy_data.z - distance(world_pos.xy, print_volume.xy_data.xy);
+ pv_check_min = vec3(delta_radius, 0.0, world_pos.z - print_volume.z_data.x);
+ pv_check_max = vec3(0.0, 0.0, world_pos.z - print_volume.z_data.y);
+ }
+ color.rgb = (any(lessThan(pv_check_min, ZERO)) || any(greaterThan(pv_check_max, ZERO))) ? mix(color.rgb, ZERO, 0.3333) : color.rgb;
+
+ vec3 normal = normalize(eye_normal);
+ vec3 view_dir = normalize(-eye_position);
+
+ float NdotL_top = max(dot(normal, LIGHT_TOP_DIR), 0.0);
+ float diffuse = INTENSITY_AMBIENT + NdotL_top * LIGHT_TOP_DIFFUSE;
+ vec3 half_top = normalize(LIGHT_TOP_DIR + view_dir);
+ float specular = LIGHT_TOP_SPECULAR * pow(max(dot(normal, half_top), 0.0), LIGHT_TOP_SHININESS);
+
+ float NdotL_front = max(dot(normal, LIGHT_FRONT_DIR), 0.0);
+ diffuse += NdotL_front * LIGHT_FRONT_DIFFUSE;
+ vec3 half_front = normalize(LIGHT_FRONT_DIR + view_dir);
+ specular += LIGHT_FRONT_SPECULAR * pow(max(dot(normal, half_front), 0.0), LIGHT_FRONT_SHININESS);
+ vec3 window_reflection = compute_window_reflection(normal, view_dir);
+
+ // SSAO is applied in post-process pass. Keep base lighting unchanged here.
+
+ if (is_outline) {
+ vec3 shaded_rgb = (vec3(specular) + window_reflection + color.rgb * diffuse) * PHONG_BRIGHTNESS;
+ vec4 shaded_color = vec4(clamp(shaded_rgb, vec3(0.0), vec3(1.0)), color.a);
+ vec2 fragCoord = gl_FragCoord.xy;
+ float s = DetectSilho(fragCoord);
+ for(int i=1;i<=INFLATE; i++)
+ {
+ s = max(s, DetectSilho(fragCoord.xy + vec2(i, 0)));
+ s = max(s, DetectSilho(fragCoord.xy + vec2(0, i)));
+ }
+ out_color = vec4(mix(shaded_color.rgb, getBackfaceColor(shaded_color.rgb), s), shaded_color.a);
+ }
+#ifdef ENABLE_ENVIRONMENT_MAP
+ else if (use_environment_tex)
+ out_color = vec4(clamp((0.45 * texture(environment_tex, normalize(eye_normal).xy * 0.5 + 0.5).xyz + window_reflection + 0.8 * color.rgb * diffuse) * PHONG_BRIGHTNESS, vec3(0.0), vec3(1.0)), color.a);
+#endif
+ else
+ out_color = vec4(clamp((vec3(specular) + window_reflection + color.rgb * diffuse) * PHONG_BRIGHTNESS, vec3(0.0), vec3(1.0)), color.a);
+}
\ No newline at end of file
diff --git a/resources/shaders/140/phong.vs b/resources/shaders/140/phong.vs
new file mode 100644
index 0000000000..2ccbaf16ee
--- /dev/null
+++ b/resources/shaders/140/phong.vs
@@ -0,0 +1,54 @@
+#version 140
+
+const vec3 ZERO = vec3(0.0, 0.0, 0.0);
+
+struct SlopeDetection
+{
+ bool actived;
+ float normal_z;
+ mat3 volume_world_normal_matrix;
+};
+
+uniform mat4 view_model_matrix;
+uniform mat4 projection_matrix;
+uniform mat3 view_normal_matrix;
+uniform mat4 volume_world_matrix;
+uniform SlopeDetection slope;
+
+// Clipping plane, x = min z, y = max z. Used by the FFF and SLA previews to clip with a top / bottom plane.
+uniform vec2 z_range;
+// Clipping plane - general orientation. Used by the SLA gizmo.
+uniform vec4 clipping_plane;
+// Color clip plane - general orientation. Used by the cut gizmo.
+uniform vec4 color_clip_plane;
+
+in vec3 v_position;
+in vec3 v_normal;
+
+out vec3 clipping_planes_dots;
+out float color_clip_plane_dot;
+
+out vec4 world_pos;
+out float world_normal_z;
+out vec3 eye_normal;
+out vec3 eye_position;
+
+void main()
+{
+ // First transform the normal into camera space and normalize the result.
+ eye_normal = normalize(view_normal_matrix * v_normal);
+
+ vec4 position = view_model_matrix * vec4(v_position, 1.0);
+ eye_position = position.xyz;
+
+ // Point in homogenous coordinates.
+ world_pos = volume_world_matrix * vec4(v_position, 1.0);
+
+ // z component of normal vector in world coordinate used for slope shading
+ world_normal_z = slope.actived ? (normalize(slope.volume_world_normal_matrix * v_normal)).z : 0.0;
+
+ gl_Position = projection_matrix * position;
+ // Fill in the scalars for fragment shader clipping. Fragments with any of these components lower than zero are discarded.
+ clipping_planes_dots = vec3(dot(world_pos, clipping_plane), world_pos.z - z_range.x, z_range.y - world_pos.z);
+ color_clip_plane_dot = dot(world_pos, color_clip_plane);
+}
diff --git a/resources/shaders/140/ssao.fs b/resources/shaders/140/ssao.fs
new file mode 100644
index 0000000000..86ea6a54bf
--- /dev/null
+++ b/resources/shaders/140/ssao.fs
@@ -0,0 +1,103 @@
+#version 140
+
+/**
+ * SSAO Shader - GLSL 140 version with sharp depth threshold
+ * Only darkens valleys/concave areas, ignores smooth variations
+ */
+
+uniform sampler2D color_texture;
+uniform sampler2D depth_texture;
+uniform sampler2D normal_texture;
+uniform float z_near;
+uniform float z_far;
+
+in vec2 tex_coord;
+out vec4 frag_color;
+
+float linearize_depth(float depth)
+{
+ float z = depth * 2.0 - 1.0;
+ return (2.0 * z_near * z_far) / (z_far + z_near - z * (z_far - z_near));
+}
+
+void main()
+{
+ ivec2 pixel = ivec2(gl_FragCoord.xy);
+ float center_depth = linearize_depth(texelFetch(depth_texture, pixel, 0).r);
+
+ // Sample normal buffer (stored as RGB in 0-1 range, convert to -1 to 1)
+ vec3 normal_center = texelFetch(normal_texture, pixel, 0).rgb * 2.0 - 1.0;
+ normal_center = normalize(normal_center);
+
+ // Calculate upward-facing factor (Z-up coordinate system)
+ float up_factor = clamp(normal_center.z * 1.5, 0.0, 1.0);
+
+ // Adaptive radius in pixel space
+ int radius = int(mix(2.0, 4.0, center_depth / z_far));
+
+ // Optimized sampling pattern
+ const ivec2 offsets[12] = ivec2[](
+ ivec2(1, 0), ivec2(-1, 0), ivec2(0, 1), ivec2(0, -1),
+ ivec2(1, 1), ivec2(-1, 1), ivec2(1, -1), ivec2(-1, -1),
+ ivec2(2, 0), ivec2(-2, 0), ivec2(0, 2), ivec2(0, -2)
+ );
+
+ float occlusion = 0.0;
+ int valid_samples = 0;
+
+ for (int i = 0; i < 12; i++) {
+ ivec2 sample_pixel = pixel + offsets[i] * radius;
+
+ if (sample_pixel.x < 0 || sample_pixel.y < 0)
+ continue;
+
+ float sample_depth = linearize_depth(texelFetch(depth_texture, sample_pixel, 0).r);
+
+ // Sample normal at neighbor
+ vec3 normal_sample = texelFetch(normal_texture, sample_pixel, 0).rgb * 2.0 - 1.0;
+
+ // Depth difference (positive if neighbor is closer to camera)
+ float depth_diff = center_depth - sample_depth;
+
+ // Sharp depth threshold ===
+ // Minimum depth difference to consider occlusion (ignores small variations)
+ float threshold_min = 0.008; // Higher = only deep valleys get darkened
+ float threshold_max = 0.04; // Transition range for full occlusion
+
+ float contribution = 0.0;
+ if (depth_diff > threshold_min) {
+ // Abrupt mapping with power curve
+ contribution = (depth_diff - threshold_min) / (threshold_max - threshold_min);
+ contribution = clamp(contribution, 0.0, 1.0);
+ contribution = pow(contribution, 2.0); // Steeper curve for sharper transition
+ }
+
+ // Reduce occlusion on planar surfaces (similar normals)
+ float normal_similarity = dot(normal_center, normal_sample);
+ float planar_factor = smoothstep(0.75, 0.95, normal_similarity);
+ contribution *= (1.0 - planar_factor * 0.6);
+
+ occlusion += contribution;
+ valid_samples++;
+ }
+
+ if (valid_samples > 0) {
+ // Calculate ambient occlusion factor with higher base intensity
+ float ao_factor = 1.0 - (occlusion / float(valid_samples)) * 0.6;
+
+ // Keep bright areas clean (higher minimum for upward-facing surfaces)
+ float ao_min = mix(0.55, 0.85, up_factor);
+ ao_factor = clamp(ao_factor, ao_min, 1.0);
+
+ // Slight brightness boost for upward-facing surfaces
+ float brightness_boost = 1.0 + up_factor * 0.15;
+ ao_factor = ao_factor * brightness_boost;
+
+ occlusion = ao_factor;
+ } else {
+ occlusion = 1.0;
+ }
+
+ vec3 color = texture(color_texture, tex_coord).rgb;
+ frag_color = vec4(color * occlusion, 1.0);
+}
\ No newline at end of file
diff --git a/resources/shaders/140/ssao.vs b/resources/shaders/140/ssao.vs
new file mode 100644
index 0000000000..5ca1517db0
--- /dev/null
+++ b/resources/shaders/140/ssao.vs
@@ -0,0 +1,15 @@
+#version 140
+
+uniform mat4 view_model_matrix;
+uniform mat4 projection_matrix;
+
+in vec3 v_position;
+in vec2 v_tex_coord;
+
+out vec2 tex_coord;
+
+void main()
+{
+ tex_coord = v_tex_coord;
+ gl_Position = projection_matrix * view_model_matrix * vec4(v_position, 1.0);
+}
diff --git a/resources/plugins/elegoolink/web/lan_service_web/favicon.ico b/resources/web/elegoolink/lan_service_web/favicon.ico
similarity index 100%
rename from resources/plugins/elegoolink/web/lan_service_web/favicon.ico
rename to resources/web/elegoolink/lan_service_web/favicon.ico
diff --git a/resources/web/elegoolink/lan_service_web/index.html b/resources/web/elegoolink/lan_service_web/index.html
new file mode 100644
index 0000000000..5bf47ca9b0
--- /dev/null
+++ b/resources/web/elegoolink/lan_service_web/index.html
@@ -0,0 +1,265 @@
+ELEGOO-Create The Future
\ No newline at end of file
diff --git a/resources/web/guide/21/21.css b/resources/web/guide/21/21.css
index 6ed2682533..7bef772e5f 100644
--- a/resources/web/guide/21/21.css
+++ b/resources/web/guide/21/21.css
@@ -1,470 +1 @@
-#Content
-{
- overflow-y:auto;
- padding: 0 10px 0 20px; /* ORCA Specify & Reduce horizontal paddings to fit 4 items per row */
- height: 100%;
-}
-
-.OneVendorBlock {
- position: relative;
- margin-bottom: 7px;
-}
-
-.OneVendorBlock:last-of-type {
- margin-bottom: 36px;
-}
-
-.BlockBanner
-{
- position: sticky;
- top: 0;
- left: 0;
- padding: 0px;
- border-bottom: 2px solid var(--main-color);
- width: 100%;
- display: flex;
- align-items: center;
- z-index: 100;
- background-color: var(--bg-color-secondary);
- box-sizing: border-box;
-}
-
-.BannerBtns
-{
- display: flex;
- white-space: nowrap;
- justify-content: space-around;
- align-items: center;
- text-align: center;
- margin-right: 5px; /* ORCA align buttons with end of horizontal separator/line */
- margin-left: auto;
-}
-
-.BlockBanner a
-{
- line-height: 30px;
- height: 30px;
- font-size: 17px;
- font-weight: 600;
- padding: 0px 10px;
- color: var(--fg-color-text);
-}
-
-.BlockBanner .modelCount {
- margin: 0 15px 0 auto;
- font-size: 14px;
- line-height: 14px;
- height: 15px;
- color: var(--fg-color-label);
-}
-
-.VendorCheckbox {
- transform: scale(1.3);
-}
-
-.PrinterArea
-{
- padding: 7px 0px; /* ORCA Reduce horizontal paddings to fit 4 items per row */
- display: grid;
- grid-template-columns: repeat(4, 1fr);
- gap: 7px;
-}
-
-.PrinterBlock
-{
- display: flex;
- align-items: center;
- text-align: center;
- flex-direction: column;
- gap:10px;
- padding: 15px 10px 10px 10px;
- background-color: var(--bg-color-secondary);
- position: relative;
- border: 1px solid transparent
-}
-
-.PrinterBlock:hover {
- background-color: var(--focus-bg-item);
- border-color:var(--main-color);
-}
-
-.PImg {
- width:120px; /* ORCA use covers as 120x120px but use source file as 240x240 for better quality on hidpi */
- height:120px; /* ORCA fit image to fill frame */
-}
-
-.PrinterInfo,
-.PrinterInfoMark {
- position: absolute;
- right: 4px;
- top: 4px;
- opacity: 0;
- border-radius: 11px;
- line-height: 19px;
- font-size: 14px;
-}
-
-.PrinterInfo {
- --card-animation-delay: .8s; /* open info with delay on list / compact view to prevent them appear while mouse movements */
- --card-info-height: fit-content;
- left: 4px;
- width: auto;
- z-index: 9998;
- height: var(--card-info-height);
- border-color: var(--border-color);
- background: var(--bg-color);
- padding: 10px;
- text-align: left;
- color: var(--fg-color-text);
- pointer-events: none;
-}
-
-#Content[layout="2"] .PrinterInfo {
- --card-animation-delay: .3s;
- --card-info-height: 116px;
-}
-
-.PrinterInfo .title {font-weight: 700}
-.PrinterInfo .value {font-weight: 400}
-
-.PrinterInfoMark:hover + .PrinterInfo {
- animation: infoCard 0s forwards var(--card-animation-delay);
-}
-
-@keyframes infoCard {100% {
- opacity: 1;
- box-shadow: 0 5px 10px rgba(0,0,0,.2);
-}}
-
-.PrinterInfoMark {
- width: 20px;
- height: 20px;
- background: var(--main-color);
- border: 1px solid var(--main-color);
- z-index: 9999;
- color: #FFF;
- text-align: center;
-}
-
-.PrinterBlock:hover .PrinterInfoMark {
- opacity: 1;
-}
-
-.PrinterBlock:hover .PrinterInfoMark:hover {
- background: var(--main-color-hover);
-}
-
-.ModelCheckBox
-{
- position: absolute;
- height: 6px;
- bottom: 0;
- left: 10%;
- width: 80%;
- background: var(--button-bg-hover)
-}
-
-.ModelCheckBox.ModelCheckBoxSelected
-{
- background: var(--main-color-fixed)
-}
-
-img.ModelThumbnail
-{
- width: 100%;
- height: 100%;
-}
-
-.PName
-{
- font-weight: 600;
- line-height: 20px; /* ORCA */
- text-align: center;
- width: 100%;
- color: var(--fg-color-text);
-}
-
-.pNozzel
-{
- display: none;
- align-items: center;
- justify-content:flex-start;
- color: #5A5A5A;
- padding-left: 0px; /* ORCA Align checkboxes with with model text */
-}
-
-.pNozzel input
-{
- vertical-align: middle;
- margin-right: 5px;
-}
-
-.LayoutSelector {
- position: absolute;
- right:21px;
- top:14px;
-}
-
-.LayoutSelector .TabGroup {
- display: flex;
- padding: 2px;
- gap: 2px;
- border-radius: 6px;
- background-color: var(--bg-color-alt);
-}
-
-.LayoutSelector .icon16 {
- opacity: .8;
-}
-
-.LayoutSelector .TabButton {
- padding: 7px;
- border-radius: 4px;
-}
-
-.LayoutSelector .TabButton.selected {background: var(--main-color)}
-.LayoutSelector .TabButton.selected:hover {background: var(--main-color-hover)}
-.LayoutSelector .TabButton.selected .icon16 {background: #FFF}
-
-.LayoutSelector .TabButton:nth-of-type(1) .icon16 {--icon-url: var(--icon-layout-list)}
-.LayoutSelector .TabButton:nth-of-type(2) .icon16 {--icon-url: var(--icon-layout-compact)}
-.LayoutSelector .TabButton:nth-of-type(3) .icon16 {--icon-url: var(--icon-layout-cover)}
-
-/* LAYOUT */
-#Content[layout="compact-list"] .PrinterArea {
- grid-template-columns: repeat(4, 1fr);
-}
-
-#Content[layout="compact-list"] .PImg {
- display: none;
-}
-
-#Content[layout="compact-list"] .OneVendorBlock {
- margin-bottom: 15px;
-}
-
-#Content[layout="compact-cover"] .PrinterArea {
- grid-template-columns: repeat(3, 1fr);
-}
-
-#Content[layout="compact-cover"] .PImg {
- width: 60px;
- min-width: 60px;
- height: 60px;
-}
-
-#Content[layout|="compact"] .PName {
- text-align: left;
-}
-
-#Content[layout|="compact"] .PrinterBlock {
- flex-direction: row;
- padding: 5px 5px 5px 18px;
-}
-
-#Content[layout|="compact"] .ModelCheckBox {
- width: 6px;
- height: 80%;
- left:0;
- top:10%
-}
-
-#Content[layout|="compact"] .OneVendorBlock:last-of-type {
- margin-bottom: 0px;
-}
-
-/*-----Notice-----*/
-#NoticeMask
-{
- background-color: #000;
- position: absolute;
- top: 0px;
- left: 0px;
- right: 0px;
- bottom: 0px;
- opacity: 0.05;
- display: none;
-}
-
-#NoticeBody
-{
- display: none;
- width: 400px;
- border-width: 1px;
- border-style: solid;
- border-radius: 4px;
- background-color: inherit;
- position: absolute;
- left: 50%;
- top: 200px;
- margin-left: -200px;
-}
-
-#NoticeBar
-{
- background-color:#00f0d8;
- height: 40px;
- line-height: 40px;
- color: #fff;
- text-align: center;
-}
-
-#NoticeContent
-{
- padding: 4mm 10mm;
-}
-
-
-#NoticeBtns
-{
- margin-top: 4mm;
- display: flex;
- justify-content:flex-end;
-}
-
-
-.search {
- position: absolute;
- left:66px;
- top: 14px;
- width: 34px;
- height: 34px;
- z-index: 99;
- overflow: hidden;
-}
-
-.search:focus-within,
-.search[hasvalue="1"] {
- width: calc(100% - 194px);
-}
-
-.searchTerm {
- width: 100%;
- height: 100%;
- padding: 4px 5px;
- border-radius: 6px;
- outline: none;
- box-sizing: border-box;
- background: var(--button-bg-normal);
- border: 1px solid var(--button-bg-normal);
-}
-
-@media (prefers-reduced-motion: no-preference) {
- .searchTerm {
- transition: background-color .2s
- }
-}
-
-.searchTerm,
-.search-placeholder {
- line-height: 24px; /* ORCA center text vertically */
- font-size: 14px;
-}
-
-.search:focus-within .searchTerm,
-.search[hasvalue="1"] .searchTerm {
- padding-left:33px;
- background: var(--bg-color);
- border-color: var(--main-color);
-}
-
-.search[hasvalue="1"]:not(:focus-within, :hover) .searchTerm {
- border-color: var(--border-color);
-}
-
-.search:not(:focus-within, [hasvalue="1"]) .searchTerm {
- cursor: default;
-}
-
-.search:not(:focus-within, [hasvalue="1"]) .searchTerm:hover {
- background: var(--button-bg-hover);
-}
-
-.search-placeholder {
- color: var(--fg-color-disabled);
- left: 33px;
-}
-
-.searchTerm:not(:placeholder-shown) + .search-placeholder {
- opacity: 0;
-}
-
-.search-icon,
-.search-placeholder {
- position: absolute;
- top: 50%;
- transform: translateY(-50%);
- pointer-events: none;
-}
-
-.search-icon {
- left: 9px;
- --icon-url: var(--icon-search);
-}
-
-.SidebarBtn {
- position: absolute;
- left: 20px;
- top: 14px;
- padding: 9px;
- border-radius: 6px;
-}
-
-.SidebarBtn .icon16 {
- --icon-url: var(--icon-sidebar);
-}
-
-#SidebarContainer {
- position: absolute;
- top: 0;
- left: -240px;
- right: 0;
- height: 100%;
- z-index: 999999;
- display: flex;
- pointer-events: none;
-}
-
-@media (prefers-reduced-motion: no-preference) {
- #SidebarContainer {
- transition: background-color .2s, left .2s
- }
-}
-
-#SidebarContainer[open="1"] {
- left: 0px;
- pointer-events: all;
- background: rgba(0,0,0,.3);
-}
-
-#Sidebar {
- flex: 0 0 220px;
- background: var(--bg-color);
- box-shadow: 5px 0 20px rgba(0,0,0,.2);
- padding: 15px 0;
- overflow-y: auto;
-}
-
-#Sidebar .title {
- font-size: 17px;
- line-height: 17px;
- font-weight: 600;
- padding: 0 0 5px 20px;
-}
-
-#Sidebar .SidebarItem {
- width: 100%;
- padding: 2px 10px 2px 20px;
- color:var(--fg-color-text);
- font-size: 14px;
- border: 1px solid transparent;
- box-sizing: border-box;
-}
-
-#Sidebar .SidebarItem:hover {
- border-color: var(--main-color);
-}
-
-#SidebarContainer .back {
- flex: 1;
-}
+/* UNIQUE STYLES */
\ No newline at end of file
diff --git a/resources/web/guide/21/21.js b/resources/web/guide/21/21.js
index 5ad3a8b219..4cd9286bdf 100644
--- a/resources/web/guide/21/21.js
+++ b/resources/web/guide/21/21.js
@@ -1,395 +1,15 @@
+// UNIQUE FUNCTIONS
+
+// Keep in here for future additions
function OnInit()
{
//let strInput=JSON.stringify(cData);
//HandleModelList(cData);
TranslatePage();
-
RequestProfile();
}
-
-
-
-function RequestProfile()
-{
- var tSend={};
- tSend['sequence_id']=Math.round(new Date() / 1000);
- tSend['command']="request_userguide_profile";
-
- SendWXMessage( JSON.stringify(tSend) );
-}
-
-function HandleStudio( pVal )
-{
-// alert(strInput);
-// alert(JSON.stringify(strInput));
-//
-// let pVal=IsJson(strInput);
-// if(pVal==null)
-// {
-// alert("Msg Format Error is not Json");
-// return;
-// }
-
- let strCmd=pVal['command'];
- //alert(strCmd);
-
- if(strCmd=='response_userguide_profile')
- {
- HandleModelList(pVal['response']);
- }
-}
-
-function ShowPrinterThumb(pItem, strImg)
-{
- $(pItem).attr('src',strImg);
- $(pItem).attr('onerror',null);
-}
-
-function ChooseModel( vendor, ModelName )
-{
- let ChooseItem=$(".ModelCheckBox[vendor='"+vendor+"'][model='"+ModelName+"']");
-
- if(ChooseItem!=null)
- {
- if( $(ChooseItem).hasClass('ModelCheckBoxSelected') )
- $(ChooseItem).removeClass('ModelCheckBoxSelected');
- else
- $(ChooseItem).addClass('ModelCheckBoxSelected');
-
- SetModelSelect(vendor, ModelName, $(ChooseItem).hasClass('ModelCheckBoxSelected'));
- }
-}
-
-function HandleModelList( pVal )
-{
- if( !pVal.hasOwnProperty("model") )
- return;
-
- pModel=pVal['model'];
-
- // ORCA ensure list correctly ordered
- pModel = pModel.sort((a, b)=>(a["vendor"].localeCompare(b["vendor"])))
- pModel = [ // move custom printers to top
- ...pModel.filter(i=>i.vendor === "Custom"),
- ...pModel.filter(i=>i.vendor !== "Custom")
- ];
-
- let nTotal=pModel.length;
- let ModelHtml={};
- for(let n=0;n'+
-'
';
+}
+
+function CreatePrinterBlock(OneModel)
+{
+ let vendor = OneModel['vendor']
+ let vendorName = vendor=="BBL" ? "Bambu Lab" : vendor=="Custom" ? "Generic Printer" : vendor;
+ let modelName = OneModel['name'];
+
+ // Most of it unneeded. this can be applied in profiles
+ if( vendor=="Custom")
+ modelName = modelName.split(" ")[1];
+ // these uses different case in name; seckit, ratrig, blocks
+ else if (modelName.toLowerCase().startsWith(vendorName.toLowerCase()))
+ modelName = modelName.slice(vendorName.length);
+ // these not matches. have to fix in profiles to reduce conditions in here;
+ else if (vendor == "MagicMaker" && modelName.startsWith("MM"))
+ modelName = modelName.slice(("MM").length);
+ else if (vendor == "OrcaArena")
+ modelName = modelName.slice(("Orca Arena").length);
+ else if (vendor == "RolohaunDesign" && modelName.startsWith("Rolohaun"))
+ modelName = modelName.slice(("Rolohaun").length);
+
+ return '